content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
# subtracting type dp with sort
class Solution(object):
def combinationSum(self, candidates, target):
candidates.sort()
dp = [[[]]] + [[] for i in xrange(target)]
for i in xrange(1, target + 1):
for number in candidates:
if number > i:
break
for L in dp[i - number]:
if not L or number >= L[-1]:
dp[i] += L + [number],
return dp[target]
| class Solution(object):
def combination_sum(self, candidates, target):
candidates.sort()
dp = [[[]]] + [[] for i in xrange(target)]
for i in xrange(1, target + 1):
for number in candidates:
if number > i:
break
for l in dp[i - number]:
if not L or number >= L[-1]:
dp[i] += (L + [number],)
return dp[target] |
def dict_path(d, path):
if not isinstance(path, (list, tuple)):
raise ValueError()
for keys in path:
if type(keys) is not list:
keys = [keys]
value = None
for key in keys:
if key not in d:
continue
value = d[key]
if value is None:
value = {}
for key in keys:
d[key] = value
d = value
return d
| def dict_path(d, path):
if not isinstance(path, (list, tuple)):
raise value_error()
for keys in path:
if type(keys) is not list:
keys = [keys]
value = None
for key in keys:
if key not in d:
continue
value = d[key]
if value is None:
value = {}
for key in keys:
d[key] = value
d = value
return d |
dias = int(input('Digite a quantidade de dias: '))
horas = int(input('Digite a quantidade de horas: '))
minutos = int(input('Digite a quantidade de minutos: '))
segundos = int(input('Digite a quantidade de segundos: '))
total = segundos + (minutos * 60) + ((horas * 60) * 60) + (((dias * 24) * 60) * 60)
print ('Isso equivale a %d segundos' %total)
| dias = int(input('Digite a quantidade de dias: '))
horas = int(input('Digite a quantidade de horas: '))
minutos = int(input('Digite a quantidade de minutos: '))
segundos = int(input('Digite a quantidade de segundos: '))
total = segundos + minutos * 60 + horas * 60 * 60 + dias * 24 * 60 * 60
print('Isso equivale a %d segundos' % total) |
# Each line gives the password policy and then the password. The password policy indicates the lowest and highest number of times a given letter must appear for the password to be valid. For example, 1-3 a means that the password must contain a at least 1 time and at most 3 times.
# How many passwords are valid according to their policies?
# Part 2
# Each policy actually describes two positions in the password, where 1 means the first character, 2 means the second character, and so on. (Be careful; Toboggan Corporate Policies have no concept of "index zero"!) Exactly one of these positions must contain the given letter. Other occurrences of the letter are irrelevant for the purposes of policy enforcement.
problemInput = ["2-5 z: zzztvz",
"2-8 d: pddzddkdvqgxndd",
"4-14 r: rrrjrrrrrrbrrccrr",
"2-7 r: zrgsnrr",
"9-10 z: zzzxwzznpd",
"8-13 g: gggggggxgggghggg",
"1-6 c: xcccxcccccz",
"3-4 b: bxbt",
"8-11 d: dddddddzddv",
"4-14 m: kxdmmmdmfwmmmdfr",
"16-17 g: ggggggggggggggggg",
"2-3 f: ddvdlff",
"9-11 g: ggggpfgggggg",
"7-8 c: fdhctccc",
"3-6 c: tmcdcncqcvccg",
"2-3 l: clllll",
"1-9 b: bbbbbbbbbb",
"10-15 w: wglmwwwrnnzgwhhwvvd",
"10-14 g: ggggggxsgggqggg",
"9-19 q: fjlqbvtdngwvtbnsgfm",
"1-2 k: kgbkkv",
"4-10 m: mmmmtmmmmgm",
"3-4 h: hplh",
"5-7 q: qqqqrqk",
"3-12 v: zbvlbpxcrnvvwjpwl",
"1-4 r: crrr",
"4-5 h: hhhrj",
"2-4 r: mhrr",
"9-10 c: pccccsccbk",
"10-16 n: drnhqnnnnqnnpxmh",
"5-6 v: vvvnvvg",
"11-12 c: ccccgcccccpc",
"5-10 b: bdbjbbfmfbb",
"9-13 w: zwbwwzhwwkwsxdfwglx",
"5-19 v: vvvvvqrvvfvgvvvvmvv",
"3-9 d: dddgztdljb",
"12-13 s: swssssrsssshx",
"5-6 l: dllkljq",
"4-5 q: qqqsdqq",
"2-4 w: tmwg",
"10-12 l: llllsldflllllljjlxl",
"3-11 s: sjtsssssksbs",
"1-5 v: hvvtmvgvv",
"3-12 g: ggvgkgfgggghgg",
"3-4 p: ccpp",
"3-9 v: vfvvvvvvvvvvvr",
"8-16 k: kkkkkkkkkkkkkwkkkk",
"8-9 x: wxbrxfdrw",
"7-9 n: nnnfnnnnn",
"7-11 w: wwwwxwwwwwzxw",
"6-9 n: nknnhnnnnlnnn",
"10-12 l: qllllllllqbl",
"17-19 p: pppppppppppppwppkpp",
"4-5 q: qqqqqq",
"7-15 v: vvvbmbjvjznzdhfvtn",
"3-12 w: wwwwwdwwwwwwtwwwww",
"7-10 x: mmgmknpvdbxdl",
"9-10 v: jljttxpvvv",
"11-15 d: dshddnddqdhddvm",
"1-3 r: vrqrrr",
"6-7 c: ltcbpccw",
"5-13 q: qqqqcqqqxqrqg",
"3-7 l: lhlmhzl",
"2-3 l: lxntjnttkllll",
"3-4 b: bbnsb",
"5-6 j: rjppzvjdjj",
"4-10 g: fgggjgvfggggggsggm",
"11-12 z: ztzzzkzzzzsvzzzzt",
"2-3 h: hcvbf",
"7-13 s: sswkwhsdqsdcs",
"3-10 j: mghjglnbdhjp",
"6-8 x: dfxrxxsxpsxxxxmc",
"11-12 f: fffmfcdpffmpflfffdw",
"4-7 n: nnnknncnn",
"2-6 k: tzqlzqhrncvktfwvswt",
"2-4 h: pqplh",
"8-13 h: zhlwqvmnkjhhtkf",
"2-3 l: llll",
"19-20 j: jjjjjjjjjjjjjjjjjrjj",
"3-14 n: crnnrgpmxxlrfljk",
"2-4 t: stpr",
"11-13 c: cctcccccccccccc",
"5-6 q: fqqqqqdwtwqjq",
"6-7 z: zzzzzzg",
"8-16 j: njjgsjjljktjcbjvjc",
"3-6 c: swjccc",
"5-7 h: ghvwjmzm",
"9-12 s: sssssmvtdckmfs",
"3-4 r: bsrm",
"6-7 c: ccctcccc",
"6-10 t: swndrtcvtl",
"13-19 v: vjvxvvvdvvvvvvdvblv",
"5-7 w: hnwwwtwp",
"8-9 k: kkkkkktzxkkv",
"4-6 g: xpsxgs",
"2-3 r: xrrdxm",
"2-9 f: ffvqxxvsf",
"7-10 t: tttttttttt",
"4-6 q: bbqqqqqqbq",
"7-9 q: xjcwqhprgh",
"3-6 j: jjjjjjjxjjj",
"1-3 l: blll",
"2-5 p: phbppp",
"3-4 p: phpb",
"2-15 r: mwgnrkxrrbmgpzrdrr",
"8-13 x: jsrlvxmxwglkh",
"4-11 b: ctcbsjgjplbthhrskfnb",
"6-7 q: qqqqqfvcq",
"10-11 d: ddddddjdbndddd",
"8-9 p: pppppppkf",
"10-14 q: qqqqqqnqzgqsqv",
"12-13 b: bbbbbbbbbbbbb",
"6-11 h: khnkthfhhdhrhh",
"5-6 g: gzggwcgq",
"2-4 f: fbfg",
"6-9 f: ffvfsfvffxff",
"6-7 t: tsfdltt",
"14-17 t: tttttttttttxtcttp",
"3-4 v: vwtv",
"7-10 x: pxmldqqxmw",
"1-2 s: pdssssssss",
"5-6 n: snwnml",
"3-8 t: tjnpjqzxbj",
"5-7 n: mxkqfnjb",
"4-12 q: qqqkqqqqqqqkqqq",
"4-5 d: pjhnsfdgddjsddvpxxd",
"14-15 t: trttdtxwtdmtttt",
"3-4 j: jjvz",
"1-2 p: xqpppp",
"11-15 d: dddpdddddddddddq",
"15-16 b: bnbbbbbbbbbtbbdbb",
"9-11 w: wwwnwwmwbghw",
"15-18 g: tjwqbgwmvpvghxgzkgj",
"3-4 j: jjps",
"9-12 f: ffflfffmfnffvff",
"1-3 g: gbgstndgggqrdbtpdqdr",
"4-6 f: fflxfqffff",
"10-14 t: ttttttttttttttttt",
"1-7 v: vvsqlvvvvkj",
"3-7 b: wvbxlwbjtbbbvh",
"3-7 p: hqvsvpn",
"2-6 f: fkwfhf",
"3-11 d: dzrwnffrdvs",
"8-9 s: sssdssztlssqksx",
"12-15 t: tttttttttthtttt",
"5-6 m: mmmmmmmm",
"2-3 n: dnnl",
"12-16 w: wrwwtvwwwwwwwwww",
"2-4 j: jjjjsj",
"7-11 x: xxxxxtcxxxlxxx",
"8-17 n: nbngnnnsnjnbhnntzwxt",
"5-6 b: tmbdgn",
"15-16 x: xqlpjxbbxnrbxxxxqmkf",
"1-3 c: ccclf",
"12-14 m: zhmmmzltwhrmfmx",
"15-17 c: ccvcxcmccgccccbcccc",
"10-13 k: mkgkljkkkjkkg",
"1-4 b: ckdr",
"10-12 b: bvfbgbbbbbbb",
"2-4 v: jfvcv",
"2-7 p: jswmqpmc",
"11-16 b: bbbncbpmbjbbvgrb",
"1-6 n: ktjcwr",
"2-9 l: lllrwljlnlwllln",
"17-18 h: hhhhhhhhhhhhhhhhzfh",
"9-14 b: bbbsbqbbjjbbkb",
"7-12 j: jjjjjwwjjjjcj",
"10-13 w: wfwwwwwwwjwww",
"2-6 j: bjghpj",
"13-16 z: zzzzzzzzbzzzzzvg",
"10-11 f: ffffkfffcfxff",
"3-4 m: mmmmkjvzmkp",
"2-5 k: kkkkk",
"5-6 r: rrbrrs",
"1-2 c: ccqjmc",
"13-14 r: rrrrrrrrrrrrztr",
"8-12 z: zrzzzzzqbzvdz",
"4-9 m: hlgmtvvqs",
"9-10 t: tthttrtbrnt",
"2-4 k: snpkzhck",
"12-13 x: wlxwwxxxhgxxx",
"11-16 h: ncmfhhvgghhhhhjhd",
"13-15 g: sgxgfntgjnxkgbgm",
"4-13 s: vqkslldmgmfrd",
"3-14 z: zzzzzzzzzzzzzzzz",
"14-15 c: ccccvccccccsmlpcfccx",
"4-5 p: pppppp",
"9-10 z: kgblzrqbzz",
"13-15 p: pppppptpmppbpppqpp",
"7-8 b: dntbbcmswb",
"16-17 d: dddddddddddddddgd",
"10-11 r: rrrsrmrrrqtr",
"2-3 q: qtqgz",
"6-8 c: xztzfkcch",
"14-15 l: lllflllllllllzsl",
"1-6 s: zssssss",
"5-8 d: hdddwddvdpd",
"10-12 j: jjjjjjjjjpjbj",
"1-9 q: tqqqqqqqqnqqwqk",
"2-4 t: shpwwttwqb",
"8-9 s: xrssssssz",
"3-4 c: cjcfc",
"3-10 v: rfvzsncmfv",
"4-7 t: lshczltjfqkmkt",
"13-16 x: xxxxxxxfxxxxzxxrxx",
"1-3 z: pzkzlzmzz",
"4-5 d: ddkbfdtdd",
"9-10 r: rrrrrrrrlfkj",
"3-7 s: svtbsssjsldts",
"10-13 c: ccccgxzqtctrc",
"1-7 q: zgwqgrx",
"6-8 f: ffnffrfg",
"4-5 f: kffcffp",
"1-2 m: ggcm",
"5-6 z: zzzdgz",
"9-14 j: jjjnjjjjjjjjjjjj",
"2-17 d: xttgzggnfhsrjqdbppps",
"5-6 f: xrcfff",
"1-3 z: wzzg",
"1-2 h: hhhvl",
"13-17 q: qqqqqqqqqqmqqqqqqq",
"2-3 q: bjqq",
"1-5 w: zwwwgww",
"5-7 s: jnvpmgj",
"9-10 q: zctgztwpqq",
"16-20 j: jkjjkjnjwqqjjjzgjjpk",
"16-20 k: kkkkkkkkkkkkkkkkkkkk",
"17-18 d: dddddddddddddddddbd",
"3-5 d: dngrhxb",
"10-12 t: tmttttttttrttwh",
"7-9 q: nqqqkqcqqqqq",
"7-9 z: zqzzzzwctng",
"10-13 d: dddjldsddkddjpddd",
"3-7 g: lgglgggggphx",
"6-7 b: llkbcdxwtzrblp",
"1-5 s: dssdscpzwcn",
"2-6 h: hhphhhhhh",
"4-13 z: smkzzpzjfzzbzqzxzjz",
"2-5 j: jjjjjj",
"8-11 p: lgmppspppppk",
"9-10 c: ccccccccdnkc",
"3-9 m: mmfmmmmpkmsmmm",
"13-15 m: mmmmkmmmmmmmgmhmmm",
"5-6 x: xxxxxxx",
"10-14 b: bbbjbqbbwcbbbb",
"3-12 f: ffmfffffffnzfffff",
"11-12 m: mmmnmmmmmmmmm",
"8-12 v: jptmbccvmvsxchfvv",
"4-5 s: ssssns",
"12-14 j: jjjjjjdjjjjvjhjjj",
"11-13 j: wjjjljjjcjjjjqjjp",
"1-7 g: ggggggggdg",
"2-3 v: bkjqv",
"4-13 q: qzhldwthbwgtr",
"12-13 p: ppplppdgpppppp",
"11-12 f: flffxfpffprgfff",
"8-14 b: mbbbbbtbwbhstbbbbbbb",
"6-7 m: bqmsmmm",
"1-3 w: qxlggmxtwj",
"3-17 c: dwbkjcwqcrccbcxcnvxc",
"11-13 p: ppxppppdppxpzpppp",
"4-10 v: vfvvfvzvqv",
"1-7 m: mmmxmmmmmbmmrmmmmmm",
"2-12 x: xrdxwxzwfxpxtqxxxgxp",
"6-11 w: swzwwkddmsrxwzfg",
"6-8 g: ggggggggggg",
"3-4 h: tzshs",
"7-8 t: zjtzpclm",
"5-6 k: brzkzk",
"14-15 c: cccccccccjccccc",
"2-3 h: hhfh",
"15-19 w: wwwwwwwkzxwwwwwwwwh",
"8-10 f: mjmwqnlnhf",
"3-8 l: ksllllplllc",
"1-3 q: gjmhq",
"2-9 l: lwklcxllf",
"5-7 p: ppcclscppgdxmg",
"3-6 z: fpxmpz",
"8-11 r: vrrrrrrrrrrrrrs",
"1-7 q: cqqqqqgq",
"13-14 t: tttztttttttttt",
"4-6 q: qzkqsqzmhhq",
"8-14 l: llllfllplllgzll",
"5-9 m: mmmtmmmmm",
"9-14 l: llllllllrllllltl",
"3-4 r: czrr",
"2-5 s: lssslssnmfqss",
"14-17 h: hhhhhhhhhhhhhhhhhh",
"3-4 x: xxxx",
"7-8 x: zdjbxxsl",
"10-13 n: ffrnphpzhnfxnncptmn",
"7-11 m: mmmmmmdmmmmmf",
"1-2 j: jjjjjjjjjtj",
"2-6 g: kglgsq",
"3-8 x: csvxxxxxztxdxpw",
"3-9 m: qbqwfmfpjmbnbcccgfgk",
"2-14 v: rmqhqlrvcjdhpw",
"8-9 p: pppppppvwpm",
"8-12 f: zvfjxbdgzjbplm",
"2-3 f: frff",
"7-9 f: htkxffclfr",
"4-7 v: cvqjctzvzvvv",
"6-7 f: fjffflj",
"1-4 b: tbnpb",
"8-10 t: tjpbtfzhtfsdjtlttttt",
"8-12 h: hhhhhhhhhhhrh",
"3-5 n: hxbwgjchklnplnb",
"1-2 z: jzvz",
"4-7 z: vzzzvcz",
"11-12 f: fffffvcfskcfcfftqf",
"2-5 p: cxktpckkqkgjpptvgp",
"9-16 b: bbbbbbbbkbbbbbbbbbbb",
"10-11 p: jcpnpppxpppb",
"7-9 n: sncnrzncnzdnngn",
"10-11 n: ttqrrkbspnn",
"11-19 c: ccczncccccsccpccccjc",
"1-2 h: hhhbwhhknzf",
"5-8 q: zxbtktkf",
"2-6 x: trxhzl",
"1-5 d: dskddkqdgqkhcz",
"7-12 c: ccccccccccccc",
"7-9 t: kskrrhtxtvsqzt",
"5-12 v: vvvjvwrdfscv",
"6-10 z: pzznznzczkwzzzmzz",
"15-18 t: tttttntttttttttttttt",
"4-6 m: bxmmmm",
"2-8 k: tkkhqwkkkpk",
"6-11 p: pppppgmpppppp",
"7-10 b: bkbcbbrrbr",
"6-11 c: cctccccbnbcvccc",
"2-5 t: ccpxgwzqktxwjf",
"4-11 s: sssssscsssssg",
"3-4 d: ndpk",
"3-4 z: gjzzzkbhzzs",
"8-9 t: ttttttttt",
"5-10 l: lllldmmlln",
"9-15 j: njzjgjjjjjjjprjjj",
"5-7 p: zppppppgkp",
"2-6 r: rvdrrrgdnrrrlrr",
"6-7 k: kkkkkkkk",
"3-4 x: nxxxmtmljgldjx",
"2-6 f: qfxxxftf",
"1-9 z: zzdlqgzwzzjw",
"6-8 n: rnjnstwm",
"4-6 w: vhfhwckw",
"3-7 k: kkpkkfpk",
"5-7 k: kkkfzkhkk",
"1-11 j: jjjtjjjjmjs",
"2-17 w: wlwdkkwmkwskpstxvrwr",
"5-11 g: kgpgjspqlwnx",
"2-6 l: lpllld",
"1-6 d: xwkvgvkdxlljpdqwmhs",
"5-6 z: llrzzsz",
"4-5 l: lllll",
"18-19 g: gggggggngggggggggggg",
"1-10 x: kkdxwkrtfh",
"3-4 t: ttrqzttbsrt",
"14-16 s: ssshsssssssssnsss",
"2-6 k: kjzkxkkhkp",
"2-10 b: bbbbbbbbbbbbbb",
"1-9 v: vvvvvvvvvvv",
"11-12 m: mqmmmmmmmmhsl",
"5-6 s: sssmsss",
"14-20 s: srssssssdsssskssksvs",
"1-3 r: rrrr",
"4-7 d: zddkdptdfdw",
"6-7 g: rggglggtgkgg",
"3-5 c: bcctcvpcprcccqccpcrc",
"8-9 r: rrrxzrrlmrd",
"12-17 c: hcctccccbqcctscsscv",
"15-16 d: dkddddjdddddsdhwdddj",
"13-14 b: blbbbbqbhbbbmz",
"2-10 p: hvxqpjqstv",
"1-4 p: plxp",
"3-6 z: zzdlzqjzzz",
"1-14 s: qsssssssslshswsjh",
"3-5 r: grrrnrrrsvrrrdrrrjrr",
"1-4 d: dfdjdxbpdddf",
"2-3 p: pppppp",
"16-18 c: cmcccjxfclcgmchswq",
"9-11 x: xxrxxxxxvxrxx",
"13-14 p: dpppppsppspftpppwp",
"15-19 h: hhhhhhhhhhhhhhhhhhhh",
"6-12 q: qqqxqqqqgqqpqqqqqqqv",
"10-12 g: gqgdgzhgghjgdd",
"2-6 p: pnppppp",
"3-14 l: lllllllllllllllll",
"12-19 h: hhdhhhhvxrfhcshhwxh",
"16-18 m: mmrmmmmlmmgmmmmmmmmm",
"8-11 t: tntmlpgfttv",
"8-11 f: mffffffffff",
"15-18 t: tftttttttjwtttjttjt",
"5-12 d: pzdrdqxzqzwgzwcgsv",
"4-9 d: cdwdmhksdzgd",
"9-17 l: mlsllmgdlhlgmfglr",
"1-5 r: rrcnr",
"3-4 c: ccccccc",
"1-2 g: cskvbgnlgnpfrh",
"5-10 n: tfnnvnnqbbn",
"1-15 g: fxpdggmtrqggdglh",
"3-4 t: ftttppdtdbxzqw",
"5-6 p: qpxsjt",
"8-14 r: bkltjzprkhrhmrg",
"1-11 f: gffkkmpflxlqfsf",
"1-4 d: vddknn",
"5-7 l: llllllvlllll",
"2-11 b: bbbbbbbbbbbbb",
"1-3 h: hhhh",
"13-14 q: jqqqcckhdqkqqj",
"4-14 p: mfwcbqxpdkhtdfj",
"3-4 g: ggggg",
"6-14 v: vvvvvvvvvvvvvvv",
"16-18 v: vvvvvvvsvvvsvvvvvv",
"9-13 l: llllllllllllllllllll",
"3-4 r: zjrr",
"6-8 x: xxxxxxxxx",
"2-6 p: zlgpps",
"3-8 t: ttjtbttjt",
"18-19 k: kkkkkkkkkkkklkkkkkk",
"8-13 q: hcvnkpnqfzqmqscwf",
"15-16 p: ppppppppppppdpmr",
"7-12 c: cqccccdcccwsccc",
"8-12 d: ddhddddgdddgdddd",
"3-4 x: xxxx",
"6-8 w: wwwrlzcbwhwlqwwwv",
"1-5 h: hhhhdwhhlhph",
"4-5 f: fffvz",
"3-8 c: ccqqcccc",
"3-5 k: xkwkdkh",
"2-3 s: ssssshhsss",
"4-6 x: gxxxcx",
"8-12 l: vsnlqbjltbtlphjtf",
"3-6 n: tgpnqxnntkmntvl",
"9-12 f: cjzkldhmvclk",
"4-7 b: zgpdznb",
"1-12 s: ssssnrssssscnssssq",
"14-16 p: pppppppppppppwpjp",
"4-14 b: xpbbvcbbbspgbbqbw",
"5-6 s: smssrb",
"5-16 b: tzbdqxgkbxbvzwvt",
"2-14 f: vzplvvftrcdmgs",
"13-15 t: tttttkthhtzttdt",
"2-3 s: vpwss",
"9-14 s: sssssssfssssss",
"7-13 s: tsnwzxwzjzsjkchlg",
"12-15 q: qlqbbfqqvqmcqhvq",
"12-13 g: gggggggggggggggggg",
"1-3 g: jjdqzgwgggggg",
"5-6 n: nlnxnnnwv",
"15-16 m: mmmmmmmmmmmmmmmjmmm",
"2-6 m: vmrqrmz",
"4-5 n: nvnnwb",
"13-15 x: xgblxvxmpskqwvlx",
"6-7 v: vvvvvvvv",
"8-10 r: fsrrdprbrfxhrdv",
"4-5 j: jsjjf",
"4-6 k: kkkjkkk",
"5-9 j: cflfvjjtjljjhbhnj",
"9-11 t: xswktxtqrbm",
"4-16 r: drrrrrrrrrrrrfwnr",
"13-18 p: bbkplmplqmppppspmp",
"9-15 r: kgnwvxmcrmltpcgwvrb",
"4-5 c: jcwcccnc",
"2-4 f: ffff",
"8-12 d: rvsdddvdtdcd",
"3-10 v: qvdzjhcvsz",
"10-11 x: qcmvlvgxkxx",
"6-9 s: sxsspsksjssfsnssrvs",
"3-7 x: zbxxxxxwrpxgr",
"9-17 j: hrppktjsqhzqwxhdz",
"5-7 z: nzzzvzswz",
"6-7 p: ppppsbpp",
"10-13 f: fffffffffhffmfcxffpf",
"9-12 f: ffffffffsffmf",
"14-15 r: rrrrrrmrrrrmrrzr",
"3-6 w: whwwwwwwwwwwm",
"7-8 b: btqbbbbbbbz",
"13-16 z: zznbbdmbzhjzzzzzmngd",
"6-7 q: fqmqltdqqqdwqss",
"3-4 h: hphhhhh",
"1-3 r: rdgktrmrmdztrkmn",
"17-18 w: wwslwwsmwswwfxwwwww",
"6-8 p: ppprpppp",
"8-10 z: zzzzzdzrztzzzz",
"8-11 m: tmldmmwxmjmrmtrmm",
"12-16 s: phpprsdvkmsssmssnqwm",
"3-4 h: qplnhkhh",
"14-19 w: wvxvqzqzdnjjwwtdbwc",
"2-4 p: fpnp",
"3-5 c: ccccpcccccccc",
"3-12 g: ggwggbgfggrxggg",
"4-8 r: rrszrgdbrw",
"2-4 n: vnmgjtps",
"8-10 j: mjjjxjjgjc",
"2-6 m: vmmhmm",
"3-4 w: vwww",
"10-18 v: mvnbqbvcpkvnhqvvbvzv",
"15-19 g: ggtggggggbggggxggglg",
"7-13 m: mmmmmmjmmmmmmm",
"5-11 d: ddxhdndtfdddndxzdqk",
"3-11 f: ffnfbfffffgrff",
"7-14 w: fflfpgklzlxfwwt",
"15-17 d: zxllzgbjrrddnmdhdwp",
"1-5 n: nnnnknnn",
"15-16 j: ffkjjljgndljjnjscs",
"2-3 v: nvvxvntqcrqq",
"5-6 c: rcccgpcc",
"2-3 j: qjjfrhwljgczj",
"5-8 k: kkkkkkkkkk",
"1-2 r: rrrrxrcrrr",
"1-15 t: ltttttttttttttttt",
"4-13 q: prlqzqvgpqslqqcqqjq",
"3-12 q: gfbpbdrwrbqt",
"2-5 q: qsxccx",
"4-9 t: slglllcdkjzdmxt",
"2-3 r: rlvrrr",
"2-13 w: wwmkwwwjcwbcwzwwcg",
"3-4 t: ndkvx",
"6-13 b: qflzbbbcfzkbmtx",
"6-10 j: pdckwfhkjxqljnjjw",
"1-5 j: jjjjjqmj",
"2-10 x: xlxxxxxxxfxx",
"1-5 r: rvcnr",
"4-10 c: cnchrcsgcvncpq",
"3-5 j: fjxbj",
"4-11 c: ccdlcsxckcx",
"12-16 m: mmmmlmvmpcmnmmdbmms",
"3-4 q: qqwlqqqq",
"2-6 f: kvcfdv",
"8-10 m: mmmmmmmmmm",
"7-8 j: jjjjjjjj",
"5-7 c: ccccncsjc",
"7-9 f: fffffrpfplhzfff",
"1-6 c: sbcccscccccccccccc",
"5-7 j: njpjqxjrljnqjwjgchtj",
"11-18 b: gktmxhjwbmbpjrbqkb",
"1-4 f: lffbfffffw",
"5-6 c: ccccsc",
"10-14 v: mkbxvxvgvvvvbv",
"5-6 x: jxxxxxx",
"4-6 c: qccmhcccw",
"3-7 s: qwmtwprsxd",
"10-19 d: rkdwbrndmxdsknddddl",
"2-5 p: pppppppppppp",
"6-7 w: wwffxwc",
"2-7 z: pkzcnxr",
"5-10 b: bbqbkbtdbbbbb",
"10-13 j: qmqgvhzkjmfjhjjm",
"5-6 n: nnnnrn",
"7-14 n: qgmlsvnjnrdzcdbstxv",
"9-16 q: qpllvqpmqlqvkhwqqrsm",
"2-4 s: sqpnqsgsssq",
"13-15 z: zzzzmzzzzzzzzzzzzg",
"10-15 b: bbbdbmqbkjbbtbd",
"2-5 h: qrhhhhp",
"11-12 x: xxcxhmxxxxxx",
"13-18 c: ccccccccccccdccccccc",
"12-13 h: knktllrdtgjhhhxpd",
"9-13 g: tdpfvzcqgbslgnbxkgpq",
"8-15 g: gggggggsggggggxggggg",
"1-3 v: wvfvvdvvvvv",
"10-11 b: bbbbbbbbbhzb",
"15-17 b: bbbbbbbbbbbbbbpttv",
"1-7 m: bmmmmmdm",
"2-3 h: rhksbfgh",
"6-7 w: wwwwwgf",
"3-12 h: hkhzhhhhhhhlhhmh",
"3-5 x: xxcxpx",
"7-9 m: mmdmtmjdxmm",
"1-4 n: lnnlnnnnn",
"4-9 k: kkkmkkkkbk",
"3-4 t: tttt",
"5-12 k: tkgwkrwwzcwkhkmk",
"4-5 f: fhfvfgwfff",
"3-5 h: fmbgjrxgh",
"5-6 j: xtwnjj",
"11-15 r: rrrrrrrrprqrrrfrr",
"13-14 f: fdffffflfffvfff",
"1-6 b: krsbnd",
"6-7 b: bbbbvxqbl",
"1-2 v: vvcvvvv",
"7-9 t: ctfcmttht",
"2-7 v: bcxhtdwbfqvv",
"14-15 n: nnsnlnvkqztnxnn",
"2-6 g: rknndvrhbg",
"2-6 z: mzzzdzzzz",
"11-14 q: qqqqqqvrqqzlqkqqq",
"3-4 t: ttcrttjtknjpvwhzm",
"8-10 j: jjjjjjjjjjjj",
"2-7 c: ccnhcccc",
"3-14 m: mmmmmmmmmmmmzmm",
"10-16 w: swsmwwwwwrnwmwwk",
"4-5 m: bmdjm",
"6-11 l: cmlllxllllkrllf",
"14-18 t: tttttttttttttvtltt",
"11-13 f: ffffffffffhfzfff",
"3-6 g: wkzxtrkgr",
"7-10 c: cccpcccccvccc",
"3-13 m: mmbmmzbcmlwmmfnmmq",
"2-3 p: pdszp",
"13-14 r: rqrrfrdrrrwvrrrrrwrr",
"9-11 g: gggwggggfcpg",
"3-9 p: pnppppdpppp",
"17-19 k: gzkktkxkkskkkmkkkpk",
"4-11 x: bmqhtxzqmvx",
"11-14 v: cvsvssqghzjqxm",
"1-14 z: zwxczzszzdmkztl",
"8-9 t: jkpptwctt",
"3-8 z: vqmzzpjj",
"6-10 s: msdrxssssswssjz",
"1-7 z: zhpzzzz",
"13-17 m: mmmmmmmmmlmmgmmmgm",
"9-10 n: qgtcnnnnnkcnnn",
"2-4 v: vrcvv",
"4-5 h: hhhdwh",
"8-9 c: zcccccccc",
"13-14 p: pjxcpmdpppmgwt",
"2-6 c: gskmcc",
"6-7 q: qqqqqqqq",
"3-13 b: gfbxqtnxnqxbb",
"8-10 l: lhrlqlrqlsllll",
"5-8 z: jlzgzzzq",
"10-13 z: zzzzzzzpzkzzgz",
"6-7 d: wddnddd",
"10-11 h: vbhhbhhhhbz",
"7-10 s: sxssksskqs",
"1-12 b: vdgxvsxpgbbpd",
"5-6 n: npnvckn",
"3-4 v: vvjvv",
"9-15 r: njhhqlmcmncjrpx",
"2-8 h: bghrdhhrjbhhhbjz",
"5-7 q: qqqqlflrq",
"9-12 f: qfhfffffffffffff",
"2-3 m: mmmblxmbpz",
"13-16 v: vvvvvvvqvvvvlvvw",
"6-12 b: wbfgbghzbmvf",
"12-15 r: rbrrrrthrrrrrrrr",
"4-8 k: pkprqkkkpsphwnhp",
"8-9 h: hhhhhhhsl",
"1-3 b: bsbn",
"15-16 j: ktjjjxjfjjrjjcjk",
"4-8 z: smzzmzzszzr",
"3-4 m: qmmmzqzlrpt",
"11-12 n: nnnnngnnnnwgnnnn",
"5-10 x: slpbxqfxxxx",
"12-19 q: qqqqgqqqsqqqqqqqsqqq",
"4-10 s: ssstssssss",
"6-11 g: gggggvggggzggggggg",
"12-14 c: cckccccdccxnngccc",
"3-5 j: jnrjvj",
"2-6 t: vtdtms",
"13-15 p: ppppppppppppjpq",
"1-9 j: jjjjjjjjjjj",
"8-9 d: wfdddddkddxd",
"3-7 p: pwpcpvp",
"3-4 h: hhzl",
"9-10 n: lnkjxnsbnn",
"7-11 z: zzzzfznzbzbzbzd",
"1-2 m: mmzlmkm",
"6-7 t: jbmpztx",
"5-6 v: vvbvvtn",
"7-17 q: lvdfpbqxbxdnwqzjlfs",
"3-5 z: zdzzzxczbzzz",
"10-14 f: fpffffffffffff",
"3-8 x: wxxchxjx",
"1-6 x: xxxxxx",
"14-15 x: zmxtcbjxtvxxxxg",
"4-5 f: qfffghf",
"2-3 p: pppp",
"10-12 n: nnngnxnnnhnsbntln",
"1-2 w: ftwwww",
"10-11 f: fffffffffpkf",
"4-5 n: nnnnnn",
"10-11 r: rrrrtrrlrrrr",
"5-6 h: hjhxhhnbhlbxvhs",
"1-4 q: qqqq",
"7-11 p: dkpfppwzpxqqx",
"11-17 l: lzknllnllkgvllllh",
"1-3 z: zzzzz",
"16-17 b: bbbbbbbbbbbbbbbbbb",
"2-4 n: qcpwnhn",
"1-4 v: svvhvvv",
"10-12 l: llllllllllljl",
"1-2 l: xzlllllll",
"1-3 l: plklll",
"4-8 x: xxxxfxbxcxxqxfxpx",
"3-8 b: xgbbwncxclbv",
"5-6 m: mmmmmmm",
"4-5 p: pptppfnpl",
"14-16 x: gwjfkzwrldzxpdxgk",
"10-11 z: zzzzvzzzzzzz",
"3-12 k: kkxkblkkkkkgkkkmkk",
"4-6 p: pppfpx",
"2-7 r: rrmrrrrrrrrrr",
"7-9 p: pbpfpppppp",
"2-3 v: tvvbbjnvv",
"5-8 j: jjjjjjjjj",
"2-5 c: xcwcczjkvgccccvpkd",
"5-7 f: ffffpfqfffff",
"11-13 m: qmmmmmmmlwkmmmmmm",
"14-15 d: dddddddpmddddszdd",
"6-15 b: kptphpbxxqsbxlhxplml",
"16-18 x: xxkzfxgqxdcvzdxlzn",
"10-12 m: clrmmmmksmmm",
"1-3 w: wwpww",
"8-15 g: ggggggnlgggggggggng",
"3-6 h: tnhhxh",
"4-5 l: lllrdllxlnllqll",
"1-2 m: lmjhvl",
"1-4 k: dkkhkkk",
"6-7 x: wncxcxf",
"4-5 w: wwwhfww",
"4-8 b: bshnbbdbmfxbbrc",
"4-7 t: tbdtztm",
"7-8 n: zntlhccn",
"10-14 f: frgffffffflfzlf",
"3-4 b: nzbbbnfbdg",
"2-6 m: srmwsmtp",
"5-6 z: zzpvsrz",
"2-13 m: msmmmhmmmmmmtm",
"3-4 c: ccvcc",
"1-4 n: nnnnnn",
"2-3 j: zdvsj",
"4-6 c: ccctccc",
"4-5 z: zzpdztnrzl",
"4-6 z: hzdzpz",
"2-6 x: gxjxcxxjqcb",
"4-9 j: jjjvjcgzl",
"5-8 z: dmppvjqfzzzzn",
"5-7 v: vvvvvvr",
"2-5 l: lvkkft",
"2-11 n: nnhnqnnvnsn",
"1-3 d: dhndddjfd",
"8-9 x: xxxxxxxxxxxxxxxxxxxx",
"4-9 p: fntpgcwtwv",
"4-12 q: qbrlqzqcnwtjq",
"2-3 f: ftcjvnfkzx",
"1-2 d: dddd",
"7-10 g: gggggghggzgg",
"4-6 g: zhgbgphggtm",
"2-4 l: lblq",
"14-17 n: bnnngnnnnnnznnnnn",
"5-6 f: fxxffffhmswq",
"6-10 p: pppppppppp",
"2-4 q: lsxgqkqsblqqq",
"11-19 x: xxnrgxxxxxxxxxfwmxx",
"4-7 j: jjjtjjljjjjjjj",
"6-7 l: llllllll",
"1-4 f: pfftffffnffff",
"11-13 r: xrrlrrrrrqrrzrr",
"1-3 p: pvpqp",
"9-13 d: ddddxrnddddfdscsd",
"1-2 f: lbbr",
"3-7 t: mpttsgwb",
"2-10 c: jccchctshcpchwx",
"2-4 p: lmpd",
"1-2 n: zlnxnnf",
"2-3 w: fwwtqw",
"9-16 s: sssssssssssssssssssj",
"1-5 s: hssrm",
"15-17 b: ghpvwjbzpksvhsjbj",
"8-9 h: hzrvxhhdz",
"3-4 j: mkjjpvkfhprr",
"1-8 n: cnnnnnnmnn",
"1-4 x: lxxxx",
"3-5 m: pjttcvvcmfvzffcfmmv",
"3-10 r: rsxtvwjrfrqrrbzzr",
"2-7 h: hhckhhr",
"7-8 r: srrrmprrrhkzsndrrkr",
"4-13 m: pdsmlsnxcmhmmsvc",
"3-12 d: ddsdddddddddddddd",
"14-16 s: sssssssssssssjsds",
"3-4 m: djfp",
"2-5 w: bgwpc",
"4-5 r: zffrrqrs",
"4-9 r: rrrgrrrrqrrrrrrr",
"4-6 w: wxwwvw",
"7-8 d: tvddddwtdddldd",
"6-7 g: tgdggggfzrgqggggmggg",
"2-6 t: tgtfdtttttttttqxd",
"14-18 f: fffsffgfffffskfkff",
"1-12 b: qbvbbbbmbsqbcbgbbbcp",
"5-7 d: ddbqhdddsdm",
"6-9 n: tqwnckjsn",
"1-3 n: nnnn",
"5-10 w: wwwwwwwlwwqwwwp",
"3-4 r: rrrr",
"2-12 m: mmchtqmhfdpm",
"6-9 d: dzgzdbddwgdwldb",
"10-14 k: kkkkkkkkkkkkkzkkkkk",
"13-14 v: vvvvvvvvvvvvvvvv",
"2-12 f: btqtbrvkmfzhz",
"1-5 b: bbbbbb",
"7-10 j: jhjnjjwnjbj",
"2-16 h: kjszvtwrjgrvzrqlzcb",
"6-8 t: nxzftvtnrtxg",
"3-6 h: cvhhnhnhhcgst",
"5-8 f: fxgfjnjzz",
"11-12 b: bbbbbnbbbzbqbbbq",
"1-6 h: hjzhhw",
"18-19 m: xrvmftmpkpmrlkqmxvm",
"6-7 v: cvxbdsr",
"5-6 v: vjvvvvf",
"2-3 m: mmzpm",
"3-4 k: mkghkxc",
"1-6 s: sjsmjsstsss",
"2-10 s: wndvkxbmffh",
"9-15 q: qqqqqqqqqqqqqqqqq",
"4-5 f: rffffpc",
"10-11 v: vvvvvvrvvlmv",
"6-7 n: tnnnnlq",
"16-18 g: gggggdgdgggggggggggg",
"5-11 l: lwlfvzlsjll",
"11-14 v: vvvvvvvrvwvvvv",
"12-16 j: jjjjjjjjjjjpjjjx",
"4-6 w: wwwwwr",
"2-4 d: ncdd",
"15-17 c: nccccctccwccccqcqcc",
"3-5 m: mnlmqtsvn",
"7-8 w: swwwwwnl",
"6-12 l: zlplklqldllxlpvb",
"7-9 h: fhkhqnfhhzrhqhhh",
"11-14 v: vvvvvvvvvvvvvv",
"16-18 v: vnvvsllmvswcvzqvvxjl",
"7-9 k: kkkzkkkkskkkzkkkjlk",
"5-17 w: wckwxwlrlwrncxwwb",
"2-4 v: vqvvqgx",
"2-3 b: bbbbbbmbbbbqb",
"4-5 p: ptphbprpv",
"3-6 q: kqqkpqbnt",
"15-20 n: nnnnnnngnnnnnnnnnnnw",
"10-12 p: pppppxpppmpnjp",
"5-10 x: bhwlxkrdxxqvkphvmfgn",
"2-3 l: lllhql",
"4-11 l: wllvwfccllk",
"7-11 d: dmvmmzlngpw",
"2-6 v: rskbvv",
"7-9 k: kwtckkkkx",
"11-12 j: jnjjfzjjjjjjjj",
"2-5 v: rvvnnjjxjnnt",
"2-6 j: ljcqpjmhgmmcxjkgd",
"1-3 k: lklbx",
"14-15 c: ccccccccccccckc",
"2-6 x: xxxxxxxxxxxx",
"1-7 t: btrtxtjgtt",
"2-3 t: sttt",
"5-7 k: kkkkzksxgb",
"3-4 q: mnnxqwtnw",
"8-10 t: vwzmnxjdzx",
"4-10 f: svglffffpzw",
"1-5 s: dsfjsv",
"8-10 m: vmwpmmmjmv",
"6-7 h: hhhhhwxhhhhhhhhhhhhh",
"7-19 n: ktlblznjctnnrzwrknt",
"3-6 n: nzxclnvc",
"2-5 t: wtrttkx",
"9-10 j: jjjjjjxjjj",
"12-13 r: rrrrrjrrrrrwx",
"11-16 c: plvcnjcpnkvcpcmcpbc",
"2-3 c: gccclcslqdmsg",
"10-13 d: dddddddddhddd",
"8-9 w: kklwmwqmwwtwqw",
"2-5 q: qsqqwx",
"3-4 c: hcqvfbccccctcc",
"6-7 k: kkkwqgv",
"13-15 h: qhhmhkjvhhhhngnhhhhs",
"4-5 d: msjdd",
"6-7 g: ggggggg",
"5-8 r: cqrdrfxnrrjrsr",
"9-15 r: lprrqrrrrrrrrrrbr",
"6-7 h: hhrqhrlhhh",
"2-3 g: glgg",
"1-11 n: nnnnnnnnlnnjzwnnnn",
"3-6 l: bwllrl",
"2-6 p: nptphqv",
"3-8 l: lrlknvlpcm",
"2-8 g: wjbgpjrlfsgg",
"5-6 w: swwfww",
"1-8 p: pptpxppppppwpppfx",
"3-4 d: wlddg",
"15-17 c: sccccccgccccccccc",
"4-6 n: nnnhnp",
"8-9 r: prvrxmprlzxs",
"9-12 t: ttttttttttttkrtt",
"5-6 h: hhhhkfh",
"1-10 q: psqpzpkqtcq",
"4-7 f: ffflnfzkf",
"10-11 j: jjjvjjxfjjj",
"4-11 p: wlhgrxlclnt",
"1-14 t: wfntvttxmldhqg",
"14-19 c: ccpczqrccfhtcvljlvc",
"11-12 w: wwwwwwwwwwwww",
"2-8 z: lzsdqxzz",
"17-18 p: pppppppppppqphppprpp",
"2-4 j: wjjq",
"4-6 f: ffkfffgff",
"8-20 x: phxxxxxnwxxdqzxxxxxx",
"9-10 d: xvddddsldd",
"3-10 l: rglllxlnfl",
"6-15 d: ddddddgddpddddwd",
"6-7 w: kwwwwhs",
"8-10 r: rrrfmrrrrd",
"2-11 x: xcjcgtkzkhtmrxqjxxx",
"4-5 v: wvmdr",
"7-8 d: dddddddd",
"7-13 l: lllllldlxllln",
"13-14 z: zzdrzzzffzzzzzznzz",
"3-4 j: zjjj",
"8-9 s: sssssssbss",
"6-15 f: pfsfvfxqpffqfqf",
"9-11 p: pjpppprzpcphvppwp",
"3-4 c: ccrd",
"9-10 c: qcwbccccjhwvtwcccnc",
"3-4 x: xgxx",
"5-6 x: xgxzxxxxxxx",
"5-10 l: kxdgnqrkpqgcmcmnk",
"4-7 v: vvvpvvvv",
"1-4 n: nqnnnnnn",
"5-6 p: pprgpst",
"14-20 q: wlxrjczhxwdctvpcgxqc",
"5-8 g: gcggbggggggzgg",
"10-11 g: ggggtggggggg",
"14-18 h: hhchhhmhhbwhhlhsvrh",
"3-6 f: ffmfffffffff",
"1-12 n: rnnnnjwnnnnv",
"7-12 l: bpxlhthjplljwxvvvjm",
"4-5 j: jhjjjjj",
"9-12 q: qvqqqqqvqsqq",
"3-4 d: ddnvdddddgddd",
"1-7 h: xhhhhhkh",
"1-4 f: fffff",
"3-4 q: qfrq",
"5-8 k: kkkkgkkqkk",
"14-18 k: nkkkkkkfkkwkkkkkqk",
"1-4 q: qqdc",
"17-18 f: ffffffffhffffffffff",
"16-17 b: bbbbbbbbbbbbbbbdm",
"17-18 z: zzzzzzzzzznzzzvzmwzz",
"3-4 g: tggd",
"4-6 t: mlttlqqz",
"11-18 f: fgffgwlffffftfzfrt",
"7-9 h: hmmhhhpljjn",
"16-17 m: mmrsnmmzfhtmrjwmmjm",
"2-3 l: cllcbm",
"3-4 k: fkkkqbpbmmcd",
"9-10 f: kfmchwkwzfh",
"5-6 j: jjmjjjjjj",
"3-5 v: vsvbfvvh",
"3-4 k: tgkk",
"2-8 k: lscvjjnhpxl",
"7-8 v: vvlvvfkqqv",
"8-9 q: qcqqtqqhqvqqtq",
"12-14 z: zzzhzwzzqzzzzwzzlz",
"5-8 k: kzknkkkkkp",
"5-6 s: spsssw",
"2-3 k: kmkh",
"9-10 f: vnlxmstqbsg",
"1-2 k: kkkk",
"6-15 r: rcrrrsrrrrrrrrzrrqrr",
"3-8 c: cfczjwkcxbc",
"15-16 k: kkkkgkkkkkkkkkkh",
"5-18 c: ccdcxtccccccpcfccv",
"6-11 w: qdwnfhzlwwwwxwwgwhwk",
"1-6 d: fddddddhddw",
"7-10 p: wpbppvpzwc",
"12-14 k: kkkkkkkkkkhhkslsk",
"4-7 r: hdrrfhrqrdmcbnlrrjbr",
"7-10 b: bbbbbjbbbbbb",
"4-7 p: pzppzppsp",
"11-12 h: qhhhhhhqhrlwlhhthh",
"6-9 s: sbssxsskswvp",
"17-18 b: bbmpbbhhbnsbbbbbbb",
"8-9 g: wgggktggg",
"1-12 s: vsssssfssssrqk",
"2-5 s: bsgssxc",
"3-4 c: ccccccc",
"2-3 d: dddd",
"5-7 r: ldlcjrrlrngr",
"5-10 m: msmjqmmmmm",
"3-7 c: ccccccccc",
"13-14 p: pppxpppppppppcpppp",
"2-3 r: jrfrvrk",
"11-12 g: gggggggggggg",
"6-18 t: ctvqgcrgnxdvbzjfrrbt",
"6-11 f: rnjptfnwgxfp",
"5-8 w: wwwtwwwwww",
"14-15 r: rkrbrvrrrgrczrz",
"12-13 t: trtjtttlnxnxx",
"5-8 l: qnwllfsl",
"2-15 g: xgtcjftlqqfwkggpf",
"11-16 j: jjjjjjjjjljjjjjjj",
"8-9 b: bbzbkbbvgcbb",
"5-6 r: dvkxrrsvrrksszsdr",
"12-13 j: jjjjjjjjjjjhdjjj",
"16-17 z: mzzzrxfzzzzczzgzz",
"2-15 p: lpjxcdzjmnghfppr",
"9-15 s: ssssssssnsssssss",
"1-11 t: tfvtqvlbtld",
"4-5 k: kkkczkkkvkkk",
"2-7 p: ptphppvppppp"]
def ParsePasswordAndPolicy(line: str):
password = line[line.find(':') + 2:len(line)]
character = line[line.find(':') - 1]
minNum = int(line[:line.find('-')])
maxNum = int(line[line.find('-') + 1:line.find(' ')])
return {
"password": password,
"character": character,
"min": minNum,
"max": maxNum}
def VerifyPasswordSecondPolicy(passworddata):
parsedData = ParsePasswordAndPolicy(passworddata)
pword = parsedData["password"]
firstIndex = pword[parsedData["min"] - 1] == parsedData["character"]
secondIndex = pword[parsedData["max"] - 1] == parsedData["character"]
return firstIndex != secondIndex
def VerifyPasswordFirstPolicy(passworddata):
parsedData = ParsePasswordAndPolicy(passworddata)
characterCount = 0
for character in parsedData["password"]:
if (character == parsedData["character"]):
characterCount += 1
return(characterCount >= parsedData["min"] and characterCount <= parsedData["max"])
def CheckPasswordsPartTwo(input):
validPasswords = 0
for line in input:
if (VerifyPasswordFirstPolicy(line)):
validPasswords += 1
return validPasswords
def CheckPasswordsPartOne(input):
validPasswords = 0
for line in input:
if (VerifyPasswordSecondPolicy(line)):
validPasswords += 1
return validPasswords
print(CheckPasswordsPartOne(problemInput))
print(CheckPasswordsPartTwo(problemInput)) | problem_input = ['2-5 z: zzztvz', '2-8 d: pddzddkdvqgxndd', '4-14 r: rrrjrrrrrrbrrccrr', '2-7 r: zrgsnrr', '9-10 z: zzzxwzznpd', '8-13 g: gggggggxgggghggg', '1-6 c: xcccxcccccz', '3-4 b: bxbt', '8-11 d: dddddddzddv', '4-14 m: kxdmmmdmfwmmmdfr', '16-17 g: ggggggggggggggggg', '2-3 f: ddvdlff', '9-11 g: ggggpfgggggg', '7-8 c: fdhctccc', '3-6 c: tmcdcncqcvccg', '2-3 l: clllll', '1-9 b: bbbbbbbbbb', '10-15 w: wglmwwwrnnzgwhhwvvd', '10-14 g: ggggggxsgggqggg', '9-19 q: fjlqbvtdngwvtbnsgfm', '1-2 k: kgbkkv', '4-10 m: mmmmtmmmmgm', '3-4 h: hplh', '5-7 q: qqqqrqk', '3-12 v: zbvlbpxcrnvvwjpwl', '1-4 r: crrr', '4-5 h: hhhrj', '2-4 r: mhrr', '9-10 c: pccccsccbk', '10-16 n: drnhqnnnnqnnpxmh', '5-6 v: vvvnvvg', '11-12 c: ccccgcccccpc', '5-10 b: bdbjbbfmfbb', '9-13 w: zwbwwzhwwkwsxdfwglx', '5-19 v: vvvvvqrvvfvgvvvvmvv', '3-9 d: dddgztdljb', '12-13 s: swssssrsssshx', '5-6 l: dllkljq', '4-5 q: qqqsdqq', '2-4 w: tmwg', '10-12 l: llllsldflllllljjlxl', '3-11 s: sjtsssssksbs', '1-5 v: hvvtmvgvv', '3-12 g: ggvgkgfgggghgg', '3-4 p: ccpp', '3-9 v: vfvvvvvvvvvvvr', '8-16 k: kkkkkkkkkkkkkwkkkk', '8-9 x: wxbrxfdrw', '7-9 n: nnnfnnnnn', '7-11 w: wwwwxwwwwwzxw', '6-9 n: nknnhnnnnlnnn', '10-12 l: qllllllllqbl', '17-19 p: pppppppppppppwppkpp', '4-5 q: qqqqqq', '7-15 v: vvvbmbjvjznzdhfvtn', '3-12 w: wwwwwdwwwwwwtwwwww', '7-10 x: mmgmknpvdbxdl', '9-10 v: jljttxpvvv', '11-15 d: dshddnddqdhddvm', '1-3 r: vrqrrr', '6-7 c: ltcbpccw', '5-13 q: qqqqcqqqxqrqg', '3-7 l: lhlmhzl', '2-3 l: lxntjnttkllll', '3-4 b: bbnsb', '5-6 j: rjppzvjdjj', '4-10 g: fgggjgvfggggggsggm', '11-12 z: ztzzzkzzzzsvzzzzt', '2-3 h: hcvbf', '7-13 s: sswkwhsdqsdcs', '3-10 j: mghjglnbdhjp', '6-8 x: dfxrxxsxpsxxxxmc', '11-12 f: fffmfcdpffmpflfffdw', '4-7 n: nnnknncnn', '2-6 k: tzqlzqhrncvktfwvswt', '2-4 h: pqplh', '8-13 h: zhlwqvmnkjhhtkf', '2-3 l: llll', '19-20 j: jjjjjjjjjjjjjjjjjrjj', '3-14 n: crnnrgpmxxlrfljk', '2-4 t: stpr', '11-13 c: cctcccccccccccc', '5-6 q: fqqqqqdwtwqjq', '6-7 z: zzzzzzg', '8-16 j: njjgsjjljktjcbjvjc', '3-6 c: swjccc', '5-7 h: ghvwjmzm', '9-12 s: sssssmvtdckmfs', '3-4 r: bsrm', '6-7 c: ccctcccc', '6-10 t: swndrtcvtl', '13-19 v: vjvxvvvdvvvvvvdvblv', '5-7 w: hnwwwtwp', '8-9 k: kkkkkktzxkkv', '4-6 g: xpsxgs', '2-3 r: xrrdxm', '2-9 f: ffvqxxvsf', '7-10 t: tttttttttt', '4-6 q: bbqqqqqqbq', '7-9 q: xjcwqhprgh', '3-6 j: jjjjjjjxjjj', '1-3 l: blll', '2-5 p: phbppp', '3-4 p: phpb', '2-15 r: mwgnrkxrrbmgpzrdrr', '8-13 x: jsrlvxmxwglkh', '4-11 b: ctcbsjgjplbthhrskfnb', '6-7 q: qqqqqfvcq', '10-11 d: ddddddjdbndddd', '8-9 p: pppppppkf', '10-14 q: qqqqqqnqzgqsqv', '12-13 b: bbbbbbbbbbbbb', '6-11 h: khnkthfhhdhrhh', '5-6 g: gzggwcgq', '2-4 f: fbfg', '6-9 f: ffvfsfvffxff', '6-7 t: tsfdltt', '14-17 t: tttttttttttxtcttp', '3-4 v: vwtv', '7-10 x: pxmldqqxmw', '1-2 s: pdssssssss', '5-6 n: snwnml', '3-8 t: tjnpjqzxbj', '5-7 n: mxkqfnjb', '4-12 q: qqqkqqqqqqqkqqq', '4-5 d: pjhnsfdgddjsddvpxxd', '14-15 t: trttdtxwtdmtttt', '3-4 j: jjvz', '1-2 p: xqpppp', '11-15 d: dddpdddddddddddq', '15-16 b: bnbbbbbbbbbtbbdbb', '9-11 w: wwwnwwmwbghw', '15-18 g: tjwqbgwmvpvghxgzkgj', '3-4 j: jjps', '9-12 f: ffflfffmfnffvff', '1-3 g: gbgstndgggqrdbtpdqdr', '4-6 f: fflxfqffff', '10-14 t: ttttttttttttttttt', '1-7 v: vvsqlvvvvkj', '3-7 b: wvbxlwbjtbbbvh', '3-7 p: hqvsvpn', '2-6 f: fkwfhf', '3-11 d: dzrwnffrdvs', '8-9 s: sssdssztlssqksx', '12-15 t: tttttttttthtttt', '5-6 m: mmmmmmmm', '2-3 n: dnnl', '12-16 w: wrwwtvwwwwwwwwww', '2-4 j: jjjjsj', '7-11 x: xxxxxtcxxxlxxx', '8-17 n: nbngnnnsnjnbhnntzwxt', '5-6 b: tmbdgn', '15-16 x: xqlpjxbbxnrbxxxxqmkf', '1-3 c: ccclf', '12-14 m: zhmmmzltwhrmfmx', '15-17 c: ccvcxcmccgccccbcccc', '10-13 k: mkgkljkkkjkkg', '1-4 b: ckdr', '10-12 b: bvfbgbbbbbbb', '2-4 v: jfvcv', '2-7 p: jswmqpmc', '11-16 b: bbbncbpmbjbbvgrb', '1-6 n: ktjcwr', '2-9 l: lllrwljlnlwllln', '17-18 h: hhhhhhhhhhhhhhhhzfh', '9-14 b: bbbsbqbbjjbbkb', '7-12 j: jjjjjwwjjjjcj', '10-13 w: wfwwwwwwwjwww', '2-6 j: bjghpj', '13-16 z: zzzzzzzzbzzzzzvg', '10-11 f: ffffkfffcfxff', '3-4 m: mmmmkjvzmkp', '2-5 k: kkkkk', '5-6 r: rrbrrs', '1-2 c: ccqjmc', '13-14 r: rrrrrrrrrrrrztr', '8-12 z: zrzzzzzqbzvdz', '4-9 m: hlgmtvvqs', '9-10 t: tthttrtbrnt', '2-4 k: snpkzhck', '12-13 x: wlxwwxxxhgxxx', '11-16 h: ncmfhhvgghhhhhjhd', '13-15 g: sgxgfntgjnxkgbgm', '4-13 s: vqkslldmgmfrd', '3-14 z: zzzzzzzzzzzzzzzz', '14-15 c: ccccvccccccsmlpcfccx', '4-5 p: pppppp', '9-10 z: kgblzrqbzz', '13-15 p: pppppptpmppbpppqpp', '7-8 b: dntbbcmswb', '16-17 d: dddddddddddddddgd', '10-11 r: rrrsrmrrrqtr', '2-3 q: qtqgz', '6-8 c: xztzfkcch', '14-15 l: lllflllllllllzsl', '1-6 s: zssssss', '5-8 d: hdddwddvdpd', '10-12 j: jjjjjjjjjpjbj', '1-9 q: tqqqqqqqqnqqwqk', '2-4 t: shpwwttwqb', '8-9 s: xrssssssz', '3-4 c: cjcfc', '3-10 v: rfvzsncmfv', '4-7 t: lshczltjfqkmkt', '13-16 x: xxxxxxxfxxxxzxxrxx', '1-3 z: pzkzlzmzz', '4-5 d: ddkbfdtdd', '9-10 r: rrrrrrrrlfkj', '3-7 s: svtbsssjsldts', '10-13 c: ccccgxzqtctrc', '1-7 q: zgwqgrx', '6-8 f: ffnffrfg', '4-5 f: kffcffp', '1-2 m: ggcm', '5-6 z: zzzdgz', '9-14 j: jjjnjjjjjjjjjjjj', '2-17 d: xttgzggnfhsrjqdbppps', '5-6 f: xrcfff', '1-3 z: wzzg', '1-2 h: hhhvl', '13-17 q: qqqqqqqqqqmqqqqqqq', '2-3 q: bjqq', '1-5 w: zwwwgww', '5-7 s: jnvpmgj', '9-10 q: zctgztwpqq', '16-20 j: jkjjkjnjwqqjjjzgjjpk', '16-20 k: kkkkkkkkkkkkkkkkkkkk', '17-18 d: dddddddddddddddddbd', '3-5 d: dngrhxb', '10-12 t: tmttttttttrttwh', '7-9 q: nqqqkqcqqqqq', '7-9 z: zqzzzzwctng', '10-13 d: dddjldsddkddjpddd', '3-7 g: lgglgggggphx', '6-7 b: llkbcdxwtzrblp', '1-5 s: dssdscpzwcn', '2-6 h: hhphhhhhh', '4-13 z: smkzzpzjfzzbzqzxzjz', '2-5 j: jjjjjj', '8-11 p: lgmppspppppk', '9-10 c: ccccccccdnkc', '3-9 m: mmfmmmmpkmsmmm', '13-15 m: mmmmkmmmmmmmgmhmmm', '5-6 x: xxxxxxx', '10-14 b: bbbjbqbbwcbbbb', '3-12 f: ffmfffffffnzfffff', '11-12 m: mmmnmmmmmmmmm', '8-12 v: jptmbccvmvsxchfvv', '4-5 s: ssssns', '12-14 j: jjjjjjdjjjjvjhjjj', '11-13 j: wjjjljjjcjjjjqjjp', '1-7 g: ggggggggdg', '2-3 v: bkjqv', '4-13 q: qzhldwthbwgtr', '12-13 p: ppplppdgpppppp', '11-12 f: flffxfpffprgfff', '8-14 b: mbbbbbtbwbhstbbbbbbb', '6-7 m: bqmsmmm', '1-3 w: qxlggmxtwj', '3-17 c: dwbkjcwqcrccbcxcnvxc', '11-13 p: ppxppppdppxpzpppp', '4-10 v: vfvvfvzvqv', '1-7 m: mmmxmmmmmbmmrmmmmmm', '2-12 x: xrdxwxzwfxpxtqxxxgxp', '6-11 w: swzwwkddmsrxwzfg', '6-8 g: ggggggggggg', '3-4 h: tzshs', '7-8 t: zjtzpclm', '5-6 k: brzkzk', '14-15 c: cccccccccjccccc', '2-3 h: hhfh', '15-19 w: wwwwwwwkzxwwwwwwwwh', '8-10 f: mjmwqnlnhf', '3-8 l: ksllllplllc', '1-3 q: gjmhq', '2-9 l: lwklcxllf', '5-7 p: ppcclscppgdxmg', '3-6 z: fpxmpz', '8-11 r: vrrrrrrrrrrrrrs', '1-7 q: cqqqqqgq', '13-14 t: tttztttttttttt', '4-6 q: qzkqsqzmhhq', '8-14 l: llllfllplllgzll', '5-9 m: mmmtmmmmm', '9-14 l: llllllllrllllltl', '3-4 r: czrr', '2-5 s: lssslssnmfqss', '14-17 h: hhhhhhhhhhhhhhhhhh', '3-4 x: xxxx', '7-8 x: zdjbxxsl', '10-13 n: ffrnphpzhnfxnncptmn', '7-11 m: mmmmmmdmmmmmf', '1-2 j: jjjjjjjjjtj', '2-6 g: kglgsq', '3-8 x: csvxxxxxztxdxpw', '3-9 m: qbqwfmfpjmbnbcccgfgk', '2-14 v: rmqhqlrvcjdhpw', '8-9 p: pppppppvwpm', '8-12 f: zvfjxbdgzjbplm', '2-3 f: frff', '7-9 f: htkxffclfr', '4-7 v: cvqjctzvzvvv', '6-7 f: fjffflj', '1-4 b: tbnpb', '8-10 t: tjpbtfzhtfsdjtlttttt', '8-12 h: hhhhhhhhhhhrh', '3-5 n: hxbwgjchklnplnb', '1-2 z: jzvz', '4-7 z: vzzzvcz', '11-12 f: fffffvcfskcfcfftqf', '2-5 p: cxktpckkqkgjpptvgp', '9-16 b: bbbbbbbbkbbbbbbbbbbb', '10-11 p: jcpnpppxpppb', '7-9 n: sncnrzncnzdnngn', '10-11 n: ttqrrkbspnn', '11-19 c: ccczncccccsccpccccjc', '1-2 h: hhhbwhhknzf', '5-8 q: zxbtktkf', '2-6 x: trxhzl', '1-5 d: dskddkqdgqkhcz', '7-12 c: ccccccccccccc', '7-9 t: kskrrhtxtvsqzt', '5-12 v: vvvjvwrdfscv', '6-10 z: pzznznzczkwzzzmzz', '15-18 t: tttttntttttttttttttt', '4-6 m: bxmmmm', '2-8 k: tkkhqwkkkpk', '6-11 p: pppppgmpppppp', '7-10 b: bkbcbbrrbr', '6-11 c: cctccccbnbcvccc', '2-5 t: ccpxgwzqktxwjf', '4-11 s: sssssscsssssg', '3-4 d: ndpk', '3-4 z: gjzzzkbhzzs', '8-9 t: ttttttttt', '5-10 l: lllldmmlln', '9-15 j: njzjgjjjjjjjprjjj', '5-7 p: zppppppgkp', '2-6 r: rvdrrrgdnrrrlrr', '6-7 k: kkkkkkkk', '3-4 x: nxxxmtmljgldjx', '2-6 f: qfxxxftf', '1-9 z: zzdlqgzwzzjw', '6-8 n: rnjnstwm', '4-6 w: vhfhwckw', '3-7 k: kkpkkfpk', '5-7 k: kkkfzkhkk', '1-11 j: jjjtjjjjmjs', '2-17 w: wlwdkkwmkwskpstxvrwr', '5-11 g: kgpgjspqlwnx', '2-6 l: lpllld', '1-6 d: xwkvgvkdxlljpdqwmhs', '5-6 z: llrzzsz', '4-5 l: lllll', '18-19 g: gggggggngggggggggggg', '1-10 x: kkdxwkrtfh', '3-4 t: ttrqzttbsrt', '14-16 s: ssshsssssssssnsss', '2-6 k: kjzkxkkhkp', '2-10 b: bbbbbbbbbbbbbb', '1-9 v: vvvvvvvvvvv', '11-12 m: mqmmmmmmmmhsl', '5-6 s: sssmsss', '14-20 s: srssssssdsssskssksvs', '1-3 r: rrrr', '4-7 d: zddkdptdfdw', '6-7 g: rggglggtgkgg', '3-5 c: bcctcvpcprcccqccpcrc', '8-9 r: rrrxzrrlmrd', '12-17 c: hcctccccbqcctscsscv', '15-16 d: dkddddjdddddsdhwdddj', '13-14 b: blbbbbqbhbbbmz', '2-10 p: hvxqpjqstv', '1-4 p: plxp', '3-6 z: zzdlzqjzzz', '1-14 s: qsssssssslshswsjh', '3-5 r: grrrnrrrsvrrrdrrrjrr', '1-4 d: dfdjdxbpdddf', '2-3 p: pppppp', '16-18 c: cmcccjxfclcgmchswq', '9-11 x: xxrxxxxxvxrxx', '13-14 p: dpppppsppspftpppwp', '15-19 h: hhhhhhhhhhhhhhhhhhhh', '6-12 q: qqqxqqqqgqqpqqqqqqqv', '10-12 g: gqgdgzhgghjgdd', '2-6 p: pnppppp', '3-14 l: lllllllllllllllll', '12-19 h: hhdhhhhvxrfhcshhwxh', '16-18 m: mmrmmmmlmmgmmmmmmmmm', '8-11 t: tntmlpgfttv', '8-11 f: mffffffffff', '15-18 t: tftttttttjwtttjttjt', '5-12 d: pzdrdqxzqzwgzwcgsv', '4-9 d: cdwdmhksdzgd', '9-17 l: mlsllmgdlhlgmfglr', '1-5 r: rrcnr', '3-4 c: ccccccc', '1-2 g: cskvbgnlgnpfrh', '5-10 n: tfnnvnnqbbn', '1-15 g: fxpdggmtrqggdglh', '3-4 t: ftttppdtdbxzqw', '5-6 p: qpxsjt', '8-14 r: bkltjzprkhrhmrg', '1-11 f: gffkkmpflxlqfsf', '1-4 d: vddknn', '5-7 l: llllllvlllll', '2-11 b: bbbbbbbbbbbbb', '1-3 h: hhhh', '13-14 q: jqqqcckhdqkqqj', '4-14 p: mfwcbqxpdkhtdfj', '3-4 g: ggggg', '6-14 v: vvvvvvvvvvvvvvv', '16-18 v: vvvvvvvsvvvsvvvvvv', '9-13 l: llllllllllllllllllll', '3-4 r: zjrr', '6-8 x: xxxxxxxxx', '2-6 p: zlgpps', '3-8 t: ttjtbttjt', '18-19 k: kkkkkkkkkkkklkkkkkk', '8-13 q: hcvnkpnqfzqmqscwf', '15-16 p: ppppppppppppdpmr', '7-12 c: cqccccdcccwsccc', '8-12 d: ddhddddgdddgdddd', '3-4 x: xxxx', '6-8 w: wwwrlzcbwhwlqwwwv', '1-5 h: hhhhdwhhlhph', '4-5 f: fffvz', '3-8 c: ccqqcccc', '3-5 k: xkwkdkh', '2-3 s: ssssshhsss', '4-6 x: gxxxcx', '8-12 l: vsnlqbjltbtlphjtf', '3-6 n: tgpnqxnntkmntvl', '9-12 f: cjzkldhmvclk', '4-7 b: zgpdznb', '1-12 s: ssssnrssssscnssssq', '14-16 p: pppppppppppppwpjp', '4-14 b: xpbbvcbbbspgbbqbw', '5-6 s: smssrb', '5-16 b: tzbdqxgkbxbvzwvt', '2-14 f: vzplvvftrcdmgs', '13-15 t: tttttkthhtzttdt', '2-3 s: vpwss', '9-14 s: sssssssfssssss', '7-13 s: tsnwzxwzjzsjkchlg', '12-15 q: qlqbbfqqvqmcqhvq', '12-13 g: gggggggggggggggggg', '1-3 g: jjdqzgwgggggg', '5-6 n: nlnxnnnwv', '15-16 m: mmmmmmmmmmmmmmmjmmm', '2-6 m: vmrqrmz', '4-5 n: nvnnwb', '13-15 x: xgblxvxmpskqwvlx', '6-7 v: vvvvvvvv', '8-10 r: fsrrdprbrfxhrdv', '4-5 j: jsjjf', '4-6 k: kkkjkkk', '5-9 j: cflfvjjtjljjhbhnj', '9-11 t: xswktxtqrbm', '4-16 r: drrrrrrrrrrrrfwnr', '13-18 p: bbkplmplqmppppspmp', '9-15 r: kgnwvxmcrmltpcgwvrb', '4-5 c: jcwcccnc', '2-4 f: ffff', '8-12 d: rvsdddvdtdcd', '3-10 v: qvdzjhcvsz', '10-11 x: qcmvlvgxkxx', '6-9 s: sxsspsksjssfsnssrvs', '3-7 x: zbxxxxxwrpxgr', '9-17 j: hrppktjsqhzqwxhdz', '5-7 z: nzzzvzswz', '6-7 p: ppppsbpp', '10-13 f: fffffffffhffmfcxffpf', '9-12 f: ffffffffsffmf', '14-15 r: rrrrrrmrrrrmrrzr', '3-6 w: whwwwwwwwwwwm', '7-8 b: btqbbbbbbbz', '13-16 z: zznbbdmbzhjzzzzzmngd', '6-7 q: fqmqltdqqqdwqss', '3-4 h: hphhhhh', '1-3 r: rdgktrmrmdztrkmn', '17-18 w: wwslwwsmwswwfxwwwww', '6-8 p: ppprpppp', '8-10 z: zzzzzdzrztzzzz', '8-11 m: tmldmmwxmjmrmtrmm', '12-16 s: phpprsdvkmsssmssnqwm', '3-4 h: qplnhkhh', '14-19 w: wvxvqzqzdnjjwwtdbwc', '2-4 p: fpnp', '3-5 c: ccccpcccccccc', '3-12 g: ggwggbgfggrxggg', '4-8 r: rrszrgdbrw', '2-4 n: vnmgjtps', '8-10 j: mjjjxjjgjc', '2-6 m: vmmhmm', '3-4 w: vwww', '10-18 v: mvnbqbvcpkvnhqvvbvzv', '15-19 g: ggtggggggbggggxggglg', '7-13 m: mmmmmmjmmmmmmm', '5-11 d: ddxhdndtfdddndxzdqk', '3-11 f: ffnfbfffffgrff', '7-14 w: fflfpgklzlxfwwt', '15-17 d: zxllzgbjrrddnmdhdwp', '1-5 n: nnnnknnn', '15-16 j: ffkjjljgndljjnjscs', '2-3 v: nvvxvntqcrqq', '5-6 c: rcccgpcc', '2-3 j: qjjfrhwljgczj', '5-8 k: kkkkkkkkkk', '1-2 r: rrrrxrcrrr', '1-15 t: ltttttttttttttttt', '4-13 q: prlqzqvgpqslqqcqqjq', '3-12 q: gfbpbdrwrbqt', '2-5 q: qsxccx', '4-9 t: slglllcdkjzdmxt', '2-3 r: rlvrrr', '2-13 w: wwmkwwwjcwbcwzwwcg', '3-4 t: ndkvx', '6-13 b: qflzbbbcfzkbmtx', '6-10 j: pdckwfhkjxqljnjjw', '1-5 j: jjjjjqmj', '2-10 x: xlxxxxxxxfxx', '1-5 r: rvcnr', '4-10 c: cnchrcsgcvncpq', '3-5 j: fjxbj', '4-11 c: ccdlcsxckcx', '12-16 m: mmmmlmvmpcmnmmdbmms', '3-4 q: qqwlqqqq', '2-6 f: kvcfdv', '8-10 m: mmmmmmmmmm', '7-8 j: jjjjjjjj', '5-7 c: ccccncsjc', '7-9 f: fffffrpfplhzfff', '1-6 c: sbcccscccccccccccc', '5-7 j: njpjqxjrljnqjwjgchtj', '11-18 b: gktmxhjwbmbpjrbqkb', '1-4 f: lffbfffffw', '5-6 c: ccccsc', '10-14 v: mkbxvxvgvvvvbv', '5-6 x: jxxxxxx', '4-6 c: qccmhcccw', '3-7 s: qwmtwprsxd', '10-19 d: rkdwbrndmxdsknddddl', '2-5 p: pppppppppppp', '6-7 w: wwffxwc', '2-7 z: pkzcnxr', '5-10 b: bbqbkbtdbbbbb', '10-13 j: qmqgvhzkjmfjhjjm', '5-6 n: nnnnrn', '7-14 n: qgmlsvnjnrdzcdbstxv', '9-16 q: qpllvqpmqlqvkhwqqrsm', '2-4 s: sqpnqsgsssq', '13-15 z: zzzzmzzzzzzzzzzzzg', '10-15 b: bbbdbmqbkjbbtbd', '2-5 h: qrhhhhp', '11-12 x: xxcxhmxxxxxx', '13-18 c: ccccccccccccdccccccc', '12-13 h: knktllrdtgjhhhxpd', '9-13 g: tdpfvzcqgbslgnbxkgpq', '8-15 g: gggggggsggggggxggggg', '1-3 v: wvfvvdvvvvv', '10-11 b: bbbbbbbbbhzb', '15-17 b: bbbbbbbbbbbbbbpttv', '1-7 m: bmmmmmdm', '2-3 h: rhksbfgh', '6-7 w: wwwwwgf', '3-12 h: hkhzhhhhhhhlhhmh', '3-5 x: xxcxpx', '7-9 m: mmdmtmjdxmm', '1-4 n: lnnlnnnnn', '4-9 k: kkkmkkkkbk', '3-4 t: tttt', '5-12 k: tkgwkrwwzcwkhkmk', '4-5 f: fhfvfgwfff', '3-5 h: fmbgjrxgh', '5-6 j: xtwnjj', '11-15 r: rrrrrrrrprqrrrfrr', '13-14 f: fdffffflfffvfff', '1-6 b: krsbnd', '6-7 b: bbbbvxqbl', '1-2 v: vvcvvvv', '7-9 t: ctfcmttht', '2-7 v: bcxhtdwbfqvv', '14-15 n: nnsnlnvkqztnxnn', '2-6 g: rknndvrhbg', '2-6 z: mzzzdzzzz', '11-14 q: qqqqqqvrqqzlqkqqq', '3-4 t: ttcrttjtknjpvwhzm', '8-10 j: jjjjjjjjjjjj', '2-7 c: ccnhcccc', '3-14 m: mmmmmmmmmmmmzmm', '10-16 w: swsmwwwwwrnwmwwk', '4-5 m: bmdjm', '6-11 l: cmlllxllllkrllf', '14-18 t: tttttttttttttvtltt', '11-13 f: ffffffffffhfzfff', '3-6 g: wkzxtrkgr', '7-10 c: cccpcccccvccc', '3-13 m: mmbmmzbcmlwmmfnmmq', '2-3 p: pdszp', '13-14 r: rqrrfrdrrrwvrrrrrwrr', '9-11 g: gggwggggfcpg', '3-9 p: pnppppdpppp', '17-19 k: gzkktkxkkskkkmkkkpk', '4-11 x: bmqhtxzqmvx', '11-14 v: cvsvssqghzjqxm', '1-14 z: zwxczzszzdmkztl', '8-9 t: jkpptwctt', '3-8 z: vqmzzpjj', '6-10 s: msdrxssssswssjz', '1-7 z: zhpzzzz', '13-17 m: mmmmmmmmmlmmgmmmgm', '9-10 n: qgtcnnnnnkcnnn', '2-4 v: vrcvv', '4-5 h: hhhdwh', '8-9 c: zcccccccc', '13-14 p: pjxcpmdpppmgwt', '2-6 c: gskmcc', '6-7 q: qqqqqqqq', '3-13 b: gfbxqtnxnqxbb', '8-10 l: lhrlqlrqlsllll', '5-8 z: jlzgzzzq', '10-13 z: zzzzzzzpzkzzgz', '6-7 d: wddnddd', '10-11 h: vbhhbhhhhbz', '7-10 s: sxssksskqs', '1-12 b: vdgxvsxpgbbpd', '5-6 n: npnvckn', '3-4 v: vvjvv', '9-15 r: njhhqlmcmncjrpx', '2-8 h: bghrdhhrjbhhhbjz', '5-7 q: qqqqlflrq', '9-12 f: qfhfffffffffffff', '2-3 m: mmmblxmbpz', '13-16 v: vvvvvvvqvvvvlvvw', '6-12 b: wbfgbghzbmvf', '12-15 r: rbrrrrthrrrrrrrr', '4-8 k: pkprqkkkpsphwnhp', '8-9 h: hhhhhhhsl', '1-3 b: bsbn', '15-16 j: ktjjjxjfjjrjjcjk', '4-8 z: smzzmzzszzr', '3-4 m: qmmmzqzlrpt', '11-12 n: nnnnngnnnnwgnnnn', '5-10 x: slpbxqfxxxx', '12-19 q: qqqqgqqqsqqqqqqqsqqq', '4-10 s: ssstssssss', '6-11 g: gggggvggggzggggggg', '12-14 c: cckccccdccxnngccc', '3-5 j: jnrjvj', '2-6 t: vtdtms', '13-15 p: ppppppppppppjpq', '1-9 j: jjjjjjjjjjj', '8-9 d: wfdddddkddxd', '3-7 p: pwpcpvp', '3-4 h: hhzl', '9-10 n: lnkjxnsbnn', '7-11 z: zzzzfznzbzbzbzd', '1-2 m: mmzlmkm', '6-7 t: jbmpztx', '5-6 v: vvbvvtn', '7-17 q: lvdfpbqxbxdnwqzjlfs', '3-5 z: zdzzzxczbzzz', '10-14 f: fpffffffffffff', '3-8 x: wxxchxjx', '1-6 x: xxxxxx', '14-15 x: zmxtcbjxtvxxxxg', '4-5 f: qfffghf', '2-3 p: pppp', '10-12 n: nnngnxnnnhnsbntln', '1-2 w: ftwwww', '10-11 f: fffffffffpkf', '4-5 n: nnnnnn', '10-11 r: rrrrtrrlrrrr', '5-6 h: hjhxhhnbhlbxvhs', '1-4 q: qqqq', '7-11 p: dkpfppwzpxqqx', '11-17 l: lzknllnllkgvllllh', '1-3 z: zzzzz', '16-17 b: bbbbbbbbbbbbbbbbbb', '2-4 n: qcpwnhn', '1-4 v: svvhvvv', '10-12 l: llllllllllljl', '1-2 l: xzlllllll', '1-3 l: plklll', '4-8 x: xxxxfxbxcxxqxfxpx', '3-8 b: xgbbwncxclbv', '5-6 m: mmmmmmm', '4-5 p: pptppfnpl', '14-16 x: gwjfkzwrldzxpdxgk', '10-11 z: zzzzvzzzzzzz', '3-12 k: kkxkblkkkkkgkkkmkk', '4-6 p: pppfpx', '2-7 r: rrmrrrrrrrrrr', '7-9 p: pbpfpppppp', '2-3 v: tvvbbjnvv', '5-8 j: jjjjjjjjj', '2-5 c: xcwcczjkvgccccvpkd', '5-7 f: ffffpfqfffff', '11-13 m: qmmmmmmmlwkmmmmmm', '14-15 d: dddddddpmddddszdd', '6-15 b: kptphpbxxqsbxlhxplml', '16-18 x: xxkzfxgqxdcvzdxlzn', '10-12 m: clrmmmmksmmm', '1-3 w: wwpww', '8-15 g: ggggggnlgggggggggng', '3-6 h: tnhhxh', '4-5 l: lllrdllxlnllqll', '1-2 m: lmjhvl', '1-4 k: dkkhkkk', '6-7 x: wncxcxf', '4-5 w: wwwhfww', '4-8 b: bshnbbdbmfxbbrc', '4-7 t: tbdtztm', '7-8 n: zntlhccn', '10-14 f: frgffffffflfzlf', '3-4 b: nzbbbnfbdg', '2-6 m: srmwsmtp', '5-6 z: zzpvsrz', '2-13 m: msmmmhmmmmmmtm', '3-4 c: ccvcc', '1-4 n: nnnnnn', '2-3 j: zdvsj', '4-6 c: ccctccc', '4-5 z: zzpdztnrzl', '4-6 z: hzdzpz', '2-6 x: gxjxcxxjqcb', '4-9 j: jjjvjcgzl', '5-8 z: dmppvjqfzzzzn', '5-7 v: vvvvvvr', '2-5 l: lvkkft', '2-11 n: nnhnqnnvnsn', '1-3 d: dhndddjfd', '8-9 x: xxxxxxxxxxxxxxxxxxxx', '4-9 p: fntpgcwtwv', '4-12 q: qbrlqzqcnwtjq', '2-3 f: ftcjvnfkzx', '1-2 d: dddd', '7-10 g: gggggghggzgg', '4-6 g: zhgbgphggtm', '2-4 l: lblq', '14-17 n: bnnngnnnnnnznnnnn', '5-6 f: fxxffffhmswq', '6-10 p: pppppppppp', '2-4 q: lsxgqkqsblqqq', '11-19 x: xxnrgxxxxxxxxxfwmxx', '4-7 j: jjjtjjljjjjjjj', '6-7 l: llllllll', '1-4 f: pfftffffnffff', '11-13 r: xrrlrrrrrqrrzrr', '1-3 p: pvpqp', '9-13 d: ddddxrnddddfdscsd', '1-2 f: lbbr', '3-7 t: mpttsgwb', '2-10 c: jccchctshcpchwx', '2-4 p: lmpd', '1-2 n: zlnxnnf', '2-3 w: fwwtqw', '9-16 s: sssssssssssssssssssj', '1-5 s: hssrm', '15-17 b: ghpvwjbzpksvhsjbj', '8-9 h: hzrvxhhdz', '3-4 j: mkjjpvkfhprr', '1-8 n: cnnnnnnmnn', '1-4 x: lxxxx', '3-5 m: pjttcvvcmfvzffcfmmv', '3-10 r: rsxtvwjrfrqrrbzzr', '2-7 h: hhckhhr', '7-8 r: srrrmprrrhkzsndrrkr', '4-13 m: pdsmlsnxcmhmmsvc', '3-12 d: ddsdddddddddddddd', '14-16 s: sssssssssssssjsds', '3-4 m: djfp', '2-5 w: bgwpc', '4-5 r: zffrrqrs', '4-9 r: rrrgrrrrqrrrrrrr', '4-6 w: wxwwvw', '7-8 d: tvddddwtdddldd', '6-7 g: tgdggggfzrgqggggmggg', '2-6 t: tgtfdtttttttttqxd', '14-18 f: fffsffgfffffskfkff', '1-12 b: qbvbbbbmbsqbcbgbbbcp', '5-7 d: ddbqhdddsdm', '6-9 n: tqwnckjsn', '1-3 n: nnnn', '5-10 w: wwwwwwwlwwqwwwp', '3-4 r: rrrr', '2-12 m: mmchtqmhfdpm', '6-9 d: dzgzdbddwgdwldb', '10-14 k: kkkkkkkkkkkkkzkkkkk', '13-14 v: vvvvvvvvvvvvvvvv', '2-12 f: btqtbrvkmfzhz', '1-5 b: bbbbbb', '7-10 j: jhjnjjwnjbj', '2-16 h: kjszvtwrjgrvzrqlzcb', '6-8 t: nxzftvtnrtxg', '3-6 h: cvhhnhnhhcgst', '5-8 f: fxgfjnjzz', '11-12 b: bbbbbnbbbzbqbbbq', '1-6 h: hjzhhw', '18-19 m: xrvmftmpkpmrlkqmxvm', '6-7 v: cvxbdsr', '5-6 v: vjvvvvf', '2-3 m: mmzpm', '3-4 k: mkghkxc', '1-6 s: sjsmjsstsss', '2-10 s: wndvkxbmffh', '9-15 q: qqqqqqqqqqqqqqqqq', '4-5 f: rffffpc', '10-11 v: vvvvvvrvvlmv', '6-7 n: tnnnnlq', '16-18 g: gggggdgdgggggggggggg', '5-11 l: lwlfvzlsjll', '11-14 v: vvvvvvvrvwvvvv', '12-16 j: jjjjjjjjjjjpjjjx', '4-6 w: wwwwwr', '2-4 d: ncdd', '15-17 c: nccccctccwccccqcqcc', '3-5 m: mnlmqtsvn', '7-8 w: swwwwwnl', '6-12 l: zlplklqldllxlpvb', '7-9 h: fhkhqnfhhzrhqhhh', '11-14 v: vvvvvvvvvvvvvv', '16-18 v: vnvvsllmvswcvzqvvxjl', '7-9 k: kkkzkkkkskkkzkkkjlk', '5-17 w: wckwxwlrlwrncxwwb', '2-4 v: vqvvqgx', '2-3 b: bbbbbbmbbbbqb', '4-5 p: ptphbprpv', '3-6 q: kqqkpqbnt', '15-20 n: nnnnnnngnnnnnnnnnnnw', '10-12 p: pppppxpppmpnjp', '5-10 x: bhwlxkrdxxqvkphvmfgn', '2-3 l: lllhql', '4-11 l: wllvwfccllk', '7-11 d: dmvmmzlngpw', '2-6 v: rskbvv', '7-9 k: kwtckkkkx', '11-12 j: jnjjfzjjjjjjjj', '2-5 v: rvvnnjjxjnnt', '2-6 j: ljcqpjmhgmmcxjkgd', '1-3 k: lklbx', '14-15 c: ccccccccccccckc', '2-6 x: xxxxxxxxxxxx', '1-7 t: btrtxtjgtt', '2-3 t: sttt', '5-7 k: kkkkzksxgb', '3-4 q: mnnxqwtnw', '8-10 t: vwzmnxjdzx', '4-10 f: svglffffpzw', '1-5 s: dsfjsv', '8-10 m: vmwpmmmjmv', '6-7 h: hhhhhwxhhhhhhhhhhhhh', '7-19 n: ktlblznjctnnrzwrknt', '3-6 n: nzxclnvc', '2-5 t: wtrttkx', '9-10 j: jjjjjjxjjj', '12-13 r: rrrrrjrrrrrwx', '11-16 c: plvcnjcpnkvcpcmcpbc', '2-3 c: gccclcslqdmsg', '10-13 d: dddddddddhddd', '8-9 w: kklwmwqmwwtwqw', '2-5 q: qsqqwx', '3-4 c: hcqvfbccccctcc', '6-7 k: kkkwqgv', '13-15 h: qhhmhkjvhhhhngnhhhhs', '4-5 d: msjdd', '6-7 g: ggggggg', '5-8 r: cqrdrfxnrrjrsr', '9-15 r: lprrqrrrrrrrrrrbr', '6-7 h: hhrqhrlhhh', '2-3 g: glgg', '1-11 n: nnnnnnnnlnnjzwnnnn', '3-6 l: bwllrl', '2-6 p: nptphqv', '3-8 l: lrlknvlpcm', '2-8 g: wjbgpjrlfsgg', '5-6 w: swwfww', '1-8 p: pptpxppppppwpppfx', '3-4 d: wlddg', '15-17 c: sccccccgccccccccc', '4-6 n: nnnhnp', '8-9 r: prvrxmprlzxs', '9-12 t: ttttttttttttkrtt', '5-6 h: hhhhkfh', '1-10 q: psqpzpkqtcq', '4-7 f: ffflnfzkf', '10-11 j: jjjvjjxfjjj', '4-11 p: wlhgrxlclnt', '1-14 t: wfntvttxmldhqg', '14-19 c: ccpczqrccfhtcvljlvc', '11-12 w: wwwwwwwwwwwww', '2-8 z: lzsdqxzz', '17-18 p: pppppppppppqphppprpp', '2-4 j: wjjq', '4-6 f: ffkfffgff', '8-20 x: phxxxxxnwxxdqzxxxxxx', '9-10 d: xvddddsldd', '3-10 l: rglllxlnfl', '6-15 d: ddddddgddpddddwd', '6-7 w: kwwwwhs', '8-10 r: rrrfmrrrrd', '2-11 x: xcjcgtkzkhtmrxqjxxx', '4-5 v: wvmdr', '7-8 d: dddddddd', '7-13 l: lllllldlxllln', '13-14 z: zzdrzzzffzzzzzznzz', '3-4 j: zjjj', '8-9 s: sssssssbss', '6-15 f: pfsfvfxqpffqfqf', '9-11 p: pjpppprzpcphvppwp', '3-4 c: ccrd', '9-10 c: qcwbccccjhwvtwcccnc', '3-4 x: xgxx', '5-6 x: xgxzxxxxxxx', '5-10 l: kxdgnqrkpqgcmcmnk', '4-7 v: vvvpvvvv', '1-4 n: nqnnnnnn', '5-6 p: pprgpst', '14-20 q: wlxrjczhxwdctvpcgxqc', '5-8 g: gcggbggggggzgg', '10-11 g: ggggtggggggg', '14-18 h: hhchhhmhhbwhhlhsvrh', '3-6 f: ffmfffffffff', '1-12 n: rnnnnjwnnnnv', '7-12 l: bpxlhthjplljwxvvvjm', '4-5 j: jhjjjjj', '9-12 q: qvqqqqqvqsqq', '3-4 d: ddnvdddddgddd', '1-7 h: xhhhhhkh', '1-4 f: fffff', '3-4 q: qfrq', '5-8 k: kkkkgkkqkk', '14-18 k: nkkkkkkfkkwkkkkkqk', '1-4 q: qqdc', '17-18 f: ffffffffhffffffffff', '16-17 b: bbbbbbbbbbbbbbbdm', '17-18 z: zzzzzzzzzznzzzvzmwzz', '3-4 g: tggd', '4-6 t: mlttlqqz', '11-18 f: fgffgwlffffftfzfrt', '7-9 h: hmmhhhpljjn', '16-17 m: mmrsnmmzfhtmrjwmmjm', '2-3 l: cllcbm', '3-4 k: fkkkqbpbmmcd', '9-10 f: kfmchwkwzfh', '5-6 j: jjmjjjjjj', '3-5 v: vsvbfvvh', '3-4 k: tgkk', '2-8 k: lscvjjnhpxl', '7-8 v: vvlvvfkqqv', '8-9 q: qcqqtqqhqvqqtq', '12-14 z: zzzhzwzzqzzzzwzzlz', '5-8 k: kzknkkkkkp', '5-6 s: spsssw', '2-3 k: kmkh', '9-10 f: vnlxmstqbsg', '1-2 k: kkkk', '6-15 r: rcrrrsrrrrrrrrzrrqrr', '3-8 c: cfczjwkcxbc', '15-16 k: kkkkgkkkkkkkkkkh', '5-18 c: ccdcxtccccccpcfccv', '6-11 w: qdwnfhzlwwwwxwwgwhwk', '1-6 d: fddddddhddw', '7-10 p: wpbppvpzwc', '12-14 k: kkkkkkkkkkhhkslsk', '4-7 r: hdrrfhrqrdmcbnlrrjbr', '7-10 b: bbbbbjbbbbbb', '4-7 p: pzppzppsp', '11-12 h: qhhhhhhqhrlwlhhthh', '6-9 s: sbssxsskswvp', '17-18 b: bbmpbbhhbnsbbbbbbb', '8-9 g: wgggktggg', '1-12 s: vsssssfssssrqk', '2-5 s: bsgssxc', '3-4 c: ccccccc', '2-3 d: dddd', '5-7 r: ldlcjrrlrngr', '5-10 m: msmjqmmmmm', '3-7 c: ccccccccc', '13-14 p: pppxpppppppppcpppp', '2-3 r: jrfrvrk', '11-12 g: gggggggggggg', '6-18 t: ctvqgcrgnxdvbzjfrrbt', '6-11 f: rnjptfnwgxfp', '5-8 w: wwwtwwwwww', '14-15 r: rkrbrvrrrgrczrz', '12-13 t: trtjtttlnxnxx', '5-8 l: qnwllfsl', '2-15 g: xgtcjftlqqfwkggpf', '11-16 j: jjjjjjjjjljjjjjjj', '8-9 b: bbzbkbbvgcbb', '5-6 r: dvkxrrsvrrksszsdr', '12-13 j: jjjjjjjjjjjhdjjj', '16-17 z: mzzzrxfzzzzczzgzz', '2-15 p: lpjxcdzjmnghfppr', '9-15 s: ssssssssnsssssss', '1-11 t: tfvtqvlbtld', '4-5 k: kkkczkkkvkkk', '2-7 p: ptphppvppppp']
def parse_password_and_policy(line: str):
password = line[line.find(':') + 2:len(line)]
character = line[line.find(':') - 1]
min_num = int(line[:line.find('-')])
max_num = int(line[line.find('-') + 1:line.find(' ')])
return {'password': password, 'character': character, 'min': minNum, 'max': maxNum}
def verify_password_second_policy(passworddata):
parsed_data = parse_password_and_policy(passworddata)
pword = parsedData['password']
first_index = pword[parsedData['min'] - 1] == parsedData['character']
second_index = pword[parsedData['max'] - 1] == parsedData['character']
return firstIndex != secondIndex
def verify_password_first_policy(passworddata):
parsed_data = parse_password_and_policy(passworddata)
character_count = 0
for character in parsedData['password']:
if character == parsedData['character']:
character_count += 1
return characterCount >= parsedData['min'] and characterCount <= parsedData['max']
def check_passwords_part_two(input):
valid_passwords = 0
for line in input:
if verify_password_first_policy(line):
valid_passwords += 1
return validPasswords
def check_passwords_part_one(input):
valid_passwords = 0
for line in input:
if verify_password_second_policy(line):
valid_passwords += 1
return validPasswords
print(check_passwords_part_one(problemInput))
print(check_passwords_part_two(problemInput)) |
class Solution:
def minDistance(self, word1: str, word2: str) -> int:
result = [[0 for _ in range(len(word2)+1)] for _ in range(len(word1) + 1)]
# update top row
for j in range(1,len(word2)+1):
result[0][j] = 1+ result[0][j-1]
# update first column
for i in range(1,len(word1) +1):
result[i][0] = 1 + result[i-1][0]
for i in range(1,len(word1) +1):
for j in range(1,len(word2)+1):
if word1[i-1] == word2[j-1]:
result[i][j] = result[i-1][j-1]
else:
result[i][j] = 1 + min(result[i-1][j-1], result[i][j-1], result[i-1][j])
return result[len(word1)][len(word2)]
word1 = "intention"
word2 = "execution"
ob = Solution()
print(ob.minDistance(word2, word1)) | class Solution:
def min_distance(self, word1: str, word2: str) -> int:
result = [[0 for _ in range(len(word2) + 1)] for _ in range(len(word1) + 1)]
for j in range(1, len(word2) + 1):
result[0][j] = 1 + result[0][j - 1]
for i in range(1, len(word1) + 1):
result[i][0] = 1 + result[i - 1][0]
for i in range(1, len(word1) + 1):
for j in range(1, len(word2) + 1):
if word1[i - 1] == word2[j - 1]:
result[i][j] = result[i - 1][j - 1]
else:
result[i][j] = 1 + min(result[i - 1][j - 1], result[i][j - 1], result[i - 1][j])
return result[len(word1)][len(word2)]
word1 = 'intention'
word2 = 'execution'
ob = solution()
print(ob.minDistance(word2, word1)) |
n = int(input()) # 1
k = int(input()) # 2
x = int(input()) # 3
y = int(input()) # 4
arr = list(map(int, input().split())) # 5
# s = sum(arr[:k+1])
w = 50
if k != 1:
for i in range(n):
arr[i] = sum(arr[i:i+k])
arr = arr[:-1]
# print(arr, len(arr))
for i in arr:
# print(i)
if i in range(x, y + 1): w = w
elif i < x: w -= 1
elif i > y: w += 1
print(w-50) | n = int(input())
k = int(input())
x = int(input())
y = int(input())
arr = list(map(int, input().split()))
w = 50
if k != 1:
for i in range(n):
arr[i] = sum(arr[i:i + k])
arr = arr[:-1]
for i in arr:
if i in range(x, y + 1):
w = w
elif i < x:
w -= 1
elif i > y:
w += 1
print(w - 50) |
# This is a file which does actually have a variable called 'answers'.
# This file is used in the test_check.py file which tests the check module
answers = 1
| answers = 1 |
#encoding:utf-8
subreddit = 'MoviePosterPorn'
t_channel = '@MoviePosterTG'
def send_post(submission, r2t):
return r2t.send_simple(submission)
| subreddit = 'MoviePosterPorn'
t_channel = '@MoviePosterTG'
def send_post(submission, r2t):
return r2t.send_simple(submission) |
#
# PySNMP MIB module Juniper-ATM-1483-Profile-CONF (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Juniper-ATM-1483-Profile-CONF
# Produced by pysmi-0.3.4 at Wed May 1 14:01:45 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection")
juniProfileAgents, = mibBuilder.importSymbols("Juniper-Agents", "juniProfileAgents")
AgentCapabilities, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "AgentCapabilities", "NotificationGroup", "ModuleCompliance")
Bits, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, ModuleIdentity, Counter32, Counter64, NotificationType, ObjectIdentity, IpAddress, MibIdentifier, Unsigned32, Integer32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "ModuleIdentity", "Counter32", "Counter64", "NotificationType", "ObjectIdentity", "IpAddress", "MibIdentifier", "Unsigned32", "Integer32", "TimeTicks")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
juniAtm1483ProfileAgent = ModuleIdentity((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6))
juniAtm1483ProfileAgent.setRevisions(('2004-07-26 19:54', '2004-11-02 21:07', '2004-11-02 21:07',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: juniAtm1483ProfileAgent.setRevisionsDescriptions(('Added Encapsulation Type Lockout objects.', 'Added ifALias support to profile entries.', 'The initial release of this management information module. Added support for OAM admin status and loopback frequency.',))
if mibBuilder.loadTexts: juniAtm1483ProfileAgent.setLastUpdated('200407261954Z')
if mibBuilder.loadTexts: juniAtm1483ProfileAgent.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts: juniAtm1483ProfileAgent.setContactInfo(' Juniper Networks, Inc. Postal: 10 Technology Park Drive Westford, MA 01886-3146 USA Tel: +1 978 589 5800 E-mail: mib@Juniper.net')
if mibBuilder.loadTexts: juniAtm1483ProfileAgent.setDescription('The agent capabilities definitions for the ATM 1483 Profile component of the SNMP agent in the Juniper E-series family of products.')
juniAtm1483ProfileAgentV1 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 1))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV1 = juniAtm1483ProfileAgentV1.setProductRelease('Version 1 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.1 and 5.2 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV1 = juniAtm1483ProfileAgentV1.setStatus('obsolete')
if mibBuilder.loadTexts: juniAtm1483ProfileAgentV1.setDescription('The MIB supported by the SNMP agent for the ATM 1483 Profile application in JUNOSe. These capabilities became obsolete when ifALias support was added to profile entries.')
juniAtm1483ProfileAgentV2 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 2))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV2 = juniAtm1483ProfileAgentV2.setProductRelease('Version 2 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.3 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV2 = juniAtm1483ProfileAgentV2.setStatus('obsolete')
if mibBuilder.loadTexts: juniAtm1483ProfileAgentV2.setDescription('The MIB supported by the SNMP agent for the ATM 1483 Profile application in JUNOSe. These capabilities became obsolete when OAM support was added to profile entries.')
juniAtm1483ProfileAgentV3 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 3))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV3 = juniAtm1483ProfileAgentV3.setProductRelease('Version 3 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.1 and 5.2 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV3 = juniAtm1483ProfileAgentV3.setStatus('obsolete')
if mibBuilder.loadTexts: juniAtm1483ProfileAgentV3.setDescription('The MIB supported by the SNMP agent for the ATM 1483 Profile application in JUNOSe. These capabilities became obsolete when ifALias support was added to profile entries.')
juniAtm1483ProfileAgentV4 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 4))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV4 = juniAtm1483ProfileAgentV4.setProductRelease('Version 4 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.3, 6.0, and 6.1 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV4 = juniAtm1483ProfileAgentV4.setStatus('current')
if mibBuilder.loadTexts: juniAtm1483ProfileAgentV4.setDescription('')
juniAtm1483ProfileAgentV5 = AgentCapabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 5))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV5 = juniAtm1483ProfileAgentV5.setProductRelease('Version 5 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component is supported in Juniper\n JUNOSe 7.0 and subsequent system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniAtm1483ProfileAgentV5 = juniAtm1483ProfileAgentV5.setStatus('current')
if mibBuilder.loadTexts: juniAtm1483ProfileAgentV5.setDescription('')
mibBuilder.exportSymbols("Juniper-ATM-1483-Profile-CONF", juniAtm1483ProfileAgentV4=juniAtm1483ProfileAgentV4, juniAtm1483ProfileAgentV1=juniAtm1483ProfileAgentV1, juniAtm1483ProfileAgentV2=juniAtm1483ProfileAgentV2, juniAtm1483ProfileAgent=juniAtm1483ProfileAgent, juniAtm1483ProfileAgentV5=juniAtm1483ProfileAgentV5, juniAtm1483ProfileAgentV3=juniAtm1483ProfileAgentV3, PYSNMP_MODULE_ID=juniAtm1483ProfileAgent)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_range_constraint, single_value_constraint, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection')
(juni_profile_agents,) = mibBuilder.importSymbols('Juniper-Agents', 'juniProfileAgents')
(agent_capabilities, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'AgentCapabilities', 'NotificationGroup', 'ModuleCompliance')
(bits, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, module_identity, counter32, counter64, notification_type, object_identity, ip_address, mib_identifier, unsigned32, integer32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'ModuleIdentity', 'Counter32', 'Counter64', 'NotificationType', 'ObjectIdentity', 'IpAddress', 'MibIdentifier', 'Unsigned32', 'Integer32', 'TimeTicks')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
juni_atm1483_profile_agent = module_identity((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6))
juniAtm1483ProfileAgent.setRevisions(('2004-07-26 19:54', '2004-11-02 21:07', '2004-11-02 21:07'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
juniAtm1483ProfileAgent.setRevisionsDescriptions(('Added Encapsulation Type Lockout objects.', 'Added ifALias support to profile entries.', 'The initial release of this management information module. Added support for OAM admin status and loopback frequency.'))
if mibBuilder.loadTexts:
juniAtm1483ProfileAgent.setLastUpdated('200407261954Z')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgent.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgent.setContactInfo(' Juniper Networks, Inc. Postal: 10 Technology Park Drive Westford, MA 01886-3146 USA Tel: +1 978 589 5800 E-mail: mib@Juniper.net')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgent.setDescription('The agent capabilities definitions for the ATM 1483 Profile component of the SNMP agent in the Juniper E-series family of products.')
juni_atm1483_profile_agent_v1 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 1))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v1 = juniAtm1483ProfileAgentV1.setProductRelease('Version 1 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.1 and 5.2 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v1 = juniAtm1483ProfileAgentV1.setStatus('obsolete')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgentV1.setDescription('The MIB supported by the SNMP agent for the ATM 1483 Profile application in JUNOSe. These capabilities became obsolete when ifALias support was added to profile entries.')
juni_atm1483_profile_agent_v2 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 2))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v2 = juniAtm1483ProfileAgentV2.setProductRelease('Version 2 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.3 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v2 = juniAtm1483ProfileAgentV2.setStatus('obsolete')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgentV2.setDescription('The MIB supported by the SNMP agent for the ATM 1483 Profile application in JUNOSe. These capabilities became obsolete when OAM support was added to profile entries.')
juni_atm1483_profile_agent_v3 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 3))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v3 = juniAtm1483ProfileAgentV3.setProductRelease('Version 3 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.1 and 5.2 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v3 = juniAtm1483ProfileAgentV3.setStatus('obsolete')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgentV3.setDescription('The MIB supported by the SNMP agent for the ATM 1483 Profile application in JUNOSe. These capabilities became obsolete when ifALias support was added to profile entries.')
juni_atm1483_profile_agent_v4 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 4))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v4 = juniAtm1483ProfileAgentV4.setProductRelease('Version 4 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component was supported in Juniper\n JUNOSe 5.3, 6.0, and 6.1 system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v4 = juniAtm1483ProfileAgentV4.setStatus('current')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgentV4.setDescription('')
juni_atm1483_profile_agent_v5 = agent_capabilities((1, 3, 6, 1, 4, 1, 4874, 5, 2, 34, 6, 5))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v5 = juniAtm1483ProfileAgentV5.setProductRelease('Version 5 of the ATM 1483 Profile component of the JUNOSe SNMP agent.\n This version of the ATM 1483 Profile component is supported in Juniper\n JUNOSe 7.0 and subsequent system releases.')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_atm1483_profile_agent_v5 = juniAtm1483ProfileAgentV5.setStatus('current')
if mibBuilder.loadTexts:
juniAtm1483ProfileAgentV5.setDescription('')
mibBuilder.exportSymbols('Juniper-ATM-1483-Profile-CONF', juniAtm1483ProfileAgentV4=juniAtm1483ProfileAgentV4, juniAtm1483ProfileAgentV1=juniAtm1483ProfileAgentV1, juniAtm1483ProfileAgentV2=juniAtm1483ProfileAgentV2, juniAtm1483ProfileAgent=juniAtm1483ProfileAgent, juniAtm1483ProfileAgentV5=juniAtm1483ProfileAgentV5, juniAtm1483ProfileAgentV3=juniAtm1483ProfileAgentV3, PYSNMP_MODULE_ID=juniAtm1483ProfileAgent) |
class parent:
def parentmethod(self):
print("Calling Parent Method")
def parentmethod2(self):
print("Calling the second parent method")
class child(parent):
def childmethod(self):
print("Calling the Child Method")
def parentmethod2(self):
print("Modified parent method 2")
p = parent()
c = child()
p.parentmethod() # Accessing Parent Method
c.childmethod() # Accessing Child Method
c.parentmethod() # Accessing the inherited parent method from child class.
p.parentmethod2() # Accessing the 2nd parent method from parent class
c.parentmethod2() # Accessing the 2nd parent method from the child class after modification
print("\nView code and read comments for better understanding.")
# Parent class cannot access child class. However, the child class can access the parent class.
| class Parent:
def parentmethod(self):
print('Calling Parent Method')
def parentmethod2(self):
print('Calling the second parent method')
class Child(parent):
def childmethod(self):
print('Calling the Child Method')
def parentmethod2(self):
print('Modified parent method 2')
p = parent()
c = child()
p.parentmethod()
c.childmethod()
c.parentmethod()
p.parentmethod2()
c.parentmethod2()
print('\nView code and read comments for better understanding.') |
# Flip the keys to the values, and the values to the keys
namesAndNumbers = {"Ellis": 123456789, "Roy": 987654321, "Blake": 753159842}
numbersAndNames = {}
for k in namesAndNumbers:
numbersAndNames[namesAndNumbers[k]] = k
print(numbersAndNames) | names_and_numbers = {'Ellis': 123456789, 'Roy': 987654321, 'Blake': 753159842}
numbers_and_names = {}
for k in namesAndNumbers:
numbersAndNames[namesAndNumbers[k]] = k
print(numbersAndNames) |
# directories path
BASIC_DIR = "~/ECG_Analysis/ECG_data"
ECG_eHEALTH_DATA_DIR = BASIC_DIR + '/eHealth_ECG'
ECG_ID_DATA_DIR = BASIC_DIR + '/ECG-ID/resampled'
ECG_eHEALTH_DATA_DIR = BASIC_DIR + '/eHealth_ECG'
ECG_eHEALTH_TRAIN_DATA_DIR = BASIC_DIR + '/trainECG'
ECG_eHEALTH_TEST_DATA_DIR = BASIC_DIR + '/testECG'
SEGMENTATOR_DIR = BASIC_DIR + '/ECG_segmentator'
COMBINATOR_DIR = BASIC_DIR + '/ECG_combinator' | basic_dir = '~/ECG_Analysis/ECG_data'
ecg_e_health_data_dir = BASIC_DIR + '/eHealth_ECG'
ecg_id_data_dir = BASIC_DIR + '/ECG-ID/resampled'
ecg_e_health_data_dir = BASIC_DIR + '/eHealth_ECG'
ecg_e_health_train_data_dir = BASIC_DIR + '/trainECG'
ecg_e_health_test_data_dir = BASIC_DIR + '/testECG'
segmentator_dir = BASIC_DIR + '/ECG_segmentator'
combinator_dir = BASIC_DIR + '/ECG_combinator' |
N = int(input())
for i in range(1, 10):
if N % i == 0 and (N // i) < 10:
print("Yes")
break
else:
print("No")
| n = int(input())
for i in range(1, 10):
if N % i == 0 and N // i < 10:
print('Yes')
break
else:
print('No') |
# --------------
##File path for the file
file_path
def read_file(path):
file = open (path,'r')
sentence = file.readline()
file.close ()
return sentence
sample_message = read_file (file_path)
print (sample_message)
#Code starts here
# --------------
#Code starts here
message_1 = read_file (file_path_1)
print (message_1)
message_2 = read_file (file_path_2)
print (str(message_2))
def fuse_msg (message_a, message_b):
quotient = int(message_a)//int(message_b)
return str(quotient)
secret_msg_1 = fuse_msg (message_2,message_1)
print (secret_msg_1)
# --------------
#Code starts here
message_3 = read_file (file_path_3)
print (message_3)
def substitute_msg (message_c):
if (message_c == 'Red'):
sub = "Army General"
elif (message_c == 'Green'):
sub = "Data Scientist"
elif (message_c == 'Blue'):
sub = "Marine Biologist"
return sub
secret_msg_2 = substitute_msg(message_3)
print (secret_msg_2)
# --------------
# File path for message 4 and message 5
file_path_4
file_path_5
#Code starts here
message_4 = read_file (file_path_4)
print (message_4)
message_5 = read_file (file_path_5)
print (message_5)
def compare_msg(message_d, message_e):
a_list =[]
b_list = []
c_list = []
a_list = message_d.split ()
print (a_list)
b_list = message_e.split ()
print (b_list)
c_list = [x for x in a_list if x not in b_list]
final_msg = " ".join(c_list)
return str(final_msg)
secret_msg_3 = compare_msg(message_4,message_5)
print (str(secret_msg_3))
# --------------
#Code starts here
message_6 = read_file (file_path_6)
print (message_6)
def extract_msg (message_f):
a_list = []
a_list = message_f.split()
print (a_list)
even_word = lambda x: True if (len(x)%2 ==0) else False
b_list = filter (even_word, a_list)
final_msg = " ".join(b_list)
return final_msg
secret_msg_4 = extract_msg (message_6)
print (str(secret_msg_4))
# --------------
#Secret message parts in the correct order
message_parts=[secret_msg_3, secret_msg_1, secret_msg_4, secret_msg_2]
final_path= user_data_dir + '/secret_message.txt'
#Code starts here
secret_msg = " ".join (message_parts)
def write_file (secret_msg, path):
f = open (path, 'a+')
f.write (str(secret_msg))
f.close ()
print (secret_msg)
write_file (message_parts, final_path)
| file_path
def read_file(path):
file = open(path, 'r')
sentence = file.readline()
file.close()
return sentence
sample_message = read_file(file_path)
print(sample_message)
message_1 = read_file(file_path_1)
print(message_1)
message_2 = read_file(file_path_2)
print(str(message_2))
def fuse_msg(message_a, message_b):
quotient = int(message_a) // int(message_b)
return str(quotient)
secret_msg_1 = fuse_msg(message_2, message_1)
print(secret_msg_1)
message_3 = read_file(file_path_3)
print(message_3)
def substitute_msg(message_c):
if message_c == 'Red':
sub = 'Army General'
elif message_c == 'Green':
sub = 'Data Scientist'
elif message_c == 'Blue':
sub = 'Marine Biologist'
return sub
secret_msg_2 = substitute_msg(message_3)
print(secret_msg_2)
file_path_4
file_path_5
message_4 = read_file(file_path_4)
print(message_4)
message_5 = read_file(file_path_5)
print(message_5)
def compare_msg(message_d, message_e):
a_list = []
b_list = []
c_list = []
a_list = message_d.split()
print(a_list)
b_list = message_e.split()
print(b_list)
c_list = [x for x in a_list if x not in b_list]
final_msg = ' '.join(c_list)
return str(final_msg)
secret_msg_3 = compare_msg(message_4, message_5)
print(str(secret_msg_3))
message_6 = read_file(file_path_6)
print(message_6)
def extract_msg(message_f):
a_list = []
a_list = message_f.split()
print(a_list)
even_word = lambda x: True if len(x) % 2 == 0 else False
b_list = filter(even_word, a_list)
final_msg = ' '.join(b_list)
return final_msg
secret_msg_4 = extract_msg(message_6)
print(str(secret_msg_4))
message_parts = [secret_msg_3, secret_msg_1, secret_msg_4, secret_msg_2]
final_path = user_data_dir + '/secret_message.txt'
secret_msg = ' '.join(message_parts)
def write_file(secret_msg, path):
f = open(path, 'a+')
f.write(str(secret_msg))
f.close()
print(secret_msg)
write_file(message_parts, final_path) |
def split_list(big_list , max_split: int):
for i in range(0, len(big_list), max_split):
yield big_list[i: i+max_split]
| def split_list(big_list, max_split: int):
for i in range(0, len(big_list), max_split):
yield big_list[i:i + max_split] |
def remove_repetidos(lista):
lista_b = []
for i in lista:
if i not in lista_b:
lista_b.append(i)
lista_b.sort()
return lista_b
def soma_elementos(lista):
return sum(lista)
#print(sum(lista))
def maior_elemento(lista):
#max(lista)
print(max(lista))
lista = [1, 1, 2, 1, 3, 4, 3, 6, 7, 6, 7, 8, 10 ,9]
lista = remove_repetidos(lista)
print(lista)
soma_elementos(lista)
maior_elemento(lista) | def remove_repetidos(lista):
lista_b = []
for i in lista:
if i not in lista_b:
lista_b.append(i)
lista_b.sort()
return lista_b
def soma_elementos(lista):
return sum(lista)
def maior_elemento(lista):
print(max(lista))
lista = [1, 1, 2, 1, 3, 4, 3, 6, 7, 6, 7, 8, 10, 9]
lista = remove_repetidos(lista)
print(lista)
soma_elementos(lista)
maior_elemento(lista) |
def Posicao(a, b, c, d,u, pos):
posicao =""
if pos != 0:
pos = "transversal"
else:
if (a*u[0] + b*u[1] + c*u[2] + d) == 0:
pos = "contida"
else:
pos = "paralela"
return pos | def posicao(a, b, c, d, u, pos):
posicao = ''
if pos != 0:
pos = 'transversal'
elif a * u[0] + b * u[1] + c * u[2] + d == 0:
pos = 'contida'
else:
pos = 'paralela'
return pos |
class JsonObject:
@staticmethod
def decode(json, agent):
return json
@staticmethod
def encode(obj):
return obj
| class Jsonobject:
@staticmethod
def decode(json, agent):
return json
@staticmethod
def encode(obj):
return obj |
#113
# Time: O(n)
# Space: O(h), h is height of binary tree
# Given a binary tree and a sum, find all root-to-leaf paths
# where each path's sum equals the given sum.
#
# For example:
# Given the below binary tree and sum = 22,
# 5
# / \
# 4 8
# / / \
# 11 13 4
# / \ / \
# 7 2 5 1
# return
# [
# [5,4,11,2],
# [5,8,4,5]
# ]
class TreeNode():
def __init__(self,val):
self.val=val;
self.right=None
self.left=None
class DFSSol():
def pathSumBTII(self,root,target_sum):
return self.pathSumBTIIRec(root,target_sum,[],[])
def pathSumBTIIRec(self,root,target_sum,cur_path,result):
if not root:
return result
if not root.left and not root.right and root.val==target_sum:
result.append(cur_path+[root.val])
return result
cur_path.append(root.val)
self.pathSumBTIIRec(root.left,target_sum-root.val,cur_path,result)
self.pathSumBTIIRec(root.right,target_sum-root.val,cur_path,result)
cur_path.pop()
return result
| class Treenode:
def __init__(self, val):
self.val = val
self.right = None
self.left = None
class Dfssol:
def path_sum_btii(self, root, target_sum):
return self.pathSumBTIIRec(root, target_sum, [], [])
def path_sum_btii_rec(self, root, target_sum, cur_path, result):
if not root:
return result
if not root.left and (not root.right) and (root.val == target_sum):
result.append(cur_path + [root.val])
return result
cur_path.append(root.val)
self.pathSumBTIIRec(root.left, target_sum - root.val, cur_path, result)
self.pathSumBTIIRec(root.right, target_sum - root.val, cur_path, result)
cur_path.pop()
return result |
#!/usr/bin/python3
qaly = 0
for x in range(int(input())):
a, b = map(float, input().split())
qaly += a*b
print("{0:.3f}".format(qaly))
| qaly = 0
for x in range(int(input())):
(a, b) = map(float, input().split())
qaly += a * b
print('{0:.3f}'.format(qaly)) |
#
# PySNMP MIB module IPV6-TUNNEL-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/IPV6-TUNNEL-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:56:52 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ValueSizeConstraint")
InetAddressPrefixLength, InetAddressIPv4 = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressPrefixLength", "InetAddressIPv4")
Ipv6AddressPrefix, Ipv6IfIndex, Ipv6Address = mibBuilder.importSymbols("IPV6-TC", "Ipv6AddressPrefix", "Ipv6IfIndex", "Ipv6Address")
switch, = mibBuilder.importSymbols("QUANTA-SWITCH-MIB", "switch")
ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup")
MibScalar, MibTable, MibTableRow, MibTableColumn, mib_2, NotificationType, MibIdentifier, Counter32, Counter64, Unsigned32, ModuleIdentity, Integer32, TimeTicks, ObjectIdentity, iso, Gauge32, Bits, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "mib-2", "NotificationType", "MibIdentifier", "Counter32", "Counter64", "Unsigned32", "ModuleIdentity", "Integer32", "TimeTicks", "ObjectIdentity", "iso", "Gauge32", "Bits", "IpAddress")
RowStatus, TextualConvention, PhysAddress, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "TextualConvention", "PhysAddress", "DisplayString")
ipv6Tunnel = ModuleIdentity((1, 3, 6, 1, 4, 1, 7244, 2, 27))
if mibBuilder.loadTexts: ipv6Tunnel.setLastUpdated('201108310000Z')
if mibBuilder.loadTexts: ipv6Tunnel.setOrganization('QCI')
if mibBuilder.loadTexts: ipv6Tunnel.setContactInfo(' Customer Support Postal: Quanta Computer Inc. 4, Wen Ming 1 St., Kuei Shan Hsiang, Tao Yuan Shien, Taiwan, R.O.C. Tel: +886 3 328 0050 E-Mail: strong.chen@quantatw.com')
if mibBuilder.loadTexts: ipv6Tunnel.setDescription('The Quanta Private MIB for IPV6 Tunnel')
agentTunnelIPV6Group = MibIdentifier((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1))
agentTunnelIPV6Table = MibTable((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1), )
if mibBuilder.loadTexts: agentTunnelIPV6Table.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6Table.setDescription('A summary table of the IPV6 tunnel instances')
agentTunnelIPV6Entry = MibTableRow((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1), ).setIndexNames((0, "IPV6-TUNNEL-MIB", "agentTunnelID"))
if mibBuilder.loadTexts: agentTunnelIPV6Entry.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6Entry.setDescription('')
agentTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647)))
if mibBuilder.loadTexts: agentTunnelID.setStatus('current')
if mibBuilder.loadTexts: agentTunnelID.setDescription('The tunnel ID is associated with Internal Interface number which is generated when we create a tunnel, and is used to configure the tunnel.')
agentTunnelIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentTunnelIfIndex.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIfIndex.setDescription('The external interface of the tunnel is associted with internal interface. The tunnel ID associated with Internal Interface number is generated when we create a tunnel, which is used to configure the tunnel.')
agentTunnelMode = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("undefined", 1), ("ip6over4", 2), ("ip6to4", 3))).clone('undefined')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: agentTunnelMode.setStatus('current')
if mibBuilder.loadTexts: agentTunnelMode.setDescription('Specifies the type of Tunnel either undefined, 6over4 or 6to4. The default value is undefined. It supports 6over4 which supports an assigned IPV6 address, an IPV4 address is not allowed. For this mode, the tunnel source and tunnel destination must be IPV4 address. For 6to4 tunnel, the tunnel source must be IPv4 address. Tunnel destination should not be set. The first 48-bits of the IPv4 address assigned to the 6to4 tunnel should be of the format 2002:sourceIpv4address.')
agentTunnelLocalIP4Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 4), InetAddressIPv4()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentTunnelLocalIP4Addr.setStatus('current')
if mibBuilder.loadTexts: agentTunnelLocalIP4Addr.setDescription('The address of the Local endpoint of the tunnel i.e. the source address used in the outer IP header. It is 0.0.0.0 if unknown or the tunnel is over IPv6.')
agentTunnelRemoteIP4Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 5), InetAddressIPv4()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentTunnelRemoteIP4Addr.setStatus('current')
if mibBuilder.loadTexts: agentTunnelRemoteIP4Addr.setDescription('The address of the Remote endpoint of the tunnel i.e. the destination address used in the outer IP header. It is 0.0.0.0 if the tunnel is unknown or IPv6 address, or not a point to point link')
agentTunnelLocalIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: agentTunnelLocalIfIndex.setStatus('current')
if mibBuilder.loadTexts: agentTunnelLocalIfIndex.setDescription('Specifies the interface for IPv6 Tunnel Source')
agentTunnelStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 7), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: agentTunnelStatus.setStatus('current')
if mibBuilder.loadTexts: agentTunnelStatus.setDescription('Status of this instance.Row can be added or deleted by setting the value to createAndGo/destroy active(1) - this Tunnel instance is active createAndGo(4) - set to this value to create an instance destroy(6) - set to this value to delete an instance')
agentTunnelIcmpUnreachableMode = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: agentTunnelIcmpUnreachableMode.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIcmpUnreachableMode.setDescription('Specifies the Mode of Sending ICMPv6 Unreachable messages on this tunnel interface.')
agentTunnelIPV6PrefixTable = MibTable((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2), )
if mibBuilder.loadTexts: agentTunnelIPV6PrefixTable.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6PrefixTable.setDescription('A table of the IPV6 prefixes associated with tunnel instances')
agentTunnelIPV6PrefixEntry = MibTableRow((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1), ).setIndexNames((0, "IPV6-TUNNEL-MIB", "agentTunnelID"), (0, "IPV6-TUNNEL-MIB", "agentTunnelIPV6PrefixPrefix"), (0, "IPV6-TUNNEL-MIB", "agentTunnelIPV6PrefixPrefixLen"))
if mibBuilder.loadTexts: agentTunnelIPV6PrefixEntry.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6PrefixEntry.setDescription('')
agentTunnelIPV6PrefixPrefix = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1, 1), Ipv6AddressPrefix())
if mibBuilder.loadTexts: agentTunnelIPV6PrefixPrefix.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6PrefixPrefix.setDescription('The prefix associated with the tunnel interface. The data type is used to model the IPV6 address. It is a binary string of 16 octects in network byte-order. It specifies the IP address of tunnel which will be in IPV6 Format, generated using internal interface number.')
agentTunnelIPV6PrefixPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1, 2), InetAddressPrefixLength())
if mibBuilder.loadTexts: agentTunnelIPV6PrefixPrefixLen.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6PrefixPrefixLen.setDescription('The length of the prefix (in bits).')
agentTunnelIPV6PrefixStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: agentTunnelIPV6PrefixStatus.setStatus('current')
if mibBuilder.loadTexts: agentTunnelIPV6PrefixStatus.setDescription('Status of this instance.Row can be added or deleted by setting the value to createAndGo/destroy active(1) - this Tunnel instance is active createAndGo(4) - set to this value to create an instance destroy(6) - set to this value to delete an instance')
mibBuilder.exportSymbols("IPV6-TUNNEL-MIB", agentTunnelStatus=agentTunnelStatus, PYSNMP_MODULE_ID=ipv6Tunnel, agentTunnelIcmpUnreachableMode=agentTunnelIcmpUnreachableMode, agentTunnelIPV6PrefixEntry=agentTunnelIPV6PrefixEntry, agentTunnelIPV6Group=agentTunnelIPV6Group, agentTunnelMode=agentTunnelMode, agentTunnelLocalIfIndex=agentTunnelLocalIfIndex, agentTunnelIPV6Table=agentTunnelIPV6Table, agentTunnelIPV6PrefixStatus=agentTunnelIPV6PrefixStatus, agentTunnelLocalIP4Addr=agentTunnelLocalIP4Addr, agentTunnelIPV6PrefixTable=agentTunnelIPV6PrefixTable, ipv6Tunnel=ipv6Tunnel, agentTunnelIPV6PrefixPrefix=agentTunnelIPV6PrefixPrefix, agentTunnelIPV6PrefixPrefixLen=agentTunnelIPV6PrefixPrefixLen, agentTunnelIPV6Entry=agentTunnelIPV6Entry, agentTunnelID=agentTunnelID, agentTunnelRemoteIP4Addr=agentTunnelRemoteIP4Addr, agentTunnelIfIndex=agentTunnelIfIndex)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, single_value_constraint, value_range_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(inet_address_prefix_length, inet_address_i_pv4) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressPrefixLength', 'InetAddressIPv4')
(ipv6_address_prefix, ipv6_if_index, ipv6_address) = mibBuilder.importSymbols('IPV6-TC', 'Ipv6AddressPrefix', 'Ipv6IfIndex', 'Ipv6Address')
(switch,) = mibBuilder.importSymbols('QUANTA-SWITCH-MIB', 'switch')
(module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup')
(mib_scalar, mib_table, mib_table_row, mib_table_column, mib_2, notification_type, mib_identifier, counter32, counter64, unsigned32, module_identity, integer32, time_ticks, object_identity, iso, gauge32, bits, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'mib-2', 'NotificationType', 'MibIdentifier', 'Counter32', 'Counter64', 'Unsigned32', 'ModuleIdentity', 'Integer32', 'TimeTicks', 'ObjectIdentity', 'iso', 'Gauge32', 'Bits', 'IpAddress')
(row_status, textual_convention, phys_address, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'TextualConvention', 'PhysAddress', 'DisplayString')
ipv6_tunnel = module_identity((1, 3, 6, 1, 4, 1, 7244, 2, 27))
if mibBuilder.loadTexts:
ipv6Tunnel.setLastUpdated('201108310000Z')
if mibBuilder.loadTexts:
ipv6Tunnel.setOrganization('QCI')
if mibBuilder.loadTexts:
ipv6Tunnel.setContactInfo(' Customer Support Postal: Quanta Computer Inc. 4, Wen Ming 1 St., Kuei Shan Hsiang, Tao Yuan Shien, Taiwan, R.O.C. Tel: +886 3 328 0050 E-Mail: strong.chen@quantatw.com')
if mibBuilder.loadTexts:
ipv6Tunnel.setDescription('The Quanta Private MIB for IPV6 Tunnel')
agent_tunnel_ipv6_group = mib_identifier((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1))
agent_tunnel_ipv6_table = mib_table((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1))
if mibBuilder.loadTexts:
agentTunnelIPV6Table.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6Table.setDescription('A summary table of the IPV6 tunnel instances')
agent_tunnel_ipv6_entry = mib_table_row((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1)).setIndexNames((0, 'IPV6-TUNNEL-MIB', 'agentTunnelID'))
if mibBuilder.loadTexts:
agentTunnelIPV6Entry.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6Entry.setDescription('')
agent_tunnel_id = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647)))
if mibBuilder.loadTexts:
agentTunnelID.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelID.setDescription('The tunnel ID is associated with Internal Interface number which is generated when we create a tunnel, and is used to configure the tunnel.')
agent_tunnel_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentTunnelIfIndex.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIfIndex.setDescription('The external interface of the tunnel is associted with internal interface. The tunnel ID associated with Internal Interface number is generated when we create a tunnel, which is used to configure the tunnel.')
agent_tunnel_mode = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('undefined', 1), ('ip6over4', 2), ('ip6to4', 3))).clone('undefined')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
agentTunnelMode.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelMode.setDescription('Specifies the type of Tunnel either undefined, 6over4 or 6to4. The default value is undefined. It supports 6over4 which supports an assigned IPV6 address, an IPV4 address is not allowed. For this mode, the tunnel source and tunnel destination must be IPV4 address. For 6to4 tunnel, the tunnel source must be IPv4 address. Tunnel destination should not be set. The first 48-bits of the IPv4 address assigned to the 6to4 tunnel should be of the format 2002:sourceIpv4address.')
agent_tunnel_local_ip4_addr = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 4), inet_address_i_pv4()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentTunnelLocalIP4Addr.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelLocalIP4Addr.setDescription('The address of the Local endpoint of the tunnel i.e. the source address used in the outer IP header. It is 0.0.0.0 if unknown or the tunnel is over IPv6.')
agent_tunnel_remote_ip4_addr = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 5), inet_address_i_pv4()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentTunnelRemoteIP4Addr.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelRemoteIP4Addr.setDescription('The address of the Remote endpoint of the tunnel i.e. the destination address used in the outer IP header. It is 0.0.0.0 if the tunnel is unknown or IPv6 address, or not a point to point link')
agent_tunnel_local_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
agentTunnelLocalIfIndex.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelLocalIfIndex.setDescription('Specifies the interface for IPv6 Tunnel Source')
agent_tunnel_status = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 7), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
agentTunnelStatus.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelStatus.setDescription('Status of this instance.Row can be added or deleted by setting the value to createAndGo/destroy active(1) - this Tunnel instance is active createAndGo(4) - set to this value to create an instance destroy(6) - set to this value to delete an instance')
agent_tunnel_icmp_unreachable_mode = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
agentTunnelIcmpUnreachableMode.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIcmpUnreachableMode.setDescription('Specifies the Mode of Sending ICMPv6 Unreachable messages on this tunnel interface.')
agent_tunnel_ipv6_prefix_table = mib_table((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2))
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixTable.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixTable.setDescription('A table of the IPV6 prefixes associated with tunnel instances')
agent_tunnel_ipv6_prefix_entry = mib_table_row((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1)).setIndexNames((0, 'IPV6-TUNNEL-MIB', 'agentTunnelID'), (0, 'IPV6-TUNNEL-MIB', 'agentTunnelIPV6PrefixPrefix'), (0, 'IPV6-TUNNEL-MIB', 'agentTunnelIPV6PrefixPrefixLen'))
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixEntry.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixEntry.setDescription('')
agent_tunnel_ipv6_prefix_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1, 1), ipv6_address_prefix())
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixPrefix.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixPrefix.setDescription('The prefix associated with the tunnel interface. The data type is used to model the IPV6 address. It is a binary string of 16 octects in network byte-order. It specifies the IP address of tunnel which will be in IPV6 Format, generated using internal interface number.')
agent_tunnel_ipv6_prefix_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1, 2), inet_address_prefix_length())
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixPrefixLen.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixPrefixLen.setDescription('The length of the prefix (in bits).')
agent_tunnel_ipv6_prefix_status = mib_table_column((1, 3, 6, 1, 4, 1, 7244, 2, 27, 1, 2, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixStatus.setStatus('current')
if mibBuilder.loadTexts:
agentTunnelIPV6PrefixStatus.setDescription('Status of this instance.Row can be added or deleted by setting the value to createAndGo/destroy active(1) - this Tunnel instance is active createAndGo(4) - set to this value to create an instance destroy(6) - set to this value to delete an instance')
mibBuilder.exportSymbols('IPV6-TUNNEL-MIB', agentTunnelStatus=agentTunnelStatus, PYSNMP_MODULE_ID=ipv6Tunnel, agentTunnelIcmpUnreachableMode=agentTunnelIcmpUnreachableMode, agentTunnelIPV6PrefixEntry=agentTunnelIPV6PrefixEntry, agentTunnelIPV6Group=agentTunnelIPV6Group, agentTunnelMode=agentTunnelMode, agentTunnelLocalIfIndex=agentTunnelLocalIfIndex, agentTunnelIPV6Table=agentTunnelIPV6Table, agentTunnelIPV6PrefixStatus=agentTunnelIPV6PrefixStatus, agentTunnelLocalIP4Addr=agentTunnelLocalIP4Addr, agentTunnelIPV6PrefixTable=agentTunnelIPV6PrefixTable, ipv6Tunnel=ipv6Tunnel, agentTunnelIPV6PrefixPrefix=agentTunnelIPV6PrefixPrefix, agentTunnelIPV6PrefixPrefixLen=agentTunnelIPV6PrefixPrefixLen, agentTunnelIPV6Entry=agentTunnelIPV6Entry, agentTunnelID=agentTunnelID, agentTunnelRemoteIP4Addr=agentTunnelRemoteIP4Addr, agentTunnelIfIndex=agentTunnelIfIndex) |
BASEURL = "https://fnbr.co/api"
VALID_IMAGE_TYPES = ['emote','glider','emoji','loading','outfit','pickaxe','skydive','umbrella','misc']
VALID_IMAGE_LIMIT_MIN = 1
VALID_IMAGE_LIMIT_MAX = 15
NONE_TYPE = "none"
ERROR_TYPE = "error"
STATS_TYPE = "stats"
IMAGE_TYPE = "image"
SHOP_TYPE = "shop"
| baseurl = 'https://fnbr.co/api'
valid_image_types = ['emote', 'glider', 'emoji', 'loading', 'outfit', 'pickaxe', 'skydive', 'umbrella', 'misc']
valid_image_limit_min = 1
valid_image_limit_max = 15
none_type = 'none'
error_type = 'error'
stats_type = 'stats'
image_type = 'image'
shop_type = 'shop' |
# Title: Validate Binary Search Tree
# Runtime: 52 ms
# Memory: 16.6 MB
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
# Time Complexity: O(n)
# Space Complexity: O(n)
class Solution:
def postOrderTraverse(self, root: TreeNode, lst: List):
if not root:
return
self.postOrderTraverse(root.left, lst)
lst.append(root.val)
self.postOrderTraverse(root.right, lst)
def isSorted(self, lst: List) -> bool:
for i in range(len(lst) - 1):
if lst[i] >= lst[i + 1]:
return False
return True
def isValidBST(self, root: TreeNode) -> bool:
lst = []
self.postOrderTraverse(root, lst)
return self.isSorted(lst)
| class Solution:
def post_order_traverse(self, root: TreeNode, lst: List):
if not root:
return
self.postOrderTraverse(root.left, lst)
lst.append(root.val)
self.postOrderTraverse(root.right, lst)
def is_sorted(self, lst: List) -> bool:
for i in range(len(lst) - 1):
if lst[i] >= lst[i + 1]:
return False
return True
def is_valid_bst(self, root: TreeNode) -> bool:
lst = []
self.postOrderTraverse(root, lst)
return self.isSorted(lst) |
# RUN: test-output.sh %s
x = 1
def adder():
y = 2
def inner(z):
return x + y + z
return inner(10)
print("Start") # OUTPUT-LABEL: Start
print(adder()) # OUTPUT-NEXT: 13
print("End") # OUTPUT-LABEL: End
| x = 1
def adder():
y = 2
def inner(z):
return x + y + z
return inner(10)
print('Start')
print(adder())
print('End') |
parameter_lists_copy = [bar for bar in parameter_lists]
for bar in parameter_lists_copy:
if param_index >= len(bar.GetParameters()):
parameter_lists.remove(bar)
| parameter_lists_copy = [bar for bar in parameter_lists]
for bar in parameter_lists_copy:
if param_index >= len(bar.GetParameters()):
parameter_lists.remove(bar) |
# example of definitions of names part 3
#global name
X = 11
# access to global name from function
def f():
if __name__ == '__main__':
print(X)
# changing global name X in module
def g():
global X
X = 22
if __name__ == '__main__':
print(X)
def h1():
X = 33 # locale name in function
def nested():
print(X) # link to local name
if __name__ == '__main__':
nested()
def h2():
X = 33 # locale name in function
def nested():
nonlocal X
X = 44
print(X)
if __name__ == '__main__':
nested()
print(X)
if __name__ == '__main__':
print(X) # 11
f() # 11
g() # 22
print(X) # 22 - X in function is global
h1() # 33 - X in h1 is local
h2() # 44 - X is nonlocal and seen from h2() function
| x = 11
def f():
if __name__ == '__main__':
print(X)
def g():
global X
x = 22
if __name__ == '__main__':
print(X)
def h1():
x = 33
def nested():
print(X)
if __name__ == '__main__':
nested()
def h2():
x = 33
def nested():
nonlocal X
x = 44
print(X)
if __name__ == '__main__':
nested()
print(X)
if __name__ == '__main__':
print(X)
f()
g()
print(X)
h1()
h2() |
def gcdRecur(a,b):
'''
a,b:positive integers
returns a positive integer, the GCD of a and b
'''
if b==0:
return a
else:
return gcdRecur(b,a%b)
| def gcd_recur(a, b):
"""
a,b:positive integers
returns a positive integer, the GCD of a and b
"""
if b == 0:
return a
else:
return gcd_recur(b, a % b) |
def query_tekst(source, target):
postgreSQL_select_Query = f"SELECT MIN(r.seq) AS seq, " \
f"e.old_id AS id, " \
f"sum(e.distance) AS distance, " \
f"ST_Collect(e.the_geom) AS geom " \
f"FROM pgr_dijkstra('SELECT id, source, target, distance as cost FROM public.\"00DrogiINTER_noded\"', {source}, {target}, false ) AS r, " \
f"public.\"00DrogiINTER_noded\" AS e " \
f"WHERE r.edge=e.id " \
f"GROUP BY e.old_id"
# print(postgreSQL_select_Query)
return postgreSQL_select_Query
def sum_length_from_scratch(tablica):
# print(tablica)
dlugosc_drogi = 0
for row in tablica:
dlugosc_drogi = dlugosc_drogi + float(row[2])
return dlugosc_drogi
| def query_tekst(source, target):
postgre_sql_select__query = f"""SELECT MIN(r.seq) AS seq, e.old_id AS id, sum(e.distance) AS distance, ST_Collect(e.the_geom) AS geom FROM pgr_dijkstra('SELECT id, source, target, distance as cost FROM public."00DrogiINTER_noded"', {source}, {target}, false ) AS r, public."00DrogiINTER_noded" AS e WHERE r.edge=e.id GROUP BY e.old_id"""
return postgreSQL_select_Query
def sum_length_from_scratch(tablica):
dlugosc_drogi = 0
for row in tablica:
dlugosc_drogi = dlugosc_drogi + float(row[2])
return dlugosc_drogi |
{
"targets": [
{
"target_name": "ledcontrol",
"sources": [ "led-control.cpp", "include/gpio-driver.cpp",
"include/spi-driver.cpp", "include/ws2801-driver.cpp" ],
},
{
"target_name": "spectrum",
"sources": [ "i2c_spectrum.cc" ],
"include_dirs": [
"/usr/include/glib-2.0",
"/usr/lib/glib-2.0/include",
"/usr/include/gtk-2.0",
"/usr/lib/gtk-2.0/include",
"/usr/include/atk-1.0",
"/usr/include/cairo",
"/usr/include/gdk-pixbuf-2.0",
"/usr/include/pango-1.0",
"/usr/include/pixman-1",
"/usr/include/freetype2",
"/usr/include/libpng12",
],
}
]
}
| {'targets': [{'target_name': 'ledcontrol', 'sources': ['led-control.cpp', 'include/gpio-driver.cpp', 'include/spi-driver.cpp', 'include/ws2801-driver.cpp']}, {'target_name': 'spectrum', 'sources': ['i2c_spectrum.cc'], 'include_dirs': ['/usr/include/glib-2.0', '/usr/lib/glib-2.0/include', '/usr/include/gtk-2.0', '/usr/lib/gtk-2.0/include', '/usr/include/atk-1.0', '/usr/include/cairo', '/usr/include/gdk-pixbuf-2.0', '/usr/include/pango-1.0', '/usr/include/pixman-1', '/usr/include/freetype2', '/usr/include/libpng12']}]} |
def bubble_sort(input_list):
last_position = len(input_list) - 1
made_changes = True
while made_changes:
made_changes = False
for i in range(0, last_position):
if input_list[i] > input_list[i + 1]:
input_list[i], input_list[i + 1] = input_list[i + 1], input_list[i]
made_changes = True
last_position -= 1
return input_list
| def bubble_sort(input_list):
last_position = len(input_list) - 1
made_changes = True
while made_changes:
made_changes = False
for i in range(0, last_position):
if input_list[i] > input_list[i + 1]:
(input_list[i], input_list[i + 1]) = (input_list[i + 1], input_list[i])
made_changes = True
last_position -= 1
return input_list |
class Solution:
def trap(self, height: List[int]) -> int:
box = 0
left_max = 0
right_max = 0
left = 0
right = len(height)-1
while left<right:
if height[left]<height[right]:
if height[left]>left_max:
left_max = height[left]
else:
box += left_max - height[left]
left+=1
else:
if height[right]>right_max:
right_max = height[right]
else:
box += right_max - height[right]
right-=1
return box
| class Solution:
def trap(self, height: List[int]) -> int:
box = 0
left_max = 0
right_max = 0
left = 0
right = len(height) - 1
while left < right:
if height[left] < height[right]:
if height[left] > left_max:
left_max = height[left]
else:
box += left_max - height[left]
left += 1
else:
if height[right] > right_max:
right_max = height[right]
else:
box += right_max - height[right]
right -= 1
return box |
'''
70. Climbing Stairs
https://leetcode.com/problems/climbing-stairs/
You are climbing a staircase. It takes n steps to reach the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Example 1:
Input: n = 2
Output: 2
Explanation: There are two ways to climb to the top.
1. 1 step + 1 step
2. 2 steps
Example 2:
Input: n = 3
Output: 3
Explanation: There are three ways to climb to the top.
1. 1 step + 1 step + 1 step
2. 1 step + 2 steps
3. 2 steps + 1 step
'''
class Solution:
def climbStairs(self, n: int) -> int:
if n > 2:
ai, an_2, an_1 = 0, 2, 1
for _ in range(n-3, -1, -1):
ai = an_1 + an_2
an_2, an_1 = ai, an_2
# print(ai, an_2, an_1)
return ai
elif n == 2:
return 2
else: # n == 1, 0:
return 1
| """
70. Climbing Stairs
https://leetcode.com/problems/climbing-stairs/
You are climbing a staircase. It takes n steps to reach the top.
Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?
Example 1:
Input: n = 2
Output: 2
Explanation: There are two ways to climb to the top.
1. 1 step + 1 step
2. 2 steps
Example 2:
Input: n = 3
Output: 3
Explanation: There are three ways to climb to the top.
1. 1 step + 1 step + 1 step
2. 1 step + 2 steps
3. 2 steps + 1 step
"""
class Solution:
def climb_stairs(self, n: int) -> int:
if n > 2:
(ai, an_2, an_1) = (0, 2, 1)
for _ in range(n - 3, -1, -1):
ai = an_1 + an_2
(an_2, an_1) = (ai, an_2)
return ai
elif n == 2:
return 2
else:
return 1 |
#
# PySNMP MIB module TIARA-GENERIC-HDLC-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/TIARA-GENERIC-HDLC-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 21:08:59 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, iso, NotificationType, Counter32, IpAddress, MibIdentifier, ObjectIdentity, Integer32, ModuleIdentity, Bits, Unsigned32, Gauge32, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "iso", "NotificationType", "Counter32", "IpAddress", "MibIdentifier", "ObjectIdentity", "Integer32", "ModuleIdentity", "Bits", "Unsigned32", "Gauge32", "Counter64")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
bundleId, = mibBuilder.importSymbols("TIARA-BUNDLE-MIB", "bundleId")
tiaraMgmt, = mibBuilder.importSymbols("TIARA-NETWORKS-SMI", "tiaraMgmt")
tiaraGenHdlcMib = ModuleIdentity((1, 3, 6, 1, 4, 1, 3174, 2, 15))
if mibBuilder.loadTexts: tiaraGenHdlcMib.setLastUpdated('9907010000Z')
if mibBuilder.loadTexts: tiaraGenHdlcMib.setOrganization('Tiara Networks Inc.')
genHdlcTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1), )
if mibBuilder.loadTexts: genHdlcTable.setStatus('current')
genHdlcTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1, 1), ).setIndexNames((0, "TIARA-BUNDLE-MIB", "bundleId"))
if mibBuilder.loadTexts: genHdlcTableEntry.setStatus('current')
genHdlcKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 120)).clone(10)).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: genHdlcKeepAlive.setStatus('current')
genHdlcMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1, 1, 2), Integer32().clone(1500)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: genHdlcMtu.setStatus('current')
genHdlcStatsTable = MibTable((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2), )
if mibBuilder.loadTexts: genHdlcStatsTable.setStatus('current')
genHdlcStatsTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1), ).setIndexNames((0, "TIARA-BUNDLE-MIB", "bundleId"))
if mibBuilder.loadTexts: genHdlcStatsTableEntry.setStatus('current')
genHdlcStatsBytesRxLastBootClear = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsBytesRxLastBootClear.setStatus('current')
genHdlcStatsBytesTxLastBootClear = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsBytesTxLastBootClear.setStatus('current')
genHdlcStatsPktsRxLastBootClear = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsPktsRxLastBootClear.setStatus('current')
genHdlcStatsPktsTxLastBootClear = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsPktsTxLastBootClear.setStatus('current')
genHdlcStatsErrPktsRxLastBootClear = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsErrPktsRxLastBootClear.setStatus('current')
genHdlcStatsUpDownStatesLastBootClear = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsUpDownStatesLastBootClear.setStatus('current')
genHdlcStatsBytesRxLastFiveMins = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsBytesRxLastFiveMins.setStatus('current')
genHdlcStatsBytesTxLastFiveMins = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsBytesTxLastFiveMins.setStatus('current')
genHdlcStatsPktsRxLastFiveMins = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsPktsRxLastFiveMins.setStatus('current')
genHdlcStatsPktsTxLastFiveMins = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsPktsTxLastFiveMins.setStatus('current')
genHdlcStatsErrPktsRxLastFiveMins = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsErrPktsRxLastFiveMins.setStatus('current')
genHdlcStatsUpDownStatesLastFiveMins = MibTableColumn((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: genHdlcStatsUpDownStatesLastFiveMins.setStatus('current')
mibBuilder.exportSymbols("TIARA-GENERIC-HDLC-MIB", genHdlcStatsUpDownStatesLastBootClear=genHdlcStatsUpDownStatesLastBootClear, genHdlcMtu=genHdlcMtu, genHdlcStatsBytesTxLastFiveMins=genHdlcStatsBytesTxLastFiveMins, genHdlcStatsTableEntry=genHdlcStatsTableEntry, genHdlcStatsPktsRxLastBootClear=genHdlcStatsPktsRxLastBootClear, PYSNMP_MODULE_ID=tiaraGenHdlcMib, genHdlcStatsBytesRxLastFiveMins=genHdlcStatsBytesRxLastFiveMins, genHdlcStatsTable=genHdlcStatsTable, genHdlcKeepAlive=genHdlcKeepAlive, genHdlcTable=genHdlcTable, genHdlcStatsErrPktsRxLastBootClear=genHdlcStatsErrPktsRxLastBootClear, genHdlcStatsErrPktsRxLastFiveMins=genHdlcStatsErrPktsRxLastFiveMins, genHdlcStatsBytesRxLastBootClear=genHdlcStatsBytesRxLastBootClear, genHdlcStatsPktsTxLastBootClear=genHdlcStatsPktsTxLastBootClear, genHdlcStatsUpDownStatesLastFiveMins=genHdlcStatsUpDownStatesLastFiveMins, genHdlcStatsBytesTxLastBootClear=genHdlcStatsBytesTxLastBootClear, genHdlcStatsPktsRxLastFiveMins=genHdlcStatsPktsRxLastFiveMins, tiaraGenHdlcMib=tiaraGenHdlcMib, genHdlcTableEntry=genHdlcTableEntry, genHdlcStatsPktsTxLastFiveMins=genHdlcStatsPktsTxLastFiveMins)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, constraints_intersection, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, iso, notification_type, counter32, ip_address, mib_identifier, object_identity, integer32, module_identity, bits, unsigned32, gauge32, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'iso', 'NotificationType', 'Counter32', 'IpAddress', 'MibIdentifier', 'ObjectIdentity', 'Integer32', 'ModuleIdentity', 'Bits', 'Unsigned32', 'Gauge32', 'Counter64')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(bundle_id,) = mibBuilder.importSymbols('TIARA-BUNDLE-MIB', 'bundleId')
(tiara_mgmt,) = mibBuilder.importSymbols('TIARA-NETWORKS-SMI', 'tiaraMgmt')
tiara_gen_hdlc_mib = module_identity((1, 3, 6, 1, 4, 1, 3174, 2, 15))
if mibBuilder.loadTexts:
tiaraGenHdlcMib.setLastUpdated('9907010000Z')
if mibBuilder.loadTexts:
tiaraGenHdlcMib.setOrganization('Tiara Networks Inc.')
gen_hdlc_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1))
if mibBuilder.loadTexts:
genHdlcTable.setStatus('current')
gen_hdlc_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1, 1)).setIndexNames((0, 'TIARA-BUNDLE-MIB', 'bundleId'))
if mibBuilder.loadTexts:
genHdlcTableEntry.setStatus('current')
gen_hdlc_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 120)).clone(10)).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
genHdlcKeepAlive.setStatus('current')
gen_hdlc_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 1, 1, 2), integer32().clone(1500)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
genHdlcMtu.setStatus('current')
gen_hdlc_stats_table = mib_table((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2))
if mibBuilder.loadTexts:
genHdlcStatsTable.setStatus('current')
gen_hdlc_stats_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1)).setIndexNames((0, 'TIARA-BUNDLE-MIB', 'bundleId'))
if mibBuilder.loadTexts:
genHdlcStatsTableEntry.setStatus('current')
gen_hdlc_stats_bytes_rx_last_boot_clear = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsBytesRxLastBootClear.setStatus('current')
gen_hdlc_stats_bytes_tx_last_boot_clear = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsBytesTxLastBootClear.setStatus('current')
gen_hdlc_stats_pkts_rx_last_boot_clear = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsPktsRxLastBootClear.setStatus('current')
gen_hdlc_stats_pkts_tx_last_boot_clear = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsPktsTxLastBootClear.setStatus('current')
gen_hdlc_stats_err_pkts_rx_last_boot_clear = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsErrPktsRxLastBootClear.setStatus('current')
gen_hdlc_stats_up_down_states_last_boot_clear = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsUpDownStatesLastBootClear.setStatus('current')
gen_hdlc_stats_bytes_rx_last_five_mins = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsBytesRxLastFiveMins.setStatus('current')
gen_hdlc_stats_bytes_tx_last_five_mins = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsBytesTxLastFiveMins.setStatus('current')
gen_hdlc_stats_pkts_rx_last_five_mins = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsPktsRxLastFiveMins.setStatus('current')
gen_hdlc_stats_pkts_tx_last_five_mins = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsPktsTxLastFiveMins.setStatus('current')
gen_hdlc_stats_err_pkts_rx_last_five_mins = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsErrPktsRxLastFiveMins.setStatus('current')
gen_hdlc_stats_up_down_states_last_five_mins = mib_table_column((1, 3, 6, 1, 4, 1, 3174, 2, 15, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
genHdlcStatsUpDownStatesLastFiveMins.setStatus('current')
mibBuilder.exportSymbols('TIARA-GENERIC-HDLC-MIB', genHdlcStatsUpDownStatesLastBootClear=genHdlcStatsUpDownStatesLastBootClear, genHdlcMtu=genHdlcMtu, genHdlcStatsBytesTxLastFiveMins=genHdlcStatsBytesTxLastFiveMins, genHdlcStatsTableEntry=genHdlcStatsTableEntry, genHdlcStatsPktsRxLastBootClear=genHdlcStatsPktsRxLastBootClear, PYSNMP_MODULE_ID=tiaraGenHdlcMib, genHdlcStatsBytesRxLastFiveMins=genHdlcStatsBytesRxLastFiveMins, genHdlcStatsTable=genHdlcStatsTable, genHdlcKeepAlive=genHdlcKeepAlive, genHdlcTable=genHdlcTable, genHdlcStatsErrPktsRxLastBootClear=genHdlcStatsErrPktsRxLastBootClear, genHdlcStatsErrPktsRxLastFiveMins=genHdlcStatsErrPktsRxLastFiveMins, genHdlcStatsBytesRxLastBootClear=genHdlcStatsBytesRxLastBootClear, genHdlcStatsPktsTxLastBootClear=genHdlcStatsPktsTxLastBootClear, genHdlcStatsUpDownStatesLastFiveMins=genHdlcStatsUpDownStatesLastFiveMins, genHdlcStatsBytesTxLastBootClear=genHdlcStatsBytesTxLastBootClear, genHdlcStatsPktsRxLastFiveMins=genHdlcStatsPktsRxLastFiveMins, tiaraGenHdlcMib=tiaraGenHdlcMib, genHdlcTableEntry=genHdlcTableEntry, genHdlcStatsPktsTxLastFiveMins=genHdlcStatsPktsTxLastFiveMins) |
#!/opt/homebrew/opt/python@3.10/bin/python
indata = []
with open("input") as infile:
for line in infile:
line = line.strip()
indata.append(line)
o2_gen_rating = 1
vals = indata.copy()
for i in range(len(indata[0])):
zeroes = 0
ones = 0
for val in vals:
if val[i] == "0":
zeroes += 1
elif val[i] == "1":
ones += 1
else:
raise Exception("invalid input")
if zeroes > ones:
vals = [val for val in vals if val[i] == "0"]
else:
vals = [val for val in vals if val[i] == "1"]
if len(vals) == 1:
o2_gen_rating = int(vals[0], 2)
break
# yeah yeah I should make this a function... this is AoC not the mona lisa...
co2_scrubber_rating = 1
vals = indata.copy()
for i in range(len(indata[0])):
zeroes = 0
ones = 0
for val in vals:
if val[i] == "0":
zeroes += 1
elif val[i] == "1":
ones += 1
else:
raise Exception("invalid input")
if zeroes <= ones:
vals = [val for val in vals if val[i] == "0"]
else:
vals = [val for val in vals if val[i] == "1"]
if len(vals) == 1:
co2_scrubber_rating = int(vals[0], 2)
break
print(f"O2 generator rating: {o2_gen_rating}")
print(f"CO2 scrubber rating: {co2_scrubber_rating}")
print(f"Multiplied: {o2_gen_rating * co2_scrubber_rating}")
| indata = []
with open('input') as infile:
for line in infile:
line = line.strip()
indata.append(line)
o2_gen_rating = 1
vals = indata.copy()
for i in range(len(indata[0])):
zeroes = 0
ones = 0
for val in vals:
if val[i] == '0':
zeroes += 1
elif val[i] == '1':
ones += 1
else:
raise exception('invalid input')
if zeroes > ones:
vals = [val for val in vals if val[i] == '0']
else:
vals = [val for val in vals if val[i] == '1']
if len(vals) == 1:
o2_gen_rating = int(vals[0], 2)
break
co2_scrubber_rating = 1
vals = indata.copy()
for i in range(len(indata[0])):
zeroes = 0
ones = 0
for val in vals:
if val[i] == '0':
zeroes += 1
elif val[i] == '1':
ones += 1
else:
raise exception('invalid input')
if zeroes <= ones:
vals = [val for val in vals if val[i] == '0']
else:
vals = [val for val in vals if val[i] == '1']
if len(vals) == 1:
co2_scrubber_rating = int(vals[0], 2)
break
print(f'O2 generator rating: {o2_gen_rating}')
print(f'CO2 scrubber rating: {co2_scrubber_rating}')
print(f'Multiplied: {o2_gen_rating * co2_scrubber_rating}') |
number = int(input('Please insert any number'))
if number % 2 == 0 :
print('this number is par')
else:
print('this number is impar') | number = int(input('Please insert any number'))
if number % 2 == 0:
print('this number is par')
else:
print('this number is impar') |
first = 'Hello World. This is python string tutorial'
string_methods = ['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold',
'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
print('Starts with "Hello" : {0}'.format(first.startswith('Hello')))
print('Starts with "hello" : {0}'.format(first.startswith('hello')))
print('Ends with "ial" : {0}'.format(first.endswith('ial')))
print('Capitalize "hello": {0}'.format('hello'.capitalize()))
print('Casefold (Lowercase) "HEllo": {0}'.format('hello'.casefold()))
print('Center "hello": {0}'.format('hello'.center(50, '*')))
print('Occurrences of "o" : {0}'.format(first.count('or')))
print('Encode : {0}'.format(first.encode('utf-8', 'xmlcharrefreplace')))
print('Find (finds index) : {0}'.format(first.find('or')))
print('UPPER : {0}'.format(first.upper()))
print('lower : {0}'.format(first.lower()))
print('Replace : {0}'.format(first.replace('or', '*FOR*', -1)))
print('Is Identifier : {0}'.format('def'.isidentifier()))
print('Patition : {0}'.format(first.partition(' ')))
print('RSplit : {0}'.format(first.rsplit(' ', 3)))
print('Split : {0}'.format(first.split(' ', -1)))
print('Index : {0}'.format(first.index('or', 8)))
| first = 'Hello World. This is python string tutorial'
string_methods = ['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
print('Starts with "Hello" : {0}'.format(first.startswith('Hello')))
print('Starts with "hello" : {0}'.format(first.startswith('hello')))
print('Ends with "ial" : {0}'.format(first.endswith('ial')))
print('Capitalize "hello": {0}'.format('hello'.capitalize()))
print('Casefold (Lowercase) "HEllo": {0}'.format('hello'.casefold()))
print('Center "hello": {0}'.format('hello'.center(50, '*')))
print('Occurrences of "o" : {0}'.format(first.count('or')))
print('Encode : {0}'.format(first.encode('utf-8', 'xmlcharrefreplace')))
print('Find (finds index) : {0}'.format(first.find('or')))
print('UPPER : {0}'.format(first.upper()))
print('lower : {0}'.format(first.lower()))
print('Replace : {0}'.format(first.replace('or', '*FOR*', -1)))
print('Is Identifier : {0}'.format('def'.isidentifier()))
print('Patition : {0}'.format(first.partition(' ')))
print('RSplit : {0}'.format(first.rsplit(' ', 3)))
print('Split : {0}'.format(first.split(' ', -1)))
print('Index : {0}'.format(first.index('or', 8))) |
NO_TYPE_PENALTY_TYPES_1 = ["SPE1", "SPE2", "REL", "SIMI"]
NO_TYPE_PENALTY_TYPES_2 = ["SPE1", "SPE2", "SIMI"]
NO_TYPE_PENALTY_EQUI_2 = ["EQUI"]
class F1Metrics:
def __init__(self, predicted_types, predicted_scores, target_types, target_scores, num_tokens):
self._predicted_types = predicted_types
self._predicted_scores = predicted_scores
self._target_types = target_types
self._target_scores = target_scores
self._num_tokens = num_tokens
self._total_num_tokens = sum(num_tokens)
def print_statistics(self):
print("[F1 Type], where alignment types need to match, but scores are ignored: {}".format(self.f1_type_match()))
print("[F1 Score], where alignment type is ignored, but each alignment is penalized when scores do not match: {}".format(self.f1_score_match()))
print("[F1 T+S], where alignment types need to match and each alignment is penalized when scores do not match: {}".format(self.f1_all_match()))
def f1_type_match(self):
overlap = 0
for i in range(len(self._predicted_types) - 1):
if self._predicted_types[i] == self._target_types[i]:
overlap += self._num_tokens[i]
return self.count_f1(overlap, overlap)
def f1_score_match(self):
overlap = 0
for i in range(len(self._predicted_scores) - 1):
overlap += self._num_tokens[i] * (1 - abs(self._predicted_scores[i] - self._target_scores[i]) / 5)
return self.count_f1(overlap, overlap)
def f1_all_match(self):
overlap = 0
for pt, ps, tt, ts, tokens in zip(self._predicted_types, self._predicted_scores, self._target_types, self._target_scores, self._num_tokens):
if pt == tt or self.is_special_case1(pt, ps, tt, ts) or self.is_special_case2(pt, ps, tt, ts):
overlap += tokens * (1 - abs(ps - ts) / 5)
return self.count_f1(overlap, overlap)
def is_special_case1(self, predicted_type, predicted_score, target_type, target_score):
if target_score <= 2 and predicted_score <= 2:
if predicted_type in NO_TYPE_PENALTY_TYPES_1 and target_type in NO_TYPE_PENALTY_TYPES_1 and predicted_type != target_type:
return True
return False
def is_special_case2(self, predicted_type, predicted_score, target_type, target_score):
if predicted_score == 4 or target_score == 4:
if predicted_type in NO_TYPE_PENALTY_EQUI_2 and target_score >= 4 and target_type in NO_TYPE_PENALTY_TYPES_2 \
or target_type in NO_TYPE_PENALTY_EQUI_2 and predicted_score >= 4 and predicted_type in NO_TYPE_PENALTY_TYPES_2:
return True
return False
def count_f1(self, overlap_gs, overlap_sys):
precision = overlap_gs / self._total_num_tokens
recall = overlap_sys / self._total_num_tokens
return 2 * precision * recall/ (precision + recall)
| no_type_penalty_types_1 = ['SPE1', 'SPE2', 'REL', 'SIMI']
no_type_penalty_types_2 = ['SPE1', 'SPE2', 'SIMI']
no_type_penalty_equi_2 = ['EQUI']
class F1Metrics:
def __init__(self, predicted_types, predicted_scores, target_types, target_scores, num_tokens):
self._predicted_types = predicted_types
self._predicted_scores = predicted_scores
self._target_types = target_types
self._target_scores = target_scores
self._num_tokens = num_tokens
self._total_num_tokens = sum(num_tokens)
def print_statistics(self):
print('[F1 Type], where alignment types need to match, but scores are ignored: {}'.format(self.f1_type_match()))
print('[F1 Score], where alignment type is ignored, but each alignment is penalized when scores do not match: {}'.format(self.f1_score_match()))
print('[F1 T+S], where alignment types need to match and each alignment is penalized when scores do not match: {}'.format(self.f1_all_match()))
def f1_type_match(self):
overlap = 0
for i in range(len(self._predicted_types) - 1):
if self._predicted_types[i] == self._target_types[i]:
overlap += self._num_tokens[i]
return self.count_f1(overlap, overlap)
def f1_score_match(self):
overlap = 0
for i in range(len(self._predicted_scores) - 1):
overlap += self._num_tokens[i] * (1 - abs(self._predicted_scores[i] - self._target_scores[i]) / 5)
return self.count_f1(overlap, overlap)
def f1_all_match(self):
overlap = 0
for (pt, ps, tt, ts, tokens) in zip(self._predicted_types, self._predicted_scores, self._target_types, self._target_scores, self._num_tokens):
if pt == tt or self.is_special_case1(pt, ps, tt, ts) or self.is_special_case2(pt, ps, tt, ts):
overlap += tokens * (1 - abs(ps - ts) / 5)
return self.count_f1(overlap, overlap)
def is_special_case1(self, predicted_type, predicted_score, target_type, target_score):
if target_score <= 2 and predicted_score <= 2:
if predicted_type in NO_TYPE_PENALTY_TYPES_1 and target_type in NO_TYPE_PENALTY_TYPES_1 and (predicted_type != target_type):
return True
return False
def is_special_case2(self, predicted_type, predicted_score, target_type, target_score):
if predicted_score == 4 or target_score == 4:
if predicted_type in NO_TYPE_PENALTY_EQUI_2 and target_score >= 4 and (target_type in NO_TYPE_PENALTY_TYPES_2) or (target_type in NO_TYPE_PENALTY_EQUI_2 and predicted_score >= 4 and (predicted_type in NO_TYPE_PENALTY_TYPES_2)):
return True
return False
def count_f1(self, overlap_gs, overlap_sys):
precision = overlap_gs / self._total_num_tokens
recall = overlap_sys / self._total_num_tokens
return 2 * precision * recall / (precision + recall) |
#!/usr/bin/python
class FilterModule(object):
def filters(self):
return {
'get_mid_stages' : self.get_mid_stages,
'get_preprod' : self.get_preprod
}
def get_preprod(self, stages):
for i in range(len(stages)):
if stages[i]["name"] == "prod" :
return stages[i-1]["name"]
def get_mid_stages(self, stages):
preprod = self.get_preprod(stages)
mid_stages = []
for stage in stages:
if stage["name"] not in ['build', preprod, 'prod']:
mid_stages.append(stage["name"])
return mid_stages
| class Filtermodule(object):
def filters(self):
return {'get_mid_stages': self.get_mid_stages, 'get_preprod': self.get_preprod}
def get_preprod(self, stages):
for i in range(len(stages)):
if stages[i]['name'] == 'prod':
return stages[i - 1]['name']
def get_mid_stages(self, stages):
preprod = self.get_preprod(stages)
mid_stages = []
for stage in stages:
if stage['name'] not in ['build', preprod, 'prod']:
mid_stages.append(stage['name'])
return mid_stages |
# Replace the below values with your values
NEXMO_API_KEY = "<your-api-key>"
NEXMO_API_SECRET = "<your-api-secret>"
NEXMO_NUMBER = "+447512345678"
NEXMO_APPLICATION_ID = "<nexmo-application-id>"
NEXMO_PRIVATE_KEY = '''-----BEGIN PRIVATE KEY-----
<your-private-key>
-----END PRIVATE KEY-----'''
# You will have to sign up for a free Microsoft account to use the Microsoft Translator Speech API: http://docs.microsofttranslator.com/speech-translate.html
MICROSOFT_TRANSLATION_SPEECH_CLIENT_SECRET = "<your-api-key>"
| nexmo_api_key = '<your-api-key>'
nexmo_api_secret = '<your-api-secret>'
nexmo_number = '+447512345678'
nexmo_application_id = '<nexmo-application-id>'
nexmo_private_key = '-----BEGIN PRIVATE KEY-----\n<your-private-key>\n-----END PRIVATE KEY-----'
microsoft_translation_speech_client_secret = '<your-api-key>' |
a=m=''
for x in input()[::-1]:
if x>=m: a+=x
m=max(m,x)
print(a[::-1])
| a = m = ''
for x in input()[::-1]:
if x >= m:
a += x
m = max(m, x)
print(a[::-1]) |
fhand = open('mbox-short_1.txt')
count = 0
for line in fhand:
words = line.split()
#print('Debug: ', words)
if len(words) > 2 and words[0] == 'From' :
print(words[2]) | fhand = open('mbox-short_1.txt')
count = 0
for line in fhand:
words = line.split()
if len(words) > 2 and words[0] == 'From':
print(words[2]) |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
# class Solution:
# def tree2str(self, t: TreeNode) -> str:
# def buildTree(node):
# ans = ''
# if node:
# if not node.left and not node.right:
# ans = f'{node.val}'
# elif node.left and node.right:
# ans = f'{node.val}({buildTree(node.left)})({buildTree(node.right)})'
# elif not node.left:
# ans = f'{node.val}()({buildTree(node.right)})'
# else:
# ans = f'{node.val}({buildTree(node.left)})'
# return ans
# return buildTree(t)
class Solution:
def tree2str(self, t: TreeNode) -> str:
'''
use stack, inorder traversal
'''
stack = [t]
visited = set()
ans = ''
if not t:
return ''
while stack:
top = stack[-1]
if top in visited:
stack.pop()
ans += ')'
else:
visited.add(top)
ans += f'({top.val}'
if not top.left and top.right:
ans += '()'
if top.right:
stack.append(top.right)
if top.left:
stack.append(top.left)
return ans[1:-1]
| class Solution:
def tree2str(self, t: TreeNode) -> str:
"""
use stack, inorder traversal
"""
stack = [t]
visited = set()
ans = ''
if not t:
return ''
while stack:
top = stack[-1]
if top in visited:
stack.pop()
ans += ')'
else:
visited.add(top)
ans += f'({top.val}'
if not top.left and top.right:
ans += '()'
if top.right:
stack.append(top.right)
if top.left:
stack.append(top.left)
return ans[1:-1] |
class Tier:
def __init__(self):
self.children = [None] * 26
self.complete_word = 0
def __str__(self):
return f'{self.children} and {self.complete_word}'
class WordDictionary:
def __init__(self):
self.root = Tier()
self.found = list()
def get_index(self, char):
if char.isupper():
return abs(ord('A') - ord(char))
else:
return abs(ord('a') - ord(char))
def addWord(self, word):
curr_level = self.root
for char in word:
index = self.get_index(char)
if not curr_level.children[index]:
curr_level.children[index] = Tier()
curr_level = curr_level.children[index]
curr_level.complete_word += 1
def search(self, word):
curr_level = self.root
self.found = list()
self.dfs(word, 0, curr_level)
return True if self.found else False
def dfs(self, word, index, curr_level):
if index == len(word):
if curr_level.complete_word > 0:
self.found.append(True)
return
char = word[index]
if char == '.':
for level in curr_level.children:
if level:
self.dfs(word, index + 1, level)
if self.found:
return
else:
i = self.get_index(char)
if curr_level.children[i]:
self.dfs(word, index + 1, curr_level.children[i])
# Your WordDictionary object will be instantiated and called as such:
# obj = WordDictionary()
# obj.addWord(word)
# param_2 = obj.search(word)
s = WordDictionary()
s.addWord('at')
s.addWord('and')
s.addWord('an')
s.addWord('at')
s.addWord('add')
print(s)
| class Tier:
def __init__(self):
self.children = [None] * 26
self.complete_word = 0
def __str__(self):
return f'{self.children} and {self.complete_word}'
class Worddictionary:
def __init__(self):
self.root = tier()
self.found = list()
def get_index(self, char):
if char.isupper():
return abs(ord('A') - ord(char))
else:
return abs(ord('a') - ord(char))
def add_word(self, word):
curr_level = self.root
for char in word:
index = self.get_index(char)
if not curr_level.children[index]:
curr_level.children[index] = tier()
curr_level = curr_level.children[index]
curr_level.complete_word += 1
def search(self, word):
curr_level = self.root
self.found = list()
self.dfs(word, 0, curr_level)
return True if self.found else False
def dfs(self, word, index, curr_level):
if index == len(word):
if curr_level.complete_word > 0:
self.found.append(True)
return
char = word[index]
if char == '.':
for level in curr_level.children:
if level:
self.dfs(word, index + 1, level)
if self.found:
return
else:
i = self.get_index(char)
if curr_level.children[i]:
self.dfs(word, index + 1, curr_level.children[i])
s = word_dictionary()
s.addWord('at')
s.addWord('and')
s.addWord('an')
s.addWord('at')
s.addWord('add')
print(s) |
class Node:
def __init__(self, val):
self.value = val
self.next = None
class LinkedList(object):
def __init__(self, Node):
self.head = Node
# Insert Node at the front.
def push(self, val):
# Allocate the new node
new_node = Node(val)
# Point the new node's next to head
new_node.next = self.head
# modify the head
self.head = new_node
# Insert Node at the end
def append(self, val):
new_node = Node(4)
# Linked List is empty
if self.head is None:
self.head = new_node
# traverse the list
last = self.head
while last.next is not None:
last = last.next
last.next = new_node
def insertAfterIndex(self, index, value):
if index < 0:
return
# create new node
new_node = Node(value)
prev = None
curr = self.head
for _i in range(index + 1):
prev = curr
curr = curr.next
if prev:
prev.next = new_node
new_node.next = curr
def insertAfterValue(self, value_after, value):
curr = self.head
while curr is not None:
if curr.value == value_after:
break
curr = curr.next
else:
return
new_node = Node(value)
new_node.next = curr.next
curr.next = new_node
def deleteNode(self, key):
temp = self.head
if temp is not None:
if temp.value == key:
self.head = temp.next
temp = None
return
while temp is not None:
if temp.value == key:
break
prev = temp
temp = temp.next
if temp is None:
return
prev.next = temp.next
temp = None
# https://stackoverflow.com/questions/28269643/python-unordered-listwith-nodes-str-method
def __str__(self):
temp = self.head
result = "["
if temp != None:
result += " " + str(temp.value) + " -> "
temp = temp.next
while temp:
result += " " + str(temp.value)
temp = temp.next
if temp:
result += " -> "
else:
result += " -> NULL"
result += " ]"
return result
if __name__ == "__main__":
n1 = Node(1)
n2 = Node(2)
n1.next = n2
n3 = Node(3)
n2.next = n3
linkedList = LinkedList(n1)
print(str(linkedList))
linkedList.push(0)
print(str(linkedList))
linkedList.append(4)
print(str(linkedList))
linkedList.insertAfterIndex(2, 2.5)
print(str(linkedList))
linkedList.insertAfterIndex(1, 1.5)
print(str(linkedList))
linkedList.insertAfterIndex(-1, 0.5)
print(str(linkedList))
linkedList.insertAfterIndex(6, 4.5)
print(str(linkedList))
linkedList.insertAfterValue(1.5, 1.75)
print(str(linkedList))
linkedList.insertAfterValue(0, 0.25)
print(str(linkedList))
linkedList.deleteNode(100)
print(str(linkedList))
# linkedList = LinkedList(None)
# print(str(linkedList))
# linkedList.insertAfterValue(0, 0.25)
# print(str(linkedList))
| class Node:
def __init__(self, val):
self.value = val
self.next = None
class Linkedlist(object):
def __init__(self, Node):
self.head = Node
def push(self, val):
new_node = node(val)
new_node.next = self.head
self.head = new_node
def append(self, val):
new_node = node(4)
if self.head is None:
self.head = new_node
last = self.head
while last.next is not None:
last = last.next
last.next = new_node
def insert_after_index(self, index, value):
if index < 0:
return
new_node = node(value)
prev = None
curr = self.head
for _i in range(index + 1):
prev = curr
curr = curr.next
if prev:
prev.next = new_node
new_node.next = curr
def insert_after_value(self, value_after, value):
curr = self.head
while curr is not None:
if curr.value == value_after:
break
curr = curr.next
else:
return
new_node = node(value)
new_node.next = curr.next
curr.next = new_node
def delete_node(self, key):
temp = self.head
if temp is not None:
if temp.value == key:
self.head = temp.next
temp = None
return
while temp is not None:
if temp.value == key:
break
prev = temp
temp = temp.next
if temp is None:
return
prev.next = temp.next
temp = None
def __str__(self):
temp = self.head
result = '['
if temp != None:
result += ' ' + str(temp.value) + ' -> '
temp = temp.next
while temp:
result += ' ' + str(temp.value)
temp = temp.next
if temp:
result += ' -> '
else:
result += ' -> NULL'
result += ' ]'
return result
if __name__ == '__main__':
n1 = node(1)
n2 = node(2)
n1.next = n2
n3 = node(3)
n2.next = n3
linked_list = linked_list(n1)
print(str(linkedList))
linkedList.push(0)
print(str(linkedList))
linkedList.append(4)
print(str(linkedList))
linkedList.insertAfterIndex(2, 2.5)
print(str(linkedList))
linkedList.insertAfterIndex(1, 1.5)
print(str(linkedList))
linkedList.insertAfterIndex(-1, 0.5)
print(str(linkedList))
linkedList.insertAfterIndex(6, 4.5)
print(str(linkedList))
linkedList.insertAfterValue(1.5, 1.75)
print(str(linkedList))
linkedList.insertAfterValue(0, 0.25)
print(str(linkedList))
linkedList.deleteNode(100)
print(str(linkedList)) |
# Complete the compareTriplets function below.
def compareTriplets(a, b):
pointa = 0
pointb = 0
for i in range(0, 3):
if a[i] > b[i]:
pointa += 1
elif a[i] < b[i]:
pointb += 1
return (pointa, pointb)
if __name__ == '__main__':
a = list(map(int, input().rstrip().split()))
b = list(map(int, input().rstrip().split()))
result = compareTriplets(a, b)
print(result)
| def compare_triplets(a, b):
pointa = 0
pointb = 0
for i in range(0, 3):
if a[i] > b[i]:
pointa += 1
elif a[i] < b[i]:
pointb += 1
return (pointa, pointb)
if __name__ == '__main__':
a = list(map(int, input().rstrip().split()))
b = list(map(int, input().rstrip().split()))
result = compare_triplets(a, b)
print(result) |
def fact(n):
if n==1:
return 1
return n*fact(n-1)
print(fact(2))
| def fact(n):
if n == 1:
return 1
return n * fact(n - 1)
print(fact(2)) |
r=[]
for _ in range(int(input())):
n,z,y,x=input().split()
x,y,z=int(x),int(y),int(z)
r.append((x,y,z,n))
r.sort()
print(r[-1][3])
print(r[0][3]) | r = []
for _ in range(int(input())):
(n, z, y, x) = input().split()
(x, y, z) = (int(x), int(y), int(z))
r.append((x, y, z, n))
r.sort()
print(r[-1][3])
print(r[0][3]) |
#
# PySNMP MIB module Juniper-IP-TUNNEL-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Juniper-IP-TUNNEL-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:03: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)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection")
InterfaceIndex, = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex")
juniMibs, = mibBuilder.importSymbols("Juniper-MIBs", "juniMibs")
JuniName, JuniNextIfIndex = mibBuilder.importSymbols("Juniper-TC", "JuniName", "JuniNextIfIndex")
NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance")
Unsigned32, ModuleIdentity, Counter32, iso, ObjectIdentity, Integer32, Gauge32, MibIdentifier, IpAddress, Bits, NotificationType, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "ModuleIdentity", "Counter32", "iso", "ObjectIdentity", "Integer32", "Gauge32", "MibIdentifier", "IpAddress", "Bits", "NotificationType", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64")
DisplayString, TruthValue, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "TextualConvention", "RowStatus")
juniIpTunnelMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51))
juniIpTunnelMIB.setRevisions(('2003-09-29 17:29', '2002-09-16 21:44', '2002-01-14 18:16', '2001-07-23 20:57',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: juniIpTunnelMIB.setRevisionsDescriptions(('Product rebranding (JUNOSe).', 'Replaced Unisphere names with Juniper names.', 'Added juniIpTunnelSequenceNumbers.', 'Initial version of this MIB module.',))
if mibBuilder.loadTexts: juniIpTunnelMIB.setLastUpdated('200309291729Z')
if mibBuilder.loadTexts: juniIpTunnelMIB.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts: juniIpTunnelMIB.setContactInfo(' Juniper Networks, Inc. Postal: 10 Technology Park Drive Westford, MA 01886-3146 USA Tel: +1 978 589 5800 Email: mib@Juniper.net')
if mibBuilder.loadTexts: juniIpTunnelMIB.setDescription('The IP Tunnel MIB for the Juniper Networks enterprise.')
juniIpTunnelInterfaceObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1))
juniIpTunnelNextIfIndex = MibScalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 1), JuniNextIfIndex()).setMaxAccess("readonly")
if mibBuilder.loadTexts: juniIpTunnelNextIfIndex.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelNextIfIndex.setDescription('Coordinate ifIndex value allocation for entries in juniIpTunnelIfTable. A GET of this object returns the next available ifIndex value to be used to create an entry in the associated interface table; or zero, if no valid ifIndex value is available. This object also returns a value of zero when it is the lexicographic successor of a varbind presented in an SNMP GETNEXT or GETBULK request, for which circumstance it is assumed that ifIndex allocation is unintended. Successive GETs will typically return different values, thus avoiding collisions among cooperating management clients seeking to create table entries simultaneously.')
juniIpTunnelInterfaceTable = MibTable((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2), )
if mibBuilder.loadTexts: juniIpTunnelInterfaceTable.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelInterfaceTable.setDescription('This table contains entries of IP Tunnel interfaces.')
juniIpTunnelInterfaceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1), ).setIndexNames((0, "Juniper-IP-TUNNEL-MIB", "juniIpTunnelIfIndex"))
if mibBuilder.loadTexts: juniIpTunnelInterfaceEntry.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelInterfaceEntry.setDescription('Each entry describes the characteristics of a single IP Tunnel interface. Creating/deleting entries in this table causes corresponding entries for be created/deleted in ifTable/ifXTable/juniIfTable.')
juniIpTunnelIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 1), InterfaceIndex())
if mibBuilder.loadTexts: juniIpTunnelIfIndex.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelIfIndex.setDescription('The ifIndex of the IP tunnel interface. When creating entries in this table, suitable values for this object are determined by reading juniIpTunnelNextIfIndex.')
juniIpTunnelName = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelName.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelName.setDescription('The administratively assigned name for this IP Tunnel interface.')
juniIpTunnelMode = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("ipTunnelModeGre", 0), ("ipTunnelModeDvmrp", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelMode.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelMode.setDescription('The configured mode for this IP Tunnel interface.')
juniIpTunnelVirtualRouter = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 4), JuniName().clone('default')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelVirtualRouter.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelVirtualRouter.setDescription('The transport virtual router associated with this IP tunnel interface. This object need not be set when creating row entries. Note that the default when this object is not specified is the router associated with the agent acting on the management request.')
juniIpTunnelChecksum = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 5), TruthValue().clone('false')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelChecksum.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelChecksum.setDescription('The Tunnel checksum configuration for this entry. Setting this object to true(1) will enabled end-to-end checksumming and will cause the system to drop packets with bad checksums received on this interface. Setting this object to false(2) will disable this feature. Note: This configuration object is not supported for DVMRP tunnels.')
juniIpTunnelMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1024, 10240)).clone(10240)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelMtu.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelMtu.setDescription('The tunnel MTU.')
juniIpTunnelDestination = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 7), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelDestination.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelDestination.setDescription('The tunnel destination IP address.')
juniIpTunnelSource = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 8), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelSource.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelSource.setDescription('The tunnel source IP address.')
juniIpTunnelRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 9), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelRowStatus.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelRowStatus.setDescription('Controls creation/deletion of entries in this table according to the RowStatus textual convention, constrained to support the following values only: createAndGo destroy To create an entry in this table, the following entry objects MUST be explicitly configured: juniIpTunnelIfRowStatus juniIpTunnelName juniIpTunnelMode In addition, when creating an entry the following condition must hold: A value for juniIpTunnelIfIndex must have been determined previously, typically by reading juniIpTunnelNextIfIndex. Once created, the following objects may not be modified: juniIpTunnelName juniIpTunnelMode juniIpTunnelVirtualRouter A corresponding entry in ifTable/ifXTable/juniIfTable is created/ destroyed as a result of creating/destroying an entry in this table.')
juniIpTunnelSequenceNumbers = MibTableColumn((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 10), TruthValue().clone('false')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: juniIpTunnelSequenceNumbers.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelSequenceNumbers.setDescription('The tunnel sequence number configuration for this entry. Setting this object to true(1) will enable sequence number generation. Setting this object to false(2) will disable this feature. Note: This configuration object is not supported for DVMRP tunnels.')
juniIpTunnelConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2))
juniIpTunnelCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 1))
juniIpTunnelGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 2))
juniIpTunnnelCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 1, 1)).setObjects(("Juniper-IP-TUNNEL-MIB", "juniIpTunnelInterfaceGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniIpTunnnelCompliance = juniIpTunnnelCompliance.setStatus('obsolete')
if mibBuilder.loadTexts: juniIpTunnnelCompliance.setDescription('Obsolete compliance statement for entities that implement the Juniper IP Tunnel MIB. This compliance statement became obsolete when juniIpTunnelSequenceNumbers was added.')
juniIpTunnnelCompliance2 = ModuleCompliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 1, 2)).setObjects(("Juniper-IP-TUNNEL-MIB", "juniIpTunnelInterfaceGroup2"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniIpTunnnelCompliance2 = juniIpTunnnelCompliance2.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnnelCompliance2.setDescription('The compliance statement for entities that implement the Juniper IP Tunnel MIB.')
juniIpTunnelInterfaceGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 2, 1)).setObjects(("Juniper-IP-TUNNEL-MIB", "juniIpTunnelNextIfIndex"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelName"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelMode"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelVirtualRouter"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelChecksum"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelMtu"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelSource"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelDestination"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniIpTunnelInterfaceGroup = juniIpTunnelInterfaceGroup.setStatus('obsolete')
if mibBuilder.loadTexts: juniIpTunnelInterfaceGroup.setDescription('Obsolete collection of objects for managing IP Tunnel capabilities in a Juniper product. This group became obsolete when juniIpTunnelSequenceNumbers was added.')
juniIpTunnelInterfaceGroup2 = ObjectGroup((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 2, 2)).setObjects(("Juniper-IP-TUNNEL-MIB", "juniIpTunnelNextIfIndex"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelName"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelMode"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelVirtualRouter"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelChecksum"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelMtu"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelSource"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelDestination"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelRowStatus"), ("Juniper-IP-TUNNEL-MIB", "juniIpTunnelSequenceNumbers"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juniIpTunnelInterfaceGroup2 = juniIpTunnelInterfaceGroup2.setStatus('current')
if mibBuilder.loadTexts: juniIpTunnelInterfaceGroup2.setDescription('A collection of objects for managing IP Tunnel capabilities in a Juniper product.')
mibBuilder.exportSymbols("Juniper-IP-TUNNEL-MIB", juniIpTunnelNextIfIndex=juniIpTunnelNextIfIndex, juniIpTunnelCompliances=juniIpTunnelCompliances, juniIpTunnelVirtualRouter=juniIpTunnelVirtualRouter, juniIpTunnelMtu=juniIpTunnelMtu, juniIpTunnelDestination=juniIpTunnelDestination, juniIpTunnelInterfaceEntry=juniIpTunnelInterfaceEntry, juniIpTunnelInterfaceGroup=juniIpTunnelInterfaceGroup, PYSNMP_MODULE_ID=juniIpTunnelMIB, juniIpTunnelInterfaceGroup2=juniIpTunnelInterfaceGroup2, juniIpTunnnelCompliance=juniIpTunnnelCompliance, juniIpTunnelMode=juniIpTunnelMode, juniIpTunnelIfIndex=juniIpTunnelIfIndex, juniIpTunnelInterfaceObjects=juniIpTunnelInterfaceObjects, juniIpTunnelConformance=juniIpTunnelConformance, juniIpTunnelSequenceNumbers=juniIpTunnelSequenceNumbers, juniIpTunnelInterfaceTable=juniIpTunnelInterfaceTable, juniIpTunnelMIB=juniIpTunnelMIB, juniIpTunnnelCompliance2=juniIpTunnnelCompliance2, juniIpTunnelChecksum=juniIpTunnelChecksum, juniIpTunnelGroups=juniIpTunnelGroups, juniIpTunnelName=juniIpTunnelName, juniIpTunnelRowStatus=juniIpTunnelRowStatus, juniIpTunnelSource=juniIpTunnelSource)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, single_value_constraint, value_size_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(interface_index,) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex')
(juni_mibs,) = mibBuilder.importSymbols('Juniper-MIBs', 'juniMibs')
(juni_name, juni_next_if_index) = mibBuilder.importSymbols('Juniper-TC', 'JuniName', 'JuniNextIfIndex')
(notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance')
(unsigned32, module_identity, counter32, iso, object_identity, integer32, gauge32, mib_identifier, ip_address, bits, notification_type, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'ModuleIdentity', 'Counter32', 'iso', 'ObjectIdentity', 'Integer32', 'Gauge32', 'MibIdentifier', 'IpAddress', 'Bits', 'NotificationType', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64')
(display_string, truth_value, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TruthValue', 'TextualConvention', 'RowStatus')
juni_ip_tunnel_mib = module_identity((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51))
juniIpTunnelMIB.setRevisions(('2003-09-29 17:29', '2002-09-16 21:44', '2002-01-14 18:16', '2001-07-23 20:57'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
juniIpTunnelMIB.setRevisionsDescriptions(('Product rebranding (JUNOSe).', 'Replaced Unisphere names with Juniper names.', 'Added juniIpTunnelSequenceNumbers.', 'Initial version of this MIB module.'))
if mibBuilder.loadTexts:
juniIpTunnelMIB.setLastUpdated('200309291729Z')
if mibBuilder.loadTexts:
juniIpTunnelMIB.setOrganization('Juniper Networks, Inc.')
if mibBuilder.loadTexts:
juniIpTunnelMIB.setContactInfo(' Juniper Networks, Inc. Postal: 10 Technology Park Drive Westford, MA 01886-3146 USA Tel: +1 978 589 5800 Email: mib@Juniper.net')
if mibBuilder.loadTexts:
juniIpTunnelMIB.setDescription('The IP Tunnel MIB for the Juniper Networks enterprise.')
juni_ip_tunnel_interface_objects = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1))
juni_ip_tunnel_next_if_index = mib_scalar((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 1), juni_next_if_index()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
juniIpTunnelNextIfIndex.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelNextIfIndex.setDescription('Coordinate ifIndex value allocation for entries in juniIpTunnelIfTable. A GET of this object returns the next available ifIndex value to be used to create an entry in the associated interface table; or zero, if no valid ifIndex value is available. This object also returns a value of zero when it is the lexicographic successor of a varbind presented in an SNMP GETNEXT or GETBULK request, for which circumstance it is assumed that ifIndex allocation is unintended. Successive GETs will typically return different values, thus avoiding collisions among cooperating management clients seeking to create table entries simultaneously.')
juni_ip_tunnel_interface_table = mib_table((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2))
if mibBuilder.loadTexts:
juniIpTunnelInterfaceTable.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelInterfaceTable.setDescription('This table contains entries of IP Tunnel interfaces.')
juni_ip_tunnel_interface_entry = mib_table_row((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1)).setIndexNames((0, 'Juniper-IP-TUNNEL-MIB', 'juniIpTunnelIfIndex'))
if mibBuilder.loadTexts:
juniIpTunnelInterfaceEntry.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelInterfaceEntry.setDescription('Each entry describes the characteristics of a single IP Tunnel interface. Creating/deleting entries in this table causes corresponding entries for be created/deleted in ifTable/ifXTable/juniIfTable.')
juni_ip_tunnel_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 1), interface_index())
if mibBuilder.loadTexts:
juniIpTunnelIfIndex.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelIfIndex.setDescription('The ifIndex of the IP tunnel interface. When creating entries in this table, suitable values for this object are determined by reading juniIpTunnelNextIfIndex.')
juni_ip_tunnel_name = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelName.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelName.setDescription('The administratively assigned name for this IP Tunnel interface.')
juni_ip_tunnel_mode = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('ipTunnelModeGre', 0), ('ipTunnelModeDvmrp', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelMode.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelMode.setDescription('The configured mode for this IP Tunnel interface.')
juni_ip_tunnel_virtual_router = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 4), juni_name().clone('default')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelVirtualRouter.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelVirtualRouter.setDescription('The transport virtual router associated with this IP tunnel interface. This object need not be set when creating row entries. Note that the default when this object is not specified is the router associated with the agent acting on the management request.')
juni_ip_tunnel_checksum = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 5), truth_value().clone('false')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelChecksum.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelChecksum.setDescription('The Tunnel checksum configuration for this entry. Setting this object to true(1) will enabled end-to-end checksumming and will cause the system to drop packets with bad checksums received on this interface. Setting this object to false(2) will disable this feature. Note: This configuration object is not supported for DVMRP tunnels.')
juni_ip_tunnel_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1024, 10240)).clone(10240)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelMtu.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelMtu.setDescription('The tunnel MTU.')
juni_ip_tunnel_destination = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 7), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelDestination.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelDestination.setDescription('The tunnel destination IP address.')
juni_ip_tunnel_source = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 8), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelSource.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelSource.setDescription('The tunnel source IP address.')
juni_ip_tunnel_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 9), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelRowStatus.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelRowStatus.setDescription('Controls creation/deletion of entries in this table according to the RowStatus textual convention, constrained to support the following values only: createAndGo destroy To create an entry in this table, the following entry objects MUST be explicitly configured: juniIpTunnelIfRowStatus juniIpTunnelName juniIpTunnelMode In addition, when creating an entry the following condition must hold: A value for juniIpTunnelIfIndex must have been determined previously, typically by reading juniIpTunnelNextIfIndex. Once created, the following objects may not be modified: juniIpTunnelName juniIpTunnelMode juniIpTunnelVirtualRouter A corresponding entry in ifTable/ifXTable/juniIfTable is created/ destroyed as a result of creating/destroying an entry in this table.')
juni_ip_tunnel_sequence_numbers = mib_table_column((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 1, 2, 1, 10), truth_value().clone('false')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
juniIpTunnelSequenceNumbers.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelSequenceNumbers.setDescription('The tunnel sequence number configuration for this entry. Setting this object to true(1) will enable sequence number generation. Setting this object to false(2) will disable this feature. Note: This configuration object is not supported for DVMRP tunnels.')
juni_ip_tunnel_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2))
juni_ip_tunnel_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 1))
juni_ip_tunnel_groups = mib_identifier((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 2))
juni_ip_tunnnel_compliance = module_compliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 1, 1)).setObjects(('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelInterfaceGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ip_tunnnel_compliance = juniIpTunnnelCompliance.setStatus('obsolete')
if mibBuilder.loadTexts:
juniIpTunnnelCompliance.setDescription('Obsolete compliance statement for entities that implement the Juniper IP Tunnel MIB. This compliance statement became obsolete when juniIpTunnelSequenceNumbers was added.')
juni_ip_tunnnel_compliance2 = module_compliance((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 1, 2)).setObjects(('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelInterfaceGroup2'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ip_tunnnel_compliance2 = juniIpTunnnelCompliance2.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnnelCompliance2.setDescription('The compliance statement for entities that implement the Juniper IP Tunnel MIB.')
juni_ip_tunnel_interface_group = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 2, 1)).setObjects(('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelNextIfIndex'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelName'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelMode'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelVirtualRouter'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelChecksum'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelMtu'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelSource'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelDestination'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ip_tunnel_interface_group = juniIpTunnelInterfaceGroup.setStatus('obsolete')
if mibBuilder.loadTexts:
juniIpTunnelInterfaceGroup.setDescription('Obsolete collection of objects for managing IP Tunnel capabilities in a Juniper product. This group became obsolete when juniIpTunnelSequenceNumbers was added.')
juni_ip_tunnel_interface_group2 = object_group((1, 3, 6, 1, 4, 1, 4874, 2, 2, 51, 2, 2, 2)).setObjects(('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelNextIfIndex'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelName'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelMode'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelVirtualRouter'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelChecksum'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelMtu'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelSource'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelDestination'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelRowStatus'), ('Juniper-IP-TUNNEL-MIB', 'juniIpTunnelSequenceNumbers'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
juni_ip_tunnel_interface_group2 = juniIpTunnelInterfaceGroup2.setStatus('current')
if mibBuilder.loadTexts:
juniIpTunnelInterfaceGroup2.setDescription('A collection of objects for managing IP Tunnel capabilities in a Juniper product.')
mibBuilder.exportSymbols('Juniper-IP-TUNNEL-MIB', juniIpTunnelNextIfIndex=juniIpTunnelNextIfIndex, juniIpTunnelCompliances=juniIpTunnelCompliances, juniIpTunnelVirtualRouter=juniIpTunnelVirtualRouter, juniIpTunnelMtu=juniIpTunnelMtu, juniIpTunnelDestination=juniIpTunnelDestination, juniIpTunnelInterfaceEntry=juniIpTunnelInterfaceEntry, juniIpTunnelInterfaceGroup=juniIpTunnelInterfaceGroup, PYSNMP_MODULE_ID=juniIpTunnelMIB, juniIpTunnelInterfaceGroup2=juniIpTunnelInterfaceGroup2, juniIpTunnnelCompliance=juniIpTunnnelCompliance, juniIpTunnelMode=juniIpTunnelMode, juniIpTunnelIfIndex=juniIpTunnelIfIndex, juniIpTunnelInterfaceObjects=juniIpTunnelInterfaceObjects, juniIpTunnelConformance=juniIpTunnelConformance, juniIpTunnelSequenceNumbers=juniIpTunnelSequenceNumbers, juniIpTunnelInterfaceTable=juniIpTunnelInterfaceTable, juniIpTunnelMIB=juniIpTunnelMIB, juniIpTunnnelCompliance2=juniIpTunnnelCompliance2, juniIpTunnelChecksum=juniIpTunnelChecksum, juniIpTunnelGroups=juniIpTunnelGroups, juniIpTunnelName=juniIpTunnelName, juniIpTunnelRowStatus=juniIpTunnelRowStatus, juniIpTunnelSource=juniIpTunnelSource) |
height = int(input())
c = 1
for i in range(1,height-1):
for j in range(1,i+1):
if(c <= 9):
print("",c,end=" ")
else:
print(c,end=" ")
c += 1
print()
for i in range(height-1,0,-1):
for j in range(height,height-i,-1):
if(c <= 9):
print("",c,end=" ")
else:
print(c,end=" ")
c += 1
print()
# Sample Input :- 5
# Output :-
# 1
# 2 3
# 4 5 6
# 7 8 9 10
# 11 12 13
# 14 15
# 16
| height = int(input())
c = 1
for i in range(1, height - 1):
for j in range(1, i + 1):
if c <= 9:
print('', c, end=' ')
else:
print(c, end=' ')
c += 1
print()
for i in range(height - 1, 0, -1):
for j in range(height, height - i, -1):
if c <= 9:
print('', c, end=' ')
else:
print(c, end=' ')
c += 1
print() |
# Obtenga la entrada del usuario usando input
# ("Escribe elnombre de una fruta:"). Si una fruta
# no existe en la lista, agregue la fruta
# a la lista e imprima la lista modificada.
# Si la fruta existe print('Esa fruta ya existe en la lista')
# La siguiente lista contiene algunas frutas:
# fruits = ['platano', 'naranja', 'mango', 'limon']
frutas = ['platano', 'naranja', 'mango', 'limon']
fruta = input("Escribe el nombre de una fruta: ")
if(not(fruta.lower() in frutas)):
frutas.append(fruta)
print("Agregaste una nueva fruta a la lista :")
print(frutas)
else:
print("Esa fruta ya existe en la lista")
| frutas = ['platano', 'naranja', 'mango', 'limon']
fruta = input('Escribe el nombre de una fruta: ')
if not fruta.lower() in frutas:
frutas.append(fruta)
print('Agregaste una nueva fruta a la lista :')
print(frutas)
else:
print('Esa fruta ya existe en la lista') |
indices = [i for i in range(1,58)]
#If some of the trajectories crash you can discard them in the following way
#indices.remove(54)
#indices.remove(53)
f1 = open('metadatafile.in','w')
for i in indices:
print('US_data/US_%d_data.dat'%i, '%0.1f'%(31.5+0.5*float(i)), 4.0, 50.0, file=f1)
#The above line wrtites the path of the data file, location of the center of the umbrella
#harmonic potential, corresponding spring constant (targetForceConstant/(width**2) from
#colvars.in), and the correlation length (this can be compued from the autocorrelation
#function of the collective variable, bute we kept it constant at 50 (X 50 frames) for
#the sake of simplicity
f1.close()
| indices = [i for i in range(1, 58)]
f1 = open('metadatafile.in', 'w')
for i in indices:
print('US_data/US_%d_data.dat' % i, '%0.1f' % (31.5 + 0.5 * float(i)), 4.0, 50.0, file=f1)
f1.close() |
# https://leetcode.com/problems/find-a-corresponding-node-of-a-binary-tree-in-a-clone-of-that-tree
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
def _dfs(root1: TreeNode, root2: TreeNode, target1: TreeNode) -> TreeNode:
if root1 is None:
return None
if root1 is target1:
return root2
return (_dfs(root1.left, root2.left, target1)
or _dfs(root1.right, root2.right, target1))
class Solution:
def getTargetCopy(self,
original: TreeNode,
cloned: TreeNode,
target: TreeNode) -> TreeNode:
return _dfs(original, cloned, target)
| def _dfs(root1: TreeNode, root2: TreeNode, target1: TreeNode) -> TreeNode:
if root1 is None:
return None
if root1 is target1:
return root2
return _dfs(root1.left, root2.left, target1) or _dfs(root1.right, root2.right, target1)
class Solution:
def get_target_copy(self, original: TreeNode, cloned: TreeNode, target: TreeNode) -> TreeNode:
return _dfs(original, cloned, target) |
# Multiple assignments
#name = "Sai"
#age = 18
#attractive = True
name, age, attractive="Sai", 18, True
gg=ss=ff=1000
print(name)
print(age)
print(attractive)
| (name, age, attractive) = ('Sai', 18, True)
gg = ss = ff = 1000
print(name)
print(age)
print(attractive) |
#
# PySNMP MIB module RUCKUS-PRODUCTS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RUCKUS-PRODUCTS-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:50:43 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
ruckusProducts, = mibBuilder.importSymbols("RUCKUS-ROOT-MIB", "ruckusProducts")
RuckusCountryCode, = mibBuilder.importSymbols("RUCKUS-TC-MIB", "RuckusCountryCode")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, IpAddress, iso, Counter64, TimeTicks, Bits, NotificationType, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, MibIdentifier, Counter32, Integer32, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "IpAddress", "iso", "Counter64", "TimeTicks", "Bits", "NotificationType", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "MibIdentifier", "Counter32", "Integer32", "Gauge32")
MacAddress, TruthValue, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "TruthValue", "DisplayString", "TextualConvention")
ruckusProductsMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 25053, 3, 1))
if mibBuilder.loadTexts: ruckusProductsMIB.setLastUpdated('201010150800Z')
if mibBuilder.loadTexts: ruckusProductsMIB.setOrganization('Ruckus Wireless, Inc.')
ruckusWirelessRouterProducts = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1))
ruckusWirelessAdapterProducts = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2))
ruckusWirelessMetroProducts = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3))
ruckusWirelessHotzoneProducts = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4))
ruckusWirelessControllerProducts = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5))
ruckusVF2825 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 1))
ruckusVF2811 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 2))
ruckusVF2821 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 3))
ruckusVF2835 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 4))
ruckusVF7811 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 5))
ruckusVF2111 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2, 1))
ruckusVF2121 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2, 2))
ruckusVF7111 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2, 3))
ruckusMM2225 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3, 1))
ruckusMM2211 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3, 2))
ruckusMM2221 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3, 3))
ruckusZF2925 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 1))
ruckusZF2942 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 2))
ruckusZF7942 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 3))
ruckusZF7962 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 4))
ruckusZF2741 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 5))
ruckusZF7762 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 6))
ruckusZF7762S = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 8))
ruckusZF7762T = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 9))
ruckusZF7762N = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 10))
ruckusZF7343 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 12))
ruckusZF7363 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 13))
ruckusZF7341 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 14))
ruckusZF7731 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 16))
ruckusZF7025 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 20))
ruckusZF7321 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 22))
ruckusZF7321U = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 23))
ruckusZF2741EXT = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 24))
ruckusZF7982 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 25))
ruckusZF7782 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 28))
ruckusZF7782S = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 29))
ruckusZF7782N = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 30))
ruckusZF7782E = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 31))
ruckusZF8800SAC = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 32))
ruckusZF7762AC = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 35))
ruckusZF7762SAC = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 36))
ruckusZF7762TAC = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 37))
ruckusZF7372 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 40))
ruckusZF7372E = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 41))
ruckusZF7352 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 45))
ruckusZF7351 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 48))
ruckusZF7742 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 50))
ruckusZF7055 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 52))
ruckusZF7781M = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 55))
ruckusZF7781CM = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 56))
ruckusZF7781CME = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 57))
ruckusZF7781CMS = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 58))
ruckusZF7781FN = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 60))
ruckusZF7781FNE = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 61))
ruckusZF7781FNS = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 62))
ruckusSC8800SAC = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 65))
ruckusSC8800S = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 66))
ruckusZF7761CM = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7))
ruckusZF7761CMControlLED = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=NamedValues(("ledPerCM", 1), ("ledPerAP", 2), ("ledAlternateMode1Mode2OneHour", 3), ("ledAlternateMode1Mode2Mode6", 4), ("blueActive", 5), ("blueActiveCMOnlineLed", 6), ("ledAllOff", 7), ("heartbeatOffCM", 8), ("heartbeatOffAP", 9), ("softResetAP", 10), ("powerCycleAP", 11), ("factoryResetAP", 12), ("softResetCM", 13), ("powerCycleCM", 14), ("factoryResetCM", 15))).clone('ledPerCM')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMControlLED.setStatus('current')
ruckusZF7761CMWanIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZF7761CMWanIPAddr.setStatus('current')
ruckusZF7761CMCustomization = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5))
ruckusZF7761CMHTTPService = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 1), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMHTTPService.setStatus('current')
ruckusZF7761CMTelnetService = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 2), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMTelnetService.setStatus('current')
ruckusZF7761CMSSHService = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 3), TruthValue().clone('true')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMSSHService.setStatus('current')
ruckusZF7761CMUsername = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMUsername.setStatus('current')
ruckusZF7761CMPassword = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMPassword.setStatus('current')
ruckusZF7761CMLEDMode = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("ledAllOff", 0), ("blueActive", 1), ("blueActiveCMOnlineLed", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMLEDMode.setStatus('current')
ruckusZF7761CMHeartbeatMonitorCM = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 7), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMHeartbeatMonitorCM.setStatus('current')
ruckusZF7761CMHeartbeatMonitorAP = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 8), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ruckusZF7761CMHeartbeatMonitorAP.setStatus('current')
ruckusZD1000 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1))
ruckusZD1100 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2))
ruckusZD3000 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3))
ruckusZD5000 = MibIdentifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8))
ruckusZD1000SystemName = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemName.setStatus('current')
ruckusZD1000SystemIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemIPAddr.setStatus('current')
ruckusZD1000SystemMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 3), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemMacAddr.setStatus('current')
ruckusZD1000SystemUptime = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemUptime.setStatus('current')
ruckusZD1000SystemModel = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemModel.setStatus('current')
ruckusZD1000SystemLicensedAPs = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemLicensedAPs.setStatus('current')
ruckusZD1000SystemSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemSerialNumber.setStatus('current')
ruckusZD1000SystemVersion = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000SystemVersion.setStatus('current')
ruckusZD1000CountryCode = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 9), RuckusCountryCode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1000CountryCode.setStatus('current')
ruckusZD1100SystemName = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemName.setStatus('current')
ruckusZD1100SystemIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemIPAddr.setStatus('current')
ruckusZD1100SystemMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 3), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemMacAddr.setStatus('current')
ruckusZD1100SystemUptime = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemUptime.setStatus('current')
ruckusZD1100SystemModel = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemModel.setStatus('current')
ruckusZD1100SystemLicensedAPs = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemLicensedAPs.setStatus('current')
ruckusZD1100SystemSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemSerialNumber.setStatus('current')
ruckusZD1100SystemVersion = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100SystemVersion.setStatus('current')
ruckusZD1100CountryCode = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 9), RuckusCountryCode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD1100CountryCode.setStatus('current')
ruckusZD3000SystemName = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemName.setStatus('current')
ruckusZD3000SystemIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemIPAddr.setStatus('current')
ruckusZD3000SystemMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 3), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemMacAddr.setStatus('current')
ruckusZD3000SystemUptime = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemUptime.setStatus('current')
ruckusZD3000SystemModel = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemModel.setStatus('current')
ruckusZD3000SystemLicensedAPs = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemLicensedAPs.setStatus('current')
ruckusZD3000SystemSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemSerialNumber.setStatus('current')
ruckusZD3000SystemVersion = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000SystemVersion.setStatus('current')
ruckusZD3000CountryCode = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 9), RuckusCountryCode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD3000CountryCode.setStatus('current')
ruckusZD5000SystemName = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemName.setStatus('current')
ruckusZD5000SystemIPAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemIPAddr.setStatus('current')
ruckusZD5000SystemMacAddr = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 3), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemMacAddr.setStatus('current')
ruckusZD5000SystemUptime = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 4), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemUptime.setStatus('current')
ruckusZD5000SystemModel = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemModel.setStatus('current')
ruckusZD5000SystemLicensedAPs = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 6), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemLicensedAPs.setStatus('current')
ruckusZD5000SystemSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemSerialNumber.setStatus('current')
ruckusZD5000SystemVersion = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000SystemVersion.setStatus('current')
ruckusZD5000CountryCode = MibScalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 9), RuckusCountryCode()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ruckusZD5000CountryCode.setStatus('current')
mibBuilder.exportSymbols("RUCKUS-PRODUCTS-MIB", ruckusZD3000=ruckusZD3000, ruckusZD1100CountryCode=ruckusZD1100CountryCode, ruckusZF7982=ruckusZF7982, ruckusZD5000SystemLicensedAPs=ruckusZD5000SystemLicensedAPs, ruckusZD5000SystemSerialNumber=ruckusZD5000SystemSerialNumber, ruckusZF7761CMWanIPAddr=ruckusZF7761CMWanIPAddr, ruckusZF7761CMTelnetService=ruckusZF7761CMTelnetService, ruckusZF7781CMS=ruckusZF7781CMS, ruckusZF7781CME=ruckusZF7781CME, ruckusZF7321U=ruckusZF7321U, ruckusZD1100SystemLicensedAPs=ruckusZD1100SystemLicensedAPs, ruckusZF7761CMControlLED=ruckusZF7761CMControlLED, ruckusZD3000SystemUptime=ruckusZD3000SystemUptime, ruckusZD3000SystemModel=ruckusZD3000SystemModel, ruckusWirelessControllerProducts=ruckusWirelessControllerProducts, ruckusZD1000SystemLicensedAPs=ruckusZD1000SystemLicensedAPs, ruckusZD5000SystemName=ruckusZD5000SystemName, ruckusZF7341=ruckusZF7341, ruckusZD1100=ruckusZD1100, ruckusZF7762T=ruckusZF7762T, ruckusZD1000SystemUptime=ruckusZD1000SystemUptime, ruckusZD3000SystemMacAddr=ruckusZD3000SystemMacAddr, ruckusZD5000=ruckusZD5000, ruckusZD1000SystemSerialNumber=ruckusZD1000SystemSerialNumber, ruckusVF2121=ruckusVF2121, ruckusProductsMIB=ruckusProductsMIB, ruckusWirelessAdapterProducts=ruckusWirelessAdapterProducts, ruckusZF2741EXT=ruckusZF2741EXT, ruckusZD1000SystemModel=ruckusZD1000SystemModel, ruckusZF7742=ruckusZF7742, ruckusZF7782N=ruckusZF7782N, ruckusWirelessRouterProducts=ruckusWirelessRouterProducts, ruckusZF7761CM=ruckusZF7761CM, ruckusZF7761CMHeartbeatMonitorAP=ruckusZF7761CMHeartbeatMonitorAP, ruckusZF7782E=ruckusZF7782E, ruckusZF7942=ruckusZF7942, ruckusZF7781FNE=ruckusZF7781FNE, ruckusZF7321=ruckusZF7321, ruckusZD1100SystemModel=ruckusZD1100SystemModel, ruckusZF7761CMHTTPService=ruckusZF7761CMHTTPService, ruckusZF7762N=ruckusZF7762N, ruckusZF7761CMHeartbeatMonitorCM=ruckusZF7761CMHeartbeatMonitorCM, ruckusWirelessMetroProducts=ruckusWirelessMetroProducts, ruckusZD1000CountryCode=ruckusZD1000CountryCode, ruckusZF7761CMCustomization=ruckusZF7761CMCustomization, ruckusZF2741=ruckusZF2741, ruckusZF7782S=ruckusZF7782S, ruckusZF7781CM=ruckusZF7781CM, ruckusZF7762AC=ruckusZF7762AC, ruckusZF7343=ruckusZF7343, ruckusZD5000SystemUptime=ruckusZD5000SystemUptime, ruckusZF7781FN=ruckusZF7781FN, ruckusMM2221=ruckusMM2221, ruckusZF7762S=ruckusZF7762S, ruckusZD3000SystemVersion=ruckusZD3000SystemVersion, ruckusZD1000SystemName=ruckusZD1000SystemName, ruckusSC8800S=ruckusSC8800S, ruckusVF2821=ruckusVF2821, ruckusZD5000SystemModel=ruckusZD5000SystemModel, ruckusZD3000CountryCode=ruckusZD3000CountryCode, ruckusZD5000SystemVersion=ruckusZD5000SystemVersion, ruckusZD3000SystemIPAddr=ruckusZD3000SystemIPAddr, ruckusZD1100SystemUptime=ruckusZD1100SystemUptime, ruckusZD3000SystemName=ruckusZD3000SystemName, ruckusSC8800SAC=ruckusSC8800SAC, ruckusZD1000=ruckusZD1000, ruckusZD1100SystemName=ruckusZD1100SystemName, ruckusZD5000CountryCode=ruckusZD5000CountryCode, ruckusZD1000SystemMacAddr=ruckusZD1000SystemMacAddr, ruckusZF7351=ruckusZF7351, ruckusVF7811=ruckusVF7811, ruckusVF2825=ruckusVF2825, ruckusZD5000SystemMacAddr=ruckusZD5000SystemMacAddr, ruckusZF7962=ruckusZF7962, ruckusZD1100SystemSerialNumber=ruckusZD1100SystemSerialNumber, ruckusMM2211=ruckusMM2211, ruckusZF7761CMPassword=ruckusZF7761CMPassword, ruckusWirelessHotzoneProducts=ruckusWirelessHotzoneProducts, ruckusZF7762=ruckusZF7762, ruckusZF7352=ruckusZF7352, ruckusZF2942=ruckusZF2942, ruckusVF2111=ruckusVF2111, ruckusZF7731=ruckusZF7731, ruckusZD1000SystemIPAddr=ruckusZD1000SystemIPAddr, ruckusZF2925=ruckusZF2925, ruckusZF7762SAC=ruckusZF7762SAC, ruckusZF7055=ruckusZF7055, ruckusZF7781M=ruckusZF7781M, ruckusVF2835=ruckusVF2835, ruckusZD1100SystemMacAddr=ruckusZD1100SystemMacAddr, ruckusZF7025=ruckusZF7025, ruckusZF8800SAC=ruckusZF8800SAC, ruckusZD3000SystemSerialNumber=ruckusZD3000SystemSerialNumber, ruckusZD1000SystemVersion=ruckusZD1000SystemVersion, ruckusZF7372=ruckusZF7372, ruckusZF7782=ruckusZF7782, ruckusZF7761CMSSHService=ruckusZF7761CMSSHService, ruckusZD3000SystemLicensedAPs=ruckusZD3000SystemLicensedAPs, ruckusZD1100SystemIPAddr=ruckusZD1100SystemIPAddr, PYSNMP_MODULE_ID=ruckusProductsMIB, ruckusMM2225=ruckusMM2225, ruckusZF7372E=ruckusZF7372E, ruckusZF7761CMUsername=ruckusZF7761CMUsername, ruckusZD1100SystemVersion=ruckusZD1100SystemVersion, ruckusVF7111=ruckusVF7111, ruckusZF7363=ruckusZF7363, ruckusZF7762TAC=ruckusZF7762TAC, ruckusZD5000SystemIPAddr=ruckusZD5000SystemIPAddr, ruckusZF7781FNS=ruckusZF7781FNS, ruckusVF2811=ruckusVF2811, ruckusZF7761CMLEDMode=ruckusZF7761CMLEDMode)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(ruckus_products,) = mibBuilder.importSymbols('RUCKUS-ROOT-MIB', 'ruckusProducts')
(ruckus_country_code,) = mibBuilder.importSymbols('RUCKUS-TC-MIB', 'RuckusCountryCode')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, ip_address, iso, counter64, time_ticks, bits, notification_type, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, mib_identifier, counter32, integer32, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'IpAddress', 'iso', 'Counter64', 'TimeTicks', 'Bits', 'NotificationType', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'MibIdentifier', 'Counter32', 'Integer32', 'Gauge32')
(mac_address, truth_value, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'TruthValue', 'DisplayString', 'TextualConvention')
ruckus_products_mib = module_identity((1, 3, 6, 1, 4, 1, 25053, 3, 1))
if mibBuilder.loadTexts:
ruckusProductsMIB.setLastUpdated('201010150800Z')
if mibBuilder.loadTexts:
ruckusProductsMIB.setOrganization('Ruckus Wireless, Inc.')
ruckus_wireless_router_products = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1))
ruckus_wireless_adapter_products = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2))
ruckus_wireless_metro_products = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3))
ruckus_wireless_hotzone_products = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4))
ruckus_wireless_controller_products = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5))
ruckus_vf2825 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 1))
ruckus_vf2811 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 2))
ruckus_vf2821 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 3))
ruckus_vf2835 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 4))
ruckus_vf7811 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 1, 5))
ruckus_vf2111 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2, 1))
ruckus_vf2121 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2, 2))
ruckus_vf7111 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 2, 3))
ruckus_mm2225 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3, 1))
ruckus_mm2211 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3, 2))
ruckus_mm2221 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 3, 3))
ruckus_zf2925 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 1))
ruckus_zf2942 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 2))
ruckus_zf7942 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 3))
ruckus_zf7962 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 4))
ruckus_zf2741 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 5))
ruckus_zf7762 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 6))
ruckus_zf7762_s = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 8))
ruckus_zf7762_t = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 9))
ruckus_zf7762_n = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 10))
ruckus_zf7343 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 12))
ruckus_zf7363 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 13))
ruckus_zf7341 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 14))
ruckus_zf7731 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 16))
ruckus_zf7025 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 20))
ruckus_zf7321 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 22))
ruckus_zf7321_u = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 23))
ruckus_zf2741_ext = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 24))
ruckus_zf7982 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 25))
ruckus_zf7782 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 28))
ruckus_zf7782_s = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 29))
ruckus_zf7782_n = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 30))
ruckus_zf7782_e = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 31))
ruckus_zf8800_sac = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 32))
ruckus_zf7762_ac = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 35))
ruckus_zf7762_sac = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 36))
ruckus_zf7762_tac = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 37))
ruckus_zf7372 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 40))
ruckus_zf7372_e = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 41))
ruckus_zf7352 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 45))
ruckus_zf7351 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 48))
ruckus_zf7742 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 50))
ruckus_zf7055 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 52))
ruckus_zf7781_m = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 55))
ruckus_zf7781_cm = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 56))
ruckus_zf7781_cme = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 57))
ruckus_zf7781_cms = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 58))
ruckus_zf7781_fn = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 60))
ruckus_zf7781_fne = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 61))
ruckus_zf7781_fns = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 62))
ruckus_sc8800_sac = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 65))
ruckus_sc8800_s = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 66))
ruckus_zf7761_cm = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7))
ruckus_zf7761_cm_control_led = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=named_values(('ledPerCM', 1), ('ledPerAP', 2), ('ledAlternateMode1Mode2OneHour', 3), ('ledAlternateMode1Mode2Mode6', 4), ('blueActive', 5), ('blueActiveCMOnlineLed', 6), ('ledAllOff', 7), ('heartbeatOffCM', 8), ('heartbeatOffAP', 9), ('softResetAP', 10), ('powerCycleAP', 11), ('factoryResetAP', 12), ('softResetCM', 13), ('powerCycleCM', 14), ('factoryResetCM', 15))).clone('ledPerCM')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMControlLED.setStatus('current')
ruckus_zf7761_cm_wan_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZF7761CMWanIPAddr.setStatus('current')
ruckus_zf7761_cm_customization = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5))
ruckus_zf7761_cmhttp_service = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 1), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMHTTPService.setStatus('current')
ruckus_zf7761_cm_telnet_service = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 2), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMTelnetService.setStatus('current')
ruckus_zf7761_cmssh_service = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 3), truth_value().clone('true')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMSSHService.setStatus('current')
ruckus_zf7761_cm_username = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 4), display_string().subtype(subtypeSpec=value_size_constraint(1, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMUsername.setStatus('current')
ruckus_zf7761_cm_password = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 5, 5), display_string().subtype(subtypeSpec=value_size_constraint(1, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMPassword.setStatus('current')
ruckus_zf7761_cmled_mode = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('ledAllOff', 0), ('blueActive', 1), ('blueActiveCMOnlineLed', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMLEDMode.setStatus('current')
ruckus_zf7761_cm_heartbeat_monitor_cm = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 7), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMHeartbeatMonitorCM.setStatus('current')
ruckus_zf7761_cm_heartbeat_monitor_ap = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 4, 7, 8), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ruckusZF7761CMHeartbeatMonitorAP.setStatus('current')
ruckus_zd1000 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1))
ruckus_zd1100 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2))
ruckus_zd3000 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3))
ruckus_zd5000 = mib_identifier((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8))
ruckus_zd1000_system_name = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemName.setStatus('current')
ruckus_zd1000_system_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemIPAddr.setStatus('current')
ruckus_zd1000_system_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 3), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemMacAddr.setStatus('current')
ruckus_zd1000_system_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemUptime.setStatus('current')
ruckus_zd1000_system_model = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemModel.setStatus('current')
ruckus_zd1000_system_licensed_a_ps = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemLicensedAPs.setStatus('current')
ruckus_zd1000_system_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemSerialNumber.setStatus('current')
ruckus_zd1000_system_version = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000SystemVersion.setStatus('current')
ruckus_zd1000_country_code = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 1, 9), ruckus_country_code()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1000CountryCode.setStatus('current')
ruckus_zd1100_system_name = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemName.setStatus('current')
ruckus_zd1100_system_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemIPAddr.setStatus('current')
ruckus_zd1100_system_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 3), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemMacAddr.setStatus('current')
ruckus_zd1100_system_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemUptime.setStatus('current')
ruckus_zd1100_system_model = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemModel.setStatus('current')
ruckus_zd1100_system_licensed_a_ps = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemLicensedAPs.setStatus('current')
ruckus_zd1100_system_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemSerialNumber.setStatus('current')
ruckus_zd1100_system_version = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100SystemVersion.setStatus('current')
ruckus_zd1100_country_code = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 2, 9), ruckus_country_code()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD1100CountryCode.setStatus('current')
ruckus_zd3000_system_name = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemName.setStatus('current')
ruckus_zd3000_system_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemIPAddr.setStatus('current')
ruckus_zd3000_system_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 3), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemMacAddr.setStatus('current')
ruckus_zd3000_system_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemUptime.setStatus('current')
ruckus_zd3000_system_model = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemModel.setStatus('current')
ruckus_zd3000_system_licensed_a_ps = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemLicensedAPs.setStatus('current')
ruckus_zd3000_system_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemSerialNumber.setStatus('current')
ruckus_zd3000_system_version = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000SystemVersion.setStatus('current')
ruckus_zd3000_country_code = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 3, 9), ruckus_country_code()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD3000CountryCode.setStatus('current')
ruckus_zd5000_system_name = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemName.setStatus('current')
ruckus_zd5000_system_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemIPAddr.setStatus('current')
ruckus_zd5000_system_mac_addr = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 3), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemMacAddr.setStatus('current')
ruckus_zd5000_system_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 4), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemUptime.setStatus('current')
ruckus_zd5000_system_model = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemModel.setStatus('current')
ruckus_zd5000_system_licensed_a_ps = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 6), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemLicensedAPs.setStatus('current')
ruckus_zd5000_system_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemSerialNumber.setStatus('current')
ruckus_zd5000_system_version = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000SystemVersion.setStatus('current')
ruckus_zd5000_country_code = mib_scalar((1, 3, 6, 1, 4, 1, 25053, 3, 1, 5, 8, 9), ruckus_country_code()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ruckusZD5000CountryCode.setStatus('current')
mibBuilder.exportSymbols('RUCKUS-PRODUCTS-MIB', ruckusZD3000=ruckusZD3000, ruckusZD1100CountryCode=ruckusZD1100CountryCode, ruckusZF7982=ruckusZF7982, ruckusZD5000SystemLicensedAPs=ruckusZD5000SystemLicensedAPs, ruckusZD5000SystemSerialNumber=ruckusZD5000SystemSerialNumber, ruckusZF7761CMWanIPAddr=ruckusZF7761CMWanIPAddr, ruckusZF7761CMTelnetService=ruckusZF7761CMTelnetService, ruckusZF7781CMS=ruckusZF7781CMS, ruckusZF7781CME=ruckusZF7781CME, ruckusZF7321U=ruckusZF7321U, ruckusZD1100SystemLicensedAPs=ruckusZD1100SystemLicensedAPs, ruckusZF7761CMControlLED=ruckusZF7761CMControlLED, ruckusZD3000SystemUptime=ruckusZD3000SystemUptime, ruckusZD3000SystemModel=ruckusZD3000SystemModel, ruckusWirelessControllerProducts=ruckusWirelessControllerProducts, ruckusZD1000SystemLicensedAPs=ruckusZD1000SystemLicensedAPs, ruckusZD5000SystemName=ruckusZD5000SystemName, ruckusZF7341=ruckusZF7341, ruckusZD1100=ruckusZD1100, ruckusZF7762T=ruckusZF7762T, ruckusZD1000SystemUptime=ruckusZD1000SystemUptime, ruckusZD3000SystemMacAddr=ruckusZD3000SystemMacAddr, ruckusZD5000=ruckusZD5000, ruckusZD1000SystemSerialNumber=ruckusZD1000SystemSerialNumber, ruckusVF2121=ruckusVF2121, ruckusProductsMIB=ruckusProductsMIB, ruckusWirelessAdapterProducts=ruckusWirelessAdapterProducts, ruckusZF2741EXT=ruckusZF2741EXT, ruckusZD1000SystemModel=ruckusZD1000SystemModel, ruckusZF7742=ruckusZF7742, ruckusZF7782N=ruckusZF7782N, ruckusWirelessRouterProducts=ruckusWirelessRouterProducts, ruckusZF7761CM=ruckusZF7761CM, ruckusZF7761CMHeartbeatMonitorAP=ruckusZF7761CMHeartbeatMonitorAP, ruckusZF7782E=ruckusZF7782E, ruckusZF7942=ruckusZF7942, ruckusZF7781FNE=ruckusZF7781FNE, ruckusZF7321=ruckusZF7321, ruckusZD1100SystemModel=ruckusZD1100SystemModel, ruckusZF7761CMHTTPService=ruckusZF7761CMHTTPService, ruckusZF7762N=ruckusZF7762N, ruckusZF7761CMHeartbeatMonitorCM=ruckusZF7761CMHeartbeatMonitorCM, ruckusWirelessMetroProducts=ruckusWirelessMetroProducts, ruckusZD1000CountryCode=ruckusZD1000CountryCode, ruckusZF7761CMCustomization=ruckusZF7761CMCustomization, ruckusZF2741=ruckusZF2741, ruckusZF7782S=ruckusZF7782S, ruckusZF7781CM=ruckusZF7781CM, ruckusZF7762AC=ruckusZF7762AC, ruckusZF7343=ruckusZF7343, ruckusZD5000SystemUptime=ruckusZD5000SystemUptime, ruckusZF7781FN=ruckusZF7781FN, ruckusMM2221=ruckusMM2221, ruckusZF7762S=ruckusZF7762S, ruckusZD3000SystemVersion=ruckusZD3000SystemVersion, ruckusZD1000SystemName=ruckusZD1000SystemName, ruckusSC8800S=ruckusSC8800S, ruckusVF2821=ruckusVF2821, ruckusZD5000SystemModel=ruckusZD5000SystemModel, ruckusZD3000CountryCode=ruckusZD3000CountryCode, ruckusZD5000SystemVersion=ruckusZD5000SystemVersion, ruckusZD3000SystemIPAddr=ruckusZD3000SystemIPAddr, ruckusZD1100SystemUptime=ruckusZD1100SystemUptime, ruckusZD3000SystemName=ruckusZD3000SystemName, ruckusSC8800SAC=ruckusSC8800SAC, ruckusZD1000=ruckusZD1000, ruckusZD1100SystemName=ruckusZD1100SystemName, ruckusZD5000CountryCode=ruckusZD5000CountryCode, ruckusZD1000SystemMacAddr=ruckusZD1000SystemMacAddr, ruckusZF7351=ruckusZF7351, ruckusVF7811=ruckusVF7811, ruckusVF2825=ruckusVF2825, ruckusZD5000SystemMacAddr=ruckusZD5000SystemMacAddr, ruckusZF7962=ruckusZF7962, ruckusZD1100SystemSerialNumber=ruckusZD1100SystemSerialNumber, ruckusMM2211=ruckusMM2211, ruckusZF7761CMPassword=ruckusZF7761CMPassword, ruckusWirelessHotzoneProducts=ruckusWirelessHotzoneProducts, ruckusZF7762=ruckusZF7762, ruckusZF7352=ruckusZF7352, ruckusZF2942=ruckusZF2942, ruckusVF2111=ruckusVF2111, ruckusZF7731=ruckusZF7731, ruckusZD1000SystemIPAddr=ruckusZD1000SystemIPAddr, ruckusZF2925=ruckusZF2925, ruckusZF7762SAC=ruckusZF7762SAC, ruckusZF7055=ruckusZF7055, ruckusZF7781M=ruckusZF7781M, ruckusVF2835=ruckusVF2835, ruckusZD1100SystemMacAddr=ruckusZD1100SystemMacAddr, ruckusZF7025=ruckusZF7025, ruckusZF8800SAC=ruckusZF8800SAC, ruckusZD3000SystemSerialNumber=ruckusZD3000SystemSerialNumber, ruckusZD1000SystemVersion=ruckusZD1000SystemVersion, ruckusZF7372=ruckusZF7372, ruckusZF7782=ruckusZF7782, ruckusZF7761CMSSHService=ruckusZF7761CMSSHService, ruckusZD3000SystemLicensedAPs=ruckusZD3000SystemLicensedAPs, ruckusZD1100SystemIPAddr=ruckusZD1100SystemIPAddr, PYSNMP_MODULE_ID=ruckusProductsMIB, ruckusMM2225=ruckusMM2225, ruckusZF7372E=ruckusZF7372E, ruckusZF7761CMUsername=ruckusZF7761CMUsername, ruckusZD1100SystemVersion=ruckusZD1100SystemVersion, ruckusVF7111=ruckusVF7111, ruckusZF7363=ruckusZF7363, ruckusZF7762TAC=ruckusZF7762TAC, ruckusZD5000SystemIPAddr=ruckusZD5000SystemIPAddr, ruckusZF7781FNS=ruckusZF7781FNS, ruckusVF2811=ruckusVF2811, ruckusZF7761CMLEDMode=ruckusZF7761CMLEDMode) |
def OptimizedNativePatternSearch(pat,txt):
M = len(pat)
N = len(txt)
i = 0
while i < N-M:
j = 0
while j < M:
if txt[i+j] != pat[j]:
break
j += 1
if j == M:
print("The pattern starts from index", i)
i = i + M
elif j == 0:
i = i + 1
else:
i = i + j
Pattern = "Adib"
text = "My name is Adib Shakib"
OptimizedNativePatternSearch(Pattern, text) | def optimized_native_pattern_search(pat, txt):
m = len(pat)
n = len(txt)
i = 0
while i < N - M:
j = 0
while j < M:
if txt[i + j] != pat[j]:
break
j += 1
if j == M:
print('The pattern starts from index', i)
i = i + M
elif j == 0:
i = i + 1
else:
i = i + j
pattern = 'Adib'
text = 'My name is Adib Shakib'
optimized_native_pattern_search(Pattern, text) |
# from math import floor
#
#
# def decom(x, y):
# if y > x/2:
# return 1
# else:
# counter = 1
# for i in range(y, floor(x/2) + 1):
# counter += chart[x - i - 1][i - 1]
# return counter
#
# # a = 61
# # k = 1
# # while k != 0:
# # print(a)
# # if decom(a, 1) % 1000000 == 0:
# # print(a)
# # break
# # else:
# # a += 1
#
# # print(decom(4, 2))
#
# chart = [[1]]
# count = 2
# while chart[-1][0] % 1000000 != 0:
# print(chart[-1][0])
# temp = []
# for i in range(1, count + 1):
# temp.append(decom(count, i))
# chart.append(temp)
# count += 1
# list of generalized pentagonal numbers for generating function
k = sum([[i*(3*i - 1)/2, i*(3*i - 1)/2 + i] for i in range(1, 250)], [])
p, sgn, n, m = [1], [1, 1, -1, -1], 0, 1e6
while p[n] > 0: # expand generating function to calculate p(n)
n += 1
px, i = 0, 0
while k[i] <= n:
px += p[int(n - k[i])] * sgn[i % 4]
i += 1
p.append(px % m)
print("Project Euler 78 Solution =", n)
# Todo look into integer partition and generating function
| k = sum([[i * (3 * i - 1) / 2, i * (3 * i - 1) / 2 + i] for i in range(1, 250)], [])
(p, sgn, n, m) = ([1], [1, 1, -1, -1], 0, 1000000.0)
while p[n] > 0:
n += 1
(px, i) = (0, 0)
while k[i] <= n:
px += p[int(n - k[i])] * sgn[i % 4]
i += 1
p.append(px % m)
print('Project Euler 78 Solution =', n) |
# Enter your code here. Read input from STDIN. Print output to STDOUT
i = input()
values = []
weights = []
values = list(map(int,input().split()))
weights = list(map(int,input().split()))
s = 0
for x, y in zip(values, weights):
s += x * y
weighted_avg = round(s / sum(weights), 1)
print(weighted_avg)
| i = input()
values = []
weights = []
values = list(map(int, input().split()))
weights = list(map(int, input().split()))
s = 0
for (x, y) in zip(values, weights):
s += x * y
weighted_avg = round(s / sum(weights), 1)
print(weighted_avg) |
class QueueEvent:
def __init__(self, delay, event_name, event_object):
self.delay = delay
self.event_name = event_name
self.event_object = event_object
self.done = False
class Queue:
def __init__(self):
self.events = []
def tick(self):
for event in self.events:
# To do: remove event when done
if event.done:
continue
event.delay -= 1
if event.delay <= 0:
self.execute_event(event)
event.done = True
def add(self, delay, event_name, event_object=None):
event = QueueEvent(delay, event_name, event_object)
self.events.append(event)
def execute_event(self, event):
if event.event_name == 'retire_car':
event.event_object.retire()
queue = Queue()
| class Queueevent:
def __init__(self, delay, event_name, event_object):
self.delay = delay
self.event_name = event_name
self.event_object = event_object
self.done = False
class Queue:
def __init__(self):
self.events = []
def tick(self):
for event in self.events:
if event.done:
continue
event.delay -= 1
if event.delay <= 0:
self.execute_event(event)
event.done = True
def add(self, delay, event_name, event_object=None):
event = queue_event(delay, event_name, event_object)
self.events.append(event)
def execute_event(self, event):
if event.event_name == 'retire_car':
event.event_object.retire()
queue = queue() |
#
# PySNMP MIB module VDSL-LINE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/VDSL-LINE-MIB
# Produced by pysmi-0.3.4 at Wed May 1 13:57:23 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueRangeConstraint, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueRangeConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint")
HCPerfTimeElapsed, HCPerfValidIntervals, HCPerfInvalidIntervals, HCPerfCurrentCount, HCPerfIntervalCount, HCPerfIntervalThreshold = mibBuilder.importSymbols("HC-PerfHist-TC-MIB", "HCPerfTimeElapsed", "HCPerfValidIntervals", "HCPerfInvalidIntervals", "HCPerfCurrentCount", "HCPerfIntervalCount", "HCPerfIntervalThreshold")
ZeroBasedCounter64, = mibBuilder.importSymbols("HCNUM-TC", "ZeroBasedCounter64")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
ModuleIdentity, MibIdentifier, ObjectIdentity, transmission, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, TimeTicks, NotificationType, Counter64, IpAddress, Counter32, Bits, iso, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "MibIdentifier", "ObjectIdentity", "transmission", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "TimeTicks", "NotificationType", "Counter64", "IpAddress", "Counter32", "Bits", "iso", "Integer32")
TruthValue, RowStatus, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "RowStatus", "DisplayString", "TextualConvention")
vdslMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 10, 97))
vdslMIB.setRevisions(('2004-02-19 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: vdslMIB.setRevisionsDescriptions(('Initial version, published as RFC 3728.',))
if mibBuilder.loadTexts: vdslMIB.setLastUpdated('200402190000Z')
if mibBuilder.loadTexts: vdslMIB.setOrganization('ADSLMIB Working Group')
if mibBuilder.loadTexts: vdslMIB.setContactInfo('WG-email: adslmib@ietf.org Info: https://www1.ietf.org/mailman/listinfo/adslmib Chair: Mike Sneed Sand Channel Systems Postal: P.O. Box 37324 Raleigh, NC 27627-7324 USA Email: sneedmike@hotmail.com Phone: +1 206 600 7022 Co-editor: Bob Ray PESA Switching Systems, Inc. Postal: 330-A Wynn Drive Huntsville, AL 35805 USA Email: rray@pesa.com Phone: +1 256 726 9200 ext. 142 Co-editor: Rajesh Abbi Alcatel USA Postal: 2301 Sugar Bush Road Raleigh, NC 27612-3339 USA Email: Rajesh.Abbi@alcatel.com Phone: +1 919 850 6194 ')
if mibBuilder.loadTexts: vdslMIB.setDescription('The MIB module defining objects for the management of a pair of VDSL transceivers at each end of the VDSL line. Each such line has an entry in an ifTable which may include multiple transceiver lines. An agent may reside at either end of the VDSL line. However, the MIB is designed to require no management communication between them beyond that inherent in the low-level VDSL line protocol. The agent may monitor and control this protocol for its needs. VDSL lines may support optional Fast or Interleaved channels. If these are supported, additional entries corresponding to the supported channels must be created in the ifTable. Thus a VDSL line that supports both channels will have three entries in the ifTable, one for each physical, fast, and interleaved, whose ifType values are equal to vdsl(97), fast(125), and interleaved(124), respectively. The ifStackTable is used to represent the relationship between the entries. Naming Conventions: Vtuc -- (VTUC) transceiver at near (Central) end of line Vtur -- (VTUR) transceiver at Remote end of line Vtu -- One of either Vtuc or Vtur Curr -- Current Prev -- Previous Atn -- Attenuation ES -- Errored Second. SES -- Severely Errored Second UAS -- Unavailable Second LCS -- Line Code Specific Lof -- Loss of Frame Lol -- Loss of Link Los -- Loss of Signal Lpr -- Loss of Power xxxs -- Sum of Seconds in which xxx has occured (e.g., xxx = Lof, Los, Lpr, Lol) Max -- Maximum Mgn -- Margin Min -- Minimum Psd -- Power Spectral Density Snr -- Signal to Noise Ratio Tx -- Transmit Blks -- Blocks Copyright (C) The Internet Society (2004). This version of this MIB module is part of RFC 3728: see the RFC itself for full legal notices.')
vdslLineMib = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 97, 1))
vdslMibObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 1))
class VdslLineCodingType(TextualConvention, Integer32):
description = 'This data type is used as the syntax for the VDSL Line Code. Attributes with this syntax identify the line coding used. Specified as an INTEGER, the three values are: other(1) -- none of the following mcm(2) -- Multiple Carrier Modulation scm(3) -- Single Carrier Modulation'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("other", 1), ("mcm", 2), ("scm", 3))
class VdslLineEntity(TextualConvention, Integer32):
description = 'Identifies a transceiver as being either Vtuc or Vtur. A VDSL line consists of two transceivers, a Vtuc and a Vtur. Attributes with this syntax reference the two sides of a line. Specified as an INTEGER, the two values are: vtuc(1) -- central site transceiver vtur(2) -- remote site transceiver'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("vtuc", 1), ("vtur", 2))
vdslLineTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1), )
if mibBuilder.loadTexts: vdslLineTable.setStatus('current')
if mibBuilder.loadTexts: vdslLineTable.setDescription('This table includes common attributes describing both ends of the line. It is required for all VDSL physical interfaces. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdslLineEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: vdslLineEntry.setStatus('current')
if mibBuilder.loadTexts: vdslLineEntry.setDescription('An entry in the vdslLineTable.')
vdslLineCoding = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 1), VdslLineCodingType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslLineCoding.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineCoding.setStatus('current')
if mibBuilder.loadTexts: vdslLineCoding.setDescription('Specifies the VDSL coding type used on this line.')
vdslLineType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("noChannel", 1), ("fastOnly", 2), ("interleavedOnly", 3), ("fastOrInterleaved", 4), ("fastAndInterleaved", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslLineType.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineType.setStatus('current')
if mibBuilder.loadTexts: vdslLineType.setDescription("Defines the type of VDSL physical line entity that exists, by defining whether and how the line is channelized. If the line is channelized, the value will be other than noChannel(1). This object defines which channel type(s) are supported. Defined values are: noChannel(1) -- no channels exist fastOnly(2) -- only fast channel exists interleavedOnly(3) -- only interleaved channel exists fastOrInterleaved(4) -- either fast or interleaved channel -- exist, but only one at a time fastAndInterleaved(5) -- both fast and interleaved channels -- exist Note that 'slow' and 'interleaved' refer to the same channel. In the case that the line is channelized, the manager can use the ifStackTable to determine the ifIndex for the associated channel(s).")
vdslLineConfProfile = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)).clone('DEFVAL')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vdslLineConfProfile.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfProfile.setDescription('The value of this object identifies the row in the VDSL Line Configuration Profile Table, vdslLineConfProfileTable, which applies for this VDSL line, and channels if applicable. This object MUST be maintained in a persistent manner.')
vdslLineAlarmConfProfile = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)).clone('DEFVAL')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vdslLineAlarmConfProfile.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfProfile.setDescription('The value of this object identifies the row in the VDSL Line Alarm Configuration Profile Table, vdslLineAlarmConfProfileTable, which applies to this VDSL line, and channels if applicable. This object MUST be maintained in a persistent manner.')
vdslPhysTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2), )
if mibBuilder.loadTexts: vdslPhysTable.setStatus('current')
if mibBuilder.loadTexts: vdslPhysTable.setDescription('This table provides one row for each Vtu. Each row contains the Physical Layer Parameters table for that Vtu. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdslPhysEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"))
if mibBuilder.loadTexts: vdslPhysEntry.setStatus('current')
if mibBuilder.loadTexts: vdslPhysEntry.setDescription('An entry in the vdslPhysTable.')
vdslPhysSide = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 1), VdslLineEntity())
if mibBuilder.loadTexts: vdslPhysSide.setStatus('current')
if mibBuilder.loadTexts: vdslPhysSide.setDescription('Identifies whether the transceiver is the Vtuc or Vtur.')
vdslPhysInvSerialNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 2), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysInvSerialNumber.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysInvSerialNumber.setStatus('current')
if mibBuilder.loadTexts: vdslPhysInvSerialNumber.setDescription('The vendor specific string that identifies the vendor equipment.')
vdslPhysInvVendorID = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 3), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysInvVendorID.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysInvVendorID.setStatus('current')
if mibBuilder.loadTexts: vdslPhysInvVendorID.setDescription('The vendor ID code is a copy of the binary vendor identification field expressed as readable characters in hexadecimal notation.')
vdslPhysInvVersionNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 4), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysInvVersionNumber.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysInvVersionNumber.setStatus('current')
if mibBuilder.loadTexts: vdslPhysInvVersionNumber.setDescription('The vendor specific version number sent by this Vtu as part of the initialization messages. It is a copy of the binary version number field expressed as readable characters in hexadecimal notation.')
vdslPhysCurrSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-127, 127))).setUnits('0.25dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysCurrSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysCurrSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslPhysCurrSnrMgn.setDescription('Noise Margin as seen by this Vtu with respect to its received signal in 0.25dB. The effective range is -31.75 to +31.75 dB.')
vdslPhysCurrAtn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 6), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('0.25dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysCurrAtn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysCurrAtn.setStatus('current')
if mibBuilder.loadTexts: vdslPhysCurrAtn.setDescription('Measured difference in the total power transmitted by the peer Vtu and the total power received by this Vtu. The effective range is 0 to +63.75 dB.')
vdslPhysCurrStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 7), Bits().clone(namedValues=NamedValues(("noDefect", 0), ("lossOfFraming", 1), ("lossOfSignal", 2), ("lossOfPower", 3), ("lossOfSignalQuality", 4), ("lossOfLink", 5), ("dataInitFailure", 6), ("configInitFailure", 7), ("protocolInitFailure", 8), ("noPeerVtuPresent", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysCurrStatus.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysCurrStatus.setStatus('current')
if mibBuilder.loadTexts: vdslPhysCurrStatus.setDescription("Indicates current state of the Vtu line. This is a bit-map of possible conditions. The various bit positions are: 0 noDefect There are no defects on the line. 1 lossOfFraming Vtu failure due to not receiving a valid frame. 2 lossOfSignal Vtu failure due to not receiving signal. 3 lossOfPower Vtu failure due to loss of power. 4 lossOfSignalQuality Loss of Signal Quality is declared when the Noise Margin falls below the Minimum Noise Margin, or the bit-error-rate exceeds 10^-7. 5 lossOfLink Vtu failure due to inability to link with peer Vtu. Set whenever the transceiver is in the 'Warm Start' state. 6 dataInitFailure Vtu failure during initialization due to bit errors corrupting startup exchange data. 7 configInitFailure Vtu failure during initialization due to peer Vtu not able to support requested configuration. 8 protocolInitFailure Vtu failure during initialization due to incompatible protocol used by the peer Vtu. 9 noPeerVtuPresent Vtu failure during initialization due to no activation sequence detected from peer Vtu. This is intended to supplement ifOperStatus.")
vdslPhysCurrOutputPwr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 160))).setUnits('0.1dBm').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysCurrOutputPwr.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysCurrOutputPwr.setStatus('current')
if mibBuilder.loadTexts: vdslPhysCurrOutputPwr.setDescription('Measured total output power transmitted by this VTU. This is the measurement that was reported during the last activation sequence.')
vdslPhysCurrAttainableRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 9), Gauge32()).setUnits('kbps').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysCurrAttainableRate.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysCurrAttainableRate.setStatus('current')
if mibBuilder.loadTexts: vdslPhysCurrAttainableRate.setDescription('Indicates the maximum currently attainable data rate in steps of 1000 bits/second by the Vtu. This value will be equal to or greater than vdslPhysCurrLineRate. Note that for SCM, the minimum and maximum data rates are equal. Note: 1 kbps = 1000 bps.')
vdslPhysCurrLineRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 10), Gauge32()).setUnits('kbps').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPhysCurrLineRate.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPhysCurrLineRate.setStatus('current')
if mibBuilder.loadTexts: vdslPhysCurrLineRate.setDescription('Indicates the current data rate in steps of 1000 bits/second by the Vtu. This value will be less than or equal to vdslPhysCurrAttainableRate. Note: 1 kbps = 1000 bps.')
vdslChanTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3), )
if mibBuilder.loadTexts: vdslChanTable.setStatus('current')
if mibBuilder.loadTexts: vdslChanTable.setDescription('This table provides one row for each Vtu channel. VDSL channel interfaces are those ifEntries where ifType is equal to interleave(124) or fast(125).')
vdslChanEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"))
if mibBuilder.loadTexts: vdslChanEntry.setStatus('current')
if mibBuilder.loadTexts: vdslChanEntry.setDescription('An entry in the vdslChanTable.')
vdslChanInterleaveDelay = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 1), Gauge32()).setUnits('milliseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanInterleaveDelay.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanInterleaveDelay.setStatus('current')
if mibBuilder.loadTexts: vdslChanInterleaveDelay.setDescription('Interleave Delay for this channel. Interleave delay applies only to the interleave (slow) channel and defines the mapping (relative spacing) between subsequent input bytes at the interleaver input and their placement in the bit stream at the interleaver output. Larger numbers provide greater separation between consecutive input bytes in the output bit stream allowing for improved impulse noise immunity at the expense of payload latency. In the case where the ifType is fast(125), return a value of zero.')
vdslChanCrcBlockLength = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 2), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCrcBlockLength.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanCrcBlockLength.setStatus('current')
if mibBuilder.loadTexts: vdslChanCrcBlockLength.setDescription('Indicates the length of the channel data-block on which the CRC operates.')
vdslChanCurrTxRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 3), Gauge32()).setUnits('kbps').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurrTxRate.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurrTxRate.setDescription('Actual transmit data rate on this channel. Note: 1 kbps = 1000 bps.')
vdslChanCurrTxSlowBurstProtect = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 1275))).setUnits('microseconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurrTxSlowBurstProtect.setReference('ITU-T G.997.1, section 7.3.2.3')
if mibBuilder.loadTexts: vdslChanCurrTxSlowBurstProtect.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurrTxSlowBurstProtect.setDescription('Actual level of impulse noise (burst) protection for an interleaved (slow) channel. This parameter is not applicable to fast channels. For fast channels, a value of zero shall be returned.')
vdslChanCurrTxFastFec = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 50))).setUnits('%').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurrTxFastFec.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurrTxFastFec.setDescription('Actual Forward Error Correction (FEC) redundancy related overhead for a fast channel. This parameter is not applicable to an interleaved (slow) channel. For interleaved channels, a value of zero shall be returned.')
vdslPerfDataTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4), )
if mibBuilder.loadTexts: vdslPerfDataTable.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataTable.setDescription('This table provides one row for each VDSL physical interface. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdslPerfDataEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"))
if mibBuilder.loadTexts: vdslPerfDataEntry.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataEntry.setDescription('An entry in the vdslPerfDataTable.')
vdslPerfDataValidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 1), HCPerfValidIntervals()).setUnits('intervals').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataValidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslPerfDataInvalidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 2), HCPerfInvalidIntervals()).setUnits('intervals').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslPerfDataLofs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 3), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataLofs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataLofs.setDescription('Count of seconds since the unit was last reset that there was Loss of Framing.')
vdslPerfDataLoss = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 4), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataLoss.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataLoss.setDescription('Count of seconds since the unit was last reset that there was Loss of Signal.')
vdslPerfDataLprs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 5), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataLprs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataLprs.setDescription('Count of seconds since the unit was last reset that there was Loss of Power.')
vdslPerfDataLols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 6), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataLols.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataLols.setDescription('Count of seconds since the unit was last reset that there was Loss of Link.')
vdslPerfDataESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 7), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataESs.setDescription('Count of Errored Seconds since the unit was last reset. An Errored Second is a one-second interval containing one or more CRC anomalies, or one or more LOS or LOF defects.')
vdslPerfDataSESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 8), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataSESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataSESs.setDescription('Count of Severely Errored Seconds since the unit was last reset.')
vdslPerfDataUASs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 9), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataUASs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataUASs.setDescription('Count of Unavailable Seconds since the unit was last reset.')
vdslPerfDataInits = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 10), Unsigned32()).setUnits('occurrences').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataInits.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataInits.setDescription('Count of the line initialization attempts since the unit was last reset. This count includes both successful and failed attempts.')
vdslPerfDataCurr15MinTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 11), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinTimeElapsed.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinTimeElapsed.setDescription('Total elapsed seconds in this interval.')
vdslPerfDataCurr15MinLofs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 12), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLofs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLofs.setDescription('Count of seconds during this interval that there was Loss of Framing.')
vdslPerfDataCurr15MinLoss = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 13), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLoss.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLoss.setDescription('Count of seconds during this interval that there was Loss of Signal.')
vdslPerfDataCurr15MinLprs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 14), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLprs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLprs.setDescription('Count of seconds during this interval that there was Loss of Power.')
vdslPerfDataCurr15MinLols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 15), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLols.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinLols.setDescription('Count of seconds during this interval that there was Loss of Link.')
vdslPerfDataCurr15MinESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 16), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinESs.setDescription('Count of Errored Seconds during this interval. An Errored Second is a one-second interval containing one or more CRC anomalies, or one or more LOS or LOF defects.')
vdslPerfDataCurr15MinSESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 17), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinSESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinSESs.setDescription('Count of Severely Errored Seconds during this interval.')
vdslPerfDataCurr15MinUASs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 18), HCPerfCurrentCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinUASs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinUASs.setDescription('Count of Unavailable Seconds during this interval.')
vdslPerfDataCurr15MinInits = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 19), HCPerfCurrentCount()).setUnits('occurrences').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr15MinInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinInits.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr15MinInits.setDescription('Count of the line initialization attempts during this interval. This count includes both successful and failed attempts.')
vdslPerfData1DayValidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 20), HCPerfValidIntervals()).setUnits('intervals').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfData1DayValidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslPerfData1DayValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslPerfData1DayInvalidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 21), HCPerfInvalidIntervals()).setUnits('intervals').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfData1DayInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslPerfData1DayInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslPerfDataCurr1DayTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 22), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayTimeElapsed.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayTimeElapsed.setDescription('Number of seconds that have elapsed since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayLofs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 23), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLofs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLofs.setDescription('Count of Loss of Framing (LOF) Seconds since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayLoss = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 24), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLoss.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLoss.setDescription('Count of Loss of Signal (LOS) Seconds since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayLprs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 25), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLprs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLprs.setDescription('Count of Loss of Power (LPR) Seconds since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayLols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 26), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLols.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayLols.setDescription('Count of Loss of Link (LOL) Seconds since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 27), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayESs.setDescription('Count of Errored Seconds (ES) since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DaySESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 28), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DaySESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DaySESs.setDescription('Count of Severely Errored Seconds (SES) since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayUASs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 29), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayUASs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayUASs.setDescription('Count of Unavailable Seconds (UAS) since the beginning of the current 1-day interval.')
vdslPerfDataCurr1DayInits = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 30), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfDataCurr1DayInits.setStatus('current')
if mibBuilder.loadTexts: vdslPerfDataCurr1DayInits.setDescription('Count of the line initialization attempts since the beginning of the current 1-day interval. This count includes both successful and failed attempts.')
vdslPerfIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5), )
if mibBuilder.loadTexts: vdslPerfIntervalTable.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalTable.setDescription('This table provides one row for each Vtu performance data collection interval. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdslPerfIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"), (0, "VDSL-LINE-MIB", "vdslPerfIntervalNumber"))
if mibBuilder.loadTexts: vdslPerfIntervalEntry.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalEntry.setDescription('An entry in the vdslPerfIntervalTable.')
vdslPerfIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 96)))
if mibBuilder.loadTexts: vdslPerfIntervalNumber.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalNumber.setDescription('Performance Data Interval number 1 is the most recent previous interval; interval 96 is 24 hours ago. Intervals 2 to 96 are optional.')
vdslPerfIntervalLofs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 2), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfIntervalLofs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalLofs.setDescription('Count of seconds in the interval when there was Loss of Framing.')
vdslPerfIntervalLoss = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 3), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfIntervalLoss.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalLoss.setDescription('Count of seconds in the interval when there was Loss of Signal.')
vdslPerfIntervalLprs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 4), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfIntervalLprs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalLprs.setDescription('Count of seconds in the interval when there was Loss of Power.')
vdslPerfIntervalLols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 5), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalLols.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalLols.setDescription('Count of seconds in the interval when there was Loss of Link.')
vdslPerfIntervalESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 6), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfIntervalESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalESs.setDescription('Count of Errored Seconds (ES) in the interval. An Errored Second is a one-second interval containing one or more CRC anomalies, one or more LOS or LOF defects.')
vdslPerfIntervalSESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 7), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalSESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalSESs.setDescription('Count of Severely Errored Seconds in the interval.')
vdslPerfIntervalUASs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 8), HCPerfIntervalCount()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalUASs.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalUASs.setDescription('Count of Unavailable Seconds in the interval.')
vdslPerfIntervalInits = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 9), HCPerfIntervalCount()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerfIntervalInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerfIntervalInits.setStatus('current')
if mibBuilder.loadTexts: vdslPerfIntervalInits.setDescription('Count of the line initialization attempts during this interval. This count includes both successful and failed attempts.')
vdslPerf1DayIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6), )
if mibBuilder.loadTexts: vdslPerf1DayIntervalTable.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalTable.setDescription('This table provides one row for each VDSL performance data collection interval. This table contains live data from equipment. As such, it is NOT persistent.')
vdslPerf1DayIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"), (0, "VDSL-LINE-MIB", "vdslPerf1DayIntervalNumber"))
if mibBuilder.loadTexts: vdslPerf1DayIntervalEntry.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalEntry.setDescription('An entry in the vdslPerf1DayIntervalTable.')
vdslPerf1DayIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)))
if mibBuilder.loadTexts: vdslPerf1DayIntervalNumber.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalNumber.setDescription('History Data Interval number. Interval 1 is the most recent previous day; interval 30 is 30 days ago. Intervals 2 to 30 are optional.')
vdslPerf1DayIntervalMoniSecs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 2), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalMoniSecs.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalMoniSecs.setDescription('The amount of time in the 1-day interval over which the performance monitoring information is actually counted. This value will be the same as the interval duration except in a situation where performance monitoring data could not be collected for any reason.')
vdslPerf1DayIntervalLofs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 3), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLofs.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLofs.setDescription('Count of Loss of Frame (LOF) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalLoss = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 4), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLoss.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLoss.setDescription('Count of Loss of Signal (LOS) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalLprs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 5), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLprs.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLprs.setDescription('Count of Loss of Power (LPR) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalLols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 6), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalLols.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalLols.setDescription('Count of Loss of Link (LOL) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 7), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerf1DayIntervalESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalESs.setDescription('Count of Errored Seconds (ES) during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalSESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 8), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalSESs.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalSESs.setDescription('Count of Severely Errored Seconds (SES) during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalUASs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 9), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalUASs.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalUASs.setDescription('Count of Unavailable Seconds (UAS) during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdslPerf1DayIntervalInits = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 10), Unsigned32()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslPerf1DayIntervalInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslPerf1DayIntervalInits.setStatus('current')
if mibBuilder.loadTexts: vdslPerf1DayIntervalInits.setDescription('Count of the line initialization attempts during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs. This count includes both successful and failed attempts.')
vdslChanPerfDataTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7), )
if mibBuilder.loadTexts: vdslChanPerfDataTable.setStatus('current')
if mibBuilder.loadTexts: vdslChanPerfDataTable.setDescription('This table provides one row for each Vtu channel. VDSL channel interfaces are those ifEntries where ifType is equal to interleave(124) or fast(125).')
vdslChanPerfDataEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"))
if mibBuilder.loadTexts: vdslChanPerfDataEntry.setStatus('current')
if mibBuilder.loadTexts: vdslChanPerfDataEntry.setDescription('An entry in the vdslChanPerfDataTable.')
vdslChanValidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 1), HCPerfValidIntervals()).setUnits('intervals').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanValidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslChanValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslChanInvalidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 2), HCPerfInvalidIntervals()).setUnits('intervals').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslChanInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslChanFixedOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 3), ZeroBasedCounter64()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanFixedOctets.setStatus('current')
if mibBuilder.loadTexts: vdslChanFixedOctets.setDescription('Count of corrected octets since the unit was last reset.')
vdslChanBadBlks = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 4), ZeroBasedCounter64()).setUnits('blocks').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanBadBlks.setStatus('current')
if mibBuilder.loadTexts: vdslChanBadBlks.setDescription('Count of uncorrectable blocks since the unit was last reset.')
vdslChanCurr15MinTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 5), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurr15MinTimeElapsed.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurr15MinTimeElapsed.setDescription('Total elapsed seconds in this interval.')
vdslChanCurr15MinFixedOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 6), HCPerfCurrentCount()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurr15MinFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanCurr15MinFixedOctets.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurr15MinFixedOctets.setDescription('Count of corrected octets in this interval.')
vdslChanCurr15MinBadBlks = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 7), HCPerfCurrentCount()).setUnits('blocks').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurr15MinBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanCurr15MinBadBlks.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurr15MinBadBlks.setDescription('Count of uncorrectable blocks in this interval.')
vdslChan1DayValidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 8), HCPerfValidIntervals()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChan1DayValidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslChan1DayInvalidIntervals = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 9), HCPerfInvalidIntervals()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChan1DayInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdslChanCurr1DayTimeElapsed = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 10), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurr1DayTimeElapsed.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurr1DayTimeElapsed.setDescription('Number of seconds that have elapsed since the beginning of the current 1-day interval.')
vdslChanCurr1DayFixedOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 11), HCPerfCurrentCount()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurr1DayFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanCurr1DayFixedOctets.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurr1DayFixedOctets.setDescription('Count of corrected octets since the beginning of the current 1-day interval.')
vdslChanCurr1DayBadBlks = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 12), HCPerfCurrentCount()).setUnits('blocks').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanCurr1DayBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanCurr1DayBadBlks.setStatus('current')
if mibBuilder.loadTexts: vdslChanCurr1DayBadBlks.setDescription('Count of uncorrectable blocks since the beginning of the current 1-day interval.')
vdslChanIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8), )
if mibBuilder.loadTexts: vdslChanIntervalTable.setStatus('current')
if mibBuilder.loadTexts: vdslChanIntervalTable.setDescription('This table provides one row for each Vtu channel data collection interval. VDSL channel interfaces are those ifEntries where ifType is equal to interleave(124) or fast(125).')
vdslChanIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"), (0, "VDSL-LINE-MIB", "vdslChanIntervalNumber"))
if mibBuilder.loadTexts: vdslChanIntervalEntry.setStatus('current')
if mibBuilder.loadTexts: vdslChanIntervalEntry.setDescription('An entry in the vdslChanIntervalTable.')
vdslChanIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 96)))
if mibBuilder.loadTexts: vdslChanIntervalNumber.setStatus('current')
if mibBuilder.loadTexts: vdslChanIntervalNumber.setDescription('Performance Data Interval number 1 is the most recent previous interval; interval 96 is 24 hours ago. Intervals 2 to 96 are optional.')
vdslChanIntervalFixedOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1, 2), HCPerfIntervalCount()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanIntervalFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanIntervalFixedOctets.setStatus('current')
if mibBuilder.loadTexts: vdslChanIntervalFixedOctets.setDescription('Count of corrected octets in this interval.')
vdslChanIntervalBadBlks = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1, 3), HCPerfIntervalCount()).setUnits('blocks').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChanIntervalBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChanIntervalBadBlks.setStatus('current')
if mibBuilder.loadTexts: vdslChanIntervalBadBlks.setDescription('Count of uncorrectable blocks in this interval.')
vdslChan1DayIntervalTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9), )
if mibBuilder.loadTexts: vdslChan1DayIntervalTable.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayIntervalTable.setDescription('This table provides one row for each VDSL performance data collection interval. This table contains live data from equipment. As such, it is NOT persistent.')
vdslChan1DayIntervalEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "VDSL-LINE-MIB", "vdslPhysSide"), (0, "VDSL-LINE-MIB", "vdslChan1DayIntervalNumber"))
if mibBuilder.loadTexts: vdslChan1DayIntervalEntry.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayIntervalEntry.setDescription('An entry in the vdslChan1DayIntervalTable.')
vdslChan1DayIntervalNumber = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)))
if mibBuilder.loadTexts: vdslChan1DayIntervalNumber.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayIntervalNumber.setDescription('History Data Interval number. Interval 1 is the most recent previous day; interval 30 is 30 days ago. Intervals 2 to 30 are optional.')
vdslChan1DayIntervalMoniSecs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 2), HCPerfTimeElapsed()).setUnits('seconds').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChan1DayIntervalMoniSecs.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayIntervalMoniSecs.setDescription('The amount of time in the 1-day interval over which the performance monitoring information is actually counted. This value will be the same as the interval duration except in a situation where performance monitoring data could not be collected for any reason.')
vdslChan1DayIntervalFixedOctets = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 3), HCPerfCurrentCount()).setUnits('octets').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChan1DayIntervalFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChan1DayIntervalFixedOctets.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayIntervalFixedOctets.setDescription('Count of corrected octets in this interval.')
vdslChan1DayIntervalBadBlks = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 4), HCPerfCurrentCount()).setUnits('blocks').setMaxAccess("readonly")
if mibBuilder.loadTexts: vdslChan1DayIntervalBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslChan1DayIntervalBadBlks.setStatus('current')
if mibBuilder.loadTexts: vdslChan1DayIntervalBadBlks.setDescription('Count of uncorrectable blocks in this interval.')
vdslLineConfProfileTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11), )
if mibBuilder.loadTexts: vdslLineConfProfileTable.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfProfileTable.setDescription('This table contains information on the VDSL line configuration. One entry in this table reflects a profile defined by a manager which can be used to configure the VDSL line. Entries in this table MUST be maintained in a persistent manner.')
vdslLineConfProfileEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1), ).setIndexNames((0, "VDSL-LINE-MIB", "vdslLineConfProfileName"))
if mibBuilder.loadTexts: vdslLineConfProfileEntry.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfProfileEntry.setDescription("Each entry consists of a list of parameters that represents the configuration of a VDSL line. A default profile with an index of 'DEFVAL', will always exist and its parameters will be set to vendor specific values, unless otherwise specified in this document.")
vdslLineConfProfileName = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)))
if mibBuilder.loadTexts: vdslLineConfProfileName.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfProfileName.setDescription("This object identifies a row in this table. A default profile with an index of 'DEFVAL', will always exist and its parameters will be set to vendor specific values, unless otherwise specified in this document.")
vdslLineConfDownRateMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("manual", 1), ("adaptAtInit", 2))).clone('adaptAtInit')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownRateMode.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownRateMode.setDescription('Specifies the rate selection behavior for the line in the downstream direction. manual(1) forces the rate to the configured rate adaptAtInit(2) adapts the line based upon line quality.')
vdslLineConfUpRateMode = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("manual", 1), ("adaptAtInit", 2))).clone('adaptAtInit')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpRateMode.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpRateMode.setDescription('Specifies the rate selection behavior for the line in the upstream direction. manual(1) forces the rate to the configured rate adaptAtInit(2) adapts the line based upon line quality.')
vdslLineConfDownMaxPwr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 58))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownMaxPwr.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfDownMaxPwr.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownMaxPwr.setDescription('Specifies the maximum aggregate downstream power level in the range 0 to 14.5 dBm.')
vdslLineConfUpMaxPwr = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 58))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpMaxPwr.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfUpMaxPwr.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpMaxPwr.setDescription('Specifies the maximum aggregate upstream power level in the range 0 to 14.5 dBm.')
vdslLineConfDownMaxSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownMaxSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfDownMaxSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownMaxSnrMgn.setDescription('Specifies the maximum downstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdslLineConfDownMinSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownMinSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfDownMinSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownMinSnrMgn.setDescription('Specifies the minimum downstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdslLineConfDownTargetSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownTargetSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfDownTargetSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownTargetSnrMgn.setDescription('Specifies the target downstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. This is the Noise Margin the transceivers must achieve with a BER of 10^-7 or better to successfully complete initialization.')
vdslLineConfUpMaxSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpMaxSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfUpMaxSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpMaxSnrMgn.setDescription('Specifies the maximum upstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdslLineConfUpMinSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpMinSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfUpMinSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpMinSnrMgn.setDescription('Specifies the minimum upstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdslLineConfUpTargetSnrMgn = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setUnits('0.25dBm').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpTargetSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfUpTargetSnrMgn.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpTargetSnrMgn.setDescription('Specifies the target upstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. This is the Noise Margin the transceivers must achieve with a BER of 10^-7 or better to successfully complete initialization.')
vdslLineConfDownFastMaxDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 12), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownFastMaxDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownFastMaxDataRate.setDescription('Specifies the maximum downstream fast channel data rate in steps of 1000 bits/second.')
vdslLineConfDownFastMinDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 13), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownFastMinDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownFastMinDataRate.setDescription('Specifies the minimum downstream fast channel data rate in steps of 1000 bits/second.')
vdslLineConfDownSlowMaxDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 14), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownSlowMaxDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownSlowMaxDataRate.setDescription('Specifies the maximum downstream slow channel data rate in steps of 1000 bits/second. The maximum aggregate downstream transmit speed of the line can be derived from the sum of maximum downstream fast and slow channel data rates.')
vdslLineConfDownSlowMinDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 15), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownSlowMinDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownSlowMinDataRate.setDescription('Specifies the minimum downstream slow channel data rate in steps of 1000 bits/second. The minimum aggregate downstream transmit speed of the line can be derived from the sum of minimum downstream fast and slow channel data rates.')
vdslLineConfUpFastMaxDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 16), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpFastMaxDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpFastMaxDataRate.setDescription('Specifies the maximum upstream fast channel data rate in steps of 1000 bits/second. The maximum aggregate upstream transmit speed of the line can be derived from the sum of maximum upstream fast and slow channel data rates.')
vdslLineConfUpFastMinDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 17), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpFastMinDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpFastMinDataRate.setDescription('Specifies the minimum upstream fast channel data rate in steps of 1000 bits/second. The minimum aggregate upstream transmit speed of the line can be derived from the sum of minimum upstream fast and slow channel data rates.')
vdslLineConfUpSlowMaxDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 18), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpSlowMaxDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpSlowMaxDataRate.setDescription('Specifies the maximum upstream slow channel data rate in steps of 1000 bits/second.')
vdslLineConfUpSlowMinDataRate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 19), Unsigned32()).setUnits('kbps').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpSlowMinDataRate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpSlowMinDataRate.setDescription('Specifies the minimum upstream slow channel data rate in steps of 1000 bits/second.')
vdslLineConfDownRateRatio = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 20), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownRateRatio.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownRateRatio.setDescription('For dynamic rate adaptation at startup, the allocation of data rate in excess of the minimum data rate for each channel is controlled by the object. This object specifies the ratio of the allocation of the excess data rate between the fast and the slow channels. This allocation represents downstream Fast Channel Allocation / Slow Channel Allocation.')
vdslLineConfUpRateRatio = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 21), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('percent').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpRateRatio.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpRateRatio.setDescription('For dynamic rate adaptation at startup, the allocation of data rate in excess of the minimum data rate for each channel is controlled by the object. This object specifies the ratio of the allocation of the excess data rate between the fast and the slow channels. This allocation represents upstream Fast Channel Allocation/Slow Channel Allocation.')
vdslLineConfDownMaxInterDelay = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('milliseconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownMaxInterDelay.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownMaxInterDelay.setDescription('Specifies the maximum interleave delay for the downstream slow channel.')
vdslLineConfUpMaxInterDelay = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 23), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setUnits('milliseconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpMaxInterDelay.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpMaxInterDelay.setDescription('Specifies the maximum interleave delay for the upstream slow channel.')
vdslLineConfDownPboControl = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("auto", 2), ("manual", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownPboControl.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownPboControl.setDescription('Downstream power backoff (PBO) control for this line. For transceivers which do not support downstream PBO control, this object MUST be fixed at disabled(1). If auto(2) is selected, the transceiver will automatically adjust the power backoff. If manual(3) is selected, then the transceiver will use the value from vdslLineConfDownPboLevel.')
vdslLineConfUpPboControl = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("auto", 2), ("manual", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpPboControl.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpPboControl.setDescription('Upstream power backoff (PBO) control for this line. For transceivers which do not support upstream PBO control, this object MUST be fixed at disabled(1). If auto(2) is selected, the transceiver will automatically adjust the power backoff. If manual(3) is selected, then the transceiver will use the value from vdslLineConfUpPboLevel.')
vdslLineConfDownPboLevel = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 26), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 160))).setUnits('0.25dB').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownPboLevel.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownPboLevel.setDescription('Specifies the downstream backoff level to be used when vdslLineConfDownPboControl = manual(3).')
vdslLineConfUpPboLevel = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 27), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 160))).setUnits('0.25dB').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpPboLevel.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpPboLevel.setDescription('Specifies the upstream backoff level to be used when vdslLineConfUpPboControl = manual(3).')
vdslLineConfDeploymentScenario = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("fttCab", 1), ("fttEx", 2), ("other", 3))).clone('fttCab')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDeploymentScenario.setReference('DSL Forum TR-057')
if mibBuilder.loadTexts: vdslLineConfDeploymentScenario.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDeploymentScenario.setDescription('The VDSL line deployment scenario. When using fttCab(1), the VTU-C is located in a street cabinet. When using fttEx(2), the VTU-C is located at the central office. Changes to this value will have no effect on the transceiver.')
vdslLineConfAdslPresence = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("adslOverPots", 2), ("adslOverISDN", 3))).clone('none')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfAdslPresence.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfAdslPresence.setDescription('Indicates presence of ADSL service in the associated cable bundle/binder. none(1) indicates no ADSL service in the bundle adslOverPots(2) indicates ADSL service over POTS is present in the bundle adslOverISDN(3) indicates ADSL service over ISDN is present in the bundle')
vdslLineConfApplicableStandard = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("ansi", 1), ("etsi", 2), ("itu", 3), ("other", 4))).clone('ansi')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfApplicableStandard.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfApplicableStandard.setDescription('The VDSL standard to be used for the line. ansi(1) indicates ANSI standard etsi(2) indicates ETSI standard itu(3) indicates ITU standard other(4) indicates a standard other than the above.')
vdslLineConfBandPlan = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bandPlan997", 1), ("bandPlan998", 2), ("bandPlanFx", 3), ("other", 4))).clone('bandPlan997')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfBandPlan.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfBandPlan.setDescription('The VDSL band plan to be used for the line. bandPlan997(1) is to be used for ITU-T G.993.1 Bandplan-B ETSI Bandplan ANSI Plan 997 bandPlan998(2) is to be used for ITU-T G.993.1 Bandplan-A ANSI Plan 998 bandPlanFx(3) is to be used for ITU-T G.993.1 Bandplan-C. other(4) is to be used for non-standard bandplans. If this object is set to bandPlanFx(3), then the object vdslLineConfBandPlanFx MUST also be set.')
vdslLineConfBandPlanFx = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 32), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(3750, 12000)).clone(3750)).setUnits('kHz').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfBandPlanFx.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfBandPlanFx.setDescription('The frequency limit between bands D2 and U2 when vdslLineConfBandPlan is set to bandPlanFx(3).')
vdslLineConfBandOptUsage = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("unused", 1), ("upstream", 2), ("downstream", 3))).clone('unused')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfBandOptUsage.setReference('ITU-T G.993.1, section 6.1')
if mibBuilder.loadTexts: vdslLineConfBandOptUsage.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfBandOptUsage.setDescription('Defines the VDSL link use of the optional frequency range [25kHz - 138kHz] (Opt). unused(1) indicates Opt is unused upstream(2) indicates Opt usage is for upstream downstream(3) indicates Opt usage is for downstream.')
vdslLineConfUpPsdTemplate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("templateMask1", 1), ("templateMask2", 2))).clone('templateMask1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpPsdTemplate.setReference('DSL TR-057')
if mibBuilder.loadTexts: vdslLineConfUpPsdTemplate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpPsdTemplate.setDescription('The upstream PSD template to be used for the line. Here, templateMask1(1) refers to a notched mask that limits the transmitted PSD within the internationally standardized HAM (Handheld Amateur Radio) radio bands, while templateMask2(2) refers to an unnotched mask. The masks themselves depend upon the applicable standard being used (vdslLineConfApplicableStandard).')
vdslLineConfDownPsdTemplate = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("templateMask1", 1), ("templateMask2", 2))).clone('templateMask1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownPsdTemplate.setReference('DSL TR-057')
if mibBuilder.loadTexts: vdslLineConfDownPsdTemplate.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownPsdTemplate.setDescription('The downstream PSD template to be used for the line. Here, templateMask1(1) refers to a notched mask that limits the transmitted PSD within the internationally standardized HAM (Handheld Amateur Radio) radio bands, while templateMask2(2) refers to an unnotched mask. The masks themselves depend upon the applicable standard being used (vdslLineConfApplicableStandard).')
vdslLineConfHamBandMask = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 36), Bits().clone(namedValues=NamedValues(("customNotch1", 0), ("customNotch2", 1), ("amateurBand30m", 2), ("amateurBand40m", 3), ("amateurBand80m", 4), ("amateurBand160m", 5)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfHamBandMask.setReference('DSLF TR-057, section 2.6')
if mibBuilder.loadTexts: vdslLineConfHamBandMask.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfHamBandMask.setDescription('The transmit power spectral density mask code, used to avoid interference with HAM (Handheld Amateur Radio) radio bands by introducing power control (notching) in one or more of these bands. Amateur radio band notching is defined in the VDSL spectrum as follows: Band Start Frequency Stop Frequency ---- ------------------ -------------------------------- 30m 1810 kHz 2000 kHz 40m 3500 kHz 3800 kHz (ETSI); 4000 kHz (ANSI) 80m 7000 kHz 7100 kHz (ETSI); 7300 kHz (ANSI) 160m 10100 kHz 10150 kHz Notching for each standard band can be enabled or disabled via the bit mask. Two custom notches may be specified. If either of these are enabled via the bit mask, then the following objects MUST be specified: If customNotch1 is enabled, then both vdslLineConfCustomNotch1Start vdslLineConfCustomNotch1Stop MUST be specified. If customNotch2 is enabled, then both vdslLineConfCustomNotch2Start vdslLineConfCustomNotch2Stop MUST be specified.')
vdslLineConfCustomNotch1Start = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 37), Unsigned32()).setUnits('kHz').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfCustomNotch1Start.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfCustomNotch1Start.setDescription('Specifies the start frequency of custom HAM (Handheld Amateur Radio) notch 1. vdslLineConfCustomNotch1Start MUST be less than or equal to vdslLineConfCustomNotch1Stop.')
vdslLineConfCustomNotch1Stop = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 38), Unsigned32()).setUnits('kHz').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfCustomNotch1Stop.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfCustomNotch1Stop.setDescription('Specifies the stop frequency of custom HAM (Handheld Amateur Radio) notch 1. vdslLineConfCustomNotch1Stop MUST be greater than or equal to vdslLineConfCustomNotch1Start.')
vdslLineConfCustomNotch2Start = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 39), Unsigned32()).setUnits('kHz').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfCustomNotch2Start.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfCustomNotch2Start.setDescription('Specifies the start frequency of custom HAM (Handheld Amateur Radio) notch 2. vdslLineConfCustomNotch2Start MUST be less than or equal to vdslLineConfCustomNotch2Stop.')
vdslLineConfCustomNotch2Stop = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 40), Unsigned32()).setUnits('kHz').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfCustomNotch2Stop.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfCustomNotch2Stop.setDescription('Specifies the stop frequency of custom HAM (Handheld Amateur Radio) notch 2. vdslLineConfCustomNotch2Stop MUST be greater than or equal to vdslLineConfCustomNotch2Start.')
vdslLineConfDownTargetSlowBurst = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 41), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 1275))).setUnits('microseconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownTargetSlowBurst.setReference('ITU-T G.997.1, section 7.3.2.3')
if mibBuilder.loadTexts: vdslLineConfDownTargetSlowBurst.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownTargetSlowBurst.setDescription('Specifies the target level of impulse noise (burst) protection for an interleaved (slow) channel.')
vdslLineConfUpTargetSlowBurst = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 42), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 1275))).setUnits('microseconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpTargetSlowBurst.setReference('ITU-T G.997.1, section 7.3.2.3')
if mibBuilder.loadTexts: vdslLineConfUpTargetSlowBurst.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpTargetSlowBurst.setDescription('Specifies the target level of impulse noise (burst) protection for an interleaved (slow) channel.')
vdslLineConfDownMaxFastFec = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 43), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 50))).setUnits('%').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfDownMaxFastFec.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfDownMaxFastFec.setDescription('This parameter provisions the maximum level of Forward Error Correction (FEC) redundancy related overhead to be maintained for a fast channel.')
vdslLineConfUpMaxFastFec = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 44), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 50))).setUnits('%').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfUpMaxFastFec.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfUpMaxFastFec.setDescription('This parameter provisions the maximum level of Forward Error Correction (FEC) redundancy related overhead to be maintained for a fast channel.')
vdslLineConfLineType = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("noChannel", 1), ("fastOnly", 2), ("interleavedOnly", 3), ("fastOrInterleaved", 4), ("fastAndInterleaved", 5))).clone('noChannel')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfLineType.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts: vdslLineConfLineType.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfLineType.setDescription("This parameter provisions the VDSL physical entity at start-up by defining whether and how the line will be channelized, i.e., which channel type(s) are supported. If the line is to be channelized, the value will be other than noChannel(1). This configuration can be activated only during start-up. Afterwards, the value of vdslLineType coincides with the value of vdslLineConfLineType. Depending on this value, the corresponding entries in the ifTable for the interleaved and the fast channels are enabled or disabled according to the value of their ifOperStatus. Defined values are: noChannel(1) -- no channels exist fastOnly(2) -- only fast channel exists interleavedOnly(3) -- only interleaved channel exists fastOrInterleaved(4) -- either fast or interleaved channel -- exists, but only one at a time fastAndInterleaved(5) -- both fast and interleaved channels -- exist Note that 'slow' and 'interleaved' refer to the same channel.")
vdslLineConfProfRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 46), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineConfProfRowStatus.setStatus('current')
if mibBuilder.loadTexts: vdslLineConfProfRowStatus.setDescription("This object is used to create a new row or modify or delete an existing row in this table. A profile activated by setting this object to 'active'. When 'active' is set, the system will validate the profile. Before a profile can be deleted or taken out of service (by setting this object to 'destroy' or 'outOfService'), it must be first unreferenced from all associated lines. An 'active' profile may be modified at any time. Note that some changes may require that any referenced lines be restarted (e.g., vdslLineConfLineType).")
vdslLineAlarmConfProfileTable = MibTable((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20), )
if mibBuilder.loadTexts: vdslLineAlarmConfProfileTable.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfProfileTable.setDescription('This table contains information on the VDSL line alarm configuration. One entry in this table reflects a profile defined by a manager which can be used to configure the VDSL line alarm thresholds. Entries in this table MUST be maintained in a persistent manner.')
vdslLineAlarmConfProfileEntry = MibTableRow((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1), ).setIndexNames((0, "VDSL-LINE-MIB", "vdslLineAlarmConfProfileName"))
if mibBuilder.loadTexts: vdslLineAlarmConfProfileEntry.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfProfileEntry.setDescription("Each entry consists of a list of parameters that represents the configuration of a VDSL line alarm profile. A default profile with an index of 'DEFVAL', will always exist and its parameters will be set to vendor specific values, unless otherwise specified in this document.")
vdslLineAlarmConfProfileName = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 1), SnmpAdminString().subtype(subtypeSpec=ValueSizeConstraint(1, 32)))
if mibBuilder.loadTexts: vdslLineAlarmConfProfileName.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfProfileName.setDescription('The name for this profile as specified by an administrator.')
vdslLineAlarmConfThresh15MinLofs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 2), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLofs.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLofs.setDescription('This object configures the threshold for the number of loss of frame seconds (lofs) within any given 15-minute performance data collection interval. If the value of loss of frame seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLofsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdslLineAlarmConfThresh15MinLoss = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 3), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLoss.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLoss.setDescription('This object configures the threshold for the number of loss of signal seconds (loss) within any given 15-minute performance data collection interval. If the value of loss of signal seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLossThreshNotification notification will be generated. One notification will be sent per interval per endpoint.')
vdslLineAlarmConfThresh15MinLprs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 4), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLprs.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLprs.setDescription('This object configures the threshold for the number of loss of power seconds (lprs) within any given 15-minute performance data collection interval. If the value of loss of power seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLprsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdslLineAlarmConfThresh15MinLols = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 5), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLols.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinLols.setDescription('This object configures the threshold for the number of loss of link seconds (lols) within any given 15-minute performance data collection interval. If the value of loss of power seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLolsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdslLineAlarmConfThresh15MinESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 6), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinESs.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinESs.setDescription('This object configures the threshold for the number of errored seconds (ESs) within any given 15-minute performance data collection interval. If the value of errored seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfESsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdslLineAlarmConfThresh15MinSESs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 7), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinSESs.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinSESs.setDescription('This object configures the threshold for the number of severely errored seconds (SESs) within any given 15-minute performance data collection interval. If the value of severely errored seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfSESsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdslLineAlarmConfThresh15MinUASs = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 8), HCPerfIntervalThreshold()).setUnits('seconds').setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinUASs.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfThresh15MinUASs.setDescription('This object configures the threshold for the number of unavailable seconds (UASs) within any given 15-minute performance data collection interval. If the value of unavailable seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfUASsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdslLineAlarmConfInitFailure = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 9), TruthValue().clone('false')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfInitFailure.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfInitFailure.setDescription('This object specifies if a vdslInitFailureNotification notification will be generated if an initialization failure occurs.')
vdslLineAlarmConfProfRowStatus = MibTableColumn((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 10), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vdslLineAlarmConfProfRowStatus.setStatus('current')
if mibBuilder.loadTexts: vdslLineAlarmConfProfRowStatus.setDescription("This object is used to create a new row or modify or delete an existing row in this table. A profile activated by setting this object to 'active'. When 'active' is set, the system will validate the profile. Before a profile can be deleted or taken out of service, (by setting this object to 'destroy' or 'outOfService') it must be first unreferenced from all associated lines. An 'active' profile may be modified at any time.")
vdslNotifications = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 0))
vdslPerfLofsThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 1)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLofs"))
if mibBuilder.loadTexts: vdslPerfLofsThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfLofsThreshNotification.setDescription('Loss of Framing 15-minute interval threshold (vdslLineAlarmConfThresh15MinLofs) reached.')
vdslPerfLossThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 2)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLoss"))
if mibBuilder.loadTexts: vdslPerfLossThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfLossThreshNotification.setDescription('Loss of Signal 15-minute interval threshold (vdslLineAlarmConfThresh15MinLoss) reached.')
vdslPerfLprsThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 3)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLprs"))
if mibBuilder.loadTexts: vdslPerfLprsThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfLprsThreshNotification.setDescription('Loss of Power 15-minute interval threshold (vdslLineAlarmConfThresh15MinLprs) reached.')
vdslPerfLolsThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 4)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLols"))
if mibBuilder.loadTexts: vdslPerfLolsThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfLolsThreshNotification.setDescription('Loss of Link 15-minute interval threshold (vdslLineAlarmConfThresh15MinLols) reached.')
vdslPerfESsThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 5)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinESs"))
if mibBuilder.loadTexts: vdslPerfESsThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfESsThreshNotification.setDescription('Errored Seconds 15-minute interval threshold (vdslLineAlarmConfThresh15MinESs) reached.')
vdslPerfSESsThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 6)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinSESs"))
if mibBuilder.loadTexts: vdslPerfSESsThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfSESsThreshNotification.setDescription('Severely Errored Seconds 15-minute interval threshold (vdslLineAlarmConfThresh15MinSESs) reached.')
vdslPerfUASsThreshNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 7)).setObjects(("VDSL-LINE-MIB", "vdslPerfDataCurr15MinUASs"))
if mibBuilder.loadTexts: vdslPerfUASsThreshNotification.setStatus('current')
if mibBuilder.loadTexts: vdslPerfUASsThreshNotification.setDescription('Unavailable Seconds 15-minute interval threshold (vdslLineAlarmConfThresh15MinUASs) reached.')
vdslDownMaxSnrMgnNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 8)).setObjects(("VDSL-LINE-MIB", "vdslPhysCurrSnrMgn"))
if mibBuilder.loadTexts: vdslDownMaxSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts: vdslDownMaxSnrMgnNotification.setDescription('The downstream Signal to Noise Margin exceeded vdslLineConfDownMaxSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-R.')
vdslDownMinSnrMgnNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 9)).setObjects(("VDSL-LINE-MIB", "vdslPhysCurrSnrMgn"))
if mibBuilder.loadTexts: vdslDownMinSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts: vdslDownMinSnrMgnNotification.setDescription('The downstream Signal to Noise Margin fell below vdslLineConfDownMinSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-R.')
vdslUpMaxSnrMgnNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 10)).setObjects(("VDSL-LINE-MIB", "vdslPhysCurrSnrMgn"))
if mibBuilder.loadTexts: vdslUpMaxSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts: vdslUpMaxSnrMgnNotification.setDescription('The upstream Signal to Noise Margin exceeded vdslLineConfUpMaxSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-C.')
vdslUpMinSnrMgnNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 11)).setObjects(("VDSL-LINE-MIB", "vdslPhysCurrSnrMgn"))
if mibBuilder.loadTexts: vdslUpMinSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts: vdslUpMinSnrMgnNotification.setDescription('The upstream Signal to Noise Margin fell below vdslLineConfUpMinSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-C.')
vdslInitFailureNotification = NotificationType((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 12)).setObjects(("VDSL-LINE-MIB", "vdslPhysCurrStatus"))
if mibBuilder.loadTexts: vdslInitFailureNotification.setStatus('current')
if mibBuilder.loadTexts: vdslInitFailureNotification.setDescription('Vtu initialization failed. See vdslPhysCurrStatus for potential reasons.')
vdslConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 3))
vdslGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 1))
vdslCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 2))
vdslLineMibCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 2, 1)).setObjects(("VDSL-LINE-MIB", "vdslGroup"), ("VDSL-LINE-MIB", "vdslNotificationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vdslLineMibCompliance = vdslLineMibCompliance.setStatus('current')
if mibBuilder.loadTexts: vdslLineMibCompliance.setDescription('The compliance statement for SNMP entities which manage VDSL interfaces.')
vdslGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 1, 1)).setObjects(("VDSL-LINE-MIB", "vdslLineCoding"), ("VDSL-LINE-MIB", "vdslLineType"), ("VDSL-LINE-MIB", "vdslLineConfProfile"), ("VDSL-LINE-MIB", "vdslLineAlarmConfProfile"), ("VDSL-LINE-MIB", "vdslPhysInvSerialNumber"), ("VDSL-LINE-MIB", "vdslPhysInvVendorID"), ("VDSL-LINE-MIB", "vdslPhysInvVersionNumber"), ("VDSL-LINE-MIB", "vdslPhysCurrSnrMgn"), ("VDSL-LINE-MIB", "vdslPhysCurrAtn"), ("VDSL-LINE-MIB", "vdslPhysCurrStatus"), ("VDSL-LINE-MIB", "vdslPhysCurrOutputPwr"), ("VDSL-LINE-MIB", "vdslPhysCurrAttainableRate"), ("VDSL-LINE-MIB", "vdslPhysCurrLineRate"), ("VDSL-LINE-MIB", "vdslChanInterleaveDelay"), ("VDSL-LINE-MIB", "vdslChanCrcBlockLength"), ("VDSL-LINE-MIB", "vdslChanCurrTxRate"), ("VDSL-LINE-MIB", "vdslChanCurrTxSlowBurstProtect"), ("VDSL-LINE-MIB", "vdslChanCurrTxFastFec"), ("VDSL-LINE-MIB", "vdslPerfDataValidIntervals"), ("VDSL-LINE-MIB", "vdslPerfDataInvalidIntervals"), ("VDSL-LINE-MIB", "vdslPerfDataLofs"), ("VDSL-LINE-MIB", "vdslPerfDataLoss"), ("VDSL-LINE-MIB", "vdslPerfDataLprs"), ("VDSL-LINE-MIB", "vdslPerfDataLols"), ("VDSL-LINE-MIB", "vdslPerfDataESs"), ("VDSL-LINE-MIB", "vdslPerfDataSESs"), ("VDSL-LINE-MIB", "vdslPerfDataUASs"), ("VDSL-LINE-MIB", "vdslPerfDataInits"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinTimeElapsed"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLofs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLoss"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLprs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinLols"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinESs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinSESs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinUASs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr15MinInits"), ("VDSL-LINE-MIB", "vdslPerfData1DayValidIntervals"), ("VDSL-LINE-MIB", "vdslPerfData1DayInvalidIntervals"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayTimeElapsed"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayLofs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayLoss"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayLprs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayLols"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayESs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DaySESs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayUASs"), ("VDSL-LINE-MIB", "vdslPerfDataCurr1DayInits"), ("VDSL-LINE-MIB", "vdslPerfIntervalLofs"), ("VDSL-LINE-MIB", "vdslPerfIntervalLoss"), ("VDSL-LINE-MIB", "vdslPerfIntervalLprs"), ("VDSL-LINE-MIB", "vdslPerfIntervalLols"), ("VDSL-LINE-MIB", "vdslPerfIntervalESs"), ("VDSL-LINE-MIB", "vdslPerfIntervalSESs"), ("VDSL-LINE-MIB", "vdslPerfIntervalUASs"), ("VDSL-LINE-MIB", "vdslPerfIntervalInits"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalMoniSecs"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalLofs"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalLoss"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalLprs"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalLols"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalESs"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalSESs"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalUASs"), ("VDSL-LINE-MIB", "vdslPerf1DayIntervalInits"), ("VDSL-LINE-MIB", "vdslChanValidIntervals"), ("VDSL-LINE-MIB", "vdslChanInvalidIntervals"), ("VDSL-LINE-MIB", "vdslChanFixedOctets"), ("VDSL-LINE-MIB", "vdslChanBadBlks"), ("VDSL-LINE-MIB", "vdslChanCurr15MinTimeElapsed"), ("VDSL-LINE-MIB", "vdslChanCurr15MinFixedOctets"), ("VDSL-LINE-MIB", "vdslChanCurr15MinBadBlks"), ("VDSL-LINE-MIB", "vdslChan1DayValidIntervals"), ("VDSL-LINE-MIB", "vdslChan1DayInvalidIntervals"), ("VDSL-LINE-MIB", "vdslChanCurr1DayTimeElapsed"), ("VDSL-LINE-MIB", "vdslChanCurr1DayFixedOctets"), ("VDSL-LINE-MIB", "vdslChanCurr1DayBadBlks"), ("VDSL-LINE-MIB", "vdslChanIntervalFixedOctets"), ("VDSL-LINE-MIB", "vdslChanIntervalBadBlks"), ("VDSL-LINE-MIB", "vdslChan1DayIntervalMoniSecs"), ("VDSL-LINE-MIB", "vdslChan1DayIntervalFixedOctets"), ("VDSL-LINE-MIB", "vdslChan1DayIntervalBadBlks"), ("VDSL-LINE-MIB", "vdslLineConfDownRateMode"), ("VDSL-LINE-MIB", "vdslLineConfUpRateMode"), ("VDSL-LINE-MIB", "vdslLineConfDownMaxPwr"), ("VDSL-LINE-MIB", "vdslLineConfUpMaxPwr"), ("VDSL-LINE-MIB", "vdslLineConfDownMaxSnrMgn"), ("VDSL-LINE-MIB", "vdslLineConfDownMinSnrMgn"), ("VDSL-LINE-MIB", "vdslLineConfDownTargetSnrMgn"), ("VDSL-LINE-MIB", "vdslLineConfUpMaxSnrMgn"), ("VDSL-LINE-MIB", "vdslLineConfUpMinSnrMgn"), ("VDSL-LINE-MIB", "vdslLineConfUpTargetSnrMgn"), ("VDSL-LINE-MIB", "vdslLineConfDownFastMaxDataRate"), ("VDSL-LINE-MIB", "vdslLineConfDownFastMinDataRate"), ("VDSL-LINE-MIB", "vdslLineConfDownSlowMaxDataRate"), ("VDSL-LINE-MIB", "vdslLineConfDownSlowMinDataRate"), ("VDSL-LINE-MIB", "vdslLineConfUpFastMaxDataRate"), ("VDSL-LINE-MIB", "vdslLineConfUpFastMinDataRate"), ("VDSL-LINE-MIB", "vdslLineConfUpSlowMaxDataRate"), ("VDSL-LINE-MIB", "vdslLineConfUpSlowMinDataRate"), ("VDSL-LINE-MIB", "vdslLineConfDownRateRatio"), ("VDSL-LINE-MIB", "vdslLineConfUpRateRatio"), ("VDSL-LINE-MIB", "vdslLineConfDownMaxInterDelay"), ("VDSL-LINE-MIB", "vdslLineConfUpMaxInterDelay"), ("VDSL-LINE-MIB", "vdslLineConfDownPboControl"), ("VDSL-LINE-MIB", "vdslLineConfUpPboControl"), ("VDSL-LINE-MIB", "vdslLineConfDownPboLevel"), ("VDSL-LINE-MIB", "vdslLineConfUpPboLevel"), ("VDSL-LINE-MIB", "vdslLineConfDeploymentScenario"), ("VDSL-LINE-MIB", "vdslLineConfAdslPresence"), ("VDSL-LINE-MIB", "vdslLineConfApplicableStandard"), ("VDSL-LINE-MIB", "vdslLineConfBandPlan"), ("VDSL-LINE-MIB", "vdslLineConfBandPlanFx"), ("VDSL-LINE-MIB", "vdslLineConfBandOptUsage"), ("VDSL-LINE-MIB", "vdslLineConfUpPsdTemplate"), ("VDSL-LINE-MIB", "vdslLineConfDownPsdTemplate"), ("VDSL-LINE-MIB", "vdslLineConfHamBandMask"), ("VDSL-LINE-MIB", "vdslLineConfCustomNotch1Start"), ("VDSL-LINE-MIB", "vdslLineConfCustomNotch1Stop"), ("VDSL-LINE-MIB", "vdslLineConfCustomNotch2Start"), ("VDSL-LINE-MIB", "vdslLineConfCustomNotch2Stop"), ("VDSL-LINE-MIB", "vdslLineConfDownTargetSlowBurst"), ("VDSL-LINE-MIB", "vdslLineConfUpTargetSlowBurst"), ("VDSL-LINE-MIB", "vdslLineConfDownMaxFastFec"), ("VDSL-LINE-MIB", "vdslLineConfUpMaxFastFec"), ("VDSL-LINE-MIB", "vdslLineConfLineType"), ("VDSL-LINE-MIB", "vdslLineConfProfRowStatus"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinLofs"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinLoss"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinLprs"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinLols"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinESs"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinSESs"), ("VDSL-LINE-MIB", "vdslLineAlarmConfThresh15MinUASs"), ("VDSL-LINE-MIB", "vdslLineAlarmConfInitFailure"), ("VDSL-LINE-MIB", "vdslLineAlarmConfProfRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vdslGroup = vdslGroup.setStatus('current')
if mibBuilder.loadTexts: vdslGroup.setDescription('A collection of objects providing information about a VDSL Line.')
vdslNotificationGroup = NotificationGroup((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 1, 2)).setObjects(("VDSL-LINE-MIB", "vdslPerfLofsThreshNotification"), ("VDSL-LINE-MIB", "vdslPerfLossThreshNotification"), ("VDSL-LINE-MIB", "vdslPerfLprsThreshNotification"), ("VDSL-LINE-MIB", "vdslPerfLolsThreshNotification"), ("VDSL-LINE-MIB", "vdslPerfESsThreshNotification"), ("VDSL-LINE-MIB", "vdslPerfSESsThreshNotification"), ("VDSL-LINE-MIB", "vdslPerfUASsThreshNotification"), ("VDSL-LINE-MIB", "vdslDownMaxSnrMgnNotification"), ("VDSL-LINE-MIB", "vdslDownMinSnrMgnNotification"), ("VDSL-LINE-MIB", "vdslUpMaxSnrMgnNotification"), ("VDSL-LINE-MIB", "vdslUpMinSnrMgnNotification"), ("VDSL-LINE-MIB", "vdslInitFailureNotification"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vdslNotificationGroup = vdslNotificationGroup.setStatus('current')
if mibBuilder.loadTexts: vdslNotificationGroup.setDescription('This group supports notifications of significant conditions associated with VDSL Lines.')
mibBuilder.exportSymbols("VDSL-LINE-MIB", vdslLineConfCustomNotch1Start=vdslLineConfCustomNotch1Start, vdslPerf1DayIntervalMoniSecs=vdslPerf1DayIntervalMoniSecs, vdslPerf1DayIntervalTable=vdslPerf1DayIntervalTable, vdslPerfLofsThreshNotification=vdslPerfLofsThreshNotification, vdslPerfIntervalTable=vdslPerfIntervalTable, vdslLineAlarmConfProfileName=vdslLineAlarmConfProfileName, vdslPerfDataCurr15MinLols=vdslPerfDataCurr15MinLols, vdslChan1DayIntervalNumber=vdslChan1DayIntervalNumber, vdslPerfData1DayValidIntervals=vdslPerfData1DayValidIntervals, vdslLineCoding=vdslLineCoding, vdslChan1DayIntervalEntry=vdslChan1DayIntervalEntry, vdslLineAlarmConfThresh15MinUASs=vdslLineAlarmConfThresh15MinUASs, vdslPerfDataLoss=vdslPerfDataLoss, vdslPerfLolsThreshNotification=vdslPerfLolsThreshNotification, vdslLineConfUpMaxPwr=vdslLineConfUpMaxPwr, vdslPerfDataCurr15MinSESs=vdslPerfDataCurr15MinSESs, vdslPhysInvVersionNumber=vdslPhysInvVersionNumber, vdslPerf1DayIntervalESs=vdslPerf1DayIntervalESs, vdslChanInterleaveDelay=vdslChanInterleaveDelay, vdslPerfLprsThreshNotification=vdslPerfLprsThreshNotification, vdslLineConfUpPboControl=vdslLineConfUpPboControl, vdslPerfDataCurr1DayInits=vdslPerfDataCurr1DayInits, vdslLineConfUpMaxInterDelay=vdslLineConfUpMaxInterDelay, vdslLineMibCompliance=vdslLineMibCompliance, vdslPerfIntervalLols=vdslPerfIntervalLols, PYSNMP_MODULE_ID=vdslMIB, vdslLineConfDownMaxPwr=vdslLineConfDownMaxPwr, vdslLineConfBandPlanFx=vdslLineConfBandPlanFx, vdslPerfDataCurr15MinUASs=vdslPerfDataCurr15MinUASs, vdslPerf1DayIntervalLols=vdslPerf1DayIntervalLols, vdslLineConfUpPsdTemplate=vdslLineConfUpPsdTemplate, vdslPerfDataLprs=vdslPerfDataLprs, vdslPerfDataESs=vdslPerfDataESs, vdslPhysCurrLineRate=vdslPhysCurrLineRate, vdslDownMaxSnrMgnNotification=vdslDownMaxSnrMgnNotification, vdslChan1DayIntervalMoniSecs=vdslChan1DayIntervalMoniSecs, vdslChan1DayValidIntervals=vdslChan1DayValidIntervals, vdslLineAlarmConfThresh15MinLols=vdslLineAlarmConfThresh15MinLols, vdslPhysCurrAtn=vdslPhysCurrAtn, vdslLineConfDownPboControl=vdslLineConfDownPboControl, vdslLineConfProfile=vdslLineConfProfile, vdslLineConfDownSlowMinDataRate=vdslLineConfDownSlowMinDataRate, vdslLineConfDownRateRatio=vdslLineConfDownRateRatio, vdslPhysTable=vdslPhysTable, vdslLineConfUpMaxFastFec=vdslLineConfUpMaxFastFec, vdslChanCurrTxSlowBurstProtect=vdslChanCurrTxSlowBurstProtect, vdslPerfDataCurr15MinLprs=vdslPerfDataCurr15MinLprs, vdslLineConfUpFastMinDataRate=vdslLineConfUpFastMinDataRate, vdslChanPerfDataEntry=vdslChanPerfDataEntry, vdslLineConfLineType=vdslLineConfLineType, vdslLineConfProfileEntry=vdslLineConfProfileEntry, vdslLineConfCustomNotch2Start=vdslLineConfCustomNotch2Start, vdslLineConfProfRowStatus=vdslLineConfProfRowStatus, vdslLineConfDownMinSnrMgn=vdslLineConfDownMinSnrMgn, vdslPerfDataCurr15MinLoss=vdslPerfDataCurr15MinLoss, vdslPerfIntervalUASs=vdslPerfIntervalUASs, vdslConformance=vdslConformance, vdslLineAlarmConfThresh15MinESs=vdslLineAlarmConfThresh15MinESs, vdslChanIntervalBadBlks=vdslChanIntervalBadBlks, vdslChanCurrTxRate=vdslChanCurrTxRate, vdslLineMib=vdslLineMib, vdslLineConfUpRateMode=vdslLineConfUpRateMode, vdslChanCurr1DayFixedOctets=vdslChanCurr1DayFixedOctets, vdslLineConfApplicableStandard=vdslLineConfApplicableStandard, vdslPerfIntervalLofs=vdslPerfIntervalLofs, vdslLineAlarmConfThresh15MinSESs=vdslLineAlarmConfThresh15MinSESs, vdslChanTable=vdslChanTable, vdslGroup=vdslGroup, vdslChanEntry=vdslChanEntry, vdslLineAlarmConfInitFailure=vdslLineAlarmConfInitFailure, vdslPerfDataCurr15MinTimeElapsed=vdslPerfDataCurr15MinTimeElapsed, vdslChanIntervalNumber=vdslChanIntervalNumber, vdslChanBadBlks=vdslChanBadBlks, vdslPhysCurrOutputPwr=vdslPhysCurrOutputPwr, vdslPerfDataCurr1DayESs=vdslPerfDataCurr1DayESs, vdslLineConfUpRateRatio=vdslLineConfUpRateRatio, vdslPerfSESsThreshNotification=vdslPerfSESsThreshNotification, vdslNotificationGroup=vdslNotificationGroup, vdslPhysCurrStatus=vdslPhysCurrStatus, vdslUpMaxSnrMgnNotification=vdslUpMaxSnrMgnNotification, vdslPerf1DayIntervalEntry=vdslPerf1DayIntervalEntry, vdslChanCurr15MinTimeElapsed=vdslChanCurr15MinTimeElapsed, vdslLineAlarmConfProfile=vdslLineAlarmConfProfile, vdslPhysCurrSnrMgn=vdslPhysCurrSnrMgn, vdslLineConfProfileName=vdslLineConfProfileName, vdslChanCurrTxFastFec=vdslChanCurrTxFastFec, vdslLineAlarmConfProfRowStatus=vdslLineAlarmConfProfRowStatus, VdslLineEntity=VdslLineEntity, vdslLineConfDownFastMinDataRate=vdslLineConfDownFastMinDataRate, vdslPerfDataInits=vdslPerfDataInits, vdslLineAlarmConfThresh15MinLoss=vdslLineAlarmConfThresh15MinLoss, vdslPerf1DayIntervalSESs=vdslPerf1DayIntervalSESs, vdslChanIntervalEntry=vdslChanIntervalEntry, vdslLineConfUpMaxSnrMgn=vdslLineConfUpMaxSnrMgn, vdslLineConfDownPsdTemplate=vdslLineConfDownPsdTemplate, vdslChanCurr15MinBadBlks=vdslChanCurr15MinBadBlks, vdslLineConfDownPboLevel=vdslLineConfDownPboLevel, vdslPerf1DayIntervalLoss=vdslPerf1DayIntervalLoss, vdslLineConfDownFastMaxDataRate=vdslLineConfDownFastMaxDataRate, vdslPerfDataTable=vdslPerfDataTable, vdslPerfDataEntry=vdslPerfDataEntry, vdslLineConfCustomNotch2Stop=vdslLineConfCustomNotch2Stop, vdslLineConfDownMaxSnrMgn=vdslLineConfDownMaxSnrMgn, vdslUpMinSnrMgnNotification=vdslUpMinSnrMgnNotification, vdslPerfDataLofs=vdslPerfDataLofs, vdslChanInvalidIntervals=vdslChanInvalidIntervals, vdslPerf1DayIntervalLprs=vdslPerf1DayIntervalLprs, vdslChanCurr15MinFixedOctets=vdslChanCurr15MinFixedOctets, vdslChanCurr1DayBadBlks=vdslChanCurr1DayBadBlks, vdslPhysInvSerialNumber=vdslPhysInvSerialNumber, vdslPerfDataCurr1DayLoss=vdslPerfDataCurr1DayLoss, vdslPerf1DayIntervalInits=vdslPerf1DayIntervalInits, vdslLineAlarmConfThresh15MinLprs=vdslLineAlarmConfThresh15MinLprs, vdslLineTable=vdslLineTable, vdslChanCrcBlockLength=vdslChanCrcBlockLength, vdslLineConfDownSlowMaxDataRate=vdslLineConfDownSlowMaxDataRate, vdslPhysSide=vdslPhysSide, vdslChanPerfDataTable=vdslChanPerfDataTable, vdslLineConfUpFastMaxDataRate=vdslLineConfUpFastMaxDataRate, vdslLineConfDownMaxFastFec=vdslLineConfDownMaxFastFec, vdslPerfDataUASs=vdslPerfDataUASs, vdslGroups=vdslGroups, vdslCompliances=vdslCompliances, vdslPerfIntervalSESs=vdslPerfIntervalSESs, vdslLineConfDownTargetSlowBurst=vdslLineConfDownTargetSlowBurst, vdslPerfLossThreshNotification=vdslPerfLossThreshNotification, vdslLineConfBandPlan=vdslLineConfBandPlan, vdslPerfDataCurr15MinLofs=vdslPerfDataCurr15MinLofs, vdslPerfESsThreshNotification=vdslPerfESsThreshNotification, vdslPerfIntervalLoss=vdslPerfIntervalLoss, vdslPerfDataValidIntervals=vdslPerfDataValidIntervals, vdslPhysInvVendorID=vdslPhysInvVendorID, vdslLineConfUpSlowMinDataRate=vdslLineConfUpSlowMinDataRate, vdslPerfDataCurr15MinESs=vdslPerfDataCurr15MinESs, vdslLineConfDeploymentScenario=vdslLineConfDeploymentScenario, vdslPerfDataCurr1DayLofs=vdslPerfDataCurr1DayLofs, vdslPerf1DayIntervalNumber=vdslPerf1DayIntervalNumber, vdslLineConfDownRateMode=vdslLineConfDownRateMode, vdslLineAlarmConfProfileEntry=vdslLineAlarmConfProfileEntry, vdslPerfDataCurr15MinInits=vdslPerfDataCurr15MinInits, vdslPerfDataCurr1DayLprs=vdslPerfDataCurr1DayLprs, vdslPerfDataCurr1DayLols=vdslPerfDataCurr1DayLols, vdslPerfIntervalLprs=vdslPerfIntervalLprs, vdslLineConfUpPboLevel=vdslLineConfUpPboLevel, vdslPerf1DayIntervalLofs=vdslPerf1DayIntervalLofs, vdslPerfIntervalEntry=vdslPerfIntervalEntry, vdslLineConfHamBandMask=vdslLineConfHamBandMask, vdslLineAlarmConfThresh15MinLofs=vdslLineAlarmConfThresh15MinLofs, vdslPhysCurrAttainableRate=vdslPhysCurrAttainableRate, vdslPerfDataCurr1DaySESs=vdslPerfDataCurr1DaySESs, vdslPerf1DayIntervalUASs=vdslPerf1DayIntervalUASs, vdslMibObjects=vdslMibObjects, vdslPerfDataInvalidIntervals=vdslPerfDataInvalidIntervals, vdslChanIntervalFixedOctets=vdslChanIntervalFixedOctets, vdslChan1DayIntervalTable=vdslChan1DayIntervalTable, vdslLineConfBandOptUsage=vdslLineConfBandOptUsage, vdslPerfIntervalNumber=vdslPerfIntervalNumber, vdslDownMinSnrMgnNotification=vdslDownMinSnrMgnNotification, vdslLineAlarmConfProfileTable=vdslLineAlarmConfProfileTable, vdslChan1DayIntervalFixedOctets=vdslChan1DayIntervalFixedOctets, vdslChanFixedOctets=vdslChanFixedOctets, vdslLineConfProfileTable=vdslLineConfProfileTable, vdslInitFailureNotification=vdslInitFailureNotification, vdslLineConfUpTargetSlowBurst=vdslLineConfUpTargetSlowBurst, vdslChanValidIntervals=vdslChanValidIntervals, vdslLineConfUpTargetSnrMgn=vdslLineConfUpTargetSnrMgn, vdslPhysEntry=vdslPhysEntry, vdslPerfData1DayInvalidIntervals=vdslPerfData1DayInvalidIntervals, vdslChan1DayInvalidIntervals=vdslChan1DayInvalidIntervals, vdslChanIntervalTable=vdslChanIntervalTable, vdslPerfDataSESs=vdslPerfDataSESs, vdslLineConfUpSlowMaxDataRate=vdslLineConfUpSlowMaxDataRate, vdslPerfIntervalESs=vdslPerfIntervalESs, VdslLineCodingType=VdslLineCodingType, vdslChan1DayIntervalBadBlks=vdslChan1DayIntervalBadBlks, vdslLineConfDownMaxInterDelay=vdslLineConfDownMaxInterDelay, vdslLineConfCustomNotch1Stop=vdslLineConfCustomNotch1Stop, vdslLineType=vdslLineType, vdslLineConfDownTargetSnrMgn=vdslLineConfDownTargetSnrMgn, vdslPerfIntervalInits=vdslPerfIntervalInits, vdslLineConfUpMinSnrMgn=vdslLineConfUpMinSnrMgn, vdslPerfDataCurr1DayTimeElapsed=vdslPerfDataCurr1DayTimeElapsed, vdslLineEntry=vdslLineEntry, vdslNotifications=vdslNotifications, vdslChanCurr1DayTimeElapsed=vdslChanCurr1DayTimeElapsed, vdslPerfDataCurr1DayUASs=vdslPerfDataCurr1DayUASs, vdslLineConfAdslPresence=vdslLineConfAdslPresence, vdslMIB=vdslMIB, vdslPerfUASsThreshNotification=vdslPerfUASsThreshNotification, vdslPerfDataLols=vdslPerfDataLols)
| (octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_range_constraint, constraints_intersection, value_size_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint')
(hc_perf_time_elapsed, hc_perf_valid_intervals, hc_perf_invalid_intervals, hc_perf_current_count, hc_perf_interval_count, hc_perf_interval_threshold) = mibBuilder.importSymbols('HC-PerfHist-TC-MIB', 'HCPerfTimeElapsed', 'HCPerfValidIntervals', 'HCPerfInvalidIntervals', 'HCPerfCurrentCount', 'HCPerfIntervalCount', 'HCPerfIntervalThreshold')
(zero_based_counter64,) = mibBuilder.importSymbols('HCNUM-TC', 'ZeroBasedCounter64')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(module_identity, mib_identifier, object_identity, transmission, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, time_ticks, notification_type, counter64, ip_address, counter32, bits, iso, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'MibIdentifier', 'ObjectIdentity', 'transmission', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'TimeTicks', 'NotificationType', 'Counter64', 'IpAddress', 'Counter32', 'Bits', 'iso', 'Integer32')
(truth_value, row_status, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'RowStatus', 'DisplayString', 'TextualConvention')
vdsl_mib = module_identity((1, 3, 6, 1, 2, 1, 10, 97))
vdslMIB.setRevisions(('2004-02-19 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
vdslMIB.setRevisionsDescriptions(('Initial version, published as RFC 3728.',))
if mibBuilder.loadTexts:
vdslMIB.setLastUpdated('200402190000Z')
if mibBuilder.loadTexts:
vdslMIB.setOrganization('ADSLMIB Working Group')
if mibBuilder.loadTexts:
vdslMIB.setContactInfo('WG-email: adslmib@ietf.org Info: https://www1.ietf.org/mailman/listinfo/adslmib Chair: Mike Sneed Sand Channel Systems Postal: P.O. Box 37324 Raleigh, NC 27627-7324 USA Email: sneedmike@hotmail.com Phone: +1 206 600 7022 Co-editor: Bob Ray PESA Switching Systems, Inc. Postal: 330-A Wynn Drive Huntsville, AL 35805 USA Email: rray@pesa.com Phone: +1 256 726 9200 ext. 142 Co-editor: Rajesh Abbi Alcatel USA Postal: 2301 Sugar Bush Road Raleigh, NC 27612-3339 USA Email: Rajesh.Abbi@alcatel.com Phone: +1 919 850 6194 ')
if mibBuilder.loadTexts:
vdslMIB.setDescription('The MIB module defining objects for the management of a pair of VDSL transceivers at each end of the VDSL line. Each such line has an entry in an ifTable which may include multiple transceiver lines. An agent may reside at either end of the VDSL line. However, the MIB is designed to require no management communication between them beyond that inherent in the low-level VDSL line protocol. The agent may monitor and control this protocol for its needs. VDSL lines may support optional Fast or Interleaved channels. If these are supported, additional entries corresponding to the supported channels must be created in the ifTable. Thus a VDSL line that supports both channels will have three entries in the ifTable, one for each physical, fast, and interleaved, whose ifType values are equal to vdsl(97), fast(125), and interleaved(124), respectively. The ifStackTable is used to represent the relationship between the entries. Naming Conventions: Vtuc -- (VTUC) transceiver at near (Central) end of line Vtur -- (VTUR) transceiver at Remote end of line Vtu -- One of either Vtuc or Vtur Curr -- Current Prev -- Previous Atn -- Attenuation ES -- Errored Second. SES -- Severely Errored Second UAS -- Unavailable Second LCS -- Line Code Specific Lof -- Loss of Frame Lol -- Loss of Link Los -- Loss of Signal Lpr -- Loss of Power xxxs -- Sum of Seconds in which xxx has occured (e.g., xxx = Lof, Los, Lpr, Lol) Max -- Maximum Mgn -- Margin Min -- Minimum Psd -- Power Spectral Density Snr -- Signal to Noise Ratio Tx -- Transmit Blks -- Blocks Copyright (C) The Internet Society (2004). This version of this MIB module is part of RFC 3728: see the RFC itself for full legal notices.')
vdsl_line_mib = mib_identifier((1, 3, 6, 1, 2, 1, 10, 97, 1))
vdsl_mib_objects = mib_identifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 1))
class Vdsllinecodingtype(TextualConvention, Integer32):
description = 'This data type is used as the syntax for the VDSL Line Code. Attributes with this syntax identify the line coding used. Specified as an INTEGER, the three values are: other(1) -- none of the following mcm(2) -- Multiple Carrier Modulation scm(3) -- Single Carrier Modulation'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('other', 1), ('mcm', 2), ('scm', 3))
class Vdsllineentity(TextualConvention, Integer32):
description = 'Identifies a transceiver as being either Vtuc or Vtur. A VDSL line consists of two transceivers, a Vtuc and a Vtur. Attributes with this syntax reference the two sides of a line. Specified as an INTEGER, the two values are: vtuc(1) -- central site transceiver vtur(2) -- remote site transceiver'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('vtuc', 1), ('vtur', 2))
vdsl_line_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1))
if mibBuilder.loadTexts:
vdslLineTable.setStatus('current')
if mibBuilder.loadTexts:
vdslLineTable.setDescription('This table includes common attributes describing both ends of the line. It is required for all VDSL physical interfaces. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdsl_line_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
vdslLineEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslLineEntry.setDescription('An entry in the vdslLineTable.')
vdsl_line_coding = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 1), vdsl_line_coding_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslLineCoding.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineCoding.setStatus('current')
if mibBuilder.loadTexts:
vdslLineCoding.setDescription('Specifies the VDSL coding type used on this line.')
vdsl_line_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('noChannel', 1), ('fastOnly', 2), ('interleavedOnly', 3), ('fastOrInterleaved', 4), ('fastAndInterleaved', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslLineType.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineType.setStatus('current')
if mibBuilder.loadTexts:
vdslLineType.setDescription("Defines the type of VDSL physical line entity that exists, by defining whether and how the line is channelized. If the line is channelized, the value will be other than noChannel(1). This object defines which channel type(s) are supported. Defined values are: noChannel(1) -- no channels exist fastOnly(2) -- only fast channel exists interleavedOnly(3) -- only interleaved channel exists fastOrInterleaved(4) -- either fast or interleaved channel -- exist, but only one at a time fastAndInterleaved(5) -- both fast and interleaved channels -- exist Note that 'slow' and 'interleaved' refer to the same channel. In the case that the line is channelized, the manager can use the ifStackTable to determine the ifIndex for the associated channel(s).")
vdsl_line_conf_profile = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)).clone('DEFVAL')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vdslLineConfProfile.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfProfile.setDescription('The value of this object identifies the row in the VDSL Line Configuration Profile Table, vdslLineConfProfileTable, which applies for this VDSL line, and channels if applicable. This object MUST be maintained in a persistent manner.')
vdsl_line_alarm_conf_profile = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 1, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)).clone('DEFVAL')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfile.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfile.setDescription('The value of this object identifies the row in the VDSL Line Alarm Configuration Profile Table, vdslLineAlarmConfProfileTable, which applies to this VDSL line, and channels if applicable. This object MUST be maintained in a persistent manner.')
vdsl_phys_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2))
if mibBuilder.loadTexts:
vdslPhysTable.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysTable.setDescription('This table provides one row for each Vtu. Each row contains the Physical Layer Parameters table for that Vtu. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdsl_phys_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'))
if mibBuilder.loadTexts:
vdslPhysEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysEntry.setDescription('An entry in the vdslPhysTable.')
vdsl_phys_side = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 1), vdsl_line_entity())
if mibBuilder.loadTexts:
vdslPhysSide.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysSide.setDescription('Identifies whether the transceiver is the Vtuc or Vtur.')
vdsl_phys_inv_serial_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 2), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysInvSerialNumber.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysInvSerialNumber.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysInvSerialNumber.setDescription('The vendor specific string that identifies the vendor equipment.')
vdsl_phys_inv_vendor_id = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 3), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysInvVendorID.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysInvVendorID.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysInvVendorID.setDescription('The vendor ID code is a copy of the binary vendor identification field expressed as readable characters in hexadecimal notation.')
vdsl_phys_inv_version_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 4), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysInvVersionNumber.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysInvVersionNumber.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysInvVersionNumber.setDescription('The vendor specific version number sent by this Vtu as part of the initialization messages. It is a copy of the binary version number field expressed as readable characters in hexadecimal notation.')
vdsl_phys_curr_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(-127, 127))).setUnits('0.25dBm').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysCurrSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysCurrSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysCurrSnrMgn.setDescription('Noise Margin as seen by this Vtu with respect to its received signal in 0.25dB. The effective range is -31.75 to +31.75 dB.')
vdsl_phys_curr_atn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 6), gauge32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('0.25dBm').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysCurrAtn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysCurrAtn.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysCurrAtn.setDescription('Measured difference in the total power transmitted by the peer Vtu and the total power received by this Vtu. The effective range is 0 to +63.75 dB.')
vdsl_phys_curr_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 7), bits().clone(namedValues=named_values(('noDefect', 0), ('lossOfFraming', 1), ('lossOfSignal', 2), ('lossOfPower', 3), ('lossOfSignalQuality', 4), ('lossOfLink', 5), ('dataInitFailure', 6), ('configInitFailure', 7), ('protocolInitFailure', 8), ('noPeerVtuPresent', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysCurrStatus.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysCurrStatus.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysCurrStatus.setDescription("Indicates current state of the Vtu line. This is a bit-map of possible conditions. The various bit positions are: 0 noDefect There are no defects on the line. 1 lossOfFraming Vtu failure due to not receiving a valid frame. 2 lossOfSignal Vtu failure due to not receiving signal. 3 lossOfPower Vtu failure due to loss of power. 4 lossOfSignalQuality Loss of Signal Quality is declared when the Noise Margin falls below the Minimum Noise Margin, or the bit-error-rate exceeds 10^-7. 5 lossOfLink Vtu failure due to inability to link with peer Vtu. Set whenever the transceiver is in the 'Warm Start' state. 6 dataInitFailure Vtu failure during initialization due to bit errors corrupting startup exchange data. 7 configInitFailure Vtu failure during initialization due to peer Vtu not able to support requested configuration. 8 protocolInitFailure Vtu failure during initialization due to incompatible protocol used by the peer Vtu. 9 noPeerVtuPresent Vtu failure during initialization due to no activation sequence detected from peer Vtu. This is intended to supplement ifOperStatus.")
vdsl_phys_curr_output_pwr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 160))).setUnits('0.1dBm').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysCurrOutputPwr.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysCurrOutputPwr.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysCurrOutputPwr.setDescription('Measured total output power transmitted by this VTU. This is the measurement that was reported during the last activation sequence.')
vdsl_phys_curr_attainable_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 9), gauge32()).setUnits('kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysCurrAttainableRate.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysCurrAttainableRate.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysCurrAttainableRate.setDescription('Indicates the maximum currently attainable data rate in steps of 1000 bits/second by the Vtu. This value will be equal to or greater than vdslPhysCurrLineRate. Note that for SCM, the minimum and maximum data rates are equal. Note: 1 kbps = 1000 bps.')
vdsl_phys_curr_line_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 2, 1, 10), gauge32()).setUnits('kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPhysCurrLineRate.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPhysCurrLineRate.setStatus('current')
if mibBuilder.loadTexts:
vdslPhysCurrLineRate.setDescription('Indicates the current data rate in steps of 1000 bits/second by the Vtu. This value will be less than or equal to vdslPhysCurrAttainableRate. Note: 1 kbps = 1000 bps.')
vdsl_chan_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3))
if mibBuilder.loadTexts:
vdslChanTable.setStatus('current')
if mibBuilder.loadTexts:
vdslChanTable.setDescription('This table provides one row for each Vtu channel. VDSL channel interfaces are those ifEntries where ifType is equal to interleave(124) or fast(125).')
vdsl_chan_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'))
if mibBuilder.loadTexts:
vdslChanEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslChanEntry.setDescription('An entry in the vdslChanTable.')
vdsl_chan_interleave_delay = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 1), gauge32()).setUnits('milliseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanInterleaveDelay.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanInterleaveDelay.setStatus('current')
if mibBuilder.loadTexts:
vdslChanInterleaveDelay.setDescription('Interleave Delay for this channel. Interleave delay applies only to the interleave (slow) channel and defines the mapping (relative spacing) between subsequent input bytes at the interleaver input and their placement in the bit stream at the interleaver output. Larger numbers provide greater separation between consecutive input bytes in the output bit stream allowing for improved impulse noise immunity at the expense of payload latency. In the case where the ifType is fast(125), return a value of zero.')
vdsl_chan_crc_block_length = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 2), gauge32()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCrcBlockLength.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanCrcBlockLength.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCrcBlockLength.setDescription('Indicates the length of the channel data-block on which the CRC operates.')
vdsl_chan_curr_tx_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 3), gauge32()).setUnits('kbps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurrTxRate.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurrTxRate.setDescription('Actual transmit data rate on this channel. Note: 1 kbps = 1000 bps.')
vdsl_chan_curr_tx_slow_burst_protect = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 4), gauge32().subtype(subtypeSpec=value_range_constraint(0, 1275))).setUnits('microseconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurrTxSlowBurstProtect.setReference('ITU-T G.997.1, section 7.3.2.3')
if mibBuilder.loadTexts:
vdslChanCurrTxSlowBurstProtect.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurrTxSlowBurstProtect.setDescription('Actual level of impulse noise (burst) protection for an interleaved (slow) channel. This parameter is not applicable to fast channels. For fast channels, a value of zero shall be returned.')
vdsl_chan_curr_tx_fast_fec = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 3, 1, 5), gauge32().subtype(subtypeSpec=value_range_constraint(0, 50))).setUnits('%').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurrTxFastFec.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurrTxFastFec.setDescription('Actual Forward Error Correction (FEC) redundancy related overhead for a fast channel. This parameter is not applicable to an interleaved (slow) channel. For interleaved channels, a value of zero shall be returned.')
vdsl_perf_data_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4))
if mibBuilder.loadTexts:
vdslPerfDataTable.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataTable.setDescription('This table provides one row for each VDSL physical interface. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdsl_perf_data_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'))
if mibBuilder.loadTexts:
vdslPerfDataEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataEntry.setDescription('An entry in the vdslPerfDataTable.')
vdsl_perf_data_valid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 1), hc_perf_valid_intervals()).setUnits('intervals').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataValidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_perf_data_invalid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 2), hc_perf_invalid_intervals()).setUnits('intervals').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_perf_data_lofs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 3), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataLofs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataLofs.setDescription('Count of seconds since the unit was last reset that there was Loss of Framing.')
vdsl_perf_data_loss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 4), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataLoss.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataLoss.setDescription('Count of seconds since the unit was last reset that there was Loss of Signal.')
vdsl_perf_data_lprs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 5), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataLprs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataLprs.setDescription('Count of seconds since the unit was last reset that there was Loss of Power.')
vdsl_perf_data_lols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 6), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataLols.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataLols.setDescription('Count of seconds since the unit was last reset that there was Loss of Link.')
vdsl_perf_data_e_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 7), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataESs.setDescription('Count of Errored Seconds since the unit was last reset. An Errored Second is a one-second interval containing one or more CRC anomalies, or one or more LOS or LOF defects.')
vdsl_perf_data_se_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 8), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataSESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataSESs.setDescription('Count of Severely Errored Seconds since the unit was last reset.')
vdsl_perf_data_ua_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 9), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataUASs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataUASs.setDescription('Count of Unavailable Seconds since the unit was last reset.')
vdsl_perf_data_inits = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 10), unsigned32()).setUnits('occurrences').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataInits.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataInits.setDescription('Count of the line initialization attempts since the unit was last reset. This count includes both successful and failed attempts.')
vdsl_perf_data_curr15_min_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 11), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinTimeElapsed.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinTimeElapsed.setDescription('Total elapsed seconds in this interval.')
vdsl_perf_data_curr15_min_lofs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 12), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLofs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLofs.setDescription('Count of seconds during this interval that there was Loss of Framing.')
vdsl_perf_data_curr15_min_loss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 13), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLoss.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLoss.setDescription('Count of seconds during this interval that there was Loss of Signal.')
vdsl_perf_data_curr15_min_lprs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 14), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLprs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLprs.setDescription('Count of seconds during this interval that there was Loss of Power.')
vdsl_perf_data_curr15_min_lols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 15), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLols.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinLols.setDescription('Count of seconds during this interval that there was Loss of Link.')
vdsl_perf_data_curr15_min_e_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 16), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinESs.setDescription('Count of Errored Seconds during this interval. An Errored Second is a one-second interval containing one or more CRC anomalies, or one or more LOS or LOF defects.')
vdsl_perf_data_curr15_min_se_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 17), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinSESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinSESs.setDescription('Count of Severely Errored Seconds during this interval.')
vdsl_perf_data_curr15_min_ua_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 18), hc_perf_current_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinUASs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinUASs.setDescription('Count of Unavailable Seconds during this interval.')
vdsl_perf_data_curr15_min_inits = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 19), hc_perf_current_count()).setUnits('occurrences').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinInits.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr15MinInits.setDescription('Count of the line initialization attempts during this interval. This count includes both successful and failed attempts.')
vdsl_perf_data1_day_valid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 20), hc_perf_valid_intervals()).setUnits('intervals').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfData1DayValidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfData1DayValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_perf_data1_day_invalid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 21), hc_perf_invalid_intervals()).setUnits('intervals').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfData1DayInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfData1DayInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_perf_data_curr1_day_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 22), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayTimeElapsed.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayTimeElapsed.setDescription('Number of seconds that have elapsed since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_lofs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 23), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLofs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLofs.setDescription('Count of Loss of Framing (LOF) Seconds since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_loss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 24), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLoss.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLoss.setDescription('Count of Loss of Signal (LOS) Seconds since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_lprs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 25), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLprs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLprs.setDescription('Count of Loss of Power (LPR) Seconds since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_lols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 26), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLols.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayLols.setDescription('Count of Loss of Link (LOL) Seconds since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_e_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 27), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayESs.setDescription('Count of Errored Seconds (ES) since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_se_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 28), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DaySESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DaySESs.setDescription('Count of Severely Errored Seconds (SES) since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_ua_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 29), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayUASs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayUASs.setDescription('Count of Unavailable Seconds (UAS) since the beginning of the current 1-day interval.')
vdsl_perf_data_curr1_day_inits = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 4, 1, 30), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayInits.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfDataCurr1DayInits.setDescription('Count of the line initialization attempts since the beginning of the current 1-day interval. This count includes both successful and failed attempts.')
vdsl_perf_interval_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5))
if mibBuilder.loadTexts:
vdslPerfIntervalTable.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalTable.setDescription('This table provides one row for each Vtu performance data collection interval. VDSL physical interfaces are those ifEntries where ifType is equal to vdsl(97).')
vdsl_perf_interval_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'), (0, 'VDSL-LINE-MIB', 'vdslPerfIntervalNumber'))
if mibBuilder.loadTexts:
vdslPerfIntervalEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalEntry.setDescription('An entry in the vdslPerfIntervalTable.')
vdsl_perf_interval_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 96)))
if mibBuilder.loadTexts:
vdslPerfIntervalNumber.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalNumber.setDescription('Performance Data Interval number 1 is the most recent previous interval; interval 96 is 24 hours ago. Intervals 2 to 96 are optional.')
vdsl_perf_interval_lofs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 2), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfIntervalLofs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalLofs.setDescription('Count of seconds in the interval when there was Loss of Framing.')
vdsl_perf_interval_loss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 3), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfIntervalLoss.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalLoss.setDescription('Count of seconds in the interval when there was Loss of Signal.')
vdsl_perf_interval_lprs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 4), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfIntervalLprs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalLprs.setDescription('Count of seconds in the interval when there was Loss of Power.')
vdsl_perf_interval_lols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 5), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalLols.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalLols.setDescription('Count of seconds in the interval when there was Loss of Link.')
vdsl_perf_interval_e_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 6), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfIntervalESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalESs.setDescription('Count of Errored Seconds (ES) in the interval. An Errored Second is a one-second interval containing one or more CRC anomalies, one or more LOS or LOF defects.')
vdsl_perf_interval_se_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 7), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalSESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalSESs.setDescription('Count of Severely Errored Seconds in the interval.')
vdsl_perf_interval_ua_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 8), hc_perf_interval_count()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalUASs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalUASs.setDescription('Count of Unavailable Seconds in the interval.')
vdsl_perf_interval_inits = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 5, 1, 9), hc_perf_interval_count()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerfIntervalInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerfIntervalInits.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfIntervalInits.setDescription('Count of the line initialization attempts during this interval. This count includes both successful and failed attempts.')
vdsl_perf1_day_interval_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6))
if mibBuilder.loadTexts:
vdslPerf1DayIntervalTable.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalTable.setDescription('This table provides one row for each VDSL performance data collection interval. This table contains live data from equipment. As such, it is NOT persistent.')
vdsl_perf1_day_interval_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'), (0, 'VDSL-LINE-MIB', 'vdslPerf1DayIntervalNumber'))
if mibBuilder.loadTexts:
vdslPerf1DayIntervalEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalEntry.setDescription('An entry in the vdslPerf1DayIntervalTable.')
vdsl_perf1_day_interval_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)))
if mibBuilder.loadTexts:
vdslPerf1DayIntervalNumber.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalNumber.setDescription('History Data Interval number. Interval 1 is the most recent previous day; interval 30 is 30 days ago. Intervals 2 to 30 are optional.')
vdsl_perf1_day_interval_moni_secs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 2), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalMoniSecs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalMoniSecs.setDescription('The amount of time in the 1-day interval over which the performance monitoring information is actually counted. This value will be the same as the interval duration except in a situation where performance monitoring data could not be collected for any reason.')
vdsl_perf1_day_interval_lofs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 3), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLofs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLofs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLofs.setDescription('Count of Loss of Frame (LOF) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_loss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 4), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLoss.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLoss.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLoss.setDescription('Count of Loss of Signal (LOS) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_lprs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 5), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLprs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLprs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLprs.setDescription('Count of Loss of Power (LPR) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_lols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 6), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLols.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalLols.setDescription('Count of Loss of Link (LOL) Seconds during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_e_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 7), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalESs.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalESs.setDescription('Count of Errored Seconds (ES) during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_se_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 8), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalSESs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalSESs.setDescription('Count of Severely Errored Seconds (SES) during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_ua_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 9), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalUASs.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalUASs.setDescription('Count of Unavailable Seconds (UAS) during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs.')
vdsl_perf1_day_interval_inits = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 6, 1, 10), unsigned32()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalInits.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalInits.setStatus('current')
if mibBuilder.loadTexts:
vdslPerf1DayIntervalInits.setDescription('Count of the line initialization attempts during the 1-day interval as measured by vdslPerf1DayIntervalMoniSecs. This count includes both successful and failed attempts.')
vdsl_chan_perf_data_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7))
if mibBuilder.loadTexts:
vdslChanPerfDataTable.setStatus('current')
if mibBuilder.loadTexts:
vdslChanPerfDataTable.setDescription('This table provides one row for each Vtu channel. VDSL channel interfaces are those ifEntries where ifType is equal to interleave(124) or fast(125).')
vdsl_chan_perf_data_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'))
if mibBuilder.loadTexts:
vdslChanPerfDataEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslChanPerfDataEntry.setDescription('An entry in the vdslChanPerfDataTable.')
vdsl_chan_valid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 1), hc_perf_valid_intervals()).setUnits('intervals').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanValidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslChanValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_chan_invalid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 2), hc_perf_invalid_intervals()).setUnits('intervals').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslChanInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_chan_fixed_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 3), zero_based_counter64()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanFixedOctets.setStatus('current')
if mibBuilder.loadTexts:
vdslChanFixedOctets.setDescription('Count of corrected octets since the unit was last reset.')
vdsl_chan_bad_blks = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 4), zero_based_counter64()).setUnits('blocks').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanBadBlks.setStatus('current')
if mibBuilder.loadTexts:
vdslChanBadBlks.setDescription('Count of uncorrectable blocks since the unit was last reset.')
vdsl_chan_curr15_min_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 5), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurr15MinTimeElapsed.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurr15MinTimeElapsed.setDescription('Total elapsed seconds in this interval.')
vdsl_chan_curr15_min_fixed_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 6), hc_perf_current_count()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurr15MinFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanCurr15MinFixedOctets.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurr15MinFixedOctets.setDescription('Count of corrected octets in this interval.')
vdsl_chan_curr15_min_bad_blks = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 7), hc_perf_current_count()).setUnits('blocks').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurr15MinBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanCurr15MinBadBlks.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurr15MinBadBlks.setDescription('Count of uncorrectable blocks in this interval.')
vdsl_chan1_day_valid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 8), hc_perf_valid_intervals()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChan1DayValidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayValidIntervals.setDescription('Valid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_chan1_day_invalid_intervals = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 9), hc_perf_invalid_intervals()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChan1DayInvalidIntervals.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayInvalidIntervals.setDescription('Invalid Intervals per definition found in HC-PerfHist-TC-MIB.')
vdsl_chan_curr1_day_time_elapsed = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 10), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurr1DayTimeElapsed.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurr1DayTimeElapsed.setDescription('Number of seconds that have elapsed since the beginning of the current 1-day interval.')
vdsl_chan_curr1_day_fixed_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 11), hc_perf_current_count()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurr1DayFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanCurr1DayFixedOctets.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurr1DayFixedOctets.setDescription('Count of corrected octets since the beginning of the current 1-day interval.')
vdsl_chan_curr1_day_bad_blks = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 7, 1, 12), hc_perf_current_count()).setUnits('blocks').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanCurr1DayBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanCurr1DayBadBlks.setStatus('current')
if mibBuilder.loadTexts:
vdslChanCurr1DayBadBlks.setDescription('Count of uncorrectable blocks since the beginning of the current 1-day interval.')
vdsl_chan_interval_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8))
if mibBuilder.loadTexts:
vdslChanIntervalTable.setStatus('current')
if mibBuilder.loadTexts:
vdslChanIntervalTable.setDescription('This table provides one row for each Vtu channel data collection interval. VDSL channel interfaces are those ifEntries where ifType is equal to interleave(124) or fast(125).')
vdsl_chan_interval_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'), (0, 'VDSL-LINE-MIB', 'vdslChanIntervalNumber'))
if mibBuilder.loadTexts:
vdslChanIntervalEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslChanIntervalEntry.setDescription('An entry in the vdslChanIntervalTable.')
vdsl_chan_interval_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 96)))
if mibBuilder.loadTexts:
vdslChanIntervalNumber.setStatus('current')
if mibBuilder.loadTexts:
vdslChanIntervalNumber.setDescription('Performance Data Interval number 1 is the most recent previous interval; interval 96 is 24 hours ago. Intervals 2 to 96 are optional.')
vdsl_chan_interval_fixed_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1, 2), hc_perf_interval_count()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanIntervalFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanIntervalFixedOctets.setStatus('current')
if mibBuilder.loadTexts:
vdslChanIntervalFixedOctets.setDescription('Count of corrected octets in this interval.')
vdsl_chan_interval_bad_blks = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 8, 1, 3), hc_perf_interval_count()).setUnits('blocks').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChanIntervalBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChanIntervalBadBlks.setStatus('current')
if mibBuilder.loadTexts:
vdslChanIntervalBadBlks.setDescription('Count of uncorrectable blocks in this interval.')
vdsl_chan1_day_interval_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9))
if mibBuilder.loadTexts:
vdslChan1DayIntervalTable.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayIntervalTable.setDescription('This table provides one row for each VDSL performance data collection interval. This table contains live data from equipment. As such, it is NOT persistent.')
vdsl_chan1_day_interval_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'VDSL-LINE-MIB', 'vdslPhysSide'), (0, 'VDSL-LINE-MIB', 'vdslChan1DayIntervalNumber'))
if mibBuilder.loadTexts:
vdslChan1DayIntervalEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayIntervalEntry.setDescription('An entry in the vdslChan1DayIntervalTable.')
vdsl_chan1_day_interval_number = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)))
if mibBuilder.loadTexts:
vdslChan1DayIntervalNumber.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayIntervalNumber.setDescription('History Data Interval number. Interval 1 is the most recent previous day; interval 30 is 30 days ago. Intervals 2 to 30 are optional.')
vdsl_chan1_day_interval_moni_secs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 2), hc_perf_time_elapsed()).setUnits('seconds').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChan1DayIntervalMoniSecs.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayIntervalMoniSecs.setDescription('The amount of time in the 1-day interval over which the performance monitoring information is actually counted. This value will be the same as the interval duration except in a situation where performance monitoring data could not be collected for any reason.')
vdsl_chan1_day_interval_fixed_octets = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 3), hc_perf_current_count()).setUnits('octets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChan1DayIntervalFixedOctets.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChan1DayIntervalFixedOctets.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayIntervalFixedOctets.setDescription('Count of corrected octets in this interval.')
vdsl_chan1_day_interval_bad_blks = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 9, 1, 4), hc_perf_current_count()).setUnits('blocks').setMaxAccess('readonly')
if mibBuilder.loadTexts:
vdslChan1DayIntervalBadBlks.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslChan1DayIntervalBadBlks.setStatus('current')
if mibBuilder.loadTexts:
vdslChan1DayIntervalBadBlks.setDescription('Count of uncorrectable blocks in this interval.')
vdsl_line_conf_profile_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11))
if mibBuilder.loadTexts:
vdslLineConfProfileTable.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfProfileTable.setDescription('This table contains information on the VDSL line configuration. One entry in this table reflects a profile defined by a manager which can be used to configure the VDSL line. Entries in this table MUST be maintained in a persistent manner.')
vdsl_line_conf_profile_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1)).setIndexNames((0, 'VDSL-LINE-MIB', 'vdslLineConfProfileName'))
if mibBuilder.loadTexts:
vdslLineConfProfileEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfProfileEntry.setDescription("Each entry consists of a list of parameters that represents the configuration of a VDSL line. A default profile with an index of 'DEFVAL', will always exist and its parameters will be set to vendor specific values, unless otherwise specified in this document.")
vdsl_line_conf_profile_name = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)))
if mibBuilder.loadTexts:
vdslLineConfProfileName.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfProfileName.setDescription("This object identifies a row in this table. A default profile with an index of 'DEFVAL', will always exist and its parameters will be set to vendor specific values, unless otherwise specified in this document.")
vdsl_line_conf_down_rate_mode = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('manual', 1), ('adaptAtInit', 2))).clone('adaptAtInit')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownRateMode.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownRateMode.setDescription('Specifies the rate selection behavior for the line in the downstream direction. manual(1) forces the rate to the configured rate adaptAtInit(2) adapts the line based upon line quality.')
vdsl_line_conf_up_rate_mode = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('manual', 1), ('adaptAtInit', 2))).clone('adaptAtInit')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpRateMode.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpRateMode.setDescription('Specifies the rate selection behavior for the line in the upstream direction. manual(1) forces the rate to the configured rate adaptAtInit(2) adapts the line based upon line quality.')
vdsl_line_conf_down_max_pwr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 58))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownMaxPwr.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfDownMaxPwr.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownMaxPwr.setDescription('Specifies the maximum aggregate downstream power level in the range 0 to 14.5 dBm.')
vdsl_line_conf_up_max_pwr = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 58))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpMaxPwr.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfUpMaxPwr.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpMaxPwr.setDescription('Specifies the maximum aggregate upstream power level in the range 0 to 14.5 dBm.')
vdsl_line_conf_down_max_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownMaxSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfDownMaxSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownMaxSnrMgn.setDescription('Specifies the maximum downstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdsl_line_conf_down_min_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownMinSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfDownMinSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownMinSnrMgn.setDescription('Specifies the minimum downstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdsl_line_conf_down_target_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownTargetSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfDownTargetSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownTargetSnrMgn.setDescription('Specifies the target downstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. This is the Noise Margin the transceivers must achieve with a BER of 10^-7 or better to successfully complete initialization.')
vdsl_line_conf_up_max_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpMaxSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfUpMaxSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpMaxSnrMgn.setDescription('Specifies the maximum upstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdsl_line_conf_up_min_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpMinSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfUpMinSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpMinSnrMgn.setDescription('Specifies the minimum upstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB.')
vdsl_line_conf_up_target_snr_mgn = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setUnits('0.25dBm').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpTargetSnrMgn.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfUpTargetSnrMgn.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpTargetSnrMgn.setDescription('Specifies the target upstream Signal/Noise Margin in units of 0.25 dB, for a range of 0 to 31.75 dB. This is the Noise Margin the transceivers must achieve with a BER of 10^-7 or better to successfully complete initialization.')
vdsl_line_conf_down_fast_max_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 12), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownFastMaxDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownFastMaxDataRate.setDescription('Specifies the maximum downstream fast channel data rate in steps of 1000 bits/second.')
vdsl_line_conf_down_fast_min_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 13), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownFastMinDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownFastMinDataRate.setDescription('Specifies the minimum downstream fast channel data rate in steps of 1000 bits/second.')
vdsl_line_conf_down_slow_max_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 14), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownSlowMaxDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownSlowMaxDataRate.setDescription('Specifies the maximum downstream slow channel data rate in steps of 1000 bits/second. The maximum aggregate downstream transmit speed of the line can be derived from the sum of maximum downstream fast and slow channel data rates.')
vdsl_line_conf_down_slow_min_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 15), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownSlowMinDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownSlowMinDataRate.setDescription('Specifies the minimum downstream slow channel data rate in steps of 1000 bits/second. The minimum aggregate downstream transmit speed of the line can be derived from the sum of minimum downstream fast and slow channel data rates.')
vdsl_line_conf_up_fast_max_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 16), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpFastMaxDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpFastMaxDataRate.setDescription('Specifies the maximum upstream fast channel data rate in steps of 1000 bits/second. The maximum aggregate upstream transmit speed of the line can be derived from the sum of maximum upstream fast and slow channel data rates.')
vdsl_line_conf_up_fast_min_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 17), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpFastMinDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpFastMinDataRate.setDescription('Specifies the minimum upstream fast channel data rate in steps of 1000 bits/second. The minimum aggregate upstream transmit speed of the line can be derived from the sum of minimum upstream fast and slow channel data rates.')
vdsl_line_conf_up_slow_max_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 18), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpSlowMaxDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpSlowMaxDataRate.setDescription('Specifies the maximum upstream slow channel data rate in steps of 1000 bits/second.')
vdsl_line_conf_up_slow_min_data_rate = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 19), unsigned32()).setUnits('kbps').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpSlowMinDataRate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpSlowMinDataRate.setDescription('Specifies the minimum upstream slow channel data rate in steps of 1000 bits/second.')
vdsl_line_conf_down_rate_ratio = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 20), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownRateRatio.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownRateRatio.setDescription('For dynamic rate adaptation at startup, the allocation of data rate in excess of the minimum data rate for each channel is controlled by the object. This object specifies the ratio of the allocation of the excess data rate between the fast and the slow channels. This allocation represents downstream Fast Channel Allocation / Slow Channel Allocation.')
vdsl_line_conf_up_rate_ratio = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 21), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('percent').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpRateRatio.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpRateRatio.setDescription('For dynamic rate adaptation at startup, the allocation of data rate in excess of the minimum data rate for each channel is controlled by the object. This object specifies the ratio of the allocation of the excess data rate between the fast and the slow channels. This allocation represents upstream Fast Channel Allocation/Slow Channel Allocation.')
vdsl_line_conf_down_max_inter_delay = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('milliseconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownMaxInterDelay.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownMaxInterDelay.setDescription('Specifies the maximum interleave delay for the downstream slow channel.')
vdsl_line_conf_up_max_inter_delay = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 23), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setUnits('milliseconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpMaxInterDelay.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpMaxInterDelay.setDescription('Specifies the maximum interleave delay for the upstream slow channel.')
vdsl_line_conf_down_pbo_control = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('auto', 2), ('manual', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownPboControl.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownPboControl.setDescription('Downstream power backoff (PBO) control for this line. For transceivers which do not support downstream PBO control, this object MUST be fixed at disabled(1). If auto(2) is selected, the transceiver will automatically adjust the power backoff. If manual(3) is selected, then the transceiver will use the value from vdslLineConfDownPboLevel.')
vdsl_line_conf_up_pbo_control = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('auto', 2), ('manual', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpPboControl.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpPboControl.setDescription('Upstream power backoff (PBO) control for this line. For transceivers which do not support upstream PBO control, this object MUST be fixed at disabled(1). If auto(2) is selected, the transceiver will automatically adjust the power backoff. If manual(3) is selected, then the transceiver will use the value from vdslLineConfUpPboLevel.')
vdsl_line_conf_down_pbo_level = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 26), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 160))).setUnits('0.25dB').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownPboLevel.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownPboLevel.setDescription('Specifies the downstream backoff level to be used when vdslLineConfDownPboControl = manual(3).')
vdsl_line_conf_up_pbo_level = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 160))).setUnits('0.25dB').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpPboLevel.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpPboLevel.setDescription('Specifies the upstream backoff level to be used when vdslLineConfUpPboControl = manual(3).')
vdsl_line_conf_deployment_scenario = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('fttCab', 1), ('fttEx', 2), ('other', 3))).clone('fttCab')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDeploymentScenario.setReference('DSL Forum TR-057')
if mibBuilder.loadTexts:
vdslLineConfDeploymentScenario.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDeploymentScenario.setDescription('The VDSL line deployment scenario. When using fttCab(1), the VTU-C is located in a street cabinet. When using fttEx(2), the VTU-C is located at the central office. Changes to this value will have no effect on the transceiver.')
vdsl_line_conf_adsl_presence = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('adslOverPots', 2), ('adslOverISDN', 3))).clone('none')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfAdslPresence.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfAdslPresence.setDescription('Indicates presence of ADSL service in the associated cable bundle/binder. none(1) indicates no ADSL service in the bundle adslOverPots(2) indicates ADSL service over POTS is present in the bundle adslOverISDN(3) indicates ADSL service over ISDN is present in the bundle')
vdsl_line_conf_applicable_standard = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('ansi', 1), ('etsi', 2), ('itu', 3), ('other', 4))).clone('ansi')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfApplicableStandard.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfApplicableStandard.setDescription('The VDSL standard to be used for the line. ansi(1) indicates ANSI standard etsi(2) indicates ETSI standard itu(3) indicates ITU standard other(4) indicates a standard other than the above.')
vdsl_line_conf_band_plan = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bandPlan997', 1), ('bandPlan998', 2), ('bandPlanFx', 3), ('other', 4))).clone('bandPlan997')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfBandPlan.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfBandPlan.setDescription('The VDSL band plan to be used for the line. bandPlan997(1) is to be used for ITU-T G.993.1 Bandplan-B ETSI Bandplan ANSI Plan 997 bandPlan998(2) is to be used for ITU-T G.993.1 Bandplan-A ANSI Plan 998 bandPlanFx(3) is to be used for ITU-T G.993.1 Bandplan-C. other(4) is to be used for non-standard bandplans. If this object is set to bandPlanFx(3), then the object vdslLineConfBandPlanFx MUST also be set.')
vdsl_line_conf_band_plan_fx = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 32), unsigned32().subtype(subtypeSpec=value_range_constraint(3750, 12000)).clone(3750)).setUnits('kHz').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfBandPlanFx.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfBandPlanFx.setDescription('The frequency limit between bands D2 and U2 when vdslLineConfBandPlan is set to bandPlanFx(3).')
vdsl_line_conf_band_opt_usage = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('unused', 1), ('upstream', 2), ('downstream', 3))).clone('unused')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfBandOptUsage.setReference('ITU-T G.993.1, section 6.1')
if mibBuilder.loadTexts:
vdslLineConfBandOptUsage.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfBandOptUsage.setDescription('Defines the VDSL link use of the optional frequency range [25kHz - 138kHz] (Opt). unused(1) indicates Opt is unused upstream(2) indicates Opt usage is for upstream downstream(3) indicates Opt usage is for downstream.')
vdsl_line_conf_up_psd_template = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('templateMask1', 1), ('templateMask2', 2))).clone('templateMask1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpPsdTemplate.setReference('DSL TR-057')
if mibBuilder.loadTexts:
vdslLineConfUpPsdTemplate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpPsdTemplate.setDescription('The upstream PSD template to be used for the line. Here, templateMask1(1) refers to a notched mask that limits the transmitted PSD within the internationally standardized HAM (Handheld Amateur Radio) radio bands, while templateMask2(2) refers to an unnotched mask. The masks themselves depend upon the applicable standard being used (vdslLineConfApplicableStandard).')
vdsl_line_conf_down_psd_template = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('templateMask1', 1), ('templateMask2', 2))).clone('templateMask1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownPsdTemplate.setReference('DSL TR-057')
if mibBuilder.loadTexts:
vdslLineConfDownPsdTemplate.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownPsdTemplate.setDescription('The downstream PSD template to be used for the line. Here, templateMask1(1) refers to a notched mask that limits the transmitted PSD within the internationally standardized HAM (Handheld Amateur Radio) radio bands, while templateMask2(2) refers to an unnotched mask. The masks themselves depend upon the applicable standard being used (vdslLineConfApplicableStandard).')
vdsl_line_conf_ham_band_mask = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 36), bits().clone(namedValues=named_values(('customNotch1', 0), ('customNotch2', 1), ('amateurBand30m', 2), ('amateurBand40m', 3), ('amateurBand80m', 4), ('amateurBand160m', 5)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfHamBandMask.setReference('DSLF TR-057, section 2.6')
if mibBuilder.loadTexts:
vdslLineConfHamBandMask.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfHamBandMask.setDescription('The transmit power spectral density mask code, used to avoid interference with HAM (Handheld Amateur Radio) radio bands by introducing power control (notching) in one or more of these bands. Amateur radio band notching is defined in the VDSL spectrum as follows: Band Start Frequency Stop Frequency ---- ------------------ -------------------------------- 30m 1810 kHz 2000 kHz 40m 3500 kHz 3800 kHz (ETSI); 4000 kHz (ANSI) 80m 7000 kHz 7100 kHz (ETSI); 7300 kHz (ANSI) 160m 10100 kHz 10150 kHz Notching for each standard band can be enabled or disabled via the bit mask. Two custom notches may be specified. If either of these are enabled via the bit mask, then the following objects MUST be specified: If customNotch1 is enabled, then both vdslLineConfCustomNotch1Start vdslLineConfCustomNotch1Stop MUST be specified. If customNotch2 is enabled, then both vdslLineConfCustomNotch2Start vdslLineConfCustomNotch2Stop MUST be specified.')
vdsl_line_conf_custom_notch1_start = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 37), unsigned32()).setUnits('kHz').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch1Start.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch1Start.setDescription('Specifies the start frequency of custom HAM (Handheld Amateur Radio) notch 1. vdslLineConfCustomNotch1Start MUST be less than or equal to vdslLineConfCustomNotch1Stop.')
vdsl_line_conf_custom_notch1_stop = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 38), unsigned32()).setUnits('kHz').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch1Stop.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch1Stop.setDescription('Specifies the stop frequency of custom HAM (Handheld Amateur Radio) notch 1. vdslLineConfCustomNotch1Stop MUST be greater than or equal to vdslLineConfCustomNotch1Start.')
vdsl_line_conf_custom_notch2_start = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 39), unsigned32()).setUnits('kHz').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch2Start.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch2Start.setDescription('Specifies the start frequency of custom HAM (Handheld Amateur Radio) notch 2. vdslLineConfCustomNotch2Start MUST be less than or equal to vdslLineConfCustomNotch2Stop.')
vdsl_line_conf_custom_notch2_stop = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 40), unsigned32()).setUnits('kHz').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch2Stop.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfCustomNotch2Stop.setDescription('Specifies the stop frequency of custom HAM (Handheld Amateur Radio) notch 2. vdslLineConfCustomNotch2Stop MUST be greater than or equal to vdslLineConfCustomNotch2Start.')
vdsl_line_conf_down_target_slow_burst = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 41), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 1275))).setUnits('microseconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownTargetSlowBurst.setReference('ITU-T G.997.1, section 7.3.2.3')
if mibBuilder.loadTexts:
vdslLineConfDownTargetSlowBurst.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownTargetSlowBurst.setDescription('Specifies the target level of impulse noise (burst) protection for an interleaved (slow) channel.')
vdsl_line_conf_up_target_slow_burst = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 42), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 1275))).setUnits('microseconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpTargetSlowBurst.setReference('ITU-T G.997.1, section 7.3.2.3')
if mibBuilder.loadTexts:
vdslLineConfUpTargetSlowBurst.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpTargetSlowBurst.setDescription('Specifies the target level of impulse noise (burst) protection for an interleaved (slow) channel.')
vdsl_line_conf_down_max_fast_fec = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 43), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 50))).setUnits('%').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfDownMaxFastFec.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfDownMaxFastFec.setDescription('This parameter provisions the maximum level of Forward Error Correction (FEC) redundancy related overhead to be maintained for a fast channel.')
vdsl_line_conf_up_max_fast_fec = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 44), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 50))).setUnits('%').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfUpMaxFastFec.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfUpMaxFastFec.setDescription('This parameter provisions the maximum level of Forward Error Correction (FEC) redundancy related overhead to be maintained for a fast channel.')
vdsl_line_conf_line_type = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('noChannel', 1), ('fastOnly', 2), ('interleavedOnly', 3), ('fastOrInterleaved', 4), ('fastAndInterleaved', 5))).clone('noChannel')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfLineType.setReference('T1E1.4/2000-009R3, Part 1, common spec')
if mibBuilder.loadTexts:
vdslLineConfLineType.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfLineType.setDescription("This parameter provisions the VDSL physical entity at start-up by defining whether and how the line will be channelized, i.e., which channel type(s) are supported. If the line is to be channelized, the value will be other than noChannel(1). This configuration can be activated only during start-up. Afterwards, the value of vdslLineType coincides with the value of vdslLineConfLineType. Depending on this value, the corresponding entries in the ifTable for the interleaved and the fast channels are enabled or disabled according to the value of their ifOperStatus. Defined values are: noChannel(1) -- no channels exist fastOnly(2) -- only fast channel exists interleavedOnly(3) -- only interleaved channel exists fastOrInterleaved(4) -- either fast or interleaved channel -- exists, but only one at a time fastAndInterleaved(5) -- both fast and interleaved channels -- exist Note that 'slow' and 'interleaved' refer to the same channel.")
vdsl_line_conf_prof_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 11, 1, 46), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineConfProfRowStatus.setStatus('current')
if mibBuilder.loadTexts:
vdslLineConfProfRowStatus.setDescription("This object is used to create a new row or modify or delete an existing row in this table. A profile activated by setting this object to 'active'. When 'active' is set, the system will validate the profile. Before a profile can be deleted or taken out of service (by setting this object to 'destroy' or 'outOfService'), it must be first unreferenced from all associated lines. An 'active' profile may be modified at any time. Note that some changes may require that any referenced lines be restarted (e.g., vdslLineConfLineType).")
vdsl_line_alarm_conf_profile_table = mib_table((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20))
if mibBuilder.loadTexts:
vdslLineAlarmConfProfileTable.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfileTable.setDescription('This table contains information on the VDSL line alarm configuration. One entry in this table reflects a profile defined by a manager which can be used to configure the VDSL line alarm thresholds. Entries in this table MUST be maintained in a persistent manner.')
vdsl_line_alarm_conf_profile_entry = mib_table_row((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1)).setIndexNames((0, 'VDSL-LINE-MIB', 'vdslLineAlarmConfProfileName'))
if mibBuilder.loadTexts:
vdslLineAlarmConfProfileEntry.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfileEntry.setDescription("Each entry consists of a list of parameters that represents the configuration of a VDSL line alarm profile. A default profile with an index of 'DEFVAL', will always exist and its parameters will be set to vendor specific values, unless otherwise specified in this document.")
vdsl_line_alarm_conf_profile_name = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 1), snmp_admin_string().subtype(subtypeSpec=value_size_constraint(1, 32)))
if mibBuilder.loadTexts:
vdslLineAlarmConfProfileName.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfileName.setDescription('The name for this profile as specified by an administrator.')
vdsl_line_alarm_conf_thresh15_min_lofs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 2), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLofs.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLofs.setDescription('This object configures the threshold for the number of loss of frame seconds (lofs) within any given 15-minute performance data collection interval. If the value of loss of frame seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLofsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdsl_line_alarm_conf_thresh15_min_loss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 3), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLoss.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLoss.setDescription('This object configures the threshold for the number of loss of signal seconds (loss) within any given 15-minute performance data collection interval. If the value of loss of signal seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLossThreshNotification notification will be generated. One notification will be sent per interval per endpoint.')
vdsl_line_alarm_conf_thresh15_min_lprs = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 4), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLprs.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLprs.setDescription('This object configures the threshold for the number of loss of power seconds (lprs) within any given 15-minute performance data collection interval. If the value of loss of power seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLprsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdsl_line_alarm_conf_thresh15_min_lols = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 5), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLols.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinLols.setDescription('This object configures the threshold for the number of loss of link seconds (lols) within any given 15-minute performance data collection interval. If the value of loss of power seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfLolsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdsl_line_alarm_conf_thresh15_min_e_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 6), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinESs.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinESs.setDescription('This object configures the threshold for the number of errored seconds (ESs) within any given 15-minute performance data collection interval. If the value of errored seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfESsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdsl_line_alarm_conf_thresh15_min_se_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 7), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinSESs.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinSESs.setDescription('This object configures the threshold for the number of severely errored seconds (SESs) within any given 15-minute performance data collection interval. If the value of severely errored seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfSESsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdsl_line_alarm_conf_thresh15_min_ua_ss = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 8), hc_perf_interval_threshold()).setUnits('seconds').setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinUASs.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfThresh15MinUASs.setDescription('This object configures the threshold for the number of unavailable seconds (UASs) within any given 15-minute performance data collection interval. If the value of unavailable seconds in a particular 15-minute collection interval reaches/exceeds this value, a vdslPerfUASsThreshNotification notification will be generated. No more than one notification will be sent per interval.')
vdsl_line_alarm_conf_init_failure = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 9), truth_value().clone('false')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfInitFailure.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfInitFailure.setDescription('This object specifies if a vdslInitFailureNotification notification will be generated if an initialization failure occurs.')
vdsl_line_alarm_conf_prof_row_status = mib_table_column((1, 3, 6, 1, 2, 1, 10, 97, 1, 1, 20, 1, 10), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfRowStatus.setStatus('current')
if mibBuilder.loadTexts:
vdslLineAlarmConfProfRowStatus.setDescription("This object is used to create a new row or modify or delete an existing row in this table. A profile activated by setting this object to 'active'. When 'active' is set, the system will validate the profile. Before a profile can be deleted or taken out of service, (by setting this object to 'destroy' or 'outOfService') it must be first unreferenced from all associated lines. An 'active' profile may be modified at any time.")
vdsl_notifications = mib_identifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 0))
vdsl_perf_lofs_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 1)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLofs'))
if mibBuilder.loadTexts:
vdslPerfLofsThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfLofsThreshNotification.setDescription('Loss of Framing 15-minute interval threshold (vdslLineAlarmConfThresh15MinLofs) reached.')
vdsl_perf_loss_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 2)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLoss'))
if mibBuilder.loadTexts:
vdslPerfLossThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfLossThreshNotification.setDescription('Loss of Signal 15-minute interval threshold (vdslLineAlarmConfThresh15MinLoss) reached.')
vdsl_perf_lprs_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 3)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLprs'))
if mibBuilder.loadTexts:
vdslPerfLprsThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfLprsThreshNotification.setDescription('Loss of Power 15-minute interval threshold (vdslLineAlarmConfThresh15MinLprs) reached.')
vdsl_perf_lols_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 4)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLols'))
if mibBuilder.loadTexts:
vdslPerfLolsThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfLolsThreshNotification.setDescription('Loss of Link 15-minute interval threshold (vdslLineAlarmConfThresh15MinLols) reached.')
vdsl_perf_e_ss_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 5)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinESs'))
if mibBuilder.loadTexts:
vdslPerfESsThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfESsThreshNotification.setDescription('Errored Seconds 15-minute interval threshold (vdslLineAlarmConfThresh15MinESs) reached.')
vdsl_perf_se_ss_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 6)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinSESs'))
if mibBuilder.loadTexts:
vdslPerfSESsThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfSESsThreshNotification.setDescription('Severely Errored Seconds 15-minute interval threshold (vdslLineAlarmConfThresh15MinSESs) reached.')
vdsl_perf_ua_ss_thresh_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 7)).setObjects(('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinUASs'))
if mibBuilder.loadTexts:
vdslPerfUASsThreshNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslPerfUASsThreshNotification.setDescription('Unavailable Seconds 15-minute interval threshold (vdslLineAlarmConfThresh15MinUASs) reached.')
vdsl_down_max_snr_mgn_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 8)).setObjects(('VDSL-LINE-MIB', 'vdslPhysCurrSnrMgn'))
if mibBuilder.loadTexts:
vdslDownMaxSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslDownMaxSnrMgnNotification.setDescription('The downstream Signal to Noise Margin exceeded vdslLineConfDownMaxSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-R.')
vdsl_down_min_snr_mgn_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 9)).setObjects(('VDSL-LINE-MIB', 'vdslPhysCurrSnrMgn'))
if mibBuilder.loadTexts:
vdslDownMinSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslDownMinSnrMgnNotification.setDescription('The downstream Signal to Noise Margin fell below vdslLineConfDownMinSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-R.')
vdsl_up_max_snr_mgn_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 10)).setObjects(('VDSL-LINE-MIB', 'vdslPhysCurrSnrMgn'))
if mibBuilder.loadTexts:
vdslUpMaxSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslUpMaxSnrMgnNotification.setDescription('The upstream Signal to Noise Margin exceeded vdslLineConfUpMaxSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-C.')
vdsl_up_min_snr_mgn_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 11)).setObjects(('VDSL-LINE-MIB', 'vdslPhysCurrSnrMgn'))
if mibBuilder.loadTexts:
vdslUpMinSnrMgnNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslUpMinSnrMgnNotification.setDescription('The upstream Signal to Noise Margin fell below vdslLineConfUpMinSnrMgn. The object vdslPhysCurrSnrMgn will contain the Signal to Noise margin as measured by the VTU-C.')
vdsl_init_failure_notification = notification_type((1, 3, 6, 1, 2, 1, 10, 97, 1, 0, 12)).setObjects(('VDSL-LINE-MIB', 'vdslPhysCurrStatus'))
if mibBuilder.loadTexts:
vdslInitFailureNotification.setStatus('current')
if mibBuilder.loadTexts:
vdslInitFailureNotification.setDescription('Vtu initialization failed. See vdslPhysCurrStatus for potential reasons.')
vdsl_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 3))
vdsl_groups = mib_identifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 1))
vdsl_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 2))
vdsl_line_mib_compliance = module_compliance((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 2, 1)).setObjects(('VDSL-LINE-MIB', 'vdslGroup'), ('VDSL-LINE-MIB', 'vdslNotificationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vdsl_line_mib_compliance = vdslLineMibCompliance.setStatus('current')
if mibBuilder.loadTexts:
vdslLineMibCompliance.setDescription('The compliance statement for SNMP entities which manage VDSL interfaces.')
vdsl_group = object_group((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 1, 1)).setObjects(('VDSL-LINE-MIB', 'vdslLineCoding'), ('VDSL-LINE-MIB', 'vdslLineType'), ('VDSL-LINE-MIB', 'vdslLineConfProfile'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfProfile'), ('VDSL-LINE-MIB', 'vdslPhysInvSerialNumber'), ('VDSL-LINE-MIB', 'vdslPhysInvVendorID'), ('VDSL-LINE-MIB', 'vdslPhysInvVersionNumber'), ('VDSL-LINE-MIB', 'vdslPhysCurrSnrMgn'), ('VDSL-LINE-MIB', 'vdslPhysCurrAtn'), ('VDSL-LINE-MIB', 'vdslPhysCurrStatus'), ('VDSL-LINE-MIB', 'vdslPhysCurrOutputPwr'), ('VDSL-LINE-MIB', 'vdslPhysCurrAttainableRate'), ('VDSL-LINE-MIB', 'vdslPhysCurrLineRate'), ('VDSL-LINE-MIB', 'vdslChanInterleaveDelay'), ('VDSL-LINE-MIB', 'vdslChanCrcBlockLength'), ('VDSL-LINE-MIB', 'vdslChanCurrTxRate'), ('VDSL-LINE-MIB', 'vdslChanCurrTxSlowBurstProtect'), ('VDSL-LINE-MIB', 'vdslChanCurrTxFastFec'), ('VDSL-LINE-MIB', 'vdslPerfDataValidIntervals'), ('VDSL-LINE-MIB', 'vdslPerfDataInvalidIntervals'), ('VDSL-LINE-MIB', 'vdslPerfDataLofs'), ('VDSL-LINE-MIB', 'vdslPerfDataLoss'), ('VDSL-LINE-MIB', 'vdslPerfDataLprs'), ('VDSL-LINE-MIB', 'vdslPerfDataLols'), ('VDSL-LINE-MIB', 'vdslPerfDataESs'), ('VDSL-LINE-MIB', 'vdslPerfDataSESs'), ('VDSL-LINE-MIB', 'vdslPerfDataUASs'), ('VDSL-LINE-MIB', 'vdslPerfDataInits'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinTimeElapsed'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLofs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLoss'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLprs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinLols'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinESs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinSESs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinUASs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr15MinInits'), ('VDSL-LINE-MIB', 'vdslPerfData1DayValidIntervals'), ('VDSL-LINE-MIB', 'vdslPerfData1DayInvalidIntervals'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayTimeElapsed'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayLofs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayLoss'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayLprs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayLols'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayESs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DaySESs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayUASs'), ('VDSL-LINE-MIB', 'vdslPerfDataCurr1DayInits'), ('VDSL-LINE-MIB', 'vdslPerfIntervalLofs'), ('VDSL-LINE-MIB', 'vdslPerfIntervalLoss'), ('VDSL-LINE-MIB', 'vdslPerfIntervalLprs'), ('VDSL-LINE-MIB', 'vdslPerfIntervalLols'), ('VDSL-LINE-MIB', 'vdslPerfIntervalESs'), ('VDSL-LINE-MIB', 'vdslPerfIntervalSESs'), ('VDSL-LINE-MIB', 'vdslPerfIntervalUASs'), ('VDSL-LINE-MIB', 'vdslPerfIntervalInits'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalMoniSecs'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalLofs'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalLoss'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalLprs'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalLols'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalESs'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalSESs'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalUASs'), ('VDSL-LINE-MIB', 'vdslPerf1DayIntervalInits'), ('VDSL-LINE-MIB', 'vdslChanValidIntervals'), ('VDSL-LINE-MIB', 'vdslChanInvalidIntervals'), ('VDSL-LINE-MIB', 'vdslChanFixedOctets'), ('VDSL-LINE-MIB', 'vdslChanBadBlks'), ('VDSL-LINE-MIB', 'vdslChanCurr15MinTimeElapsed'), ('VDSL-LINE-MIB', 'vdslChanCurr15MinFixedOctets'), ('VDSL-LINE-MIB', 'vdslChanCurr15MinBadBlks'), ('VDSL-LINE-MIB', 'vdslChan1DayValidIntervals'), ('VDSL-LINE-MIB', 'vdslChan1DayInvalidIntervals'), ('VDSL-LINE-MIB', 'vdslChanCurr1DayTimeElapsed'), ('VDSL-LINE-MIB', 'vdslChanCurr1DayFixedOctets'), ('VDSL-LINE-MIB', 'vdslChanCurr1DayBadBlks'), ('VDSL-LINE-MIB', 'vdslChanIntervalFixedOctets'), ('VDSL-LINE-MIB', 'vdslChanIntervalBadBlks'), ('VDSL-LINE-MIB', 'vdslChan1DayIntervalMoniSecs'), ('VDSL-LINE-MIB', 'vdslChan1DayIntervalFixedOctets'), ('VDSL-LINE-MIB', 'vdslChan1DayIntervalBadBlks'), ('VDSL-LINE-MIB', 'vdslLineConfDownRateMode'), ('VDSL-LINE-MIB', 'vdslLineConfUpRateMode'), ('VDSL-LINE-MIB', 'vdslLineConfDownMaxPwr'), ('VDSL-LINE-MIB', 'vdslLineConfUpMaxPwr'), ('VDSL-LINE-MIB', 'vdslLineConfDownMaxSnrMgn'), ('VDSL-LINE-MIB', 'vdslLineConfDownMinSnrMgn'), ('VDSL-LINE-MIB', 'vdslLineConfDownTargetSnrMgn'), ('VDSL-LINE-MIB', 'vdslLineConfUpMaxSnrMgn'), ('VDSL-LINE-MIB', 'vdslLineConfUpMinSnrMgn'), ('VDSL-LINE-MIB', 'vdslLineConfUpTargetSnrMgn'), ('VDSL-LINE-MIB', 'vdslLineConfDownFastMaxDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfDownFastMinDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfDownSlowMaxDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfDownSlowMinDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfUpFastMaxDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfUpFastMinDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfUpSlowMaxDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfUpSlowMinDataRate'), ('VDSL-LINE-MIB', 'vdslLineConfDownRateRatio'), ('VDSL-LINE-MIB', 'vdslLineConfUpRateRatio'), ('VDSL-LINE-MIB', 'vdslLineConfDownMaxInterDelay'), ('VDSL-LINE-MIB', 'vdslLineConfUpMaxInterDelay'), ('VDSL-LINE-MIB', 'vdslLineConfDownPboControl'), ('VDSL-LINE-MIB', 'vdslLineConfUpPboControl'), ('VDSL-LINE-MIB', 'vdslLineConfDownPboLevel'), ('VDSL-LINE-MIB', 'vdslLineConfUpPboLevel'), ('VDSL-LINE-MIB', 'vdslLineConfDeploymentScenario'), ('VDSL-LINE-MIB', 'vdslLineConfAdslPresence'), ('VDSL-LINE-MIB', 'vdslLineConfApplicableStandard'), ('VDSL-LINE-MIB', 'vdslLineConfBandPlan'), ('VDSL-LINE-MIB', 'vdslLineConfBandPlanFx'), ('VDSL-LINE-MIB', 'vdslLineConfBandOptUsage'), ('VDSL-LINE-MIB', 'vdslLineConfUpPsdTemplate'), ('VDSL-LINE-MIB', 'vdslLineConfDownPsdTemplate'), ('VDSL-LINE-MIB', 'vdslLineConfHamBandMask'), ('VDSL-LINE-MIB', 'vdslLineConfCustomNotch1Start'), ('VDSL-LINE-MIB', 'vdslLineConfCustomNotch1Stop'), ('VDSL-LINE-MIB', 'vdslLineConfCustomNotch2Start'), ('VDSL-LINE-MIB', 'vdslLineConfCustomNotch2Stop'), ('VDSL-LINE-MIB', 'vdslLineConfDownTargetSlowBurst'), ('VDSL-LINE-MIB', 'vdslLineConfUpTargetSlowBurst'), ('VDSL-LINE-MIB', 'vdslLineConfDownMaxFastFec'), ('VDSL-LINE-MIB', 'vdslLineConfUpMaxFastFec'), ('VDSL-LINE-MIB', 'vdslLineConfLineType'), ('VDSL-LINE-MIB', 'vdslLineConfProfRowStatus'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinLofs'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinLoss'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinLprs'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinLols'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinESs'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinSESs'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfThresh15MinUASs'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfInitFailure'), ('VDSL-LINE-MIB', 'vdslLineAlarmConfProfRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vdsl_group = vdslGroup.setStatus('current')
if mibBuilder.loadTexts:
vdslGroup.setDescription('A collection of objects providing information about a VDSL Line.')
vdsl_notification_group = notification_group((1, 3, 6, 1, 2, 1, 10, 97, 1, 3, 1, 2)).setObjects(('VDSL-LINE-MIB', 'vdslPerfLofsThreshNotification'), ('VDSL-LINE-MIB', 'vdslPerfLossThreshNotification'), ('VDSL-LINE-MIB', 'vdslPerfLprsThreshNotification'), ('VDSL-LINE-MIB', 'vdslPerfLolsThreshNotification'), ('VDSL-LINE-MIB', 'vdslPerfESsThreshNotification'), ('VDSL-LINE-MIB', 'vdslPerfSESsThreshNotification'), ('VDSL-LINE-MIB', 'vdslPerfUASsThreshNotification'), ('VDSL-LINE-MIB', 'vdslDownMaxSnrMgnNotification'), ('VDSL-LINE-MIB', 'vdslDownMinSnrMgnNotification'), ('VDSL-LINE-MIB', 'vdslUpMaxSnrMgnNotification'), ('VDSL-LINE-MIB', 'vdslUpMinSnrMgnNotification'), ('VDSL-LINE-MIB', 'vdslInitFailureNotification'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vdsl_notification_group = vdslNotificationGroup.setStatus('current')
if mibBuilder.loadTexts:
vdslNotificationGroup.setDescription('This group supports notifications of significant conditions associated with VDSL Lines.')
mibBuilder.exportSymbols('VDSL-LINE-MIB', vdslLineConfCustomNotch1Start=vdslLineConfCustomNotch1Start, vdslPerf1DayIntervalMoniSecs=vdslPerf1DayIntervalMoniSecs, vdslPerf1DayIntervalTable=vdslPerf1DayIntervalTable, vdslPerfLofsThreshNotification=vdslPerfLofsThreshNotification, vdslPerfIntervalTable=vdslPerfIntervalTable, vdslLineAlarmConfProfileName=vdslLineAlarmConfProfileName, vdslPerfDataCurr15MinLols=vdslPerfDataCurr15MinLols, vdslChan1DayIntervalNumber=vdslChan1DayIntervalNumber, vdslPerfData1DayValidIntervals=vdslPerfData1DayValidIntervals, vdslLineCoding=vdslLineCoding, vdslChan1DayIntervalEntry=vdslChan1DayIntervalEntry, vdslLineAlarmConfThresh15MinUASs=vdslLineAlarmConfThresh15MinUASs, vdslPerfDataLoss=vdslPerfDataLoss, vdslPerfLolsThreshNotification=vdslPerfLolsThreshNotification, vdslLineConfUpMaxPwr=vdslLineConfUpMaxPwr, vdslPerfDataCurr15MinSESs=vdslPerfDataCurr15MinSESs, vdslPhysInvVersionNumber=vdslPhysInvVersionNumber, vdslPerf1DayIntervalESs=vdslPerf1DayIntervalESs, vdslChanInterleaveDelay=vdslChanInterleaveDelay, vdslPerfLprsThreshNotification=vdslPerfLprsThreshNotification, vdslLineConfUpPboControl=vdslLineConfUpPboControl, vdslPerfDataCurr1DayInits=vdslPerfDataCurr1DayInits, vdslLineConfUpMaxInterDelay=vdslLineConfUpMaxInterDelay, vdslLineMibCompliance=vdslLineMibCompliance, vdslPerfIntervalLols=vdslPerfIntervalLols, PYSNMP_MODULE_ID=vdslMIB, vdslLineConfDownMaxPwr=vdslLineConfDownMaxPwr, vdslLineConfBandPlanFx=vdslLineConfBandPlanFx, vdslPerfDataCurr15MinUASs=vdslPerfDataCurr15MinUASs, vdslPerf1DayIntervalLols=vdslPerf1DayIntervalLols, vdslLineConfUpPsdTemplate=vdslLineConfUpPsdTemplate, vdslPerfDataLprs=vdslPerfDataLprs, vdslPerfDataESs=vdslPerfDataESs, vdslPhysCurrLineRate=vdslPhysCurrLineRate, vdslDownMaxSnrMgnNotification=vdslDownMaxSnrMgnNotification, vdslChan1DayIntervalMoniSecs=vdslChan1DayIntervalMoniSecs, vdslChan1DayValidIntervals=vdslChan1DayValidIntervals, vdslLineAlarmConfThresh15MinLols=vdslLineAlarmConfThresh15MinLols, vdslPhysCurrAtn=vdslPhysCurrAtn, vdslLineConfDownPboControl=vdslLineConfDownPboControl, vdslLineConfProfile=vdslLineConfProfile, vdslLineConfDownSlowMinDataRate=vdslLineConfDownSlowMinDataRate, vdslLineConfDownRateRatio=vdslLineConfDownRateRatio, vdslPhysTable=vdslPhysTable, vdslLineConfUpMaxFastFec=vdslLineConfUpMaxFastFec, vdslChanCurrTxSlowBurstProtect=vdslChanCurrTxSlowBurstProtect, vdslPerfDataCurr15MinLprs=vdslPerfDataCurr15MinLprs, vdslLineConfUpFastMinDataRate=vdslLineConfUpFastMinDataRate, vdslChanPerfDataEntry=vdslChanPerfDataEntry, vdslLineConfLineType=vdslLineConfLineType, vdslLineConfProfileEntry=vdslLineConfProfileEntry, vdslLineConfCustomNotch2Start=vdslLineConfCustomNotch2Start, vdslLineConfProfRowStatus=vdslLineConfProfRowStatus, vdslLineConfDownMinSnrMgn=vdslLineConfDownMinSnrMgn, vdslPerfDataCurr15MinLoss=vdslPerfDataCurr15MinLoss, vdslPerfIntervalUASs=vdslPerfIntervalUASs, vdslConformance=vdslConformance, vdslLineAlarmConfThresh15MinESs=vdslLineAlarmConfThresh15MinESs, vdslChanIntervalBadBlks=vdslChanIntervalBadBlks, vdslChanCurrTxRate=vdslChanCurrTxRate, vdslLineMib=vdslLineMib, vdslLineConfUpRateMode=vdslLineConfUpRateMode, vdslChanCurr1DayFixedOctets=vdslChanCurr1DayFixedOctets, vdslLineConfApplicableStandard=vdslLineConfApplicableStandard, vdslPerfIntervalLofs=vdslPerfIntervalLofs, vdslLineAlarmConfThresh15MinSESs=vdslLineAlarmConfThresh15MinSESs, vdslChanTable=vdslChanTable, vdslGroup=vdslGroup, vdslChanEntry=vdslChanEntry, vdslLineAlarmConfInitFailure=vdslLineAlarmConfInitFailure, vdslPerfDataCurr15MinTimeElapsed=vdslPerfDataCurr15MinTimeElapsed, vdslChanIntervalNumber=vdslChanIntervalNumber, vdslChanBadBlks=vdslChanBadBlks, vdslPhysCurrOutputPwr=vdslPhysCurrOutputPwr, vdslPerfDataCurr1DayESs=vdslPerfDataCurr1DayESs, vdslLineConfUpRateRatio=vdslLineConfUpRateRatio, vdslPerfSESsThreshNotification=vdslPerfSESsThreshNotification, vdslNotificationGroup=vdslNotificationGroup, vdslPhysCurrStatus=vdslPhysCurrStatus, vdslUpMaxSnrMgnNotification=vdslUpMaxSnrMgnNotification, vdslPerf1DayIntervalEntry=vdslPerf1DayIntervalEntry, vdslChanCurr15MinTimeElapsed=vdslChanCurr15MinTimeElapsed, vdslLineAlarmConfProfile=vdslLineAlarmConfProfile, vdslPhysCurrSnrMgn=vdslPhysCurrSnrMgn, vdslLineConfProfileName=vdslLineConfProfileName, vdslChanCurrTxFastFec=vdslChanCurrTxFastFec, vdslLineAlarmConfProfRowStatus=vdslLineAlarmConfProfRowStatus, VdslLineEntity=VdslLineEntity, vdslLineConfDownFastMinDataRate=vdslLineConfDownFastMinDataRate, vdslPerfDataInits=vdslPerfDataInits, vdslLineAlarmConfThresh15MinLoss=vdslLineAlarmConfThresh15MinLoss, vdslPerf1DayIntervalSESs=vdslPerf1DayIntervalSESs, vdslChanIntervalEntry=vdslChanIntervalEntry, vdslLineConfUpMaxSnrMgn=vdslLineConfUpMaxSnrMgn, vdslLineConfDownPsdTemplate=vdslLineConfDownPsdTemplate, vdslChanCurr15MinBadBlks=vdslChanCurr15MinBadBlks, vdslLineConfDownPboLevel=vdslLineConfDownPboLevel, vdslPerf1DayIntervalLoss=vdslPerf1DayIntervalLoss, vdslLineConfDownFastMaxDataRate=vdslLineConfDownFastMaxDataRate, vdslPerfDataTable=vdslPerfDataTable, vdslPerfDataEntry=vdslPerfDataEntry, vdslLineConfCustomNotch2Stop=vdslLineConfCustomNotch2Stop, vdslLineConfDownMaxSnrMgn=vdslLineConfDownMaxSnrMgn, vdslUpMinSnrMgnNotification=vdslUpMinSnrMgnNotification, vdslPerfDataLofs=vdslPerfDataLofs, vdslChanInvalidIntervals=vdslChanInvalidIntervals, vdslPerf1DayIntervalLprs=vdslPerf1DayIntervalLprs, vdslChanCurr15MinFixedOctets=vdslChanCurr15MinFixedOctets, vdslChanCurr1DayBadBlks=vdslChanCurr1DayBadBlks, vdslPhysInvSerialNumber=vdslPhysInvSerialNumber, vdslPerfDataCurr1DayLoss=vdslPerfDataCurr1DayLoss, vdslPerf1DayIntervalInits=vdslPerf1DayIntervalInits, vdslLineAlarmConfThresh15MinLprs=vdslLineAlarmConfThresh15MinLprs, vdslLineTable=vdslLineTable, vdslChanCrcBlockLength=vdslChanCrcBlockLength, vdslLineConfDownSlowMaxDataRate=vdslLineConfDownSlowMaxDataRate, vdslPhysSide=vdslPhysSide, vdslChanPerfDataTable=vdslChanPerfDataTable, vdslLineConfUpFastMaxDataRate=vdslLineConfUpFastMaxDataRate, vdslLineConfDownMaxFastFec=vdslLineConfDownMaxFastFec, vdslPerfDataUASs=vdslPerfDataUASs, vdslGroups=vdslGroups, vdslCompliances=vdslCompliances, vdslPerfIntervalSESs=vdslPerfIntervalSESs, vdslLineConfDownTargetSlowBurst=vdslLineConfDownTargetSlowBurst, vdslPerfLossThreshNotification=vdslPerfLossThreshNotification, vdslLineConfBandPlan=vdslLineConfBandPlan, vdslPerfDataCurr15MinLofs=vdslPerfDataCurr15MinLofs, vdslPerfESsThreshNotification=vdslPerfESsThreshNotification, vdslPerfIntervalLoss=vdslPerfIntervalLoss, vdslPerfDataValidIntervals=vdslPerfDataValidIntervals, vdslPhysInvVendorID=vdslPhysInvVendorID, vdslLineConfUpSlowMinDataRate=vdslLineConfUpSlowMinDataRate, vdslPerfDataCurr15MinESs=vdslPerfDataCurr15MinESs, vdslLineConfDeploymentScenario=vdslLineConfDeploymentScenario, vdslPerfDataCurr1DayLofs=vdslPerfDataCurr1DayLofs, vdslPerf1DayIntervalNumber=vdslPerf1DayIntervalNumber, vdslLineConfDownRateMode=vdslLineConfDownRateMode, vdslLineAlarmConfProfileEntry=vdslLineAlarmConfProfileEntry, vdslPerfDataCurr15MinInits=vdslPerfDataCurr15MinInits, vdslPerfDataCurr1DayLprs=vdslPerfDataCurr1DayLprs, vdslPerfDataCurr1DayLols=vdslPerfDataCurr1DayLols, vdslPerfIntervalLprs=vdslPerfIntervalLprs, vdslLineConfUpPboLevel=vdslLineConfUpPboLevel, vdslPerf1DayIntervalLofs=vdslPerf1DayIntervalLofs, vdslPerfIntervalEntry=vdslPerfIntervalEntry, vdslLineConfHamBandMask=vdslLineConfHamBandMask, vdslLineAlarmConfThresh15MinLofs=vdslLineAlarmConfThresh15MinLofs, vdslPhysCurrAttainableRate=vdslPhysCurrAttainableRate, vdslPerfDataCurr1DaySESs=vdslPerfDataCurr1DaySESs, vdslPerf1DayIntervalUASs=vdslPerf1DayIntervalUASs, vdslMibObjects=vdslMibObjects, vdslPerfDataInvalidIntervals=vdslPerfDataInvalidIntervals, vdslChanIntervalFixedOctets=vdslChanIntervalFixedOctets, vdslChan1DayIntervalTable=vdslChan1DayIntervalTable, vdslLineConfBandOptUsage=vdslLineConfBandOptUsage, vdslPerfIntervalNumber=vdslPerfIntervalNumber, vdslDownMinSnrMgnNotification=vdslDownMinSnrMgnNotification, vdslLineAlarmConfProfileTable=vdslLineAlarmConfProfileTable, vdslChan1DayIntervalFixedOctets=vdslChan1DayIntervalFixedOctets, vdslChanFixedOctets=vdslChanFixedOctets, vdslLineConfProfileTable=vdslLineConfProfileTable, vdslInitFailureNotification=vdslInitFailureNotification, vdslLineConfUpTargetSlowBurst=vdslLineConfUpTargetSlowBurst, vdslChanValidIntervals=vdslChanValidIntervals, vdslLineConfUpTargetSnrMgn=vdslLineConfUpTargetSnrMgn, vdslPhysEntry=vdslPhysEntry, vdslPerfData1DayInvalidIntervals=vdslPerfData1DayInvalidIntervals, vdslChan1DayInvalidIntervals=vdslChan1DayInvalidIntervals, vdslChanIntervalTable=vdslChanIntervalTable, vdslPerfDataSESs=vdslPerfDataSESs, vdslLineConfUpSlowMaxDataRate=vdslLineConfUpSlowMaxDataRate, vdslPerfIntervalESs=vdslPerfIntervalESs, VdslLineCodingType=VdslLineCodingType, vdslChan1DayIntervalBadBlks=vdslChan1DayIntervalBadBlks, vdslLineConfDownMaxInterDelay=vdslLineConfDownMaxInterDelay, vdslLineConfCustomNotch1Stop=vdslLineConfCustomNotch1Stop, vdslLineType=vdslLineType, vdslLineConfDownTargetSnrMgn=vdslLineConfDownTargetSnrMgn, vdslPerfIntervalInits=vdslPerfIntervalInits, vdslLineConfUpMinSnrMgn=vdslLineConfUpMinSnrMgn, vdslPerfDataCurr1DayTimeElapsed=vdslPerfDataCurr1DayTimeElapsed, vdslLineEntry=vdslLineEntry, vdslNotifications=vdslNotifications, vdslChanCurr1DayTimeElapsed=vdslChanCurr1DayTimeElapsed, vdslPerfDataCurr1DayUASs=vdslPerfDataCurr1DayUASs, vdslLineConfAdslPresence=vdslLineConfAdslPresence, vdslMIB=vdslMIB, vdslPerfUASsThreshNotification=vdslPerfUASsThreshNotification, vdslPerfDataLols=vdslPerfDataLols) |
n = int(input())
a = [[0] * n for i in range(n)]
for i in range(n):
for j in range(n):
a[i][j] = abs(i - j)
for line in a:
print(*line) | n = int(input())
a = [[0] * n for i in range(n)]
for i in range(n):
for j in range(n):
a[i][j] = abs(i - j)
for line in a:
print(*line) |
#
# This file contains the Python code from Program 7.17 of
# "Data Structures and Algorithms
# with Object-Oriented Design Patterns in Python"
# by Bruno R. Preiss.
#
# Copyright (c) 2003 by Bruno R. Preiss, P.Eng. All rights reserved.
#
# http://www.brpreiss.com/books/opus7/programs/pgm07_17.txt
#
class OrderedListAsLinkedList(OrderedList):
class Cursor(Cursor):
def insertAfter(self, obj):
self._element.insertAfter(obj)
self._list._count += 1
# ...
# ...
| class Orderedlistaslinkedlist(OrderedList):
class Cursor(Cursor):
def insert_after(self, obj):
self._element.insertAfter(obj)
self._list._count += 1 |
def longestPalindromicSubstring(str):
n=len(str)
dp=[[0 for x in range(n)] for y in range(n)]
maxlength,start=1,0
for i in range(n):
dp[i][i]=True
i=0
while i<n-1:
if str[i]==str[i+1]:
dp[i][i+1]=True
start=i
maxlength=2
i+=1
k=3
while k<=n:
i=0
while i<=n-k:
j=i+k-1
if str[i]==str[j] and dp[i+1][j-1]==True:
dp[i][j]=True
if maxlength<k:
start=i
maxlength=k
i+=1
k+=1
print(str[start:start+maxlength])
str=input()
longestPalindromicSubstring(str)
| def longest_palindromic_substring(str):
n = len(str)
dp = [[0 for x in range(n)] for y in range(n)]
(maxlength, start) = (1, 0)
for i in range(n):
dp[i][i] = True
i = 0
while i < n - 1:
if str[i] == str[i + 1]:
dp[i][i + 1] = True
start = i
maxlength = 2
i += 1
k = 3
while k <= n:
i = 0
while i <= n - k:
j = i + k - 1
if str[i] == str[j] and dp[i + 1][j - 1] == True:
dp[i][j] = True
if maxlength < k:
start = i
maxlength = k
i += 1
k += 1
print(str[start:start + maxlength])
str = input()
longest_palindromic_substring(str) |
extensions = []
source_suffix = '.rst'
master_doc = 'index'
project = u'Confit'
copyright = u'2012, Adrian Sampson'
version = '0.1'
release = '0.1.0'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
# -- Options for HTML output ---------------------------------------------------
html_theme = 'default'
html_static_path = ['_static']
htmlhelp_basename = 'Confitdoc'
| extensions = []
source_suffix = '.rst'
master_doc = 'index'
project = u'Confit'
copyright = u'2012, Adrian Sampson'
version = '0.1'
release = '0.1.0'
exclude_patterns = ['_build']
pygments_style = 'sphinx'
html_theme = 'default'
html_static_path = ['_static']
htmlhelp_basename = 'Confitdoc' |
with open("Chinese_c_cpp.txt") as f:
s = f.read() + '\n'
print(repr(s))
| with open('Chinese_c_cpp.txt') as f:
s = f.read() + '\n'
print(repr(s)) |
class Solution:
def longestPalindrome(self, s: str) -> str:
n = len(s)
la = 0
ra = 1
l = 0
r = n
while l < r:
if r - l > ra - la:
ok = True
lt = l
rt = r
while lt < rt:
if s[lt] == s[rt - 1]:
lt += 1
rt -= 1
else:
ok = False
break
if ok:
la = l
ra = r
r -= 1
if l == r:
l += 1
r = n
return s[la:ra]
| class Solution:
def longest_palindrome(self, s: str) -> str:
n = len(s)
la = 0
ra = 1
l = 0
r = n
while l < r:
if r - l > ra - la:
ok = True
lt = l
rt = r
while lt < rt:
if s[lt] == s[rt - 1]:
lt += 1
rt -= 1
else:
ok = False
break
if ok:
la = l
ra = r
r -= 1
if l == r:
l += 1
r = n
return s[la:ra] |
#
# PySNMP MIB module CMC-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CMC-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:25:10 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsIntersection")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, TimeTicks, ObjectIdentity, enterprises, Integer32, MibIdentifier, Counter64, NotificationType, Unsigned32, iso, Bits, ModuleIdentity, Gauge32 = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "TimeTicks", "ObjectIdentity", "enterprises", "Integer32", "MibIdentifier", "Counter64", "NotificationType", "Unsigned32", "iso", "Bits", "ModuleIdentity", "Gauge32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
class NetNumber(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(4, 4)
fixedLength = 4
class IpxAddress(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(14, 14)
fixedLength = 14
cmc = MibIdentifier((1, 3, 6, 1, 4, 1, 44))
cmc_prod = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 1)).setLabel("cmc-prod")
cmc_adapt = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 1, 1)).setLabel("cmc-adapt")
cmc_system = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 1, 2)).setLabel("cmc-system")
cmc_soft = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 1, 3)).setLabel("cmc-soft")
cmc_mgmt = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2)).setLabel("cmc-mgmt")
cmc_mib = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1)).setLabel("cmc-mib")
cmc_trapA = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 6)).setLabel("cmc-trapA")
cmc_trapB = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6)).setLabel("cmc-trapB")
cmc_trapC = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5)).setLabel("cmc-trapC")
cmc_trapD = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3)).setLabel("cmc-trapD")
cmc_trapE = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3, 10)).setLabel("cmc-trapE")
cmc_ip = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 4)).setLabel("cmc-ip")
cmc_ipx = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5)).setLabel("cmc-ipx")
cmc_ipx_ipx = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1)).setLabel("cmc-ipx-ipx")
cmc_ipx_ipxSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1)).setLabel("cmc-ipx-ipxSystem")
cmc_ipx_ipxCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2)).setLabel("cmc-ipx-ipxCircuit")
cmc_ipx_ipxForwarding = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3)).setLabel("cmc-ipx-ipxForwarding")
cmc_ipx_ipxServices = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4)).setLabel("cmc-ipx-ipxServices")
cmc_ipx_filter = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2)).setLabel("cmc-ipx-filter")
cmc_ipx_filt_packet = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2)).setLabel("cmc-ipx-filt-packet")
cmc_ipx_filt_rip = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4)).setLabel("cmc-ipx-filt-rip")
cmc_ipx_filt_sap = MibIdentifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6)).setLabel("cmc-ipx-filt-sap")
cmcIpInAdminDiscards = MibScalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cmcIpInAdminDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpInAdminDiscards.setDescription('The number of incoming datagrams dropped due to administrative prohibitions.')
cmcIpOutAdminDiscards = MibScalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cmcIpOutAdminDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpOutAdminDiscards.setDescription('The number of outgoing datagrams dropped due to administrative prohibitions.')
cmcIpFiltStatus = MibScalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltStatus.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltStatus.setDescription('The status of IP Filtering.')
cmcIpFilterTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5), )
if mibBuilder.loadTexts: cmcIpFilterTable.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFilterTable.setDescription('A list of IP Filter table entries.')
cmcIpFiltEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1), ).setIndexNames((0, "CMC-MIB", "cmcIpFiltName"))
if mibBuilder.loadTexts: cmcIpFiltEntry.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltEntry.setDescription('An IP Filter table entry containing objects that describe datagram transmission/reception restrictions. Creation of an IP Filter table entry requires the presence of the cmcIpFiltName and cmcIpFiltMode objects along with at least one of the following objects: cmcIpFiltSAddr cmcIpFiltSPort cmcIpFiltDAddr cmcIpFiltDPort cmcIpFiltProto cmcIpFiltIfIndex')
cmcIpFiltName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltName.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltName.setDescription('Name of filter entry. This is an ASCII string up to 6 octets long.')
cmcIpFiltPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cmcIpFiltPriority.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmcIpFiltSAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltSAddr.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltSAddr.setDescription('Source IP address for the filter entry')
cmcIpFiltSMask = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltSMask.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltSMask.setDescription('Source IP mask for the filter entry.')
cmcIpFiltSPort = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltSPort.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltSPort.setDescription('Source port for the filter entry.')
cmcIpFiltDAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 6), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltDAddr.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltDAddr.setDescription('Destination IP address for the filter entry.')
cmcIpFiltDMask = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 7), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltDMask.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltDMask.setDescription('Destination IP mask for the filter entry.')
cmcIpFiltDPort = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltDPort.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltDPort.setDescription('Destination port for the filter entry.')
cmcIpFiltProto = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltProto.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltProto.setDescription('Protocol to filter.')
cmcIpFiltMode = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("allow", 1), ("deny", 2), ("nodial", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltMode.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltMode.setDescription('Mode of the filter entry.')
cmcIpFiltErrMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltErrMsg.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltErrMsg.setDescription('Configuration object used to control the transmission of ICMP error messages when datagrams are administratively filtered.')
cmcIpFiltType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("local", 1), ("invalid", 2), ("netmgmt", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltType.setDescription('The type of the IP Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpFilterTable. The invalid(2) value is not supported for row creates. The netmgt(3) value is the default value for row creates.')
cmcIpFiltMoveOper = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 13), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltMoveOper.setDescription('Configuration object used to move IP Filter table entries (to obtain a different priority for the entry). Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octets 1 - 6 contain an existing IP Filter Entry name.')
cmcIpFiltUseCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 14), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltUseCount.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltUseCount.setDescription('The number of times the IP Filter Table entry has been referenced.')
cmcIpFiltDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("both", 1), ("incoming", 2), ("outgoing", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltDirection.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltDirection.setDescription('The flow direction for the filter entry.')
cmcIpFiltIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpFiltIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpFiltIfIndex.setDescription('The interface index associated with the filter entry. This value is equivalent to the ifIndex object.')
cmcConnectionEstablished = NotificationType((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3, 10) + (0,1))
if mibBuilder.loadTexts: cmcConnectionEstablished.setDescription('A cmcConnectionEstablished(1) trap is generated when a wide area network connection is established on a dynamic link. The variable-binding contains the ifIndex value of the effected interface.')
cmcConnectionTerminated = NotificationType((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3, 10) + (0,2))
if mibBuilder.loadTexts: cmcConnectionTerminated.setDescription('A cmcConnectionTerminated(2) trap is generated when a wide area network connection is terminated on a dynamic link. The variable-binding contains the ifIndex value of the effected interface.')
ipxSysTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1), )
if mibBuilder.loadTexts: ipxSysTable.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysTable.setDescription('The IPX System table.')
ipxSysEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1), ).setIndexNames((0, "CMC-MIB", "ipxSysInstance"))
if mibBuilder.loadTexts: ipxSysEntry.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysEntry.setDescription('Each entry corresponds to one instance of IPX running on the system.')
ipxSysInstance = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInstance.setDescription('The unique identifier of the instance of IPX to which this row corresponds. The value may be written only when creating a new entry in the table.')
ipxSysExistState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxSysExistState.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysExistState.setDescription("The validity of this entry in the IPX system table. Setting this field to off indicates that this entry may be deleted from the system table at the IPX implementation's discretion.")
ipxSysIntNetNumExists = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysIntNetNumExists.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysIntNetNumExists.setDescription('Indicates whether this instance of IPX has an internal network number.')
ipxSysIntNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 4), NetNumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxSysIntNetNum.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysIntNetNum.setDescription('The IPX internal network number of this instance of IPX. This value is undefined if the value of ipxSysIntNetNumExists is no.')
ipxSysName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 48))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxSysName.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysName.setDescription('The readable name for this system.')
ipxSysMaxPathSplits = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxSysMaxPathSplits.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysMaxPathSplits.setDescription('The maximum number of path with equal routing metric value which this instance of IPX may split between when forwarding packets.')
ipxSysMaxHops = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxSysMaxHops.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysMaxHops.setDescription('The maximum number of hops a packet may take.')
ipxSysVersionMajor = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysVersionMajor.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysVersionMajor.setDescription('The major version number of IPX supported.')
ipxSysVersionMinor = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysVersionMinor.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysVersionMinor.setDescription('The minor version number of IPX supported.')
ipxSysInReceives = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInReceives.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInReceives.setDescription('The total number of IPX packets received, including those received in error.')
ipxSysInTooManyHops = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInTooManyHops.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInTooManyHops.setDescription('The number of IPX packets discarded due to exceeding the maximum hop count.')
ipxSysInHdrErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInHdrErrors.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInHdrErrors.setDescription('The number of IPX packets discarded due to errors in their headers, including any IPX packet with a size less than the minimum of 30 bytes.')
ipxSysInUnknownSockets = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInUnknownSockets.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInUnknownSockets.setDescription('The number of IPX packets discarded because the destination socket was not open.')
ipxSysInFiltered = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInFiltered.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInFiltered.setDescription('The number of incoming IPX packets discarded due to filtering.')
ipxSysInCompressDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInCompressDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInCompressDiscards.setDescription('The number of incoming IPX packets discarded due to decompression errors.')
ipxSysInDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInDiscards.setDescription('The number of IPX packets received but discarded die to processing decision.')
ipxSysInDelivers = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysInDelivers.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysInDelivers.setDescription('The total number of IPX packets delivered locally, including packets from local applications.')
ipxSysNETBIOSPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysNETBIOSPackets.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysNETBIOSPackets.setDescription('Number of NETBIOS packets.')
ipxSysForwPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysForwPackets.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysForwPackets.setDescription('The number of IPX packets forwarded.')
ipxSysOutRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutRequests.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutRequests.setDescription('The number of IPX packets supplied locally for transmission, not including any packets counted in ipxForwPackets.')
ipxSysOutNoRoutes = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutNoRoutes.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutNoRoutes.setDescription('The number of outgoing IPX packets discarded because no route was found.')
ipxSysOutFiltered = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutFiltered.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutFiltered.setDescription('The number of outgoing IPX packets discarded due to filtering.')
ipxSysOutCompressDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutCompressDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutCompressDiscards.setDescription('The number of outgoing IPX packets discarded due to compression errors.')
ipxSysOutMalformedRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutMalformedRequests.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutMalformedRequests.setDescription('The number of IPX packets supplied locally contained errors in their structure.')
ipxSysOutDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutDiscards.setDescription('The number of outgoing IPX packets discarded due to processing decision.')
ipxSysOutPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOutPackets.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOutPackets.setDescription('The total number of IPX packets transmitted.')
ipxSysCircCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysCircCount.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysCircCount.setDescription('The number of circuits known to this instance of IPX.')
ipxSysDestCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysDestCount.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysDestCount.setDescription('The number of currently reachable destinations known to this instance of IPX.')
ipxSysServCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysServCount.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysServCount.setDescription('The number of services known to this instance of IPX.')
ipxSysResourceFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysResourceFailures.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysResourceFailures.setDescription('The number of times this instance of IPX has been unable to obtain needed resources (memory, etc.).')
ipxSysConfigSockets = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysConfigSockets.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysConfigSockets.setDescription('The configured maximum number of sockets that may be opened at one time.')
ipxSysMaxOpenSockets = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 32), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysMaxOpenSockets.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysMaxOpenSockets.setDescription('The maximum number of IPX sockets actually open at one time by this system.')
ipxSysOpenSocketFails = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 33), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxSysOpenSocketFails.setStatus('mandatory')
if mibBuilder.loadTexts: ipxSysOpenSocketFails.setDescription('The number of IPX soclet open calls which failed.')
ipxCircTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1), )
if mibBuilder.loadTexts: ipxCircTable.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircTable.setDescription('The Circuit Table.')
ipxCircEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1), ).setIndexNames((0, "CMC-MIB", "ipxCircSysInstance"), (0, "CMC-MIB", "ipxCircIndex"))
if mibBuilder.loadTexts: ipxCircEntry.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircEntry.setDescription('Each entry corresponds to one circuit known to the system.')
ipxCircSysInstance = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircSysInstance.setDescription('The unique identifier of the instance of IPX to which this entry corresponds. This value may be written only when creating a new entry in the table.')
ipxCircIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircIndex.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircIndex.setDescription('The identifier of ths circuit, unique within the instance of IPX. This value may be written only when creating a new table entry.')
ipxCircExistState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircExistState.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircExistState.setDescription("The validity of this circuit entry. A circuit with this value set to off may be deleted from the table at the IPX implementation's discretion.")
ipxCircOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircOperState.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircOperState.setDescription('The operational state of the circuit.')
ipxCircIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircIfIndex.setDescription('The value of IfIndex for the interface used by this circuit. This value may be written only when creating a new entry in the table.')
ipxCircName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 6), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircName.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircName.setDescription('The readable name for the circuit.')
ipxCircInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircInfo.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircInfo.setDescription('Additional readable information for the circuit. The content of this field is implementation defined.')
ipxCircType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("other", 1), ("broadcast", 2), ("ptTopt", 3), ("wanRIP", 4), ("unnumberedRIP", 5), ("dynamic", 6), ("wanWS", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircType.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircType.setDescription('The type of the circuit.')
ipxCircLocalMaxPacketSize = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircLocalMaxPacketSize.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircLocalMaxPacketSize.setDescription('The maximum size (including header), in bytes, that the system supports locally in this circuit.')
ipxCircCompressState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircCompressState.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircCompressState.setDescription('The compression state on the circuit. This value may be written only when creating a new entry in the table.')
ipxCircCompressSlots = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 11), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxCircCompressSlots.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircCompressSlots.setDescription('The number of compression slots available on this circuit. This value may be written only when creating a new entry in the table.')
ipxCircCompressedSent = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircCompressedSent.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircCompressedSent.setDescription('The number of compressed packets sent.')
ipxCircUncompressedSent = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircUncompressedSent.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircUncompressedSent.setDescription('The number of packets sent without being compressed even though compression was turned on for this circuit.')
ipxCircMediaType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircMediaType.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircMediaType.setDescription('The media type used on this circuit.')
ipxCircNetNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 15), NetNumber()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircNetNumber.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircNetNumber.setDescription('The IPX network number to which this circuit is bound.')
ipxCircStateChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircStateChanges.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircStateChanges.setDescription('The number of times the circuit has changed state.')
ipxCircInitFails = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircInitFails.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircInitFails.setDescription('The number of times that initialization of this circuit has failed.')
ipxCircDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircDelay.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircDelay.setDescription('The period of time, in milliseconds, that it takes to transmit one byte of data, excluding protocol headers, to a destination on the other end of the circuit, if the circuit is free of other traffic.')
ipxCircThroughput = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 19), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxCircThroughput.setStatus('mandatory')
if mibBuilder.loadTexts: ipxCircThroughput.setDescription('The amount of data, in bits per second, that may flow through the circuit if there is no other traffic.')
ipxDestTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1), )
if mibBuilder.loadTexts: ipxDestTable.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestTable.setDescription('The Destination Table contains information about all known destinations.')
ipxDestEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1), ).setIndexNames((0, "CMC-MIB", "ipxDestSysInstance"), (0, "CMC-MIB", "ipxDestNetNum"))
if mibBuilder.loadTexts: ipxDestEntry.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestEntry.setDescription('Each entry corresponds to one destination.')
ipxDestSysInstance = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestSysInstance.setDescription('The unique identifier of the instance of IPX to which this row corresponds. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 2), NetNumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestNetNum.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestNetNum.setDescription('The IPX network number of the destination. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("local", 2), ("rip", 3), ("nlsp", 4), ("static", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestProtocol.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestProtocol.setDescription('The routing protocol from which knowledge of this destination was obtained. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestCost = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestCost.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestCost.setDescription('The cost to reach this destination. The meaning of the cost value is dependent on the routing protocol (i.e. Cost = delay in ticks for RIP, Cost = total path default cost for NLSP, etc.). This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestHopCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestHopCount.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestHopCount.setDescription('The number of hops necessary to reach the destination. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestNextHopCircIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestNextHopCircIndex.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestNextHopCircIndex.setDescription('The unique identifier of the circuit used to read the next hop. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestNextHopNICAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestNextHopNICAddress.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestNextHopNICAddress.setDescription('The NIC address of the next hop. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestNextHopNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 8), NetNumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxDestNextHopNetNum.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestNextHopNetNum.setDescription('The IPX network number of the next hop. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipxDestType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 5))).clone(namedValues=NamedValues(("unknown", 1), ("nlspLevel1Router", 2), ("router", 4), ("network", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipxDestType.setStatus('mandatory')
if mibBuilder.loadTexts: ipxDestType.setDescription('Indicates whether the destination is a network of a router.')
ipxServTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1), )
if mibBuilder.loadTexts: ipxServTable.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServTable.setDescription('The table of services, indexed by name and type.')
ipxServEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1), ).setIndexNames((0, "CMC-MIB", "ipxServSysInstance"), (0, "CMC-MIB", "ipxServName"), (0, "CMC-MIB", "ipxServTypeValue"))
if mibBuilder.loadTexts: ipxServEntry.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServEntry.setDescription('Each entry corresponds to one service.')
ipxServSysInstance = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServSysInstance.setDescription('The unique identifier of the instance of IPX to which this entry corresponds. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipxServName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 48))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServName.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServName.setDescription('The service name. This value may be written only when creating entries with value of ipxServProtocol equal to static.')
ipxServTypeValue = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServTypeValue.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServTypeValue.setDescription("The service type's hexadecimal value. This value may be written only when creating entries with the value of ipxServProtocol equal to static.")
ipxServType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("unknown", 1)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServType.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServType.setDescription('The service type. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipxServProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 5, 6))).clone(namedValues=NamedValues(("other", 1), ("local", 2), ("nlsp", 4), ("static", 5), ("sap", 6)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServProtocol.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServProtocol.setDescription('The protocol from which knowledge of this service was obtained. This valuemay be written only when creating entries with ipxServProtocol equal to static.')
ipxServNetNum = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 6), NetNumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServNetNum.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServNetNum.setDescription('The IPX network number portion of the IPX address of the service. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipxServNode = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServNode.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServNode.setDescription('The node portion of the IPX address. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipxServSocket = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipxServSocket.setStatus('mandatory')
if mibBuilder.loadTexts: ipxServSocket.setDescription('The socket portion of the IPX address of the service. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
cmcIpxFiltStatus = MibScalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltStatus.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltStatus.setDescription('The status of IPX Filtering.')
cmcIpxFilterTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1), )
if mibBuilder.loadTexts: cmcIpxFilterTable.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFilterTable.setDescription('A list of IPX Filter table entries.')
cmcIpxFiltEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1), ).setIndexNames((0, "CMC-MIB", "cmcIpxFiltName"))
if mibBuilder.loadTexts: cmcIpxFiltEntry.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltEntry.setDescription('An IPX Filter table entry containing objects that describe ipx packet transmission / reception restrictions. Creation of an IPX Filter table entry requires the presence of the cmcIpxFiltName and cmcIpxFiltMode objects along with at least one of the following objects: cmcIpxFiltSAddr cmcIpxFiltDAddr cmcIpxFiltPktType cmcIpxFiltIfIndex')
cmcIpxFiltName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltName.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltName.setDescription('Name of filter entry. This is an ASCII string up to 6 octets long. This object is required in SET PDUs.')
cmcIpxFiltSAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 2), IpxAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAddr.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAddr.setDescription('Source IPX address. This object is required in SET PDUs.')
cmcIpxFiltDAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 3), IpxAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltDAddr.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltDAddr.setDescription('Destination IPX address. This object is required in SET PDUs.')
cmcIpxFiltPktType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltPktType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltPktType.setDescription('Protocol to filter. This object is required in SET PDUs.')
cmcIpxFiltMode = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("allow", 1), ("deny", 2), ("nodial", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltMode.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltMode.setDescription('Mode of the filter entry. This object is required in SET PDUs.')
cmcIpxFiltType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("local", 1), ("invalid", 2), ("netmgmt", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltType.setDescription('The type of the IPX Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpxFilterTable.')
cmcIpxFiltMoveOper = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 7), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltMoveOper.setDescription('Configuration object used to move IPX Filter table entries. Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octet 1 - 6 contain the IPX Filter Entry name.')
cmcIpxFiltUseCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltUseCount.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltUseCount.setDescription('The number of times the IPX Filter Table entry has been referenced.')
cmcIpxFiltDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("both", 1), ("incoming", 2), ("outgoing", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltDirection.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltDirection.setDescription('The flow direction for the filter entry. This object must be specified along with an interface.')
cmcIpxFiltIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltIfIndex.setDescription('The interface index associated with the filter entry. This value is equivalent to the ifIndex object.')
cmcIpxFiltPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cmcIpxFiltPriority.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmcIpxFiltState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltState.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltState.setDescription('The validity of this entry in the IPX Packet Filter table. Setting this field to off indicates that this entry may be deleted from the table.')
cmcIpxFiltRIPStatus = MibScalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPStatus.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPStatus.setDescription('The status of IPX RIP Filtering.')
cmcIpxFilterRIPTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1), )
if mibBuilder.loadTexts: cmcIpxFilterRIPTable.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFilterRIPTable.setDescription('A list of IPX Filter RIP table entries.')
cmcIpxFiltRIPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1), ).setIndexNames((0, "CMC-MIB", "cmcIpxFiltRIPName"))
if mibBuilder.loadTexts: cmcIpxFiltRIPEntry.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPEntry.setDescription('An IPX RIP Filter table entry containing objects that describe datagram transmission/ reception restrictions. Creation of an IPX RIP Filter table entry requires the presence of the cmcIpxFiltRIPName and cmcIpxFiltRIPMode objects')
cmcIpxFiltRIPName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPName.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPName.setDescription('Name of RIP filter entry. This is an ASCII string up to 6 octets long. This object is required in SET PDUs.')
cmcIpxFiltRIPNetworkNum = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 2), NetNumber()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPNetworkNum.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPNetworkNum.setDescription('Network address. This object is required in SET PDUs.')
cmcIpxFiltRIPMoveOper = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 3), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPMoveOper.setDescription('Configuration object used to move IPX RIP Filter table entries. Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octet 1 - 6 contain the IPX RIP Filter name.')
cmcIpxFiltRIPMode = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("allow", 1), ("deny", 2), ("nodial", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPMode.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPMode.setDescription('Mode of the filter entry. This object is required in SET PDUs.')
cmcIpxFiltRIPType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("local", 1), ("invalid", 2), ("netmgmt", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPType.setDescription('The type of the IPX RIP Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpxFilterRIPTable.')
cmcIpxFiltRIPUseCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPUseCount.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPUseCount.setDescription('The number of times the IPX RIP Filter Table entry has been referenced.')
cmcIpxFiltRIPDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("both", 1), ("incoming", 2), ("outgoing", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPDirection.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPDirection.setDescription('The flow direction for the filter entry. This object must be specified along with an interface.')
cmcIpxFiltRIPQueryType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("request", 1), ("response", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPQueryType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPQueryType.setDescription('The type of packet entry. This object must be specified along with an interface.')
cmcIpxFiltRIPIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPIfIndex.setDescription('The interface index associated with the filter entry.')
cmcIpxFiltRIPPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cmcIpxFiltRIPPriority.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmcIpxFiltRIPState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltRIPState.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltRIPState.setDescription('The validity of this entry in the IPX RIP Filter table. Setting this field to off indicates that this entry may be deleted from the table.')
cmcIpxFiltSAPStatus = MibScalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPStatus.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPStatus.setDescription('The status of IPX SAP Filtering.')
cmcIpxFilterSAPTable = MibTable((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1), )
if mibBuilder.loadTexts: cmcIpxFilterSAPTable.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFilterSAPTable.setDescription('A list of IPX Filter SAP table entries.')
cmcIpxFiltSAPEntry = MibTableRow((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1), ).setIndexNames((0, "CMC-MIB", "cmcIpxFiltSAPName"))
if mibBuilder.loadTexts: cmcIpxFiltSAPEntry.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPEntry.setDescription('An IPX SAP Filter table entry containing objects that describe datagram transmission/ reception restrictions. Creation of an IPX SAP Filter table entry requires the presence of the cmcIpxFiltSAPName and cmcIpxFiltSAPMode objects')
cmcIpxFiltSAPName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 1), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPName.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPName.setDescription('Name of SAP filter entry. This is an ASCII string up to 6 octets long. This object is required in SET PDUs.')
cmcIpxFiltSAPServerName = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 2), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPServerName.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPServerName.setDescription('Name of SAP server.')
cmcIpxFiltSAPServerType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPServerType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPServerType.setDescription('The types of servers to filter.')
cmcIpxFiltSAPMoveOper = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 4), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPMoveOper.setDescription('Configuration object used to move IPX SAP Filter table entries. Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octet 1 - 6 contain the IPX SAP Filter name.')
cmcIpxFiltSAPMode = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("allow", 1), ("deny", 2), ("nodial", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPMode.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPMode.setDescription('Mode of the filter entry. This object is required in SET PDUs.')
cmcIpxFiltSAPType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("local", 1), ("invalid", 2), ("netmgmt", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPType.setDescription('The type of the IPX SAP Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpxFilterSAPTable.')
cmcIpxFiltSAPUseCount = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPUseCount.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPUseCount.setDescription('The number of times the IPX SAP Filter Table entry has been referenced.')
cmcIpxFiltSAPDirection = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("both", 1), ("incoming", 2), ("outgoing", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPDirection.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPDirection.setDescription('The flow direction for the filter entry. This object must be specified along with an interface.')
cmcIpxFiltSAPQueryType = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("request", 1), ("response", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPQueryType.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPQueryType.setDescription('The type of packet entry. This object must be specified along with an interface.')
cmcIpxFiltSAPIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 10), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPIfIndex.setDescription('The interface index associated with the filter entry.')
cmcIpxFiltSAPPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cmcIpxFiltSAPPriority.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmcIpxFiltSAPState = MibTableColumn((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("off", 1), ("on", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cmcIpxFiltSAPState.setStatus('mandatory')
if mibBuilder.loadTexts: cmcIpxFiltSAPState.setDescription('The validity of this entry in the IPX SAP Filter table. Setting this field to off indicates that this entry may be deleted from the table.')
mibBuilder.exportSymbols("CMC-MIB", ipxDestEntry=ipxDestEntry, ipxCircSysInstance=ipxCircSysInstance, ipxCircCompressState=ipxCircCompressState, cmcIpxFiltRIPType=cmcIpxFiltRIPType, ipxSysName=ipxSysName, cmcIpFiltDirection=cmcIpFiltDirection, ipxCircNetNumber=ipxCircNetNumber, ipxSysInHdrErrors=ipxSysInHdrErrors, cmcIpxFiltSAPPriority=cmcIpxFiltSAPPriority, cmcIpxFiltSAddr=cmcIpxFiltSAddr, ipxServEntry=ipxServEntry, cmcIpxFiltSAPServerName=cmcIpxFiltSAPServerName, cmcIpxFiltPktType=cmcIpxFiltPktType, ipxSysOutRequests=ipxSysOutRequests, cmcIpxFiltUseCount=cmcIpxFiltUseCount, ipxCircInitFails=ipxCircInitFails, cmcIpxFilterSAPTable=cmcIpxFilterSAPTable, cmc_prod=cmc_prod, ipxSysOutNoRoutes=ipxSysOutNoRoutes, cmc_ipx_ipxForwarding=cmc_ipx_ipxForwarding, ipxServName=ipxServName, ipxCircMediaType=ipxCircMediaType, cmcIpxFiltSAPMoveOper=cmcIpxFiltSAPMoveOper, cmc_ip=cmc_ip, cmcIpFiltEntry=cmcIpFiltEntry, cmcIpxFiltPriority=cmcIpxFiltPriority, ipxSysOutFiltered=ipxSysOutFiltered, ipxDestNextHopNICAddress=ipxDestNextHopNICAddress, cmcIpFiltSAddr=cmcIpFiltSAddr, ipxServType=ipxServType, ipxSysConfigSockets=ipxSysConfigSockets, cmc_adapt=cmc_adapt, cmcIpxFiltRIPStatus=cmcIpxFiltRIPStatus, ipxCircTable=ipxCircTable, cmcIpxFiltRIPQueryType=cmcIpxFiltRIPQueryType, ipxSysServCount=ipxSysServCount, cmcIpFiltErrMsg=cmcIpFiltErrMsg, ipxSysOutPackets=ipxSysOutPackets, cmcIpxFiltDirection=cmcIpxFiltDirection, ipxServNetNum=ipxServNetNum, cmcIpFilterTable=cmcIpFilterTable, cmcIpFiltSPort=cmcIpFiltSPort, ipxSysOpenSocketFails=ipxSysOpenSocketFails, ipxSysMaxOpenSockets=ipxSysMaxOpenSockets, NetNumber=NetNumber, cmcIpxFiltDAddr=cmcIpxFiltDAddr, ipxCircIfIndex=ipxCircIfIndex, cmc_ipx_filt_packet=cmc_ipx_filt_packet, ipxCircName=ipxCircName, cmcIpxFiltStatus=cmcIpxFiltStatus, cmcIpFiltDMask=cmcIpFiltDMask, cmc_trapA=cmc_trapA, ipxDestCost=ipxDestCost, ipxDestType=ipxDestType, ipxSysMaxHops=ipxSysMaxHops, cmcIpFiltType=cmcIpFiltType, cmc_trapD=cmc_trapD, cmc_ipx_ipxServices=cmc_ipx_ipxServices, cmc_soft=cmc_soft, cmcIpxFiltRIPDirection=cmcIpxFiltRIPDirection, cmcIpxFiltSAPState=cmcIpxFiltSAPState, ipxDestSysInstance=ipxDestSysInstance, cmcIpFiltDAddr=cmcIpFiltDAddr, cmcIpFiltProto=cmcIpFiltProto, cmc_ipx_ipxSystem=cmc_ipx_ipxSystem, cmcIpxFiltState=cmcIpxFiltState, cmcIpxFilterTable=cmcIpxFilterTable, cmcIpFiltMode=cmcIpFiltMode, ipxSysInUnknownSockets=ipxSysInUnknownSockets, cmcIpxFiltIfIndex=cmcIpxFiltIfIndex, cmcIpxFiltName=cmcIpxFiltName, cmcIpxFiltSAPIfIndex=cmcIpxFiltSAPIfIndex, cmcIpxFiltSAPMode=cmcIpxFiltSAPMode, cmcIpxFiltSAPStatus=cmcIpxFiltSAPStatus, ipxCircInfo=ipxCircInfo, ipxDestNetNum=ipxDestNetNum, cmcIpxFiltEntry=cmcIpxFiltEntry, cmcIpxFiltRIPName=cmcIpxFiltRIPName, ipxCircLocalMaxPacketSize=ipxCircLocalMaxPacketSize, ipxSysInstance=ipxSysInstance, cmc_ipx_filter=cmc_ipx_filter, ipxSysInFiltered=ipxSysInFiltered, ipxSysMaxPathSplits=ipxSysMaxPathSplits, ipxSysOutCompressDiscards=ipxSysOutCompressDiscards, cmcIpOutAdminDiscards=cmcIpOutAdminDiscards, cmcIpxFiltSAPServerType=cmcIpxFiltSAPServerType, cmc_ipx_filt_sap=cmc_ipx_filt_sap, cmcIpxFiltRIPState=cmcIpxFiltRIPState, ipxServTable=ipxServTable, ipxSysOutMalformedRequests=ipxSysOutMalformedRequests, cmcIpxFiltSAPName=cmcIpxFiltSAPName, cmcIpFiltUseCount=cmcIpFiltUseCount, ipxSysIntNetNum=ipxSysIntNetNum, ipxSysInDiscards=ipxSysInDiscards, ipxServSysInstance=ipxServSysInstance, cmcConnectionEstablished=cmcConnectionEstablished, ipxSysResourceFailures=ipxSysResourceFailures, cmcIpxFiltMoveOper=cmcIpxFiltMoveOper, ipxCircEntry=ipxCircEntry, cmcIpFiltSMask=cmcIpFiltSMask, cmcIpxFilterRIPTable=cmcIpxFilterRIPTable, ipxCircCompressSlots=ipxCircCompressSlots, cmcIpxFiltSAPUseCount=cmcIpxFiltSAPUseCount, cmc_ipx_ipx=cmc_ipx_ipx, cmcIpxFiltType=cmcIpxFiltType, IpxAddress=IpxAddress, ipxSysInTooManyHops=ipxSysInTooManyHops, cmc_ipx_filt_rip=cmc_ipx_filt_rip, ipxSysNETBIOSPackets=ipxSysNETBIOSPackets, cmcIpxFiltRIPNetworkNum=cmcIpxFiltRIPNetworkNum, cmcIpxFiltSAPType=cmcIpxFiltSAPType, ipxServNode=ipxServNode, cmcIpxFiltSAPDirection=cmcIpxFiltSAPDirection, cmcIpxFiltRIPMode=cmcIpxFiltRIPMode, cmc_trapE=cmc_trapE, ipxSysTable=ipxSysTable, cmcIpxFiltRIPEntry=cmcIpxFiltRIPEntry, cmcIpInAdminDiscards=cmcIpInAdminDiscards, cmcIpFiltMoveOper=cmcIpFiltMoveOper, cmcIpFiltIfIndex=cmcIpFiltIfIndex, ipxServProtocol=ipxServProtocol, ipxSysInCompressDiscards=ipxSysInCompressDiscards, cmcIpFiltStatus=cmcIpFiltStatus, ipxCircCompressedSent=ipxCircCompressedSent, cmc_trapB=cmc_trapB, ipxCircDelay=ipxCircDelay, cmcIpxFiltSAPQueryType=cmcIpxFiltSAPQueryType, ipxSysInDelivers=ipxSysInDelivers, ipxSysInReceives=ipxSysInReceives, ipxDestProtocol=ipxDestProtocol, ipxSysEntry=ipxSysEntry, cmc_system=cmc_system, cmcIpFiltName=cmcIpFiltName, ipxDestNextHopNetNum=ipxDestNextHopNetNum, ipxCircExistState=ipxCircExistState, cmcIpxFiltMode=cmcIpxFiltMode, cmcIpFiltDPort=cmcIpFiltDPort, cmcIpxFiltSAPEntry=cmcIpxFiltSAPEntry, ipxCircIndex=ipxCircIndex, ipxCircStateChanges=ipxCircStateChanges, ipxDestNextHopCircIndex=ipxDestNextHopCircIndex, ipxDestTable=ipxDestTable, cmcIpxFiltRIPUseCount=cmcIpxFiltRIPUseCount, ipxCircThroughput=ipxCircThroughput, cmc=cmc, ipxSysVersionMinor=ipxSysVersionMinor, ipxSysDestCount=ipxSysDestCount, ipxServSocket=ipxServSocket, ipxSysOutDiscards=ipxSysOutDiscards, cmc_mib=cmc_mib, cmcIpxFiltRIPPriority=cmcIpxFiltRIPPriority, cmcConnectionTerminated=cmcConnectionTerminated, ipxSysVersionMajor=ipxSysVersionMajor, cmc_ipx=cmc_ipx, ipxDestHopCount=ipxDestHopCount, cmcIpFiltPriority=cmcIpFiltPriority, cmc_mgmt=cmc_mgmt, ipxCircOperState=ipxCircOperState, ipxSysIntNetNumExists=ipxSysIntNetNumExists, ipxCircType=ipxCircType, ipxSysForwPackets=ipxSysForwPackets, ipxSysCircCount=ipxSysCircCount, ipxCircUncompressedSent=ipxCircUncompressedSent, cmcIpxFiltRIPMoveOper=cmcIpxFiltRIPMoveOper, cmc_ipx_ipxCircuit=cmc_ipx_ipxCircuit, ipxServTypeValue=ipxServTypeValue, cmc_trapC=cmc_trapC, ipxSysExistState=ipxSysExistState, cmcIpxFiltRIPIfIndex=cmcIpxFiltRIPIfIndex)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, value_size_constraint, single_value_constraint, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, time_ticks, object_identity, enterprises, integer32, mib_identifier, counter64, notification_type, unsigned32, iso, bits, module_identity, gauge32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'TimeTicks', 'ObjectIdentity', 'enterprises', 'Integer32', 'MibIdentifier', 'Counter64', 'NotificationType', 'Unsigned32', 'iso', 'Bits', 'ModuleIdentity', 'Gauge32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
class Netnumber(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(4, 4)
fixed_length = 4
class Ipxaddress(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(14, 14)
fixed_length = 14
cmc = mib_identifier((1, 3, 6, 1, 4, 1, 44))
cmc_prod = mib_identifier((1, 3, 6, 1, 4, 1, 44, 1)).setLabel('cmc-prod')
cmc_adapt = mib_identifier((1, 3, 6, 1, 4, 1, 44, 1, 1)).setLabel('cmc-adapt')
cmc_system = mib_identifier((1, 3, 6, 1, 4, 1, 44, 1, 2)).setLabel('cmc-system')
cmc_soft = mib_identifier((1, 3, 6, 1, 4, 1, 44, 1, 3)).setLabel('cmc-soft')
cmc_mgmt = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2)).setLabel('cmc-mgmt')
cmc_mib = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1)).setLabel('cmc-mib')
cmc_trap_a = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 6)).setLabel('cmc-trapA')
cmc_trap_b = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6)).setLabel('cmc-trapB')
cmc_trap_c = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5)).setLabel('cmc-trapC')
cmc_trap_d = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3)).setLabel('cmc-trapD')
cmc_trap_e = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3, 10)).setLabel('cmc-trapE')
cmc_ip = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 4)).setLabel('cmc-ip')
cmc_ipx = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5)).setLabel('cmc-ipx')
cmc_ipx_ipx = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1)).setLabel('cmc-ipx-ipx')
cmc_ipx_ipx_system = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1)).setLabel('cmc-ipx-ipxSystem')
cmc_ipx_ipx_circuit = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2)).setLabel('cmc-ipx-ipxCircuit')
cmc_ipx_ipx_forwarding = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3)).setLabel('cmc-ipx-ipxForwarding')
cmc_ipx_ipx_services = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4)).setLabel('cmc-ipx-ipxServices')
cmc_ipx_filter = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2)).setLabel('cmc-ipx-filter')
cmc_ipx_filt_packet = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2)).setLabel('cmc-ipx-filt-packet')
cmc_ipx_filt_rip = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4)).setLabel('cmc-ipx-filt-rip')
cmc_ipx_filt_sap = mib_identifier((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6)).setLabel('cmc-ipx-filt-sap')
cmc_ip_in_admin_discards = mib_scalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cmcIpInAdminDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpInAdminDiscards.setDescription('The number of incoming datagrams dropped due to administrative prohibitions.')
cmc_ip_out_admin_discards = mib_scalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cmcIpOutAdminDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpOutAdminDiscards.setDescription('The number of outgoing datagrams dropped due to administrative prohibitions.')
cmc_ip_filt_status = mib_scalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltStatus.setDescription('The status of IP Filtering.')
cmc_ip_filter_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5))
if mibBuilder.loadTexts:
cmcIpFilterTable.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFilterTable.setDescription('A list of IP Filter table entries.')
cmc_ip_filt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1)).setIndexNames((0, 'CMC-MIB', 'cmcIpFiltName'))
if mibBuilder.loadTexts:
cmcIpFiltEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltEntry.setDescription('An IP Filter table entry containing objects that describe datagram transmission/reception restrictions. Creation of an IP Filter table entry requires the presence of the cmcIpFiltName and cmcIpFiltMode objects along with at least one of the following objects: cmcIpFiltSAddr cmcIpFiltSPort cmcIpFiltDAddr cmcIpFiltDPort cmcIpFiltProto cmcIpFiltIfIndex')
cmc_ip_filt_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltName.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltName.setDescription('Name of filter entry. This is an ASCII string up to 6 octets long.')
cmc_ip_filt_priority = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cmcIpFiltPriority.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmc_ip_filt_s_addr = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltSAddr.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltSAddr.setDescription('Source IP address for the filter entry')
cmc_ip_filt_s_mask = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltSMask.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltSMask.setDescription('Source IP mask for the filter entry.')
cmc_ip_filt_s_port = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltSPort.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltSPort.setDescription('Source port for the filter entry.')
cmc_ip_filt_d_addr = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 6), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltDAddr.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltDAddr.setDescription('Destination IP address for the filter entry.')
cmc_ip_filt_d_mask = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 7), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltDMask.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltDMask.setDescription('Destination IP mask for the filter entry.')
cmc_ip_filt_d_port = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltDPort.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltDPort.setDescription('Destination port for the filter entry.')
cmc_ip_filt_proto = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltProto.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltProto.setDescription('Protocol to filter.')
cmc_ip_filt_mode = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('allow', 1), ('deny', 2), ('nodial', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltMode.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltMode.setDescription('Mode of the filter entry.')
cmc_ip_filt_err_msg = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltErrMsg.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltErrMsg.setDescription('Configuration object used to control the transmission of ICMP error messages when datagrams are administratively filtered.')
cmc_ip_filt_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('local', 1), ('invalid', 2), ('netmgmt', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltType.setDescription('The type of the IP Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpFilterTable. The invalid(2) value is not supported for row creates. The netmgt(3) value is the default value for row creates.')
cmc_ip_filt_move_oper = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 13), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltMoveOper.setDescription('Configuration object used to move IP Filter table entries (to obtain a different priority for the entry). Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octets 1 - 6 contain an existing IP Filter Entry name.')
cmc_ip_filt_use_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 14), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltUseCount.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltUseCount.setDescription('The number of times the IP Filter Table entry has been referenced.')
cmc_ip_filt_direction = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('both', 1), ('incoming', 2), ('outgoing', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltDirection.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltDirection.setDescription('The flow direction for the filter entry.')
cmc_ip_filt_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 4, 5, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpFiltIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpFiltIfIndex.setDescription('The interface index associated with the filter entry. This value is equivalent to the ifIndex object.')
cmc_connection_established = notification_type((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3, 10) + (0, 1))
if mibBuilder.loadTexts:
cmcConnectionEstablished.setDescription('A cmcConnectionEstablished(1) trap is generated when a wide area network connection is established on a dynamic link. The variable-binding contains the ifIndex value of the effected interface.')
cmc_connection_terminated = notification_type((1, 3, 6, 1, 4, 1, 44, 2, 6, 6, 5, 3, 10) + (0, 2))
if mibBuilder.loadTexts:
cmcConnectionTerminated.setDescription('A cmcConnectionTerminated(2) trap is generated when a wide area network connection is terminated on a dynamic link. The variable-binding contains the ifIndex value of the effected interface.')
ipx_sys_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1))
if mibBuilder.loadTexts:
ipxSysTable.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysTable.setDescription('The IPX System table.')
ipx_sys_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1)).setIndexNames((0, 'CMC-MIB', 'ipxSysInstance'))
if mibBuilder.loadTexts:
ipxSysEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysEntry.setDescription('Each entry corresponds to one instance of IPX running on the system.')
ipx_sys_instance = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInstance.setDescription('The unique identifier of the instance of IPX to which this row corresponds. The value may be written only when creating a new entry in the table.')
ipx_sys_exist_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxSysExistState.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysExistState.setDescription("The validity of this entry in the IPX system table. Setting this field to off indicates that this entry may be deleted from the system table at the IPX implementation's discretion.")
ipx_sys_int_net_num_exists = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysIntNetNumExists.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysIntNetNumExists.setDescription('Indicates whether this instance of IPX has an internal network number.')
ipx_sys_int_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 4), net_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxSysIntNetNum.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysIntNetNum.setDescription('The IPX internal network number of this instance of IPX. This value is undefined if the value of ipxSysIntNetNumExists is no.')
ipx_sys_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 48))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxSysName.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysName.setDescription('The readable name for this system.')
ipx_sys_max_path_splits = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxSysMaxPathSplits.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysMaxPathSplits.setDescription('The maximum number of path with equal routing metric value which this instance of IPX may split between when forwarding packets.')
ipx_sys_max_hops = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxSysMaxHops.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysMaxHops.setDescription('The maximum number of hops a packet may take.')
ipx_sys_version_major = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysVersionMajor.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysVersionMajor.setDescription('The major version number of IPX supported.')
ipx_sys_version_minor = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysVersionMinor.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysVersionMinor.setDescription('The minor version number of IPX supported.')
ipx_sys_in_receives = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInReceives.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInReceives.setDescription('The total number of IPX packets received, including those received in error.')
ipx_sys_in_too_many_hops = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInTooManyHops.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInTooManyHops.setDescription('The number of IPX packets discarded due to exceeding the maximum hop count.')
ipx_sys_in_hdr_errors = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInHdrErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInHdrErrors.setDescription('The number of IPX packets discarded due to errors in their headers, including any IPX packet with a size less than the minimum of 30 bytes.')
ipx_sys_in_unknown_sockets = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInUnknownSockets.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInUnknownSockets.setDescription('The number of IPX packets discarded because the destination socket was not open.')
ipx_sys_in_filtered = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInFiltered.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInFiltered.setDescription('The number of incoming IPX packets discarded due to filtering.')
ipx_sys_in_compress_discards = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInCompressDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInCompressDiscards.setDescription('The number of incoming IPX packets discarded due to decompression errors.')
ipx_sys_in_discards = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInDiscards.setDescription('The number of IPX packets received but discarded die to processing decision.')
ipx_sys_in_delivers = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysInDelivers.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysInDelivers.setDescription('The total number of IPX packets delivered locally, including packets from local applications.')
ipx_sys_netbios_packets = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysNETBIOSPackets.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysNETBIOSPackets.setDescription('Number of NETBIOS packets.')
ipx_sys_forw_packets = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysForwPackets.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysForwPackets.setDescription('The number of IPX packets forwarded.')
ipx_sys_out_requests = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutRequests.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutRequests.setDescription('The number of IPX packets supplied locally for transmission, not including any packets counted in ipxForwPackets.')
ipx_sys_out_no_routes = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutNoRoutes.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutNoRoutes.setDescription('The number of outgoing IPX packets discarded because no route was found.')
ipx_sys_out_filtered = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutFiltered.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutFiltered.setDescription('The number of outgoing IPX packets discarded due to filtering.')
ipx_sys_out_compress_discards = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutCompressDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutCompressDiscards.setDescription('The number of outgoing IPX packets discarded due to compression errors.')
ipx_sys_out_malformed_requests = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutMalformedRequests.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutMalformedRequests.setDescription('The number of IPX packets supplied locally contained errors in their structure.')
ipx_sys_out_discards = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutDiscards.setDescription('The number of outgoing IPX packets discarded due to processing decision.')
ipx_sys_out_packets = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOutPackets.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOutPackets.setDescription('The total number of IPX packets transmitted.')
ipx_sys_circ_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 27), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysCircCount.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysCircCount.setDescription('The number of circuits known to this instance of IPX.')
ipx_sys_dest_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 28), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysDestCount.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysDestCount.setDescription('The number of currently reachable destinations known to this instance of IPX.')
ipx_sys_serv_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 29), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysServCount.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysServCount.setDescription('The number of services known to this instance of IPX.')
ipx_sys_resource_failures = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 30), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysResourceFailures.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysResourceFailures.setDescription('The number of times this instance of IPX has been unable to obtain needed resources (memory, etc.).')
ipx_sys_config_sockets = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 31), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysConfigSockets.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysConfigSockets.setDescription('The configured maximum number of sockets that may be opened at one time.')
ipx_sys_max_open_sockets = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 32), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysMaxOpenSockets.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysMaxOpenSockets.setDescription('The maximum number of IPX sockets actually open at one time by this system.')
ipx_sys_open_socket_fails = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 1, 1, 1, 33), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxSysOpenSocketFails.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxSysOpenSocketFails.setDescription('The number of IPX soclet open calls which failed.')
ipx_circ_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1))
if mibBuilder.loadTexts:
ipxCircTable.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircTable.setDescription('The Circuit Table.')
ipx_circ_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1)).setIndexNames((0, 'CMC-MIB', 'ipxCircSysInstance'), (0, 'CMC-MIB', 'ipxCircIndex'))
if mibBuilder.loadTexts:
ipxCircEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircEntry.setDescription('Each entry corresponds to one circuit known to the system.')
ipx_circ_sys_instance = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircSysInstance.setDescription('The unique identifier of the instance of IPX to which this entry corresponds. This value may be written only when creating a new entry in the table.')
ipx_circ_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircIndex.setDescription('The identifier of ths circuit, unique within the instance of IPX. This value may be written only when creating a new table entry.')
ipx_circ_exist_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircExistState.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircExistState.setDescription("The validity of this circuit entry. A circuit with this value set to off may be deleted from the table at the IPX implementation's discretion.")
ipx_circ_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircOperState.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircOperState.setDescription('The operational state of the circuit.')
ipx_circ_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircIfIndex.setDescription('The value of IfIndex for the interface used by this circuit. This value may be written only when creating a new entry in the table.')
ipx_circ_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 6), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircName.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircName.setDescription('The readable name for the circuit.')
ipx_circ_info = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircInfo.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircInfo.setDescription('Additional readable information for the circuit. The content of this field is implementation defined.')
ipx_circ_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('other', 1), ('broadcast', 2), ('ptTopt', 3), ('wanRIP', 4), ('unnumberedRIP', 5), ('dynamic', 6), ('wanWS', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircType.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircType.setDescription('The type of the circuit.')
ipx_circ_local_max_packet_size = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircLocalMaxPacketSize.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircLocalMaxPacketSize.setDescription('The maximum size (including header), in bytes, that the system supports locally in this circuit.')
ipx_circ_compress_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircCompressState.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircCompressState.setDescription('The compression state on the circuit. This value may be written only when creating a new entry in the table.')
ipx_circ_compress_slots = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 11), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxCircCompressSlots.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircCompressSlots.setDescription('The number of compression slots available on this circuit. This value may be written only when creating a new entry in the table.')
ipx_circ_compressed_sent = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircCompressedSent.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircCompressedSent.setDescription('The number of compressed packets sent.')
ipx_circ_uncompressed_sent = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircUncompressedSent.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircUncompressedSent.setDescription('The number of packets sent without being compressed even though compression was turned on for this circuit.')
ipx_circ_media_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircMediaType.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircMediaType.setDescription('The media type used on this circuit.')
ipx_circ_net_number = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 15), net_number()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircNetNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircNetNumber.setDescription('The IPX network number to which this circuit is bound.')
ipx_circ_state_changes = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircStateChanges.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircStateChanges.setDescription('The number of times the circuit has changed state.')
ipx_circ_init_fails = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircInitFails.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircInitFails.setDescription('The number of times that initialization of this circuit has failed.')
ipx_circ_delay = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircDelay.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircDelay.setDescription('The period of time, in milliseconds, that it takes to transmit one byte of data, excluding protocol headers, to a destination on the other end of the circuit, if the circuit is free of other traffic.')
ipx_circ_throughput = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 2, 1, 1, 19), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxCircThroughput.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxCircThroughput.setDescription('The amount of data, in bits per second, that may flow through the circuit if there is no other traffic.')
ipx_dest_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1))
if mibBuilder.loadTexts:
ipxDestTable.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestTable.setDescription('The Destination Table contains information about all known destinations.')
ipx_dest_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1)).setIndexNames((0, 'CMC-MIB', 'ipxDestSysInstance'), (0, 'CMC-MIB', 'ipxDestNetNum'))
if mibBuilder.loadTexts:
ipxDestEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestEntry.setDescription('Each entry corresponds to one destination.')
ipx_dest_sys_instance = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestSysInstance.setDescription('The unique identifier of the instance of IPX to which this row corresponds. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 2), net_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestNetNum.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestNetNum.setDescription('The IPX network number of the destination. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('local', 2), ('rip', 3), ('nlsp', 4), ('static', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestProtocol.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestProtocol.setDescription('The routing protocol from which knowledge of this destination was obtained. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_cost = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestCost.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestCost.setDescription('The cost to reach this destination. The meaning of the cost value is dependent on the routing protocol (i.e. Cost = delay in ticks for RIP, Cost = total path default cost for NLSP, etc.). This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_hop_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestHopCount.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestHopCount.setDescription('The number of hops necessary to reach the destination. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_next_hop_circ_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestNextHopCircIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestNextHopCircIndex.setDescription('The unique identifier of the circuit used to read the next hop. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_next_hop_nic_address = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestNextHopNICAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestNextHopNICAddress.setDescription('The NIC address of the next hop. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_next_hop_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 8), net_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxDestNextHopNetNum.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestNextHopNetNum.setDescription('The IPX network number of the next hop. This value may be written only when creating a new entry with ipxDestProtocol equal to static.')
ipx_dest_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 3, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 5))).clone(namedValues=named_values(('unknown', 1), ('nlspLevel1Router', 2), ('router', 4), ('network', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipxDestType.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxDestType.setDescription('Indicates whether the destination is a network of a router.')
ipx_serv_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1))
if mibBuilder.loadTexts:
ipxServTable.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServTable.setDescription('The table of services, indexed by name and type.')
ipx_serv_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1)).setIndexNames((0, 'CMC-MIB', 'ipxServSysInstance'), (0, 'CMC-MIB', 'ipxServName'), (0, 'CMC-MIB', 'ipxServTypeValue'))
if mibBuilder.loadTexts:
ipxServEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServEntry.setDescription('Each entry corresponds to one service.')
ipx_serv_sys_instance = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServSysInstance.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServSysInstance.setDescription('The unique identifier of the instance of IPX to which this entry corresponds. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipx_serv_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(1, 48))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServName.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServName.setDescription('The service name. This value may be written only when creating entries with value of ipxServProtocol equal to static.')
ipx_serv_type_value = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServTypeValue.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServTypeValue.setDescription("The service type's hexadecimal value. This value may be written only when creating entries with the value of ipxServProtocol equal to static.")
ipx_serv_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('unknown', 1)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServType.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServType.setDescription('The service type. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipx_serv_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 5, 6))).clone(namedValues=named_values(('other', 1), ('local', 2), ('nlsp', 4), ('static', 5), ('sap', 6)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServProtocol.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServProtocol.setDescription('The protocol from which knowledge of this service was obtained. This valuemay be written only when creating entries with ipxServProtocol equal to static.')
ipx_serv_net_num = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 6), net_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServNetNum.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServNetNum.setDescription('The IPX network number portion of the IPX address of the service. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipx_serv_node = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServNode.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServNode.setDescription('The node portion of the IPX address. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
ipx_serv_socket = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 1, 4, 1, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipxServSocket.setStatus('mandatory')
if mibBuilder.loadTexts:
ipxServSocket.setDescription('The socket portion of the IPX address of the service. This value may be written only when creating entries with the value of ipxServProtocol equal to static.')
cmc_ipx_filt_status = mib_scalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltStatus.setDescription('The status of IPX Filtering.')
cmc_ipx_filter_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1))
if mibBuilder.loadTexts:
cmcIpxFilterTable.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFilterTable.setDescription('A list of IPX Filter table entries.')
cmc_ipx_filt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1)).setIndexNames((0, 'CMC-MIB', 'cmcIpxFiltName'))
if mibBuilder.loadTexts:
cmcIpxFiltEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltEntry.setDescription('An IPX Filter table entry containing objects that describe ipx packet transmission / reception restrictions. Creation of an IPX Filter table entry requires the presence of the cmcIpxFiltName and cmcIpxFiltMode objects along with at least one of the following objects: cmcIpxFiltSAddr cmcIpxFiltDAddr cmcIpxFiltPktType cmcIpxFiltIfIndex')
cmc_ipx_filt_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltName.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltName.setDescription('Name of filter entry. This is an ASCII string up to 6 octets long. This object is required in SET PDUs.')
cmc_ipx_filt_s_addr = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 2), ipx_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAddr.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAddr.setDescription('Source IPX address. This object is required in SET PDUs.')
cmc_ipx_filt_d_addr = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 3), ipx_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltDAddr.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltDAddr.setDescription('Destination IPX address. This object is required in SET PDUs.')
cmc_ipx_filt_pkt_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltPktType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltPktType.setDescription('Protocol to filter. This object is required in SET PDUs.')
cmc_ipx_filt_mode = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('allow', 1), ('deny', 2), ('nodial', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltMode.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltMode.setDescription('Mode of the filter entry. This object is required in SET PDUs.')
cmc_ipx_filt_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('local', 1), ('invalid', 2), ('netmgmt', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltType.setDescription('The type of the IPX Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpxFilterTable.')
cmc_ipx_filt_move_oper = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 7), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltMoveOper.setDescription('Configuration object used to move IPX Filter table entries. Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octet 1 - 6 contain the IPX Filter Entry name.')
cmc_ipx_filt_use_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltUseCount.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltUseCount.setDescription('The number of times the IPX Filter Table entry has been referenced.')
cmc_ipx_filt_direction = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('both', 1), ('incoming', 2), ('outgoing', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltDirection.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltDirection.setDescription('The flow direction for the filter entry. This object must be specified along with an interface.')
cmc_ipx_filt_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltIfIndex.setDescription('The interface index associated with the filter entry. This value is equivalent to the ifIndex object.')
cmc_ipx_filt_priority = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cmcIpxFiltPriority.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmc_ipx_filt_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 2, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltState.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltState.setDescription('The validity of this entry in the IPX Packet Filter table. Setting this field to off indicates that this entry may be deleted from the table.')
cmc_ipx_filt_rip_status = mib_scalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPStatus.setDescription('The status of IPX RIP Filtering.')
cmc_ipx_filter_rip_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1))
if mibBuilder.loadTexts:
cmcIpxFilterRIPTable.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFilterRIPTable.setDescription('A list of IPX Filter RIP table entries.')
cmc_ipx_filt_rip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1)).setIndexNames((0, 'CMC-MIB', 'cmcIpxFiltRIPName'))
if mibBuilder.loadTexts:
cmcIpxFiltRIPEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPEntry.setDescription('An IPX RIP Filter table entry containing objects that describe datagram transmission/ reception restrictions. Creation of an IPX RIP Filter table entry requires the presence of the cmcIpxFiltRIPName and cmcIpxFiltRIPMode objects')
cmc_ipx_filt_rip_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPName.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPName.setDescription('Name of RIP filter entry. This is an ASCII string up to 6 octets long. This object is required in SET PDUs.')
cmc_ipx_filt_rip_network_num = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 2), net_number()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPNetworkNum.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPNetworkNum.setDescription('Network address. This object is required in SET PDUs.')
cmc_ipx_filt_rip_move_oper = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 3), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPMoveOper.setDescription('Configuration object used to move IPX RIP Filter table entries. Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octet 1 - 6 contain the IPX RIP Filter name.')
cmc_ipx_filt_rip_mode = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('allow', 1), ('deny', 2), ('nodial', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPMode.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPMode.setDescription('Mode of the filter entry. This object is required in SET PDUs.')
cmc_ipx_filt_rip_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('local', 1), ('invalid', 2), ('netmgmt', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPType.setDescription('The type of the IPX RIP Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpxFilterRIPTable.')
cmc_ipx_filt_rip_use_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPUseCount.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPUseCount.setDescription('The number of times the IPX RIP Filter Table entry has been referenced.')
cmc_ipx_filt_rip_direction = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('both', 1), ('incoming', 2), ('outgoing', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPDirection.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPDirection.setDescription('The flow direction for the filter entry. This object must be specified along with an interface.')
cmc_ipx_filt_rip_query_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('request', 1), ('response', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPQueryType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPQueryType.setDescription('The type of packet entry. This object must be specified along with an interface.')
cmc_ipx_filt_rip_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPIfIndex.setDescription('The interface index associated with the filter entry.')
cmc_ipx_filt_rip_priority = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cmcIpxFiltRIPPriority.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmc_ipx_filt_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 4, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltRIPState.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltRIPState.setDescription('The validity of this entry in the IPX RIP Filter table. Setting this field to off indicates that this entry may be deleted from the table.')
cmc_ipx_filt_sap_status = mib_scalar((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPStatus.setDescription('The status of IPX SAP Filtering.')
cmc_ipx_filter_sap_table = mib_table((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1))
if mibBuilder.loadTexts:
cmcIpxFilterSAPTable.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFilterSAPTable.setDescription('A list of IPX Filter SAP table entries.')
cmc_ipx_filt_sap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1)).setIndexNames((0, 'CMC-MIB', 'cmcIpxFiltSAPName'))
if mibBuilder.loadTexts:
cmcIpxFiltSAPEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPEntry.setDescription('An IPX SAP Filter table entry containing objects that describe datagram transmission/ reception restrictions. Creation of an IPX SAP Filter table entry requires the presence of the cmcIpxFiltSAPName and cmcIpxFiltSAPMode objects')
cmc_ipx_filt_sap_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 1), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPName.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPName.setDescription('Name of SAP filter entry. This is an ASCII string up to 6 octets long. This object is required in SET PDUs.')
cmc_ipx_filt_sap_server_name = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 2), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPServerName.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPServerName.setDescription('Name of SAP server.')
cmc_ipx_filt_sap_server_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPServerType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPServerType.setDescription('The types of servers to filter.')
cmc_ipx_filt_sap_move_oper = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 4), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPMoveOper.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPMoveOper.setDescription('Configuration object used to move IPX SAP Filter table entries. Parameters are defined as: Octet 0 describes the move operation [1, 2] = [Before, After] Octet 1 - 6 contain the IPX SAP Filter name.')
cmc_ipx_filt_sap_mode = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('allow', 1), ('deny', 2), ('nodial', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPMode.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPMode.setDescription('Mode of the filter entry. This object is required in SET PDUs.')
cmc_ipx_filt_sap_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('local', 1), ('invalid', 2), ('netmgmt', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPType.setDescription('The type of the IPX SAP Filter Table entry. Setting this object to the value invalid(2) has the effect of invalidating the corresponding entry in the cmcIpxFilterSAPTable.')
cmc_ipx_filt_sap_use_count = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPUseCount.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPUseCount.setDescription('The number of times the IPX SAP Filter Table entry has been referenced.')
cmc_ipx_filt_sap_direction = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('both', 1), ('incoming', 2), ('outgoing', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPDirection.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPDirection.setDescription('The flow direction for the filter entry. This object must be specified along with an interface.')
cmc_ipx_filt_sap_query_type = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('request', 1), ('response', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPQueryType.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPQueryType.setDescription('The type of packet entry. This object must be specified along with an interface.')
cmc_ipx_filt_sap_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 10), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPIfIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPIfIndex.setDescription('The interface index associated with the filter entry.')
cmc_ipx_filt_sap_priority = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cmcIpxFiltSAPPriority.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPPriority.setDescription('The priority of the entry. The highest priority entry (1) is searched first. The second highest priority entry (2) is searched next, and so on.')
cmc_ipx_filt_sap_state = mib_table_column((1, 3, 6, 1, 4, 1, 44, 2, 1, 5, 2, 6, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('off', 1), ('on', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cmcIpxFiltSAPState.setStatus('mandatory')
if mibBuilder.loadTexts:
cmcIpxFiltSAPState.setDescription('The validity of this entry in the IPX SAP Filter table. Setting this field to off indicates that this entry may be deleted from the table.')
mibBuilder.exportSymbols('CMC-MIB', ipxDestEntry=ipxDestEntry, ipxCircSysInstance=ipxCircSysInstance, ipxCircCompressState=ipxCircCompressState, cmcIpxFiltRIPType=cmcIpxFiltRIPType, ipxSysName=ipxSysName, cmcIpFiltDirection=cmcIpFiltDirection, ipxCircNetNumber=ipxCircNetNumber, ipxSysInHdrErrors=ipxSysInHdrErrors, cmcIpxFiltSAPPriority=cmcIpxFiltSAPPriority, cmcIpxFiltSAddr=cmcIpxFiltSAddr, ipxServEntry=ipxServEntry, cmcIpxFiltSAPServerName=cmcIpxFiltSAPServerName, cmcIpxFiltPktType=cmcIpxFiltPktType, ipxSysOutRequests=ipxSysOutRequests, cmcIpxFiltUseCount=cmcIpxFiltUseCount, ipxCircInitFails=ipxCircInitFails, cmcIpxFilterSAPTable=cmcIpxFilterSAPTable, cmc_prod=cmc_prod, ipxSysOutNoRoutes=ipxSysOutNoRoutes, cmc_ipx_ipxForwarding=cmc_ipx_ipxForwarding, ipxServName=ipxServName, ipxCircMediaType=ipxCircMediaType, cmcIpxFiltSAPMoveOper=cmcIpxFiltSAPMoveOper, cmc_ip=cmc_ip, cmcIpFiltEntry=cmcIpFiltEntry, cmcIpxFiltPriority=cmcIpxFiltPriority, ipxSysOutFiltered=ipxSysOutFiltered, ipxDestNextHopNICAddress=ipxDestNextHopNICAddress, cmcIpFiltSAddr=cmcIpFiltSAddr, ipxServType=ipxServType, ipxSysConfigSockets=ipxSysConfigSockets, cmc_adapt=cmc_adapt, cmcIpxFiltRIPStatus=cmcIpxFiltRIPStatus, ipxCircTable=ipxCircTable, cmcIpxFiltRIPQueryType=cmcIpxFiltRIPQueryType, ipxSysServCount=ipxSysServCount, cmcIpFiltErrMsg=cmcIpFiltErrMsg, ipxSysOutPackets=ipxSysOutPackets, cmcIpxFiltDirection=cmcIpxFiltDirection, ipxServNetNum=ipxServNetNum, cmcIpFilterTable=cmcIpFilterTable, cmcIpFiltSPort=cmcIpFiltSPort, ipxSysOpenSocketFails=ipxSysOpenSocketFails, ipxSysMaxOpenSockets=ipxSysMaxOpenSockets, NetNumber=NetNumber, cmcIpxFiltDAddr=cmcIpxFiltDAddr, ipxCircIfIndex=ipxCircIfIndex, cmc_ipx_filt_packet=cmc_ipx_filt_packet, ipxCircName=ipxCircName, cmcIpxFiltStatus=cmcIpxFiltStatus, cmcIpFiltDMask=cmcIpFiltDMask, cmc_trapA=cmc_trapA, ipxDestCost=ipxDestCost, ipxDestType=ipxDestType, ipxSysMaxHops=ipxSysMaxHops, cmcIpFiltType=cmcIpFiltType, cmc_trapD=cmc_trapD, cmc_ipx_ipxServices=cmc_ipx_ipxServices, cmc_soft=cmc_soft, cmcIpxFiltRIPDirection=cmcIpxFiltRIPDirection, cmcIpxFiltSAPState=cmcIpxFiltSAPState, ipxDestSysInstance=ipxDestSysInstance, cmcIpFiltDAddr=cmcIpFiltDAddr, cmcIpFiltProto=cmcIpFiltProto, cmc_ipx_ipxSystem=cmc_ipx_ipxSystem, cmcIpxFiltState=cmcIpxFiltState, cmcIpxFilterTable=cmcIpxFilterTable, cmcIpFiltMode=cmcIpFiltMode, ipxSysInUnknownSockets=ipxSysInUnknownSockets, cmcIpxFiltIfIndex=cmcIpxFiltIfIndex, cmcIpxFiltName=cmcIpxFiltName, cmcIpxFiltSAPIfIndex=cmcIpxFiltSAPIfIndex, cmcIpxFiltSAPMode=cmcIpxFiltSAPMode, cmcIpxFiltSAPStatus=cmcIpxFiltSAPStatus, ipxCircInfo=ipxCircInfo, ipxDestNetNum=ipxDestNetNum, cmcIpxFiltEntry=cmcIpxFiltEntry, cmcIpxFiltRIPName=cmcIpxFiltRIPName, ipxCircLocalMaxPacketSize=ipxCircLocalMaxPacketSize, ipxSysInstance=ipxSysInstance, cmc_ipx_filter=cmc_ipx_filter, ipxSysInFiltered=ipxSysInFiltered, ipxSysMaxPathSplits=ipxSysMaxPathSplits, ipxSysOutCompressDiscards=ipxSysOutCompressDiscards, cmcIpOutAdminDiscards=cmcIpOutAdminDiscards, cmcIpxFiltSAPServerType=cmcIpxFiltSAPServerType, cmc_ipx_filt_sap=cmc_ipx_filt_sap, cmcIpxFiltRIPState=cmcIpxFiltRIPState, ipxServTable=ipxServTable, ipxSysOutMalformedRequests=ipxSysOutMalformedRequests, cmcIpxFiltSAPName=cmcIpxFiltSAPName, cmcIpFiltUseCount=cmcIpFiltUseCount, ipxSysIntNetNum=ipxSysIntNetNum, ipxSysInDiscards=ipxSysInDiscards, ipxServSysInstance=ipxServSysInstance, cmcConnectionEstablished=cmcConnectionEstablished, ipxSysResourceFailures=ipxSysResourceFailures, cmcIpxFiltMoveOper=cmcIpxFiltMoveOper, ipxCircEntry=ipxCircEntry, cmcIpFiltSMask=cmcIpFiltSMask, cmcIpxFilterRIPTable=cmcIpxFilterRIPTable, ipxCircCompressSlots=ipxCircCompressSlots, cmcIpxFiltSAPUseCount=cmcIpxFiltSAPUseCount, cmc_ipx_ipx=cmc_ipx_ipx, cmcIpxFiltType=cmcIpxFiltType, IpxAddress=IpxAddress, ipxSysInTooManyHops=ipxSysInTooManyHops, cmc_ipx_filt_rip=cmc_ipx_filt_rip, ipxSysNETBIOSPackets=ipxSysNETBIOSPackets, cmcIpxFiltRIPNetworkNum=cmcIpxFiltRIPNetworkNum, cmcIpxFiltSAPType=cmcIpxFiltSAPType, ipxServNode=ipxServNode, cmcIpxFiltSAPDirection=cmcIpxFiltSAPDirection, cmcIpxFiltRIPMode=cmcIpxFiltRIPMode, cmc_trapE=cmc_trapE, ipxSysTable=ipxSysTable, cmcIpxFiltRIPEntry=cmcIpxFiltRIPEntry, cmcIpInAdminDiscards=cmcIpInAdminDiscards, cmcIpFiltMoveOper=cmcIpFiltMoveOper, cmcIpFiltIfIndex=cmcIpFiltIfIndex, ipxServProtocol=ipxServProtocol, ipxSysInCompressDiscards=ipxSysInCompressDiscards, cmcIpFiltStatus=cmcIpFiltStatus, ipxCircCompressedSent=ipxCircCompressedSent, cmc_trapB=cmc_trapB, ipxCircDelay=ipxCircDelay, cmcIpxFiltSAPQueryType=cmcIpxFiltSAPQueryType, ipxSysInDelivers=ipxSysInDelivers, ipxSysInReceives=ipxSysInReceives, ipxDestProtocol=ipxDestProtocol, ipxSysEntry=ipxSysEntry, cmc_system=cmc_system, cmcIpFiltName=cmcIpFiltName, ipxDestNextHopNetNum=ipxDestNextHopNetNum, ipxCircExistState=ipxCircExistState, cmcIpxFiltMode=cmcIpxFiltMode, cmcIpFiltDPort=cmcIpFiltDPort, cmcIpxFiltSAPEntry=cmcIpxFiltSAPEntry, ipxCircIndex=ipxCircIndex, ipxCircStateChanges=ipxCircStateChanges, ipxDestNextHopCircIndex=ipxDestNextHopCircIndex, ipxDestTable=ipxDestTable, cmcIpxFiltRIPUseCount=cmcIpxFiltRIPUseCount, ipxCircThroughput=ipxCircThroughput, cmc=cmc, ipxSysVersionMinor=ipxSysVersionMinor, ipxSysDestCount=ipxSysDestCount, ipxServSocket=ipxServSocket, ipxSysOutDiscards=ipxSysOutDiscards, cmc_mib=cmc_mib, cmcIpxFiltRIPPriority=cmcIpxFiltRIPPriority, cmcConnectionTerminated=cmcConnectionTerminated, ipxSysVersionMajor=ipxSysVersionMajor, cmc_ipx=cmc_ipx, ipxDestHopCount=ipxDestHopCount, cmcIpFiltPriority=cmcIpFiltPriority, cmc_mgmt=cmc_mgmt, ipxCircOperState=ipxCircOperState, ipxSysIntNetNumExists=ipxSysIntNetNumExists, ipxCircType=ipxCircType, ipxSysForwPackets=ipxSysForwPackets, ipxSysCircCount=ipxSysCircCount, ipxCircUncompressedSent=ipxCircUncompressedSent, cmcIpxFiltRIPMoveOper=cmcIpxFiltRIPMoveOper, cmc_ipx_ipxCircuit=cmc_ipx_ipxCircuit, ipxServTypeValue=ipxServTypeValue, cmc_trapC=cmc_trapC, ipxSysExistState=ipxSysExistState, cmcIpxFiltRIPIfIndex=cmcIpxFiltRIPIfIndex) |
class Solution:
def minimumLengthEncoding(self, words: 'List[str]') -> 'int':
trie = []
def insert(s, si=0, next_i=0):
if si == len(s): return
if next_i == len(trie): trie.append({})
if s[si] not in trie[next_i]:
trie.append({})
trie[next_i][s[si]] = len(trie) - 1
insert(s, si + 1, trie[next_i][s[si]])
leaves_depth = []
def dfs(i=0, d=1):
if 0 == len(trie[i].keys()):
leaves_depth.append(d - 1); return
for k in trie[i]:
dfs(trie[i][k], d + 1)
for w in words:
insert(w[::-1])
dfs()
return len(leaves_depth) + sum(leaves_depth) | class Solution:
def minimum_length_encoding(self, words: 'List[str]') -> 'int':
trie = []
def insert(s, si=0, next_i=0):
if si == len(s):
return
if next_i == len(trie):
trie.append({})
if s[si] not in trie[next_i]:
trie.append({})
trie[next_i][s[si]] = len(trie) - 1
insert(s, si + 1, trie[next_i][s[si]])
leaves_depth = []
def dfs(i=0, d=1):
if 0 == len(trie[i].keys()):
leaves_depth.append(d - 1)
return
for k in trie[i]:
dfs(trie[i][k], d + 1)
for w in words:
insert(w[::-1])
dfs()
return len(leaves_depth) + sum(leaves_depth) |
# regular expressions used by QCbot-B
IDS = dict(
p1=r'b\d{8}[0-9|x]',
p2=r'o\d{7}[0-9|x]')
SUBJECT_PERSON_FALSE = r'-- Fiction\.|-- Juvenile fiction\.' \
r'|-- Drama\.|-- Juvenile drama\.' \
r'|-- Poetry\.|-- Juvenile poetry\.'
SUBJECT_PERSON = [
r'^880-\d{2} (\w+.*?\.)[~]', # should be search first
r'^(\w+, [A-Z].*?, \d{4}-.*?\.).*',
r'^(\w+, \w+.*?\. \w+.*?\.).*',
r'^(\w+.*?\.)[~].*-- Biography\.',
]
CRITICAL_WORKS = [
r'^(\w+, [A-Z].*?, \d{4}-.*?\.) [A-Z].*',
r'^(\w+, [A-Z].*?, \d{4}-.*?) Criticism and interpretation\.',
r'^(\w+, [A-Z].*?, \d{4}-.*?) Authorship\.'
]
CFORMAT = [
[r'^AUDIO', 'au'],
[r'^BOOK & CD|^BOOK & DVD|^KIT', 'ki'],
[r'^eAUDIO|^eBOOK|^eJOURNAL|^eMUSIC|^eVIDEO|'
r'^WEB SITE|^DVD-ROM|^CD-ROM', 'er'],
[r'^CD', 'cd'],
[r'^DVD', 'dv'],
[r'^LIB', 'li'],
[r'^Mu', 'mu'],
[r'^NM', 'nm'],
[r'^VIDEO', 'vi'],
[r'^MIFI', 'mi'],
[r'^READALONG', 'ra']]
CAUDN = [
[r'J-E$|J-E\s\D', 'e'],
[r'J\s[0-9]|J\sFIC|J\sB\s|DVD\sJ\s|^DVD\s[A-Z]{3}\sJ\s|^CD\sJ\s[A-Z]*|^READALONG\sJ\s|^READALONG\s[A-Z]{3}\sJ\s', 'j']
]
CLANG1 = [
r'^DVD\s[A-Z]{3}\s.*',
r'^DVD\s[A-Z]{3}\s\d{3}.*',
r'^KIT\s[A-Z]{3}\s\d{3}.*',
r'^KIT\s[A-Z]{3}\sJ.*',
r'^LIB\s[A-S]{3}\s\d{3}.*',
r'^BOOK\s&\sDVD\s[A-Z]{3}\s\d.*',
r'^BOOK\s&\sDVD\s[A-Z]{3}\sFIC.*',
r'^BOOK\s&\sDVD\s[A-Z]{3}\s[JB]\s*',
r'^BOOK\s&\sCD\s[A-Z]{3}\s\d.*',
r'^BOOK\s&\sCD\s[A-Z]{3}\sFIC.*',
r'^BOOK\s&\sCD\s[A-Z]{3}\s[JB]\s*',
]
CLANG2 = [
r'^AUDIO\s[A-Z]{3}\sFIC\s.*',
r'^AUDIO\s[A-Z]{3}\s\d{3}.*',
r'^AUDIO\s[A-Z]{3}\s[JB]\s.*',
r'^VIDEO\s[A-Z]{3}.*',
r'^READALONG\s[A-Z]{3}\sJ\s[FB\d].*', # juv fic, bio, dewey
r'^[A-Z]{3}\sFIC\s.*',
r'^[A-Z]{3}\sJ\s[FB\d].*', # juv fic, bio, dewey
r'[A-Z]{3}\sJ-E.*',
r'[A-Z]{3}\s\d{3}.*',
r'[A-Z]{3}\sB\s[A-Z]{1,}.*'
]
CTYPE = [
[r'J-E$|J-E\s\D', 'eas'],
[r'^FIC|\sFIC', 'fic'],
[r'DVD\s(?!B\s|\d{3}\s|\d{3}\.\d{1,}\s).{1,}$|DVD\s[A-Z]{3}\s(?!B\s).{1,}$|DVD\sJ\s(?!B\s).{1,}$|DVD\s[A-Z]{3}\sJ\s(?!B\s).{1,}$', 'fea'],
[r'B\s[A-Z].*\s[A-Z]', 'bio'],
[r'\d{3}.*\s[A-Z]{1}.*\s[A-Z]$|\d{3}.*[A-Z]{1}.*\s[A-Z]\d$', 'des'],
[r'\d{3}', 'dew'],
[r'^MIFI DEVICE', 'mif'],
[r'^CD\s[A-Z].*', 'cdm'],
[r'^e[A-Z]', 'ere']
]
CDEW = r'(\d{3})\s|(\d{3}\.\d{1,})\s'
CCUTTER = r'DV(?!D$|D\sJ$' \
r'|D ALB$|D ALB J$' \
r'|D ARA$|DARA J$' \
r'|D BEN$|D BEN J$' \
r'|D CHI$|D CHI J$' \
r'|D FRE$|D FRE J$' \
r'|D GER$|D GER J$' \
r'|D HAT$|D HAT J$' \
r'|D HEB$|D HEB J$' \
r'|D HIN$|D HIN J$' \
r'|D HUN$|D HUN J$' \
r'|D ITA$|D ITA J$' \
r'|D JPN$|D JPN J$' \
r'|D KOR$|D KOR J$' \
r'|D PAN$|D PAN J$' \
r'|D POL$|D POL J$' \
r'|D POR$|D POR J$' \
r'|D RUS$|D RUS J$' \
r'|D SAN$|D SAN J$' \
r'|D SPA$|D SPA J$' \
r'|D UKR$|D UKR J$' \
r'|D UND$|D UND J$' \
r'|D URD$|D URD J$' \
r'|D YID$|D YID J$)' \
r'|FIC\s*[A-Z]{1,}.*$' \
r'|J-E\s*[A-Z]{1,}.*$' \
r'|CD\s*[A-Z]{1,}.*\s[A-Z].*' \
r'|\d{3}.*?\s(?!S52$|B582$)' \
r'|B\s[A-Z]{1,}.*\s[A-Z]$'
OAUDN = [
'a', # adult
'j', # juv
'y', # young adult
'z' # error
]
OIAUDN = { # irregular item/shelf codes
'lfi': 'a', # literacy mifi
'mag': 'a', # branch magazine
'mfi': 'a', # circ mifi
'nac': 'a', # american corner
'tab': 'a', # tablet
'tcp': 'j' # children corner
}
CRANGES = {
'll' : [0, 1, 2, 3, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899],
'ss': [4, 5, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699],
'hb': [200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999],
'ar': [391, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799]
}
| ids = dict(p1='b\\d{8}[0-9|x]', p2='o\\d{7}[0-9|x]')
subject_person_false = '-- Fiction\\.|-- Juvenile fiction\\.|-- Drama\\.|-- Juvenile drama\\.|-- Poetry\\.|-- Juvenile poetry\\.'
subject_person = ['^880-\\d{2} (\\w+.*?\\.)[~]', '^(\\w+, [A-Z].*?, \\d{4}-.*?\\.).*', '^(\\w+, \\w+.*?\\. \\w+.*?\\.).*', '^(\\w+.*?\\.)[~].*-- Biography\\.']
critical_works = ['^(\\w+, [A-Z].*?, \\d{4}-.*?\\.) [A-Z].*', '^(\\w+, [A-Z].*?, \\d{4}-.*?) Criticism and interpretation\\.', '^(\\w+, [A-Z].*?, \\d{4}-.*?) Authorship\\.']
cformat = [['^AUDIO', 'au'], ['^BOOK & CD|^BOOK & DVD|^KIT', 'ki'], ['^eAUDIO|^eBOOK|^eJOURNAL|^eMUSIC|^eVIDEO|^WEB SITE|^DVD-ROM|^CD-ROM', 'er'], ['^CD', 'cd'], ['^DVD', 'dv'], ['^LIB', 'li'], ['^Mu', 'mu'], ['^NM', 'nm'], ['^VIDEO', 'vi'], ['^MIFI', 'mi'], ['^READALONG', 'ra']]
caudn = [['J-E$|J-E\\s\\D', 'e'], ['J\\s[0-9]|J\\sFIC|J\\sB\\s|DVD\\sJ\\s|^DVD\\s[A-Z]{3}\\sJ\\s|^CD\\sJ\\s[A-Z]*|^READALONG\\sJ\\s|^READALONG\\s[A-Z]{3}\\sJ\\s', 'j']]
clang1 = ['^DVD\\s[A-Z]{3}\\s.*', '^DVD\\s[A-Z]{3}\\s\\d{3}.*', '^KIT\\s[A-Z]{3}\\s\\d{3}.*', '^KIT\\s[A-Z]{3}\\sJ.*', '^LIB\\s[A-S]{3}\\s\\d{3}.*', '^BOOK\\s&\\sDVD\\s[A-Z]{3}\\s\\d.*', '^BOOK\\s&\\sDVD\\s[A-Z]{3}\\sFIC.*', '^BOOK\\s&\\sDVD\\s[A-Z]{3}\\s[JB]\\s*', '^BOOK\\s&\\sCD\\s[A-Z]{3}\\s\\d.*', '^BOOK\\s&\\sCD\\s[A-Z]{3}\\sFIC.*', '^BOOK\\s&\\sCD\\s[A-Z]{3}\\s[JB]\\s*']
clang2 = ['^AUDIO\\s[A-Z]{3}\\sFIC\\s.*', '^AUDIO\\s[A-Z]{3}\\s\\d{3}.*', '^AUDIO\\s[A-Z]{3}\\s[JB]\\s.*', '^VIDEO\\s[A-Z]{3}.*', '^READALONG\\s[A-Z]{3}\\sJ\\s[FB\\d].*', '^[A-Z]{3}\\sFIC\\s.*', '^[A-Z]{3}\\sJ\\s[FB\\d].*', '[A-Z]{3}\\sJ-E.*', '[A-Z]{3}\\s\\d{3}.*', '[A-Z]{3}\\sB\\s[A-Z]{1,}.*']
ctype = [['J-E$|J-E\\s\\D', 'eas'], ['^FIC|\\sFIC', 'fic'], ['DVD\\s(?!B\\s|\\d{3}\\s|\\d{3}\\.\\d{1,}\\s).{1,}$|DVD\\s[A-Z]{3}\\s(?!B\\s).{1,}$|DVD\\sJ\\s(?!B\\s).{1,}$|DVD\\s[A-Z]{3}\\sJ\\s(?!B\\s).{1,}$', 'fea'], ['B\\s[A-Z].*\\s[A-Z]', 'bio'], ['\\d{3}.*\\s[A-Z]{1}.*\\s[A-Z]$|\\d{3}.*[A-Z]{1}.*\\s[A-Z]\\d$', 'des'], ['\\d{3}', 'dew'], ['^MIFI DEVICE', 'mif'], ['^CD\\s[A-Z].*', 'cdm'], ['^e[A-Z]', 'ere']]
cdew = '(\\d{3})\\s|(\\d{3}\\.\\d{1,})\\s'
ccutter = 'DV(?!D$|D\\sJ$|D ALB$|D ALB J$|D ARA$|DARA J$|D BEN$|D BEN J$|D CHI$|D CHI J$|D FRE$|D FRE J$|D GER$|D GER J$|D HAT$|D HAT J$|D HEB$|D HEB J$|D HIN$|D HIN J$|D HUN$|D HUN J$|D ITA$|D ITA J$|D JPN$|D JPN J$|D KOR$|D KOR J$|D PAN$|D PAN J$|D POL$|D POL J$|D POR$|D POR J$|D RUS$|D RUS J$|D SAN$|D SAN J$|D SPA$|D SPA J$|D UKR$|D UKR J$|D UND$|D UND J$|D URD$|D URD J$|D YID$|D YID J$)|FIC\\s*[A-Z]{1,}.*$|J-E\\s*[A-Z]{1,}.*$|CD\\s*[A-Z]{1,}.*\\s[A-Z].*|\\d{3}.*?\\s(?!S52$|B582$)|B\\s[A-Z]{1,}.*\\s[A-Z]$'
oaudn = ['a', 'j', 'y', 'z']
oiaudn = {'lfi': 'a', 'mag': 'a', 'mfi': 'a', 'nac': 'a', 'tab': 'a', 'tcp': 'j'}
cranges = {'ll': [0, 1, 2, 3, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899], 'ss': [4, 5, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 392, 393, 394, 395, 396, 397, 398, 399, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699], 'hb': [200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999], 'ar': [391, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799]} |
# Can also use command line to set these. Command line arguments will take priority
# Board Config options
bc_number = "10451.1"
#test_type = "crid0"
test_type = "crid1fullsuite"
board_type = "N1100FX"
mac_address = "000af7314300" # used for MAC ID
# Files copied from local to remote
bnxtmt_bnxt_en_bundle_path = "../source/BC.gz"
mac_profile_path = "../source/BC.mpf"
full_nvm_image_path = "../source/BC.img"
overwrite_path = "overwrite/" # files in this folder will be copied to the remote bnxtmt folder and overwrite anything
sit_version = "216.2.299.9" # copy MFG_scripts from this SIT release
chip_type = "thor" # thor, whplus, stratus, sr
check_log = None # name of file to diff log against if it exists
check_cfg = None # name of file to diff cfg against if it exists
# Remote machine details
mgmt_username = "root"
mgmt_password = "admin"
mgmt_ip = "10.13.253.168"
mgmt_mac_address = "00:1f:bc:11:fe:3a"
mgmt_working_directory = "/home/alvin"
mgmt_bnxtmt_folder_path = None # set this to use custom bnxtmt folder path, else set None to use one that is copied
# Etc
y = False # if True, answer y to every question
shortlog = False
| bc_number = '10451.1'
test_type = 'crid1fullsuite'
board_type = 'N1100FX'
mac_address = '000af7314300'
bnxtmt_bnxt_en_bundle_path = '../source/BC.gz'
mac_profile_path = '../source/BC.mpf'
full_nvm_image_path = '../source/BC.img'
overwrite_path = 'overwrite/'
sit_version = '216.2.299.9'
chip_type = 'thor'
check_log = None
check_cfg = None
mgmt_username = 'root'
mgmt_password = 'admin'
mgmt_ip = '10.13.253.168'
mgmt_mac_address = '00:1f:bc:11:fe:3a'
mgmt_working_directory = '/home/alvin'
mgmt_bnxtmt_folder_path = None
y = False
shortlog = False |
#!/usr/bin/env python3
class Solution(object):
def findWords(self, board, words):
trie = dict()
for word in words:
current_dict = trie
for c in word:
current_dict = current_dict.setdefault(c, {})
current_dict['$'] = word
nr, nc = len(board), len(board[0])
delta = [(1,0),(-1,0),(0,1),(0,-1)]
self.ret = set()
def dfs(i, j, current_dict):
print(f'i = {i}, j = {j}, current_dict = {current_dict}')
c, board[i][j] = board[i][j], ''
if '$' in current_dict:
self.ret.add(current_dict['$'])
for dx, dy in delta:
v, w = i+dx, j+dy
if 0 <= v < nr and 0 <= w < nc and board[v][w] in current_dict:
dfs(v, w, current_dict[board[v][w]])
board[i][j] = c
for i in range(nr):
for j in range(nc):
if board[i][j] in trie:
dfs(i, j, trie[board[i][j]])
return self.ret
board = [
['o','a','a','n'],
['e','t','a','e'],
['i','h','k','r'],
['i','f','l','v']
]
words = ["oath","pea","eat","rain"]
words = ["oath","pea","eat","oat"]
board = [['a', 'a']]
words = ['a']
sol = Solution()
print(sol.findWords(board, words))
| class Solution(object):
def find_words(self, board, words):
trie = dict()
for word in words:
current_dict = trie
for c in word:
current_dict = current_dict.setdefault(c, {})
current_dict['$'] = word
(nr, nc) = (len(board), len(board[0]))
delta = [(1, 0), (-1, 0), (0, 1), (0, -1)]
self.ret = set()
def dfs(i, j, current_dict):
print(f'i = {i}, j = {j}, current_dict = {current_dict}')
(c, board[i][j]) = (board[i][j], '')
if '$' in current_dict:
self.ret.add(current_dict['$'])
for (dx, dy) in delta:
(v, w) = (i + dx, j + dy)
if 0 <= v < nr and 0 <= w < nc and (board[v][w] in current_dict):
dfs(v, w, current_dict[board[v][w]])
board[i][j] = c
for i in range(nr):
for j in range(nc):
if board[i][j] in trie:
dfs(i, j, trie[board[i][j]])
return self.ret
board = [['o', 'a', 'a', 'n'], ['e', 't', 'a', 'e'], ['i', 'h', 'k', 'r'], ['i', 'f', 'l', 'v']]
words = ['oath', 'pea', 'eat', 'rain']
words = ['oath', 'pea', 'eat', 'oat']
board = [['a', 'a']]
words = ['a']
sol = solution()
print(sol.findWords(board, words)) |
#
# PySNMP MIB module CISCO-GGSN-CAPABILITY (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-GGSN-CAPABILITY
# Produced by pysmi-0.3.4 at Wed May 1 11:59:01 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint")
ciscoAgentCapability, = mibBuilder.importSymbols("CISCO-SMI", "ciscoAgentCapability")
AgentCapabilities, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "AgentCapabilities", "NotificationGroup", "ModuleCompliance")
ObjectIdentity, IpAddress, TimeTicks, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, Bits, ModuleIdentity, MibIdentifier, Integer32, iso, Counter32, Gauge32, NotificationType, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "IpAddress", "TimeTicks", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "Bits", "ModuleIdentity", "MibIdentifier", "Integer32", "iso", "Counter32", "Gauge32", "NotificationType", "Counter64")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
cggsnCapability = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 7, 296))
cggsnCapability.setRevisions(('2006-10-09 01:00', '2003-04-08 03:30',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: cggsnCapability.setRevisionsDescriptions(('Added cggsnCapabilityV12R4M9XG.', 'Initial version of this MIB module.',))
if mibBuilder.loadTexts: cggsnCapability.setLastUpdated('200610090100Z')
if mibBuilder.loadTexts: cggsnCapability.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts: cggsnCapability.setContactInfo(' Cisco Systems Customer Service Postal: 170 West Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-gprs@cisco.com')
if mibBuilder.loadTexts: cggsnCapability.setDescription('Agent capabilities for CISCO-GGSN-MIB')
cggsnCapabilityV12R2M8YD = AgentCapabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 1))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R2M8YD = cggsnCapabilityV12R2M8YD.setProductRelease('Cisco IOS 12.2(4)MX & 12.2(8)YD')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R2M8YD = cggsnCapabilityV12R2M8YD.setStatus('current')
if mibBuilder.loadTexts: cggsnCapabilityV12R2M8YD.setDescription('Cisco GGSN MIB capabilities.')
cggsnCapabilityV12R2M8YY1 = AgentCapabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 2))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R2M8YY1 = cggsnCapabilityV12R2M8YY1.setProductRelease('Cisco IOS 12.2(8)YY1')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R2M8YY1 = cggsnCapabilityV12R2M8YY1.setStatus('current')
if mibBuilder.loadTexts: cggsnCapabilityV12R2M8YY1.setDescription('Cisco GGSN MIB capabilities.')
cggsnCapabilityV12R2M8YW = AgentCapabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 3))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R2M8YW = cggsnCapabilityV12R2M8YW.setProductRelease('Cisco IOS 12.2(8)YW')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R2M8YW = cggsnCapabilityV12R2M8YW.setStatus('current')
if mibBuilder.loadTexts: cggsnCapabilityV12R2M8YW.setDescription('Cisco GGSN MIB capabilities.')
cggsnCapabilityV12R4M9XG = AgentCapabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 4))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R4M9XG = cggsnCapabilityV12R4M9XG.setProductRelease('Cisco IOS 12.4(9)XG')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsnCapabilityV12R4M9XG = cggsnCapabilityV12R4M9XG.setStatus('current')
if mibBuilder.loadTexts: cggsnCapabilityV12R4M9XG.setDescription('Cisco GGSN MIB capabilities.')
mibBuilder.exportSymbols("CISCO-GGSN-CAPABILITY", cggsnCapabilityV12R2M8YY1=cggsnCapabilityV12R2M8YY1, cggsnCapabilityV12R2M8YW=cggsnCapabilityV12R2M8YW, PYSNMP_MODULE_ID=cggsnCapability, cggsnCapability=cggsnCapability, cggsnCapabilityV12R4M9XG=cggsnCapabilityV12R4M9XG, cggsnCapabilityV12R2M8YD=cggsnCapabilityV12R2M8YD)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint')
(cisco_agent_capability,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoAgentCapability')
(agent_capabilities, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'AgentCapabilities', 'NotificationGroup', 'ModuleCompliance')
(object_identity, ip_address, time_ticks, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, bits, module_identity, mib_identifier, integer32, iso, counter32, gauge32, notification_type, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'IpAddress', 'TimeTicks', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'Bits', 'ModuleIdentity', 'MibIdentifier', 'Integer32', 'iso', 'Counter32', 'Gauge32', 'NotificationType', 'Counter64')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
cggsn_capability = module_identity((1, 3, 6, 1, 4, 1, 9, 7, 296))
cggsnCapability.setRevisions(('2006-10-09 01:00', '2003-04-08 03:30'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
cggsnCapability.setRevisionsDescriptions(('Added cggsnCapabilityV12R4M9XG.', 'Initial version of this MIB module.'))
if mibBuilder.loadTexts:
cggsnCapability.setLastUpdated('200610090100Z')
if mibBuilder.loadTexts:
cggsnCapability.setOrganization('Cisco Systems, Inc.')
if mibBuilder.loadTexts:
cggsnCapability.setContactInfo(' Cisco Systems Customer Service Postal: 170 West Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553-NETS E-mail: cs-gprs@cisco.com')
if mibBuilder.loadTexts:
cggsnCapability.setDescription('Agent capabilities for CISCO-GGSN-MIB')
cggsn_capability_v12_r2_m8_yd = agent_capabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 1))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r2_m8_yd = cggsnCapabilityV12R2M8YD.setProductRelease('Cisco IOS 12.2(4)MX & 12.2(8)YD')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r2_m8_yd = cggsnCapabilityV12R2M8YD.setStatus('current')
if mibBuilder.loadTexts:
cggsnCapabilityV12R2M8YD.setDescription('Cisco GGSN MIB capabilities.')
cggsn_capability_v12_r2_m8_yy1 = agent_capabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 2))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r2_m8_yy1 = cggsnCapabilityV12R2M8YY1.setProductRelease('Cisco IOS 12.2(8)YY1')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r2_m8_yy1 = cggsnCapabilityV12R2M8YY1.setStatus('current')
if mibBuilder.loadTexts:
cggsnCapabilityV12R2M8YY1.setDescription('Cisco GGSN MIB capabilities.')
cggsn_capability_v12_r2_m8_yw = agent_capabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 3))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r2_m8_yw = cggsnCapabilityV12R2M8YW.setProductRelease('Cisco IOS 12.2(8)YW')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r2_m8_yw = cggsnCapabilityV12R2M8YW.setStatus('current')
if mibBuilder.loadTexts:
cggsnCapabilityV12R2M8YW.setDescription('Cisco GGSN MIB capabilities.')
cggsn_capability_v12_r4_m9_xg = agent_capabilities((1, 3, 6, 1, 4, 1, 9, 7, 296, 4))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r4_m9_xg = cggsnCapabilityV12R4M9XG.setProductRelease('Cisco IOS 12.4(9)XG')
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cggsn_capability_v12_r4_m9_xg = cggsnCapabilityV12R4M9XG.setStatus('current')
if mibBuilder.loadTexts:
cggsnCapabilityV12R4M9XG.setDescription('Cisco GGSN MIB capabilities.')
mibBuilder.exportSymbols('CISCO-GGSN-CAPABILITY', cggsnCapabilityV12R2M8YY1=cggsnCapabilityV12R2M8YY1, cggsnCapabilityV12R2M8YW=cggsnCapabilityV12R2M8YW, PYSNMP_MODULE_ID=cggsnCapability, cggsnCapability=cggsnCapability, cggsnCapabilityV12R4M9XG=cggsnCapabilityV12R4M9XG, cggsnCapabilityV12R2M8YD=cggsnCapabilityV12R2M8YD) |
class Arrays:
def __init__(self, size):
self.n = size # Size of static array
self.arr = []
self.arr[:self.n] = 'o' * (size + 1) # 'o' is the empty marker
self.end = 0 # Position of end of file marker
def insert(self, element, index=None):
''' Inserting element in array according to index position'''
if index == None:
# If index is not provided push element in end of the array
if self.end < self.n:
# Insert there is empty space in array
self.arr[self.end] = element
self.end +=1
else:
# Overflow array is already full
print('Index out of Bound Overflow')
elif (index >= 0) and (index < self.n):
# If index value is given and is under specified size of array
for i in range(self.end-1, index-1, -1):
# Loop to shift elements to the right
self.arr[i+1] = self.arr[i]
self.arr[index] = element
if self.end != self.n:
# if end marker is under size of array increment end marker
self.end +=1
else:
print('Index out of bounds Overflow')
def delete(self, index=None):
'''Delete element from array at an index or at end'''
if index == None:
# If index is not provided pop element from end of the list
if self.end > 0:
# Delete only if array is not empty
self.end -=1
else:
# Underflow
print('Index out of Bound Underflow')
elif (index >= 0) and (index < self.end):
# If index value is given and is under specified size of array
for i in range(index, self.end):
# Loop to shift elements to the left
self.arr[i] = self.arr[i+1]
self.end -=1
else:
print('Index out of bounds Underflow')
def access(self, index=None):
'''Function to access the elements of the lists'''
if index == None:
# If index is not provided return all array
return self.arr[:self.end]
elif (index >= 0) and (index <= self.end):
# If index is under array bound return value at array
return self.arr[index]
else:
print('Index out of bounds')
def update(self, element, index=None):
'''Function to update and element at a given index'''
if index == None:
# If index is not provided
print('Need index to update')
elif (index >= 0) and (index <= self.end):
# If index is under array bound update
self.arr[index] = element
else:
print('Index out of bounds')
def length(self):
length = len(self.arr) -1
return length | class Arrays:
def __init__(self, size):
self.n = size
self.arr = []
self.arr[:self.n] = 'o' * (size + 1)
self.end = 0
def insert(self, element, index=None):
""" Inserting element in array according to index position"""
if index == None:
if self.end < self.n:
self.arr[self.end] = element
self.end += 1
else:
print('Index out of Bound Overflow')
elif index >= 0 and index < self.n:
for i in range(self.end - 1, index - 1, -1):
self.arr[i + 1] = self.arr[i]
self.arr[index] = element
if self.end != self.n:
self.end += 1
else:
print('Index out of bounds Overflow')
def delete(self, index=None):
"""Delete element from array at an index or at end"""
if index == None:
if self.end > 0:
self.end -= 1
else:
print('Index out of Bound Underflow')
elif index >= 0 and index < self.end:
for i in range(index, self.end):
self.arr[i] = self.arr[i + 1]
self.end -= 1
else:
print('Index out of bounds Underflow')
def access(self, index=None):
"""Function to access the elements of the lists"""
if index == None:
return self.arr[:self.end]
elif index >= 0 and index <= self.end:
return self.arr[index]
else:
print('Index out of bounds')
def update(self, element, index=None):
"""Function to update and element at a given index"""
if index == None:
print('Need index to update')
elif index >= 0 and index <= self.end:
self.arr[index] = element
else:
print('Index out of bounds')
def length(self):
length = len(self.arr) - 1
return length |
# For 4, 3 will return:
# [
# [1,1,1,1],
# [2,1,1],
# [2,2],
# [3,1]
# ]
def seqs(ones, mx, seq=[]):
mx = mx if mx <= ones else ones
if ones > 0:
sqs = []
for i in range(1, mx+1):
sqs.extend(seqs(ones-i, i, seq + [i]))
return sqs
else:
return [seq]
# Calc factorial of x
def fact(x):
res = 1
for i in range(1, x+1):
res *= i
return res
# Calc count of permutations chars in st
# for [3,3,2,1,1,1] will return 6!/(2!*1!*3!)
def perms(sqs):
dig_cnt = {}
for dig in sqs:
if dig in dig_cnt.keys():
dig_cnt[dig] += 1
else:
dig_cnt[dig] = 1
zn = 1
for v in dig_cnt.values():
zn *= fact(v)
return fact(len(sqs)) / zn
def count(steps, mx):
return int(sum(perms(s) for s in seqs(steps, mx)))
print(count(49, 28))
| def seqs(ones, mx, seq=[]):
mx = mx if mx <= ones else ones
if ones > 0:
sqs = []
for i in range(1, mx + 1):
sqs.extend(seqs(ones - i, i, seq + [i]))
return sqs
else:
return [seq]
def fact(x):
res = 1
for i in range(1, x + 1):
res *= i
return res
def perms(sqs):
dig_cnt = {}
for dig in sqs:
if dig in dig_cnt.keys():
dig_cnt[dig] += 1
else:
dig_cnt[dig] = 1
zn = 1
for v in dig_cnt.values():
zn *= fact(v)
return fact(len(sqs)) / zn
def count(steps, mx):
return int(sum((perms(s) for s in seqs(steps, mx))))
print(count(49, 28)) |
def factorial(n):
if n == 1:
return 1
return n * factorial(n - 1)
def get_digits(n):
for digit in str(n):
yield int(digit)
print(sum(get_digits(factorial(10))))
print(sum(get_digits(factorial(100))))
| def factorial(n):
if n == 1:
return 1
return n * factorial(n - 1)
def get_digits(n):
for digit in str(n):
yield int(digit)
print(sum(get_digits(factorial(10))))
print(sum(get_digits(factorial(100)))) |
class Solution:
def smallestRepunitDivByK(self, K: int) -> int:
if K % 10 not in {1, 3, 7, 9}: return -1
MOD, MOD_SET = 0, set()
for length in range(1, K + 1):
MOD = (10 * MOD + 1) % K
if MOD == 0: return length
if MOD in MOD_SET: return -1
MOD_SET.add(MOD)
return -1
| class Solution:
def smallest_repunit_div_by_k(self, K: int) -> int:
if K % 10 not in {1, 3, 7, 9}:
return -1
(mod, mod_set) = (0, set())
for length in range(1, K + 1):
mod = (10 * MOD + 1) % K
if MOD == 0:
return length
if MOD in MOD_SET:
return -1
MOD_SET.add(MOD)
return -1 |
# OpenWeatherMap API Key
weather_api_key = "eeb909dcaefe8f86bd5b42aac61797bc"
# Google API Key
g_key = "AIzaSyB2LzrZz7y9I-0AeDPiR8EckxUQd54T9eo"
| weather_api_key = 'eeb909dcaefe8f86bd5b42aac61797bc'
g_key = 'AIzaSyB2LzrZz7y9I-0AeDPiR8EckxUQd54T9eo' |
#
# PySNMP MIB module ALTEON-CHEETAH-NETWORK-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALTEON-CHEETAH-NETWORK-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:20:58 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
aws_switch, = mibBuilder.importSymbols("ALTEON-ROOT-MIB", "aws-switch")
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
MibIdentifier, Unsigned32, ObjectIdentity, ModuleIdentity, Gauge32, Counter32, iso, IpAddress, NotificationType, Counter64, Integer32, TimeTicks, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "Unsigned32", "ObjectIdentity", "ModuleIdentity", "Gauge32", "Counter32", "iso", "IpAddress", "NotificationType", "Counter64", "Integer32", "TimeTicks", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
PhysAddress, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "PhysAddress", "TextualConvention", "DisplayString")
layer3 = ModuleIdentity((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3))
layer3.setRevisions(('2009-08-05 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: layer3.setRevisionsDescriptions(('Added revision clause for SMIv2 compliance.',))
if mibBuilder.loadTexts: layer3.setLastUpdated('200908050000Z')
if mibBuilder.loadTexts: layer3.setOrganization('Radware Ltd.')
if mibBuilder.loadTexts: layer3.setContactInfo('Lobby 1 (Visitors) and Lobby 2 (Deliveries) 575 Corporate Drive Mahwah, NJ 07430 support@radware.com')
if mibBuilder.loadTexts: layer3.setDescription('The MIB module for the Alteon OS Layer 3 configuration, statistics and information .')
layer3Configs = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1))
layer3Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2))
layer3Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3))
layer3Oper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4))
ipInterfaceCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1))
ipGatewayCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2))
ipStaticRouteCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3))
ipForwardCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4))
vrrpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6))
arpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7))
ipBootpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8))
dnsCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9))
ipNwfCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10))
ipRmapCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11))
bgpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12))
ospfCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13))
ipGeneralCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14))
ipStaticArpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15))
rip2Cfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18))
arpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2))
routeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3))
dnsStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4))
vrrpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5))
ospfStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6))
clearStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7))
ip6Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10))
icmp6Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11))
ip6gwStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12))
rip2Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13))
tcpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14))
ipRoutingInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1))
arpInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2))
vrrpInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3))
ospfinfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4))
gatewayInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5))
nbrcacheInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7))
ipRoute6Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8))
ipIntfInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9))
rip2Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10))
rip2RoutesInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11))
allowedNwInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12))
vrrpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1))
ipOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2))
ipInterfaceTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipInterfaceTableMax.setStatus('current')
if mibBuilder.loadTexts: ipInterfaceTableMax.setDescription('The maximum number of rows in the IP interface table.')
ipCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2), )
if mibBuilder.loadTexts: ipCurCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfTable.setDescription('The table of IP interface configuration.')
ipCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgIntfIndex"))
if mibBuilder.loadTexts: ipCurCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfEntry.setDescription('A row in the Ip interface table')
ipCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfIndex.setDescription('The interface number for which the IP information is related.')
ipCurCfgIntfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfAddr.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfAddr.setDescription('The IP address of the interface.')
ipCurCfgIntfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfMask.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfMask.setDescription('The subnet mask of the interface.')
ipCurCfgIntfBroadcast = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfBroadcast.setStatus('obsolete')
if mibBuilder.loadTexts: ipCurCfgIntfBroadcast.setDescription('The broadcast address of the interface.')
ipCurCfgIntfVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfVlan.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfVlan.setDescription('The VLAN associated with the interface.')
ipCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfState.setDescription('The state of the interface.')
ipCurCfgIntfBootpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfBootpRelay.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfBootpRelay.setDescription('Enable/disable BOOTP relay.')
ipCurCfgIntfIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfIpVer.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfIpVer.setDescription('The type of IP address.')
ipCurCfgIntfIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfIpv6Addr.setDescription('The IPv6 address of the interface. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipCurCfgIntfPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfPrefixLen.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfPrefixLen.setDescription('The prefix length associated with this IP address .')
ipCurCfgIntfRouteAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfRouteAdv.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgIntfRouteAdv.setDescription('Enable/disable route advertisement of the interface.')
ipNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3), )
if mibBuilder.loadTexts: ipNewCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfTable.setDescription('The table of interface configuration in the New Configuration Block.')
ipNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgIntfIndex"))
if mibBuilder.loadTexts: ipNewCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfEntry.setDescription('A row in the Ip interface table')
ipNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfIndex.setDescription('The interface number for which the IP information is related.')
ipNewCfgIntfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfAddr.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfAddr.setDescription('The IP address of the interface.')
ipNewCfgIntfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfMask.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfMask.setDescription('The subnet mask of the interface.')
ipNewCfgIntfBroadcast = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfBroadcast.setStatus('obsolete')
if mibBuilder.loadTexts: ipNewCfgIntfBroadcast.setDescription('The broadcast address of the interface.')
ipNewCfgIntfVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 5), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfVlan.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfVlan.setDescription('The VLAN associated with the interface.')
ipNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfState.setDescription('The state of the interface.')
ipNewCfgIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfDelete.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipNewCfgIntfBootpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfBootpRelay.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfBootpRelay.setDescription('Enable/disable BOOTP relay.')
ipNewCfgIntfIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfIpVer.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfIpVer.setDescription('The type of IP address.')
ipNewCfgIntfIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfIpv6Addr.setDescription('The IPv6 address of the interface. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipNewCfgIntfPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfPrefixLen.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfPrefixLen.setDescription('The prefix length associated with this IP address .')
ipNewCfgIntfRouteAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfRouteAdv.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgIntfRouteAdv.setDescription('Enable/disable route advertisement of the interface.')
ipCurCfgGwMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("strict", 1), ("roundrobin", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwMetric.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwMetric.setDescription('The default gateway metric.')
ipNewCfgGwMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("strict", 1), ("roundrobin", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgGwMetric.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwMetric.setDescription('The default gateway metric.')
ipGatewayTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipGatewayTableMax.setStatus('current')
if mibBuilder.loadTexts: ipGatewayTableMax.setDescription('The maximum number of rows in the IP gateway table.')
ipCurCfgGwTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4), )
if mibBuilder.loadTexts: ipCurCfgGwTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwTable.setDescription('The table of gateways in the Current configuration Block.')
ipCurCfgGwEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgGwIndex"))
if mibBuilder.loadTexts: ipCurCfgGwEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwEntry.setDescription('A row in the Ip gateway table')
ipCurCfgGwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwIndex.setDescription('The gateway number for which the information is related.')
ipCurCfgGwAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwAddr.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwAddr.setDescription('The IP address of the default gateway.')
ipCurCfgGwInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwInterval.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwInterval.setDescription('The interval between ping attempts.')
ipCurCfgGwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwRetry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwRetry.setDescription('The number of failed attempts to declare the default gateway DOWN.')
ipCurCfgGwState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwState.setDescription('The state of the default gateway.')
ipCurCfgGwArp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwArp.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwArp.setDescription('The state of ARP only health checks.')
ipCurCfgGwVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwVlan.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwVlan.setDescription('The VLAN number for this gateway. The first 4 entries in the table are only used for default gateway load balancing hence the VLAN cannot be specified for the first 4 entries.')
ipCurCfgGwPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("low", 1), ("high", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwPriority.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwPriority.setDescription('The priority of the default route for this gateway. High priority means that the default gateway route will have higher priority over learned default routes. Low priority means that the default gateway route will have lower priority than learned default routes.')
ipCurCfgGwIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwIpVer.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwIpVer.setDescription('The type of IP address.')
ipCurCfgGwIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgGwIpv6Addr.setDescription('The IPv6 address of the gateway. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipNewCfgGwTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5), )
if mibBuilder.loadTexts: ipNewCfgGwTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwTable.setDescription('The table of gateway configuration in the new configuration block.')
ipNewCfgGwEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgGwIndex"))
if mibBuilder.loadTexts: ipNewCfgGwEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwEntry.setDescription('A row in the Ip default gateway table')
ipNewCfgGwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgGwIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwIndex.setDescription('The gateway number for which the information is related.')
ipNewCfgGwAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwAddr.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwAddr.setDescription('The IP address of the default gateway.')
ipNewCfgGwInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwInterval.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwInterval.setDescription('The interval in seconds between ping attempts.')
ipNewCfgGwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwRetry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwRetry.setDescription('The number of failed attempts to declare the default gateway DOWN.')
ipNewCfgGwState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwState.setDescription('The state of the default gateway.')
ipNewCfgGwDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwDelete.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipNewCfgGwArp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwArp.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwArp.setDescription('The state of the ARP only health checks.')
ipNewCfgGwVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 8), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwVlan.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwVlan.setDescription('The VLAN number for this gateway. The first 4 entries in the table are only used for default gateway load balancing hence the VLAN cannot be specified for the first 4 entries.')
ipNewCfgGwPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("low", 1), ("high", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwPriority.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwPriority.setDescription('The priority of the default route for this gateway. High priority means that the default gateway route will have higher priority over learned default routes. Low priority means that the default gateway route will have lower priority than learned default routes.')
ipNewCfgGwIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwIpVer.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwIpVer.setDescription('The type of IP address.')
ipNewCfgGwIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgGwIpv6Addr.setDescription('The IPv6 address of the gateway. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipStaticRouteTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipStaticRouteTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ipStaticRouteTableMaxSize.setDescription('The maximum number of rows in the Static Route table.')
ipCurCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2), )
if mibBuilder.loadTexts: ipCurCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteTable.setDescription('The table of static routes in the current configuration block.')
ipCurCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipCurCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ipCurCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteIndx.setDescription('The index of the static routing table.')
ipCurCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteDestIp.setDescription('The destination IP address of this route.')
ipCurCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteMask.setDescription('The destination IP address of this route.')
ipCurCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteGateway.setDescription('The destination IP address of this route.')
ipCurCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticRouteInterface.setDescription('The IP interface of this route. The IP address of the specified interface shall be use as source IP when performs routing.')
ipNewCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3), )
if mibBuilder.loadTexts: ipNewCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteTable.setDescription('The table of static routes in the new configuration block.')
ipNewCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipNewCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ipNewCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteIndx.setDescription('The index of the static routing table.')
ipNewCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteDestIp.setDescription('The destination IP address of this route.')
ipNewCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteMask.setDescription('The subnet mask of this route.')
ipNewCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteGateway.setDescription('The IP address of the gateway for this route.')
ipNewCfgStaticRouteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteAction.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteAction.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipNewCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 6), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticRouteInterface.setDescription('The IP interface of this route. The IP address of the specified interface shall be use as source IP when performs routing.')
ipv6CurCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4), )
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteTable.setDescription('The table of ipv6 static routes in the current configuration block.')
ipv6CurCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipv6CurCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ipv6CurCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteIndx.setDescription('The index of the ipv6 static routing table.')
ipv6CurCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteDestIp.setDescription(' The destination IPv6 address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6CurCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteMask.setDescription('The prefix length associated with this IP address.')
ipv6CurCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteGateway.setDescription('The destination IPv6 gateway address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6CurCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteInterface.setDescription('The IPv6 interface of this route. The IPv6 address of the specified interface shall be use as source IP when performs routing.')
ipv6NewCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5), )
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteTable.setDescription('The table of ipv6 static routes in the current configuration block.')
ipv6NewCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipv6NewCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ipv6NewCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 1), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteIndx.setDescription('The index of the ipv6 static routing table.')
ipv6NewCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteDestIp.setDescription('The destination IPv6 address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6NewCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteMask.setDescription('The prefix length associated with this IP address.')
ipv6NewCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteGateway.setDescription('The destination IPv6 gateway address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6NewCfgStaticRouteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteAction.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteAction.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipv6NewCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteInterface.setDescription('The IPv6 interface of this route. The IPv6 address of the specified interface shall be use as source IP when performs routing.')
ripCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1), )
if mibBuilder.loadTexts: ripCurCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfTable.setDescription('The table of RIP on IP interface configuration in the current_config.')
ripCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripCurCfgIntfIndex"))
if mibBuilder.loadTexts: ripCurCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfEntry.setDescription('Information about RIP on IP interface.')
ripCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfIndex.setDescription('The interface number for which the RIP information is related.')
ripCurCfgIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2), ("both", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfVersion.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfVersion.setDescription('RIP version.')
ripCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfState.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfState.setDescription('Enable or disable RIP protocol.')
ripCurCfgIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfListen.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfListen.setDescription('Enable or disable listening to route updates.')
ripCurCfgIntfDefListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfDefListen.setStatus('obsolete')
if mibBuilder.loadTexts: ripCurCfgIntfDefListen.setDescription('Enable or disable listening to default routes.')
ripCurCfgIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfTrigUpdate.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfTrigUpdate.setDescription('Enable or disable triggered updates.')
ripCurCfgIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfMcastUpdate.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfMcastUpdate.setDescription('Enable or disable multicast updates.')
ripCurCfgIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfPoisonReverse.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfPoisonReverse.setDescription('RIP poison reverse.')
ripCurCfgIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfSupply.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfSupply.setDescription('Enable or disable supplying route updates.')
ripCurCfgIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfMetric.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfMetric.setDescription('RIP route metric for this interface.')
ripCurCfgIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfAuth.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfAuth.setDescription('The type of Authentication used on this interface.')
ripCurCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfKey.setDescription('RIP update authentication password.')
ripCurCfgIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfDefault.setStatus('current')
if mibBuilder.loadTexts: ripCurCfgIntfDefault.setDescription('Specifies what RIP does with default routes.')
ripNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2), )
if mibBuilder.loadTexts: ripNewCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfTable.setDescription('The table of RIP on IP interface configuration in the new_config.')
ripNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripNewCfgIntfIndex"))
if mibBuilder.loadTexts: ripNewCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfEntry.setDescription('Information about RIP on IP interface.')
ripNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripNewCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfIndex.setDescription('The interface number for which the RIP information is related.')
ripNewCfgIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2), ("both", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfVersion.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfVersion.setDescription('RIP version.')
ripNewCfgIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfSupply.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfSupply.setDescription('Enable or disable supplying route updates.')
ripNewCfgIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfListen.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfListen.setDescription('Enable or disable listening to route updates.')
ripNewCfgIntfDefListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfDefListen.setStatus('obsolete')
if mibBuilder.loadTexts: ripNewCfgIntfDefListen.setDescription('Enable or disable listening to default routes.')
ripNewCfgIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfTrigUpdate.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfTrigUpdate.setDescription('Enable or disable triggered updates.')
ripNewCfgIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfMcastUpdate.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfMcastUpdate.setDescription('Enable or disable multicast updates.')
ripNewCfgIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfPoisonReverse.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfPoisonReverse.setDescription('RIP poison reverse.')
ripNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfState.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfState.setDescription('Enable or disable RIP protocol.')
ripNewCfgIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ripNewCfgIntfMetric.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfMetric.setDescription('RIP route metric for this interface.')
ripNewCfgIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ripNewCfgIntfAuth.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfAuth.setDescription('The type of Authentication used on this interface.')
ripNewCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfKey.setDescription('RIP update authentication password.')
ripNewCfgIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfDefault.setStatus('current')
if mibBuilder.loadTexts: ripNewCfgIntfDefault.setDescription('Specifies what RIP does with default routes. The default routes action could be set to listen/supply/both/none.')
ripGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3))
rip2CurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgState.setStatus('current')
if mibBuilder.loadTexts: rip2CurCfgState.setDescription('RIP global state.')
rip2NewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgState.setStatus('current')
if mibBuilder.loadTexts: rip2NewCfgState.setDescription('Globally turn RIP on or off.')
rip2CurCfgUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgUpdatePeriod.setStatus('current')
if mibBuilder.loadTexts: rip2CurCfgUpdatePeriod.setDescription('Update Period in seconds.')
rip2NewCfgUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgUpdatePeriod.setStatus('current')
if mibBuilder.loadTexts: rip2NewCfgUpdatePeriod.setDescription('Update Period in seconds.')
rip2CurCfgVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgVip.setStatus('current')
if mibBuilder.loadTexts: rip2CurCfgVip.setDescription('Advertise VIP Host Routes.')
rip2NewCfgVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgVip.setStatus('current')
if mibBuilder.loadTexts: rip2NewCfgVip.setDescription('Advertise VIP Host Routes.')
rip2CurCfgStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgStaticSupply.setStatus('current')
if mibBuilder.loadTexts: rip2CurCfgStaticSupply.setDescription('Advertise Static Routes.')
rip2NewCfgStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgStaticSupply.setStatus('current')
if mibBuilder.loadTexts: rip2NewCfgStaticSupply.setDescription('Advertise Static Routes.')
ipFwdGeneralCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1))
ipFwdCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("on", 2), ("off", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgState.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgState.setDescription('IP forwarding global state.')
ipFwdNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("on", 2), ("off", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgState.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgState.setDescription('IP forwarding global state.')
ipFwdCurCfgDirectedBcast = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgDirectedBcast.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgDirectedBcast.setDescription('Enable or disable forwarding directed broadcasts.')
ipFwdNewCfgDirectedBcast = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgDirectedBcast.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgDirectedBcast.setDescription('Enable or disable forwarding directed broadcasts.')
ipFwdCurCfgNoICMPRedirect = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgNoICMPRedirect.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgNoICMPRedirect.setDescription('Enable or disable no icmp redirects.')
ipFwdNewCfgNoICMPRedirect = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgNoICMPRedirect.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgNoICMPRedirect.setDescription('Enable or disable no icmp redirects.')
ipFwdCurCfgRtCache = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgRtCache.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgRtCache.setDescription('Enable or disable SP Route Caching.')
ipFwdNewCfgRtCache = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgRtCache.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgRtCache.setDescription('Enable or disable SP Route Caching.')
ipFwdPortTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdPortTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ipFwdPortTableMaxSize.setDescription('The maximum number of rows in the IP Port table.')
ipFwdCurCfgPortTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3), )
if mibBuilder.loadTexts: ipFwdCurCfgPortTable.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgPortTable.setDescription('The table of ports and their forwarding states')
ipFwdCurCfgPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdCurCfgPortIndex"))
if mibBuilder.loadTexts: ipFwdCurCfgPortEntry.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgPortEntry.setDescription('A row in the ipFwdCurCfgPortTable ')
ipFwdCurCfgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgPortIndex.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgPortIndex.setDescription('The port number for which the forwarding state information pertains.')
ipFwdCurCfgPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgPortState.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgPortState.setDescription('The forwarding state of the port.')
ipFwdNewCfgPortTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4), )
if mibBuilder.loadTexts: ipFwdNewCfgPortTable.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgPortTable.setDescription('The table of ports and their forwarding states')
ipFwdNewCfgPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdNewCfgPortIndex"))
if mibBuilder.loadTexts: ipFwdNewCfgPortEntry.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgPortEntry.setDescription('A row in the ipFwdNewCfgPortTable ')
ipFwdNewCfgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdNewCfgPortIndex.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgPortIndex.setDescription('The port number for which the forwarding state information pertains.')
ipFwdNewCfgPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgPortState.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgPortState.setDescription('The forwarding state of the port.')
ipFwdLocalTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdLocalTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ipFwdLocalTableMaxSize.setDescription('The maximum number of rows in the Local table.')
ipFwdCurCfgLocalTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6), )
if mibBuilder.loadTexts: ipFwdCurCfgLocalTable.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgLocalTable.setDescription('The table of local network definition.')
ipFwdCurCfgLocalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdCurCfgLocalIndex"))
if mibBuilder.loadTexts: ipFwdCurCfgLocalEntry.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgLocalEntry.setDescription('A row in the ipFwdCurCfgLocalTable ')
ipFwdCurCfgLocalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgLocalIndex.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgLocalIndex.setDescription('The index of ipFwdCurCfgLocalTable.')
ipFwdCurCfgLocalSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgLocalSubnet.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgLocalSubnet.setDescription('The current local IP subnet.')
ipFwdCurCfgLocalMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgLocalMask.setStatus('current')
if mibBuilder.loadTexts: ipFwdCurCfgLocalMask.setDescription('The current local IP subnet mask.')
ipFwdNewCfgLocalTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7), )
if mibBuilder.loadTexts: ipFwdNewCfgLocalTable.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgLocalTable.setDescription('The table of local network definition.')
ipFwdNewCfgLocalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdNewCfgLocalIndex"))
if mibBuilder.loadTexts: ipFwdNewCfgLocalEntry.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgLocalEntry.setDescription('A row in the ipFwdNewCfgLocalTable ')
ipFwdNewCfgLocalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdNewCfgLocalIndex.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgLocalIndex.setDescription('The index of ipFwdNewCfgLocalTable.')
ipFwdNewCfgLocalSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipFwdNewCfgLocalSubnet.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgLocalSubnet.setDescription('The new local IP subnet.')
ipFwdNewCfgLocalMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipFwdNewCfgLocalMask.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgLocalMask.setDescription('The new local IP subnet mask.')
ipFwdNewCfgLocalDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipFwdNewCfgLocalDelete.setStatus('current')
if mibBuilder.loadTexts: ipFwdNewCfgLocalDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
arpCurCfgReARPPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpCurCfgReARPPeriod.setStatus('current')
if mibBuilder.loadTexts: arpCurCfgReARPPeriod.setDescription('Re-ARP Period in seconds.')
arpNewCfgReARPPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 120))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: arpNewCfgReARPPeriod.setStatus('current')
if mibBuilder.loadTexts: arpNewCfgReARPPeriod.setDescription('Re-ARP Period in seconds.')
ipCurCfgBootpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgBootpAddr.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgBootpAddr.setDescription('The IP address of BOOTP server.')
ipNewCfgBootpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgBootpAddr.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgBootpAddr.setDescription('The IP address of BOOTP server.')
ipCurCfgBootpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgBootpAddr2.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgBootpAddr2.setDescription('The IP address of second BOOTP server.')
ipNewCfgBootpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgBootpAddr2.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgBootpAddr2.setDescription('The IP address of second BOOTP server.')
ipCurCfgBootpState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgBootpState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgBootpState.setDescription('The state of BOOTP relay.')
ipNewCfgBootpState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgBootpState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgBootpState.setDescription('The state of BOOTP relay.')
vrrpGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1))
vrrpCurCfgGenState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenState.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenState.setDescription('Enable or disable VRRP operation globally.')
vrrpNewCfgGenState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenState.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenState.setDescription('Enable or disable VRRP operation globally.')
vrrpCurCfgGenTckVirtRtrInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckVirtRtrInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckVirtRtrInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other virtual routers.')
vrrpNewCfgGenTckVirtRtrInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckVirtRtrInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckVirtRtrInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other virtual routers.')
vrrpCurCfgGenTckIpIntfInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckIpIntfInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckIpIntfInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other router interfaces.')
vrrpNewCfgGenTckIpIntfInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckIpIntfInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckIpIntfInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other router interfaces.')
vrrpCurCfgGenTckVlanPortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckVlanPortInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckVlanPortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the port state of ports that belongs to the same virtual LAN as the virtual router.')
vrrpNewCfgGenTckVlanPortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckVlanPortInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckVlanPortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the port state of ports that belongs to the same virtual LAN as the virtual router.')
vrrpCurCfgGenTckL4PortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckL4PortInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckL4PortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the Layer 4 port states. This is valid when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgGenTckL4PortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckL4PortInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckL4PortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the Layer 4 port states. This is valid when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgGenTckRServerInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckRServerInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckRServerInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of real servers under the virtual server which is configured as a VRRP virtual router.')
vrrpNewCfgGenTckRServerInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckRServerInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckRServerInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of real servers under the virtual server which is configured as a VRRP virtual router.')
vrrpCurCfgGenTckHsrpInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrpInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrpInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements.')
vrrpNewCfgGenTckHsrpInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrpInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrpInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements.')
vrrpCurCfgGenHotstandby = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenHotstandby.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenHotstandby.setDescription('Enable or disable hotstandby processing.')
vrrpNewCfgGenHotstandby = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenHotstandby.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenHotstandby.setDescription('Enable or disable hotstandby processing.')
vrrpCurCfgGenTckHsrvInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrvInc.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrvInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements by VLAN.')
vrrpNewCfgGenTckHsrvInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrvInc.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrvInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements by VLAN.')
vrrpCurCfgGenHoldoff = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenHoldoff.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgGenHoldoff.setDescription('The time for VRRP virtual router to hold before it begins to change state to backup or master state.')
vrrpNewCfgGenHoldoff = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenHoldoff.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgGenHoldoff.setDescription('The time for VRRP virtual router to hold before it begins to change state to backup or master state.')
vrrpVirtRtrTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpVirtRtrTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: vrrpVirtRtrTableMaxSize.setDescription('The maximum number of entries in VRRP virtual router table.')
vrrpCurCfgVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3), )
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTable.setDescription('The table of VRRP virtual routers configuration in current_config.')
vrrpCurCfgVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrIndx"))
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTableEntry.setDescription('Information about a VRRP virtual router.')
vrrpCurCfgVirtRtrIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIndx.setDescription('The VRRP virtual router table index.')
vrrpCurCfgVirtRtrID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrID.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrID.setDescription('The VRRP virtual router identifier.')
vrrpCurCfgVirtRtrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrAddr.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrAddr.setDescription('The VRRP virtual router IP address.')
vrrpCurCfgVirtRtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIfIndex.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrpCurCfgVirtRtrInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrInterval.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrpCurCfgVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrpCurCfgVirtRtrPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPreempt.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrpCurCfgVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrState.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrState.setDescription('Enable or disable the VRRP virtual router.')
vrrpCurCfgVirtRtrSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrSharing.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrpCurCfgVirtRtrTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVirtRtrInc.')
vrrpCurCfgVirtRtrTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckIpIntf.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrpCurCfgVirtRtrTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVlanPort.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrpCurCfgVirtRtrTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckL4Port.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckRServer.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrp.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrv.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrv.setDescription('Enable or disable tracking HSRP advertisements by VLAN for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVersion.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVersion.setDescription('The VRRP virtual router IP Version.')
vrrpCurCfgVirtRtrIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Addr.setDescription('The IPv6 address of the virtual router. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
vrrpCurCfgVirtRtrIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1045))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Interval.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Interval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrpNewCfgVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4), )
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTable.setDescription('The table of VRRP virtual routers configuration in current_config.')
vrrpNewCfgVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrIndx"))
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTableEntry.setDescription('Information about a VRRP virtual router.')
vrrpNewCfgVirtRtrIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIndx.setDescription('The VRRP virtual router table index.')
vrrpNewCfgVirtRtrID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrID.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrID.setDescription('The VRRP virtual router identifier.')
vrrpNewCfgVirtRtrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrAddr.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrAddr.setDescription('The VRRP virtual router IP address.')
vrrpNewCfgVirtRtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIfIndex.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrpNewCfgVirtRtrInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrInterval.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrpNewCfgVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPriority.setDescription('The priority value to be used by the specified VRRP virtual router.')
vrrpNewCfgVirtRtrPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPreempt.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrpNewCfgVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrState.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrState.setDescription('Enable or disable the VRRP virtual router.')
vrrpNewCfgVirtRtrDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrDelete.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than delete(2) has no effect on the state of the row.')
vrrpNewCfgVirtRtrSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrSharing.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrpNewCfgVirtRtrTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVirtRtrInc.')
vrrpNewCfgVirtRtrTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckIpIntf.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckIpIntfInc.')
vrrpNewCfgVirtRtrTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVlanPort.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVlanPortInc.')
vrrpNewCfgVirtRtrTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckL4Port.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckRServer.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrp.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrv.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrv.setDescription('Enable or disable tracking HSRP by VLAN advertisements for priority adjustment. The priority increment is defined in vrrpNewCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVersion.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVersion.setDescription('The VRRP virtual router IP Version.')
vrrpNewCfgVirtRtrIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 19), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Addr.setDescription('The IPv6 address of the virtual router. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
vrrpNewCfgVirtRtrIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Interval.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Interval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrpIfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpIfTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: vrrpIfTableMaxSize.setDescription('The maximum number of entries in VRRP interface table.')
vrrpCurCfgIfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6), )
if mibBuilder.loadTexts: vrrpCurCfgIfTable.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgIfTable.setDescription('The table of VRRP interface configuration in current_config.')
vrrpCurCfgIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgIfIndx"))
if mibBuilder.loadTexts: vrrpCurCfgIfTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgIfTableEntry.setDescription('Information about a VRRP interface.')
vrrpCurCfgIfIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgIfIndx.setDescription('The VRRP interface index. This is eqivalent to IfIndex.')
vrrpCurCfgIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("simple-text-password", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfAuthType.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgIfAuthType.setDescription('Type of authentication being used. none(1) - no authentication simple-text-password(2) - use password specified in vrrpCurCfgIfPasswd for authentication.')
vrrpCurCfgIfPasswd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfPasswd.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgIfPasswd.setDescription('The password for authentication.')
vrrpCurCfgIfIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfIpAddr.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgIfIpAddr.setDescription('The IP address of the VRRP interface.This is eqivalent to ipCurCfgIntfAddr.')
vrrpNewCfgIfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7), )
if mibBuilder.loadTexts: vrrpNewCfgIfTable.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgIfTable.setDescription('The table of VRRP interface configuration in current_config.')
vrrpNewCfgIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgIfIndx"))
if mibBuilder.loadTexts: vrrpNewCfgIfTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgIfTableEntry.setDescription('Information about a VRRP interface.')
vrrpNewCfgIfIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgIfIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgIfIndx.setDescription('The VRRP interface index. This is eqivalent to IfIndex.')
vrrpNewCfgIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("simple-text-password", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgIfAuthType.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgIfAuthType.setDescription('Type of authentication being used. none(1) - no authentication simple-text-password(2) - use password specified in vrrpNewCfgIfPasswd for authentication.')
vrrpNewCfgIfPasswd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgIfPasswd.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgIfPasswd.setDescription('The password for authentication.')
vrrpNewCfgIfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgIfDelete.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgIfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than delete(2) has no effect on the state of the row.')
vrrpVirtRtrGrpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpVirtRtrGrpTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: vrrpVirtRtrGrpTableMaxSize.setDescription('The maximum number of entries in VRRP Group table.')
vrrpCurCfgVirtRtrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9), )
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTable.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTable.setDescription('The table of VRRP virtual router group in current_config.')
vrrpCurCfgVirtRtrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrGrpIndx"))
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTableEntry.setDescription('Information about a VRRP failover virtual router.')
vrrpCurCfgVirtRtrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIndx.setDescription('The VRRP virtual router table index.')
vrrpCurCfgVirtRtrGrpID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpID.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpID.setDescription('The VRRP virtual router identifier.')
vrrpCurCfgVirtRtrGrpIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIfIndex.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrpCurCfgVirtRtrGrpInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpInterval.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrpCurCfgVirtRtrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrpCurCfgVirtRtrGrpPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPreempt.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrpCurCfgVirtRtrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpState.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpState.setDescription('Enable or disable the VRRP virtual router.')
vrrpCurCfgVirtRtrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpSharing.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrpCurCfgVirtRtrGrpTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckVirtRtrInc.')
vrrpCurCfgVirtRtrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrpCurCfgVirtRtrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrpCurCfgVirtRtrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrv.setDescription('Enable or disable tracking HSRP by VLAN advertisements for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrGrpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpVersion.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpVersion.setDescription('The VRRP virtual router group IP Version.')
vrrpCurCfgVirtRtrGrpIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIpv6Interval.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIpv6Interval.setDescription('The time interval between IPv6 VRRP advertisements in seconds.')
vrrpNewCfgVirtRtrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10), )
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTable.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTable.setDescription('The table of VRRP virtual router group configuration in new_config.')
vrrpNewCfgVirtRtrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrGrpIndx"))
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTableEntry.setDescription('Information about a VRRP failover virtual router.')
vrrpNewCfgVirtRtrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIndx.setDescription('The VRRP virtual router table index.')
vrrpNewCfgVirtRtrGrpID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpID.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpID.setDescription('The VRRP virtual router identifier.')
vrrpNewCfgVirtRtrGrpIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 3), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIfIndex.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrpNewCfgVirtRtrGrpInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpInterval.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrpNewCfgVirtRtrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual router.')
vrrpNewCfgVirtRtrGrpPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPreempt.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrpNewCfgVirtRtrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpState.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpState.setDescription('Enable or disable the VRRP virtual router.')
vrrpNewCfgVirtRtrGrpDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpDelete.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than delete(2) has no effect on the state of the row.')
vrrpNewCfgVirtRtrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpSharing.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrpNewCfgVirtRtrGrpTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVirtRtrInc.')
vrrpNewCfgVirtRtrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckIpIntfInc.')
vrrpNewCfgVirtRtrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVlanPortInc.')
vrrpNewCfgVirtRtrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrv.setDescription('Enable or disable tracking HSRP by VLAN advertisements for priority adjustment. The priority increment is defined in vrrpNewCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrGrpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpVersion.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpVersion.setDescription('The VRRP virtual router group IP Version.')
vrrpNewCfgVirtRtrGrpIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIpv6Interval.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIpv6Interval.setDescription('The time interval between IPv6 VRRP advertisements in seconds.')
vrrpVirtRtrVrGrpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpVirtRtrVrGrpTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: vrrpVirtRtrVrGrpTableMaxSize.setDescription('The maximum number of entries in VRRP VrGroup table.')
vrrpCurCfgVirtRtrVrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12), )
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTable.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTable.setDescription('The table of VRRP virtual router vrgroup configuration in the current config.')
vrrpCurCfgVirtRtrVrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrVrGrpIndx"))
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTableEntry.setDescription('Information about setting VRRP virtual router vrgroup.')
vrrpCurCfgVirtRtrVrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpIndx.setDescription('The VRRP virtual router vrgroup table index.')
vrrpCurCfgVirtRtrVrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpName.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpName.setDescription('The VRRP virtual router vrgroup name.')
vrrpCurCfgVirtRtrVrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpState.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpState.setDescription('Enable or disable VRRP Vrgroup state ')
vrrpCurCfgVirtRtrVrGrpBmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpBmap.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpBmap.setDescription('The virtual routers added for to this VRRP vrgroup. The selected virtual routers are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Virtual Router 9 || || || ||___ Virtual Router 8 || |____ Virtual Router 7 || . . . ||_________ Virtual Router 2 |__________ Virtual Router 1 where x : 1 - The represented Virtual Router is added 0 - The represented Virtual Router is not added')
vrrpCurCfgVirtRtrVrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrpCurCfgVirtRtrVrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckIpIntf.setDescription('Enable or disable tracking interfaces in vrgroup for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrpCurCfgVirtRtrVrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrpCurCfgVirtRtrVrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrVrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrVrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrVrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrv.setDescription('Enable or disable tracking HSRP advertisements by VLAN for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setDescription('The track virtual router for group.')
vrrpCurCfgVirtRtrVrGrpAdd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdd.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdd.setDescription('Specify virtual router number which needs to be added to group.')
vrrpCurCfgVirtRtrVrGrpAdverInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdverInterval.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdverInterval.setDescription('The advertisement interval for virtual router group.')
vrrpCurCfgVirtRtrVrGrpPreemption = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPreemption.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPreemption.setDescription('Enable/Disable preemption for virtual router group.')
vrrpCurCfgVirtRtrVrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpSharing.setStatus('current')
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpSharing.setDescription('Enable/Disable sharing for virtual router group.')
vrrpNewCfgVirtRtrVrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13), )
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTable.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTable.setDescription('The table of VRRP virtual router vrgroup configuration in new_config.')
vrrpNewCfgVirtRtrVrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrVrGrpIndx"))
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTableEntry.setDescription('Information about setting VRRP virtual router Vrgroup.')
vrrpNewCfgVirtRtrVrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpIndx.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpIndx.setDescription('The VRRP virtual router vrgroup table index.')
vrrpNewCfgVirtRtrVrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpName.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpName.setDescription('The VRRP virtual router vrgroup name.')
vrrpNewCfgVirtRtrVrGrpAdd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdd.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdd.setDescription('The VRRP virtual router to be added to this vrgroup table.')
vrrpNewCfgVirtRtrVrGrpRem = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpRem.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpRem.setDescription('The VRRP virtual router to be removed from this vrgroup table.')
vrrpNewCfgVirtRtrVrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpState.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpState.setDescription('Enable or disable VRRP Vrgroup state ')
vrrpNewCfgVirtRtrVrGrpDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpDelete.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
vrrpNewCfgVirtRtrVrGrpBmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 7), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpBmap.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpBmap.setDescription('The virtual routers added to this VRRP vrgroup. The selected virtual routers are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Virtual Router 9 || || || ||___ Virtual Router 8 || |____ Virtual Router 7 || . . . ||_________ Virtual Router 2 |__________ Virtual Router 1 where x : 1 - The represented Virtual Router is added 0 - The represented Virtual Router is not added')
vrrpNewCfgVirtRtrVrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrpNewCfgVirtRtrVrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckIpIntf.setDescription('Enable or disable tracking interfaces in vrgroup for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrpNewCfgVirtRtrVrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrpNewCfgVirtRtrVrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrVrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrVrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrVrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrv.setDescription('Enable or disable tracking HSRP advertisements by VLAN for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setDescription('The track virtual router for group.')
vrrpNewCfgVirtRtrVrGrpAdverInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdverInterval.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdverInterval.setDescription('The advertisement interval for virtual router group.')
vrrpNewCfgVirtRtrVrGrpPreemption = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPreemption.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPreemption.setDescription('Enable/Disable preemption for virtual router group.')
vrrpNewCfgVirtRtrVrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpSharing.setStatus('current')
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpSharing.setDescription('Enable/Disable sharing for virtual router group.')
dnsCurCfgPrimaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgPrimaryIpAddr.setStatus('current')
if mibBuilder.loadTexts: dnsCurCfgPrimaryIpAddr.setDescription('The DNS primary IP address in the current_configuration block.')
dnsNewCfgPrimaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgPrimaryIpAddr.setStatus('current')
if mibBuilder.loadTexts: dnsNewCfgPrimaryIpAddr.setDescription('The DNS primary IP address in the new_configuration block.')
dnsCurCfgSecondaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgSecondaryIpAddr.setStatus('current')
if mibBuilder.loadTexts: dnsCurCfgSecondaryIpAddr.setDescription('The DNS secondary IP address in the current_configuration block.')
dnsNewCfgSecondaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgSecondaryIpAddr.setStatus('current')
if mibBuilder.loadTexts: dnsNewCfgSecondaryIpAddr.setDescription('The DNS secondary IP address in the new_configuration block.')
dnsCurCfgDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 191))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgDomainName.setStatus('current')
if mibBuilder.loadTexts: dnsCurCfgDomainName.setDescription('The DNS doamin name in the current_configuration block.')
dnsNewCfgDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 191))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgDomainName.setStatus('current')
if mibBuilder.loadTexts: dnsNewCfgDomainName.setDescription('The DNS doamin name in the new_configuration block.')
dnsCurCfgPrimaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgPrimaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: dnsCurCfgPrimaryIpv6Addr.setDescription('The DNS primary IPv6 address in the current_configuration block.')
dnsNewCfgPrimaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgPrimaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: dnsNewCfgPrimaryIpv6Addr.setDescription('The DNS primary IPv6 address in the new_configuration block.')
dnsCurCfgSecondaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgSecondaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: dnsCurCfgSecondaryIpv6Addr.setDescription('The DNS secondary IPv6 address in the current_configuration block.')
dnsNewCfgSecondaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgSecondaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts: dnsNewCfgSecondaryIpv6Addr.setDescription('The DNS secondary IPv6 address in the new_configuration block.')
ipNwfTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNwfTableMax.setStatus('current')
if mibBuilder.loadTexts: ipNwfTableMax.setDescription('The maximum number of rows in the IP network filter table.')
ipCurCfgNwfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2), )
if mibBuilder.loadTexts: ipCurCfgNwfTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgNwfTable.setDescription('The table of IP network filter configuration in the current_config.')
ipCurCfgNwfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgNwfIndex"))
if mibBuilder.loadTexts: ipCurCfgNwfEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgNwfEntry.setDescription('Information about an IP network filter.')
ipCurCfgNwfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgNwfIndex.setDescription('The network filter number for which the NWF is related.')
ipCurCfgNwfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfAddr.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgNwfAddr.setDescription('The IP address of the network filter.')
ipCurCfgNwfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfMask.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgNwfMask.setDescription('The subnet mask of the network filter.')
ipCurCfgNwfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgNwfState.setDescription('Enable or disable the network filter.')
ipNewCfgNwfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3), )
if mibBuilder.loadTexts: ipNewCfgNwfTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfTable.setDescription('The table of IP network filter configuration in the current_config.')
ipNewCfgNwfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgNwfIndex"))
if mibBuilder.loadTexts: ipNewCfgNwfEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfEntry.setDescription('Information about an IP network filter.')
ipNewCfgNwfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgNwfIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfIndex.setDescription('The network filter number for which the NWF is related.')
ipNewCfgNwfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfAddr.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfAddr.setDescription('The IP address of the network filter.')
ipNewCfgNwfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfMask.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfMask.setDescription('The subnet mask of the network filter.')
ipNewCfgNwfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfState.setDescription('Enable or disable the network filter.')
ipNewCfgNwfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfDelete.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgNwfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipRmapTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRmapTableMax.setStatus('current')
if mibBuilder.loadTexts: ipRmapTableMax.setDescription('The maximum number of rows in the IP route map table.')
ipCurCfgRmapTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2), )
if mibBuilder.loadTexts: ipCurCfgRmapTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapTable.setDescription('The table of IP route map configuration in the current_config.')
ipCurCfgRmapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgRmapIndex"))
if mibBuilder.loadTexts: ipCurCfgRmapEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapEntry.setDescription('Information about an IP route map.')
ipCurCfgRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapIndex.setDescription('The route map number for which the RMAP is related.')
ipCurCfgRmapLp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapLp.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapLp.setDescription('The local-preference of the route map. 4294967295 means none')
ipCurCfgRmapMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapMetric.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapMetric.setDescription('The metric of the route map. 4294967295 means none')
ipCurCfgRmapPrec = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapPrec.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapPrec.setDescription('The precedence of the route map.')
ipCurCfgRmapWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapWeight.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapWeight.setDescription('The weight of the route map. 65535 means none')
ipCurCfgRmapState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapState.setDescription('Enable or disable the route map.')
ipCurCfgRmapAp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapAp.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapAp.setDescription('The as-path prepend of the matched route. Up to 3 AS number can be displayed for the string. The usuage is:<AS number> [<AS number>][ <AS number>]')
ipCurCfgRmapMetricType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapMetricType.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRmapMetricType.setDescription('The OSPF metric-type of the matched route.')
ipNewCfgRmapTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3), )
if mibBuilder.loadTexts: ipNewCfgRmapTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapTable.setDescription('The table of IP route map configuration in the current_config.')
ipNewCfgRmapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgRmapIndex"))
if mibBuilder.loadTexts: ipNewCfgRmapEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapEntry.setDescription('Information about an IP route map.')
ipNewCfgRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgRmapIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapIndex.setDescription('The route map number for which the RMAP is related.')
ipNewCfgRmapLp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapLp.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapLp.setDescription('The local-preference of the route map. 4294967295 means none')
ipNewCfgRmapMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapMetric.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapMetric.setDescription('The metric of the route map. 4294967295 means none')
ipNewCfgRmapPrec = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapPrec.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapPrec.setDescription('The precedence of the route map.')
ipNewCfgRmapWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapWeight.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapWeight.setDescription('The weight of the route map. 65535 means none')
ipNewCfgRmapState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapState.setDescription('Enable or disable the route map.')
ipNewCfgRmapAp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapAp.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapAp.setDescription('The as-path prepend of the matched route. Up to 3 AS number can be displayed for the string. The usuage is:<AS number> [<AS number>][ <AS number>]')
ipNewCfgRmapMetricType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapMetricType.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapMetricType.setDescription('The OSPF metric-type of the matched route.')
ipNewCfgRmapDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapDelete.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRmapDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipAlistTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipAlistTableMax.setStatus('current')
if mibBuilder.loadTexts: ipAlistTableMax.setDescription('The maximum number of rows in the IP route map table.')
ipCurCfgAlistTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5), )
if mibBuilder.loadTexts: ipCurCfgAlistTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistTable.setDescription('The table of IP route map access list configuration in the current_config.')
ipCurCfgAlistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistIndex"))
if mibBuilder.loadTexts: ipCurCfgAlistEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistEntry.setDescription('Information about an IP route map.')
ipCurCfgAlistRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistRmapIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistRmapIndex.setDescription('The route map number for which the RMAP is related.')
ipCurCfgAlistIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistIndex.setDescription('The access list number for which the access list is related.')
ipCurCfgAlistNwf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistNwf.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistNwf.setDescription('The network filter number of the route map access list. 0 means none')
ipCurCfgAlistMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistMetric.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistMetric.setDescription('The metric of the route map access list. 4294967295 means none')
ipCurCfgAlistAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistAction.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistAction.setDescription('Action of the route map access list.')
ipCurCfgAlistState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAlistState.setDescription('Enable or disable the route map access list.')
ipNewCfgAlistTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6), )
if mibBuilder.loadTexts: ipNewCfgAlistTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistTable.setDescription('The table of IP route map access list configuration in the current_config.')
ipNewCfgAlistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAlistRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAlistIndex"))
if mibBuilder.loadTexts: ipNewCfgAlistEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistEntry.setDescription('Information about an IP route map.')
ipNewCfgAlistRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAlistRmapIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistRmapIndex.setDescription('The route map number for which the RMAP is related.')
ipNewCfgAlistIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAlistIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistIndex.setDescription('The access list number for which the access list is related.')
ipNewCfgAlistNwf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistNwf.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistNwf.setDescription('The network filter number of the route map access list. 0 means none')
ipNewCfgAlistMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistMetric.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistMetric.setDescription('The metric of the route map access list. 4294967295 means none')
ipNewCfgAlistAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistAction.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistAction.setDescription('Action of the route map access list.')
ipNewCfgAlistState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistState.setDescription('Enable or disable the route map access list.')
ipNewCfgAlistDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistDelete.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAlistDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipAspathTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipAspathTableMax.setStatus('current')
if mibBuilder.loadTexts: ipAspathTableMax.setDescription('The maximum number of rows in the IP route map table.')
ipCurCfgAspathTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8), )
if mibBuilder.loadTexts: ipCurCfgAspathTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathTable.setDescription('The table of IP route map access path configuration.')
ipCurCfgAspathEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAspathRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistIndex"))
if mibBuilder.loadTexts: ipCurCfgAspathEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathEntry.setDescription('Information about an IP route map.')
ipCurCfgAspathRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathRmapIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathRmapIndex.setDescription('The route map number for which the RMAP is related.')
ipCurCfgAspathIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathIndex.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathIndex.setDescription('The access path number for which the access list is related.')
ipCurCfgAspathAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathAS.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathAS.setDescription('The AS number of the route map access path. 0 means none')
ipCurCfgAspathAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathAction.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathAction.setDescription('Action of the route map access path.')
ipCurCfgAspathState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathState.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgAspathState.setDescription('Enable or disable the route map access path.')
ipNewCfgAspathTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9), )
if mibBuilder.loadTexts: ipNewCfgAspathTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathTable.setDescription('The table of IP route map access path configuration')
ipNewCfgAspathEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAspathRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAspathIndex"))
if mibBuilder.loadTexts: ipNewCfgAspathEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathEntry.setDescription('Information about an IP route map.')
ipNewCfgAspathRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAspathRmapIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathRmapIndex.setDescription('The route map number for which the RMAP is related.')
ipNewCfgAspathIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAspathIndex.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathIndex.setDescription('The access path number for which the access list is related.')
ipNewCfgAspathAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathAS.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathAS.setDescription('The AS number of the route map access path. 0 means none')
ipNewCfgAspathAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathAction.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathAction.setDescription('Action of the route map access path.')
ipNewCfgAspathState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathState.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathState.setDescription('Enable or disable the route map access path.')
ipNewCfgAspathDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathDelete.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgAspathDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
bgpGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1))
bgpCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgState.setDescription('BGP global state.')
bgpNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgState.setDescription('Globally turn BGP on or off.')
bgpCurCfgLocalPref = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgLocalPref.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgLocalPref.setDescription('Local preference value.')
bgpNewCfgLocalPref = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgLocalPref.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgLocalPref.setDescription('Local Preference value.')
bgpCurCfgMaxASPath = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgMaxASPath.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgMaxASPath.setDescription('Maximum AS Path Length.')
bgpNewCfgMaxASPath = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgMaxASPath.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgMaxASPath.setDescription('Maximum AS Path Length.')
bgpCurCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgASNumber.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgASNumber.setDescription('Current autonomous system number.')
bgpNewCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgASNumber.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgASNumber.setDescription('New autonomous system number.Enter 0 to delete this number.')
bgpPeerTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpPeerTableMax.setStatus('current')
if mibBuilder.loadTexts: bgpPeerTableMax.setDescription('The maximum number of rows in the BGP peer table.')
bgpCurCfgPeerTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3), )
if mibBuilder.loadTexts: bgpCurCfgPeerTable.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerTable.setDescription('The table of BGP peer configuration in the current_config.')
bgpCurCfgPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpCurCfgPeerIndex"))
if mibBuilder.loadTexts: bgpCurCfgPeerEntry.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerEntry.setDescription('Information about a BGP peer.')
bgpCurCfgPeerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerIndex.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerIndex.setDescription('The BGP peer number for which the BGP peer table is related.')
bgpCurCfgPeerRemoteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAddr.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAddr.setDescription('The remote IP address of the BGP peer.')
bgpCurCfgPeerRemoteAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAs.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAs.setDescription('The remote AS number of the BGP peer. 0 means none')
bgpCurCfgPeerTtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerTtl.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerTtl.setDescription('The time-to-live value of the BGP peer IP datagram. ')
bgpCurCfgPeerState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerState.setDescription('Enable or disable the peer.')
bgpCurCfgPeerMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerMetric.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerMetric.setDescription("The metric value of the BGP peer. A value of '0' means none")
bgpCurCfgPeerDefaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("import", 2), ("originate", 3), ("redistribute", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerDefaultAction.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerDefaultAction.setDescription('The value of default route action.')
bgpCurCfgPeerOspfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerOspfState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerOspfState.setDescription('Enable or disable advertising OSPF routes.')
bgpCurCfgPeerFixedState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerFixedState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerFixedState.setDescription('Enable or disable advertising fixed routes.')
bgpCurCfgPeerStaticState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerStaticState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerStaticState.setDescription('Enable or disable advertising static routes.')
bgpCurCfgPeerVipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerVipState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerVipState.setDescription('Enable or disable VIP static routes.')
bgpCurCfgPeerInRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 16), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerInRmapList.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerInRmapList.setDescription('The route maps present in the in route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgpCurCfgPeerOutRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 17), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerOutRmapList.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgpCurCfgPeerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerHoldTime.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerHoldTime.setDescription('The Hold Time value of the BGP peer IP datagram. ')
bgpCurCfgPeerKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21845))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerKeepAlive.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerKeepAlive.setDescription('The KeepAlive Time value of the BGP peer IP datagram. ')
bgpCurCfgPeerMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerMinTime.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerMinTime.setDescription('The min time between advertisements of the BGP peer IP datagram. ')
bgpCurCfgPeerConRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerConRetry.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerConRetry.setDescription('The Connect Retry Timer Interval value of the BGP peer IP datagram. ')
bgpCurCfgPeerMinAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerMinAS.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerMinAS.setDescription('The minimum time between route originations of the BGP peer IP datagram.')
bgpCurCfgPeerRipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerRipState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgPeerRipState.setDescription('Enable or disable RIP static routes.')
bgpNewCfgPeerTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4), )
if mibBuilder.loadTexts: bgpNewCfgPeerTable.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerTable.setDescription('The table of BGP peer configuration in the current_config.')
bgpNewCfgPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpNewCfgPeerIndex"))
if mibBuilder.loadTexts: bgpNewCfgPeerEntry.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerEntry.setDescription('Information about a BGP peer.')
bgpNewCfgPeerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgPeerIndex.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerIndex.setDescription('The BGP peer number for which the BGP peer table is related.')
bgpNewCfgPeerRemoteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAddr.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAddr.setDescription('The remote IP address of the BGP peer.')
bgpNewCfgPeerRemoteAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAs.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAs.setDescription('The remote AS number of the BGP peer. 0 means none')
bgpNewCfgPeerTtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerTtl.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerTtl.setDescription('The time-to-live value of the BGP peer IP datagram. ')
bgpNewCfgPeerState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerState.setDescription('Enable or disable the peer.')
bgpNewCfgPeerDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerDelete.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
bgpNewCfgPeerMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerMetric.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerMetric.setDescription("The metric value of the BGP peer. A value of '0' means none")
bgpNewCfgPeerDefaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("import", 2), ("originate", 3), ("redistribute", 4)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerDefaultAction.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerDefaultAction.setDescription('The value of default route action.')
bgpNewCfgPeerOspfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerOspfState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerOspfState.setDescription('Enable or disable advertising OSPF routes.')
bgpNewCfgPeerFixedState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerFixedState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerFixedState.setDescription('Enable or disable advertising fixed routes.')
bgpNewCfgPeerStaticState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerStaticState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerStaticState.setDescription('Enable or disable advertising static routes.')
bgpNewCfgPeerVipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerVipState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerVipState.setDescription('Enable or disable VIP static routes.')
bgpNewCfgPeerInRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 16), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgPeerInRmapList.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerInRmapList.setDescription('The route maps present in the in route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgpNewCfgPeerOutRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 17), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgPeerOutRmapList.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgpNewCfgPeerAddInRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 18), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerAddInRmap.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerAddInRmap.setDescription('The route map to be add into in-rmap list. When read, 0 is returned.')
bgpNewCfgPeerAddOutRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 19), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerAddOutRmap.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
bgpNewCfgPeerRemoveInRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 20), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoveInRmap.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerRemoveInRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
bgpNewCfgPeerRemoveOutRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 21), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
bgpNewCfgPeerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerHoldTime.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerHoldTime.setDescription('The Hold Time value of the BGP peer IP datagram. ')
bgpNewCfgPeerKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21845))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerKeepAlive.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerKeepAlive.setDescription('The KeepAlive Time value of the BGP peer IP datagram. ')
bgpNewCfgPeerMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerMinTime.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerMinTime.setDescription('The mininum time between advertisements of the BGP peer IP datagram. ')
bgpNewCfgPeerConRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerConRetry.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerConRetry.setDescription('The Connect Retry Timer Interval value of the BGP peer IP datagram. ')
bgpNewCfgPeerMinAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerMinAS.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerMinAS.setDescription('The minimum time between route originations of the BGP peer IP datagram. ')
bgpNewCfgPeerRipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRipState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgPeerRipState.setDescription('Enable or disable RIP static routes.')
bgpAggrTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpAggrTableMax.setStatus('current')
if mibBuilder.loadTexts: bgpAggrTableMax.setDescription('The maximum number of rows in the BGP aggregation table.')
bgpCurCfgAggrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6), )
if mibBuilder.loadTexts: bgpCurCfgAggrTable.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgAggrTable.setDescription('The table of BGP aggregation configuration.')
bgpCurCfgAggrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpCurCfgAggrIndex"))
if mibBuilder.loadTexts: bgpCurCfgAggrEntry.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgAggrEntry.setDescription('Information about a BGP aggregation.')
bgpCurCfgAggrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrIndex.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgAggrIndex.setDescription('The aggregation number for which the BGP aggregation is related.')
bgpCurCfgAggrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrAddr.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgAggrAddr.setDescription('The IP address of the BGP aggregation.')
bgpCurCfgAggrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrMask.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgAggrMask.setDescription('The subnet mask of the BGP aggregation.')
bgpCurCfgAggrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrState.setStatus('current')
if mibBuilder.loadTexts: bgpCurCfgAggrState.setDescription('Enable or disable the BGP aggregation.')
bgpNewCfgAggrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7), )
if mibBuilder.loadTexts: bgpNewCfgAggrTable.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrTable.setDescription('The table of BGP aggregation configuration.')
bgpNewCfgAggrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpNewCfgAggrIndex"))
if mibBuilder.loadTexts: bgpNewCfgAggrEntry.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrEntry.setDescription('Information about an BGP aggregation.')
bgpNewCfgAggrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgAggrIndex.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrIndex.setDescription('The aggregation number for which the BGP aggregation is related.')
bgpNewCfgAggrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrAddr.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrAddr.setDescription('The IP address of the BGP aggregation.')
bgpNewCfgAggrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrMask.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrMask.setDescription('The subnet mask of the BGP aggregation.')
bgpNewCfgAggrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrState.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrState.setDescription('Enable or disable the BGP aggregation.')
bgpNewCfgAggrDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrDelete.setStatus('current')
if mibBuilder.loadTexts: bgpNewCfgAggrDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1))
ospfCurCfgDefaultRouteMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetric.setDescription('Specify the metric to be assigned.')
ospfNewCfgDefaultRouteMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetric.setDescription('Specify the metric to be assigned.')
ospfCurCfgDefaultRouteMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetricType.setDescription('Specify the AS External metric type to be assigned.')
ospfNewCfgDefaultRouteMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetricType.setDescription('Specify the AS External metric type to be assigned.')
ospfIntfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTableMaxSize.setDescription('The maximum number of rows in the OSPF Interface table.')
ospfAreaTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTableMaxSize.setDescription('The maximum number of rows in the OSPF Area table.')
ospfRangeTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfRangeTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ospfRangeTableMaxSize.setDescription('The maximum number of rows in the OSPF Range table.')
ospfVirtIntfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVirtIntfTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ospfVirtIntfTableMaxSize.setDescription('The maximum number of rows in the OSPF Virtual Interface table.')
ospfHostTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfHostTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ospfHostTableMaxSize.setDescription('The maximum number of rows in the OSPF Host table.')
ospfCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgState.setDescription('OSPF global state.')
ospfNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgState.setDescription('Globally turn OSPF on or off.')
ospfCurCfgLsdb = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgLsdb.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgLsdb.setDescription('Specify the LSDB limit for external LSA.')
ospfNewCfgLsdb = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgLsdb.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgLsdb.setDescription('Specify the LSDB limit for external LSA.')
ospfCurCfgAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2), )
if mibBuilder.loadTexts: ospfCurCfgAreaTable.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaTable.setDescription('The table of OSPF Area configuration in the current_config.')
ospfCurCfgAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgAreaIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgAreaId"))
if mibBuilder.loadTexts: ospfCurCfgAreaEntry.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaEntry.setDescription('Information about a OSPF area.')
ospfCurCfgAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaIndex.setDescription('The OSPF area number for which the OSPF area table is related.')
ospfCurCfgAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaId.setDescription('The IP Address of the OSPF area.')
ospfCurCfgAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaSpfInterval.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaSpfInterval.setDescription('The SPF interval for the OSPF area.')
ospfCurCfgAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaAuthType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaAuthType.setDescription('Type of authentication being used. none(1) - no authentication password(2) - use password md5(3) - use MD5 authentication.')
ospfCurCfgAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaType.setDescription('Type of area being used.')
ospfCurCfgAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaMetric.setDescription('The Stub area metric for the OSPF area.')
ospfCurCfgAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgAreaState.setDescription('Globally turn OSPF on or off.')
ospfNewCfgAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3), )
if mibBuilder.loadTexts: ospfNewCfgAreaTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaTable.setDescription('The table of OSPF Area configuration in the new_config.')
ospfNewCfgAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgAreaIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgAreaId"))
if mibBuilder.loadTexts: ospfNewCfgAreaEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaEntry.setDescription('Information about a OSPF area.')
ospfNewCfgAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaIndex.setDescription('The OSPF area number for which the OSPF area table is related.')
ospfNewCfgAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaId.setDescription('The IP Address of the OSPF area.')
ospfNewCfgAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaSpfInterval.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaSpfInterval.setDescription('The SPF interval for the OSPF area.')
ospfNewCfgAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaAuthType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaAuthType.setDescription('Type of authentication being used. none(1) - no authentication password(2) - use password. md5(3) - use MD5 authentication.')
ospfNewCfgAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaType.setDescription('Type of area being used.')
ospfNewCfgAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaMetric.setDescription('The Stub area metric for the OSPF area.')
ospfNewCfgAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaState.setDescription('Enable or disable OSPF Area.')
ospfNewCfgAreaDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgAreaDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfNewCfgVisionAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16), )
if mibBuilder.loadTexts: ospfNewCfgVisionAreaTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaTable.setDescription('The table of OSPF Area configuration in the new_config.')
ospfNewCfgVisionAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgVisionAreaIndex"))
if mibBuilder.loadTexts: ospfNewCfgVisionAreaEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaEntry.setDescription('Information about a OSPF area.')
ospfNewCfgVisionAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaIndex.setDescription('The OSPF area number for which the OSPF area table is related.')
ospfNewCfgVisionAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaId.setDescription('The IP Address of the OSPF area.')
ospfNewCfgVisionAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaSpfInterval.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaSpfInterval.setDescription('The SPF interval for the OSPF area.')
ospfNewCfgVisionAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaAuthType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaAuthType.setDescription('Type of authentication being used. none(1) - no authentication password(2) - use password. md5(3) - use MD5 authentication.')
ospfNewCfgVisionAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaType.setDescription('Type of area being used.')
ospfNewCfgVisionAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaMetric.setDescription('The Stub area metric for the OSPF area.')
ospfNewCfgVisionAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaState.setDescription('Enable or disable OSPF Area.')
ospfNewCfgVisionAreaDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVisionAreaDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfCurCfgHostTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12), )
if mibBuilder.loadTexts: ospfCurCfgHostTable.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostTable.setDescription('The table of OSPF Host configuration.')
ospfCurCfgHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgHostIndex"))
if mibBuilder.loadTexts: ospfCurCfgHostEntry.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostEntry.setDescription('Information about a OSPF host.')
ospfCurCfgHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostIndex.setDescription('The OSPF host number for which the OSPF host table is related.')
ospfCurCfgHostIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostIpAddr.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostIpAddr.setDescription('The IP Address of the OSPF host.')
ospfCurCfgHostAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostAreaIndex.setDescription('The area index.')
ospfCurCfgHostCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostCost.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostCost.setDescription('Cost of the host entry.')
ospfCurCfgHostState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgHostState.setDescription('Enable or disable Host Entry.')
ospfNewCfgHostTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13), )
if mibBuilder.loadTexts: ospfNewCfgHostTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostTable.setDescription('The table of OSPF Host configuration.')
ospfNewCfgHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgHostIndex"))
if mibBuilder.loadTexts: ospfNewCfgHostEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostEntry.setDescription('Information about a OSPF host.')
ospfNewCfgHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgHostIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostIndex.setDescription('The OSPF host number for which the OSPF host table is related.')
ospfNewCfgHostIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostIpAddr.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostIpAddr.setDescription('The IP Address of the OSPF host.')
ospfNewCfgHostAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 3), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostAreaIndex.setDescription('The OSPF area index.')
ospfNewCfgHostCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostCost.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostCost.setDescription('Cost of the host entry.')
ospfNewCfgHostState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostState.setDescription('Enable or disable Host Entry.')
ospfNewCfgHostDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgHostDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfMdkeyTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfMdkeyTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ospfMdkeyTableMaxSize.setDescription('The maximum number of rows in the OSPF Mdkey table.')
ospfCurCfgMdkeyTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5), )
if mibBuilder.loadTexts: ospfCurCfgMdkeyTable.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgMdkeyTable.setDescription('The table of OSPF MD5 keys in the current_config.')
ospfCurCfgMdkeyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgMdkeyIndex"))
if mibBuilder.loadTexts: ospfCurCfgMdkeyEntry.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgMdkeyEntry.setDescription('Information about an OSPF MD keys table.')
ospfCurCfgMdkeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgMdkeyIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgMdkeyIndex.setDescription('The OSPF MD5 Key number for which the OSPF MdKey table is related.')
ospfCurCfgMdkeyKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgMdkeyKey.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgMdkeyKey.setDescription('The character string representing the MD5 Key.')
ospfNewCfgMdkeyTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6), )
if mibBuilder.loadTexts: ospfNewCfgMdkeyTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgMdkeyTable.setDescription('The table of OSPF MD5 keys in the new_config.')
ospfNewCfgMdkeyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgMdkeyIndex"))
if mibBuilder.loadTexts: ospfNewCfgMdkeyEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgMdkeyEntry.setDescription('Information about an OSPF MD keys table.')
ospfNewCfgMdkeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgMdkeyIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgMdkeyIndex.setDescription('The OSPF MD5 Key number for which the OSPF MdKey table is related.')
ospfNewCfgMdkeyKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgMdkeyKey.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgMdkeyKey.setDescription('The character string representing the MD5 Key.')
ospfNewCfgMdkeyDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgMdkeyDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgMdkeyDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7), )
if mibBuilder.loadTexts: ospfCurCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfTable.setDescription('The table of OSPF Interface configuration in the current_config.')
ospfCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgIntfIndex"))
if mibBuilder.loadTexts: ospfCurCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfEntry.setDescription('Information about an OSPF Interface.')
ospfCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfIndex.setDescription('The OSPF Interface number for which the OSPF Interface table is related.')
ospfCurCfgIntfId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfId.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfId.setDescription('The IP Address of the OSPF interface.')
ospfCurCfgIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfMdkey.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfMdkey.setDescription('The MD5 key for the OSPF interface 0 (none) no MD5 authentication.')
ospfCurCfgIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfAreaId.setDescription('Specify Area Index.')
ospfCurCfgIntfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfPriority.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfPriority.setDescription('Specify interface router priority.')
ospfCurCfgIntfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfCost.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfCost.setDescription('Interface Cost.')
ospfCurCfgIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfHello.setDescription('Hello interval in seconds.')
ospfCurCfgIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfDead.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfDead.setDescription('Dead interval in seconds.')
ospfCurCfgIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfTransit.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfTransit.setDescription('Transit delay in seconds.')
ospfCurCfgIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfRetrans.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfRetrans.setDescription('Retransmit interval in seconds.')
ospfCurCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfKey.setDescription('Specify Authentication Key.')
ospfCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIntfState.setDescription('Enable or disable OSPF Interface.')
ospfNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8), )
if mibBuilder.loadTexts: ospfNewCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfTable.setDescription('The table of OSPF Interface configuration in the new_config.')
ospfNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgIntfIndex"))
if mibBuilder.loadTexts: ospfNewCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfEntry.setDescription('Information about an OSPF Interface.')
ospfNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfIndex.setDescription('The OSPF Interface number for which the OSPF Interface table is related.')
ospfNewCfgIntfId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgIntfId.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfId.setDescription('The IP Address of the OSPF interface.')
ospfNewCfgIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfMdkey.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfMdkey.setDescription('The MD5 key for the OSPF interface 0 (none) no MD5 authentication.')
ospfNewCfgIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfAreaId.setDescription('Specify Area Index.')
ospfNewCfgIntfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfPriority.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfPriority.setDescription('Specify interface router priority.')
ospfNewCfgIntfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfCost.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfCost.setDescription('Specify interface cost.')
ospfNewCfgIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfHello.setDescription('Hello interval in seconds.')
ospfNewCfgIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfDead.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfDead.setDescription('Dead interval in seconds.')
ospfNewCfgIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfTransit.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfTransit.setDescription('Transit delay in seconds.')
ospfNewCfgIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfRetrans.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfRetrans.setDescription('Retransmit interval in seconds.')
ospfNewCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfKey.setDescription('Specify Authentication Key.')
ospfNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfState.setDescription('Enable or disable OSPF Interface.')
ospfNewCfgIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIntfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfCurCfgVirtIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9), )
if mibBuilder.loadTexts: ospfCurCfgVirtIntfTable.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfTable.setDescription('The table of OSPF Virtual Interface configuration in the current configuration.')
ospfCurCfgVirtIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgVirtIntfIndex"))
if mibBuilder.loadTexts: ospfCurCfgVirtIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfEntry.setDescription('Information about an OSPF virtual Interface.')
ospfCurCfgVirtIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfIndex.setDescription('The OSPF Virtual Interface number for which the OSPF Virtual Interface table is related.')
ospfCurCfgVirtIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfAreaId.setDescription('The OSPF Area Id.')
ospfCurCfgVirtIntfNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfNbr.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfNbr.setDescription('The IP Address of the OSPF neighbour for this virtual interface.')
ospfCurCfgVirtIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfMdkey.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfMdkey.setDescription('The MD5 key for the OSPF virtual interface 0 (none) no MD5 authentication.')
ospfCurCfgVirtIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfHello.setDescription('Hello interval in seconds.')
ospfCurCfgVirtIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfDead.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfDead.setDescription('Dead interval in seconds.')
ospfCurCfgVirtIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfTransit.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfTransit.setDescription('Transit delay in seconds.')
ospfCurCfgVirtIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfRetrans.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfRetrans.setDescription('Retransmit interval in seconds.')
ospfCurCfgVirtIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfKey.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfKey.setDescription('Specify Authentication Key.')
ospfCurCfgVirtIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgVirtIntfState.setDescription('Enable or disable OSPF Interface.')
ospfNewCfgVirtIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10), )
if mibBuilder.loadTexts: ospfNewCfgVirtIntfTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfTable.setDescription('The table of OSPF Virtual Interface configuration in the new_config.')
ospfNewCfgVirtIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgVirtIntfIndex"))
if mibBuilder.loadTexts: ospfNewCfgVirtIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfEntry.setDescription('Information about an OSPF virtual Interface.')
ospfNewCfgVirtIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfIndex.setDescription('The OSPF Virtual Interface number for which the OSPF Virtual Interface table is related.')
ospfNewCfgVirtIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfAreaId.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfAreaId.setDescription('The OSPF Area Id.')
ospfNewCfgVirtIntfNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfNbr.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfNbr.setDescription('The IP Address of the OSPF neighbour for this virtual interface.')
ospfNewCfgVirtIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfMdkey.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfMdkey.setDescription('The MD5 key for the OSPF virtual interface 0 (none) no MD5 authentication.')
ospfNewCfgVirtIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfHello.setDescription('Hello interval in seconds.')
ospfNewCfgVirtIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfDead.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfDead.setDescription('Dead interval in seconds.')
ospfNewCfgVirtIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfTransit.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfTransit.setDescription('Transit delay in seconds.')
ospfNewCfgVirtIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfRetrans.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfRetrans.setDescription('Retransmit interval in seconds.')
ospfNewCfgVirtIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfKey.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfKey.setDescription('Specify Authentication Key. Enter string of 8 characters or None.')
ospfNewCfgVirtIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfState.setDescription('Enable or disable OSPF Interface.')
ospfNewCfgVirtIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgVirtIntfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfCurCfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14), )
if mibBuilder.loadTexts: ospfCurCfgRangeTable.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeTable.setDescription('The table of OSPF summary range in the current configuration.')
ospfCurCfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgRangeIndex"))
if mibBuilder.loadTexts: ospfCurCfgRangeEntry.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeEntry.setDescription('Information about an OSPF summary range.')
ospfCurCfgRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeIndex.setDescription('The range number for which the OSPF summary range table is related.')
ospfCurCfgRangeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeAddr.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeAddr.setDescription('The IP Address of the range.')
ospfCurCfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeMask.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeMask.setDescription('The mask of the range.')
ospfCurCfgRangeAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeAreaIndex.setDescription('The area index.')
ospfCurCfgRangeHideState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeHideState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeHideState.setDescription('The state of the hide range.')
ospfCurCfgRangeState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeState.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRangeState.setDescription('The state of the range.')
ospfNewCfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15), )
if mibBuilder.loadTexts: ospfNewCfgRangeTable.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeTable.setDescription('The table of OSPF summary range in the new configuration.')
ospfNewCfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgRangeIndex"))
if mibBuilder.loadTexts: ospfNewCfgRangeEntry.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeEntry.setDescription('Information about an OSPF summary range.')
ospfNewCfgRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgRangeIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeIndex.setDescription('The range number for which the OSPF summary range table is related.')
ospfNewCfgRangeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeAddr.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeAddr.setDescription('The IP Address of the range.')
ospfNewCfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeMask.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeMask.setDescription('The mask of the range.')
ospfNewCfgRangeAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeAreaIndex.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeAreaIndex.setDescription('The area index.')
ospfNewCfgRangeHideState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeHideState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeHideState.setDescription('The state of the hide range.')
ospfNewCfgRangeState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeState.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeState.setDescription('The state of the range.')
ospfNewCfgRangeDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeDelete.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRangeDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospfRouteRedistribution = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4))
ospfRedistributeStatic = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1))
ospfCurCfgStaticMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgStaticMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgStaticMetric.setDescription('The metric to be assigned to static routes. A value of 0 indicates none.')
ospfNewCfgStaticMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgStaticMetric.setDescription('The metric to be assigned to static routes. A value of 0 indicates none.')
ospfCurCfgStaticMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgStaticMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgStaticMetricType.setDescription('The AS External metric type for static routes.')
ospfNewCfgStaticMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgStaticMetricType.setDescription('The AS External metric type for static routes.')
ospfCurCfgStaticOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgStaticOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgStaticOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgStaticOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgStaticOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgStaticOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgStaticAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticAddOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgStaticAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospfNewCfgStaticRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgStaticRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospfRedistributeEbgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2))
ospfCurCfgEbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgEbgpMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgEbgpMetric.setDescription('The export metric to be assigned to External BGP routes. A value of 0 indicates none.')
ospfNewCfgEbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgEbgpMetric.setDescription('The export metric to be assigned to External BGP routes. A value of 0 indicates none.')
ospfCurCfgEbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgEbgpMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgEbgpMetricType.setDescription('The AS External metric type for External BGP routes.')
ospfNewCfgEbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgEbgpMetricType.setDescription('The AS External metric type for External BGP routes.')
ospfCurCfgEbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgEbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgEbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgEbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgEbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgEbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgEbgpAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpAddOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgEbgpAddOutRmap.setDescription('The route map to be added into out-rmap list. When read, 0 is returned.')
ospfNewCfgEbgpRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgEbgpRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospfRedistributeIbgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3))
ospfCurCfgIbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIbgpMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIbgpMetric.setDescription('The export metric for Internal BGP routes. A value of 0 indicates none.')
ospfNewCfgIbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIbgpMetric.setDescription('The export metric for Internal BGP routes. A value of 0 indicates none.')
ospfCurCfgIbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIbgpMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIbgpMetricType.setDescription('The AS External metric type for Internal BGP routes.')
ospfNewCfgIbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIbgpMetricType.setDescription('The AS External metric type for Internal BGP routes.')
ospfCurCfgIbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgIbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgIbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgIbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgIbgpAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpAddOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIbgpAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospfNewCfgIbgpRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgIbgpRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospfRedistributeFixed = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4))
ospfCurCfgFixedMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgFixedMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgFixedMetric.setDescription('The export metric for fixed routes. A value of 0 indicates none')
ospfNewCfgFixedMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgFixedMetric.setDescription('The export metric for fixed routes. A value of 0 indicates none')
ospfCurCfgFixedMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgFixedMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgFixedMetricType.setDescription('The AS External metric type for fixed routes.')
ospfNewCfgFixedMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgFixedMetricType.setDescription('The AS External metric type for fixed routes.')
ospfCurCfgFixedOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgFixedOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgFixedOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgFixedOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgFixedOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgFixedOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgFixedAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedAddOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgFixedAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospfNewCfgFixedRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgFixedRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospfRedistributeRip = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5))
ospfCurCfgRipMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRipMetric.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRipMetric.setDescription('The export metric for RIP routes. A value of 0 indicates none')
ospfNewCfgRipMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipMetric.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRipMetric.setDescription('The export metric for RIP routes. A value of 0 indicates none')
ospfCurCfgRipMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRipMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRipMetricType.setDescription('The AS External metric type for RIP routes.')
ospfNewCfgRipMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipMetricType.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRipMetricType.setDescription('The AS External metric type for RIP routes.')
ospfCurCfgRipOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRipOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfCurCfgRipOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgRipOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgRipOutRmapList.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRipOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospfNewCfgRipAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipAddOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRipAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospfNewCfgRipRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts: ospfNewCfgRipRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ipCurCfgRouterID = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRouterID.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgRouterID.setDescription('The router ID of the switch.')
ipNewCfgRouterID = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgRouterID.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgRouterID.setDescription('The router ID of the switch.')
ipCurCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgASNumber.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgASNumber.setDescription('The autonomous system (AS) number.')
ipNewCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgASNumber.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgASNumber.setDescription('The autonomous system (AS) number.')
ipStaticArpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipStaticArpTableMaxSize.setStatus('current')
if mibBuilder.loadTexts: ipStaticArpTableMaxSize.setDescription('The maximum number of rows in the Static ARP table.')
ipCurCfgStaticArpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2), )
if mibBuilder.loadTexts: ipCurCfgStaticArpTable.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpTable.setDescription('The table of static ARPs in the current configuration block.')
ipCurCfgStaticArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgStaticArpIndx"))
if mibBuilder.loadTexts: ipCurCfgStaticArpEntry.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpEntry.setDescription('A row in the static ARP table')
ipCurCfgStaticArpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpIndx.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpIndx.setDescription('The index of the static ARP table.')
ipCurCfgStaticArpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpIp.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpIp.setDescription('The IP address for the ARP entry.')
ipCurCfgStaticArpMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 3), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpMAC.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpMAC.setDescription('The MAC address for the ARP entry.')
ipCurCfgStaticArpVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpVlan.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpVlan.setDescription('The VLAN for the ARP entry.')
ipCurCfgStaticArpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpPort.setStatus('current')
if mibBuilder.loadTexts: ipCurCfgStaticArpPort.setDescription('The port for the ARP entry.')
ipNewCfgStaticArpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3), )
if mibBuilder.loadTexts: ipNewCfgStaticArpTable.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpTable.setDescription('The table of static ARPs in the new configuration block.')
ipNewCfgStaticArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgStaticArpIndx"))
if mibBuilder.loadTexts: ipNewCfgStaticArpEntry.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpEntry.setDescription('A row in the static ARP table')
ipNewCfgStaticArpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgStaticArpIndx.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpIndx.setDescription('The index of the static ARP table.')
ipNewCfgStaticArpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpIp.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpIp.setDescription('The IP address for the ARP entry.')
ipNewCfgStaticArpMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 3), PhysAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpMAC.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpMAC.setDescription('The MAC address for the ARP entry.')
ipNewCfgStaticArpVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpVlan.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpVlan.setDescription('The VLAN for the ARP entry.')
ipNewCfgStaticArpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 5), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpPort.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpPort.setDescription('The port for the ARP entry.')
ipNewCfgStaticArpAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpAction.setStatus('current')
if mibBuilder.loadTexts: ipNewCfgStaticArpAction.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipStaticArpTableNextAvailableIndex = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipStaticArpTableNextAvailableIndex.setStatus('current')
if mibBuilder.loadTexts: ipStaticArpTableNextAvailableIndex.setDescription('The next available index in the Static ARP table.')
ripStatInPackets = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInPackets.setStatus('current')
if mibBuilder.loadTexts: ripStatInPackets.setDescription('The total number of RIP packets recieved.')
ripStatOutPackets = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatOutPackets.setStatus('current')
if mibBuilder.loadTexts: ripStatOutPackets.setDescription('The total number of RIP packets transmitted.')
ripStatInRequestPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInRequestPkts.setStatus('current')
if mibBuilder.loadTexts: ripStatInRequestPkts.setDescription('The total number of RIP requests recieved.')
ripStatInResponsePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInResponsePkts.setStatus('current')
if mibBuilder.loadTexts: ripStatInResponsePkts.setDescription('The total number of RIP response recieved.')
ripStatOutRequestPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatOutRequestPkts.setStatus('current')
if mibBuilder.loadTexts: ripStatOutRequestPkts.setDescription('The total number of RIP requests transmitted.')
ripStatOutResponsePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatOutResponsePkts.setStatus('current')
if mibBuilder.loadTexts: ripStatOutResponsePkts.setDescription('The total number of RIP responses transmitted.')
ripStatRouteTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatRouteTimeout.setStatus('current')
if mibBuilder.loadTexts: ripStatRouteTimeout.setDescription('The total number of RIP route timeouts.')
ripStatInBadSizePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadSizePkts.setStatus('current')
if mibBuilder.loadTexts: ripStatInBadSizePkts.setDescription('The total number of bad size RIP packets recieved.')
ripStatInBadVersion = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadVersion.setStatus('current')
if mibBuilder.loadTexts: ripStatInBadVersion.setDescription('The total number of RIP bad versions recieved.')
ripStatInBadZeros = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadZeros.setStatus('current')
if mibBuilder.loadTexts: ripStatInBadZeros.setDescription('The total number of RIP bad zeros recieved.')
ripStatInBadSourcePort = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadSourcePort.setStatus('current')
if mibBuilder.loadTexts: ripStatInBadSourcePort.setDescription('The total number of RIP bad source port recieved.')
ripStatInBadSourceIP = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadSourceIP.setStatus('current')
if mibBuilder.loadTexts: ripStatInBadSourceIP.setDescription('The total number of RIP bad source IP recieved.')
ripStatInSelfRcvPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInSelfRcvPkts.setStatus('current')
if mibBuilder.loadTexts: ripStatInSelfRcvPkts.setDescription('The total number of RIP packets from self received.')
tcpStatCurConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tcpStatCurConn.setStatus('current')
if mibBuilder.loadTexts: tcpStatCurConn.setDescription('The total number of outstanding TCP sessions that are currently opened.')
tcpStatCurInConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tcpStatCurInConn.setStatus('current')
if mibBuilder.loadTexts: tcpStatCurInConn.setDescription('The total number of remotely-initiated TCP connections.')
tcpStatCurOutConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tcpStatCurOutConn.setStatus('current')
if mibBuilder.loadTexts: tcpStatCurOutConn.setDescription('The total number of switch-originated TCP connection requests.')
arpStatEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 1), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpStatEntries.setStatus('current')
if mibBuilder.loadTexts: arpStatEntries.setDescription('The current number of ARP entries.')
arpStatHighWater = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpStatHighWater.setStatus('current')
if mibBuilder.loadTexts: arpStatHighWater.setDescription('The highest number of ARP entries.')
arpStatMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpStatMaxEntries.setStatus('current')
if mibBuilder.loadTexts: arpStatMaxEntries.setDescription('The maximum number of ARP entries.')
routeStatEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 1), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: routeStatEntries.setStatus('current')
if mibBuilder.loadTexts: routeStatEntries.setDescription('The current number of IP routes.')
routeStatHighWater = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: routeStatHighWater.setStatus('current')
if mibBuilder.loadTexts: routeStatHighWater.setDescription('The highest number of IP routes.')
routeStatMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: routeStatMaxEntries.setStatus('current')
if mibBuilder.loadTexts: routeStatMaxEntries.setDescription('The maximum number of IP routes.')
dnsStatInGoodDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsStatInGoodDnsRequests.setStatus('current')
if mibBuilder.loadTexts: dnsStatInGoodDnsRequests.setDescription('The total number of DNS request packets which are received.')
dnsStatInBadDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsStatInBadDnsRequests.setStatus('current')
if mibBuilder.loadTexts: dnsStatInBadDnsRequests.setDescription('The total number of DNS request packets received that were dropped.')
dnsStatOutDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsStatOutDnsRequests.setStatus('current')
if mibBuilder.loadTexts: dnsStatOutDnsRequests.setDescription('The total number of DNS response packets that have been transmitted.')
vrrpStatInAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpStatInAdvers.setStatus('current')
if mibBuilder.loadTexts: vrrpStatInAdvers.setDescription('The number of good VRRP advertisements which are received.')
vrrpStatOutAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpStatOutAdvers.setStatus('current')
if mibBuilder.loadTexts: vrrpStatOutAdvers.setDescription('The number of good VRRP advertisements which are transmitted.')
vrrpStatOutBadAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpStatOutBadAdvers.setStatus('current')
if mibBuilder.loadTexts: vrrpStatOutBadAdvers.setDescription('The number of bad VRRP advertisements which are received.')
ipClearStats = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipClearStats.setStatus('current')
if mibBuilder.loadTexts: ipClearStats.setDescription('Setting this to clear(2) results in clearing the IP statistics.')
ifStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2), )
if mibBuilder.loadTexts: ifStatsTable.setStatus('current')
if mibBuilder.loadTexts: ifStatsTable.setDescription('The table of Interface Statistics.')
ifStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ifStatsIndex"))
if mibBuilder.loadTexts: ifStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ifStatsEntry.setDescription('IP Interface statistics.')
ifStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifStatsIndex.setStatus('current')
if mibBuilder.loadTexts: ifStatsIndex.setDescription('The index of the IP interface for which these statistics apply.')
ifClearStats = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifClearStats.setStatus('current')
if mibBuilder.loadTexts: ifClearStats.setDescription('Setting this to clear(2) results in clearing the statistics for this IP interface (if) stats.')
ospfGeneralStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1))
ospfCumRxTxStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1))
ospfCumNbrChangeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2))
ospfCumIntfChangeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3))
ospfTimersKickOffStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4))
ospfArea = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2))
ospfAreaRxTxStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1), )
if mibBuilder.loadTexts: ospfAreaRxTxStats.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxTxStats.setDescription('The table of OSPF Area Rx/Tx Statistics.')
ospfAreaRxTxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaRxTxIndex"))
if mibBuilder.loadTexts: ospfAreaRxTxStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxTxStatsEntry.setDescription('Rx Tx packet Statistics about a OSPF area.')
ospfAreaRxTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxTxIndex.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxTxIndex.setDescription('The index of the ospf Area for which these statistics apply.')
ospfAreaRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxPkts.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxPkts.setDescription('The total number of OSPF packets received in this OSPF area.')
ospfAreaTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxPkts.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTxPkts.setDescription('The total number of OSPF packets transmitted in this OSPF area.')
ospfAreaRxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxHello.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxHello.setDescription('The total number of Hello packets received in this OSPF area.')
ospfAreaTxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxHello.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTxHello.setDescription('The total number of Hello packets transmitted in this OSPF area.')
ospfAreaRxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxDatabase.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxDatabase.setDescription('The total number of Database Description packets transmitted for this OSPF area.')
ospfAreaTxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxDatabase.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTxDatabase.setDescription('The total number of Database Description packets transmitted for this OSPF area.')
ospfAreaRxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxlsReqs.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxlsReqs.setDescription('The total number of Link State Request packets received for this OSPF area.')
ospfAreaTxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxlsReqs.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTxlsReqs.setDescription('The total number of Link State Request packets transmitted for this OSPF area.')
ospfAreaRxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxlsAcks.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxlsAcks.setDescription('The total number of Link State Acknowledgement packets received for this OSPF area.')
ospfAreaTxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxlsAcks.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTxlsAcks.setDescription('The total number of Link State Acknowledgement packets transmitted for this OSPF area.')
ospfAreaRxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxlsUpdates.setStatus('current')
if mibBuilder.loadTexts: ospfAreaRxlsUpdates.setDescription('The total number of Link State Update packets received for this OSPF area.')
ospfAreaTxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxlsUpdates.setStatus('current')
if mibBuilder.loadTexts: ospfAreaTxlsUpdates.setDescription('The total number of Link State Update packets transmitted for this OSPF area.')
ospfAreaNbrChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2), )
if mibBuilder.loadTexts: ospfAreaNbrChangeStats.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrChangeStats.setDescription('The table of OSPF Area Neighbour Statistics.')
ospfAreaNbrChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaNbrIndex"))
if mibBuilder.loadTexts: ospfAreaNbrChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrChangeStatsEntry.setDescription('Area Neighbour Change Statistics about a OSPF area.')
ospfAreaNbrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrIndex.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrIndex.setDescription('The index of the ospf Area for which these statistics apply.')
ospfAreaNbrhello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrhello.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrhello.setDescription('The total number of Hello packets received from neighbours in this OSPF area.')
ospfAreaNbrStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrStart.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrStart.setDescription('The total number of neighbours in this state (i.e. an indication that Hello packets should now be sent to the neighbour at intervals of HelloInterval seconds.) in this OSPF area.')
ospfAreaNbrAdjointOk = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrAdjointOk.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrAdjointOk.setDescription('The total number of decisions to be made (again) as to whether an adjacency should be established/maintained with the neighbour. for this OSPF area.')
ospfAreaNbrNegotiationDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrNegotiationDone.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrNegotiationDone.setDescription('The total number of neighbours in this state wherein the Master/slave relationship has been negotiated, and sequence numbers have been exchanged, for this OSPF area.')
ospfAreaNbrExchangeDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrExchangeDone.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrExchangeDone.setDescription("The total number of neighbours in this state (i.e. in an adjacency's final state) having transimitted a full sequence of Database Description packets, for this OSPF area.")
ospfAreaNbrBadRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrBadRequests.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrBadRequests.setDescription('The sum total number of Link State Requests which have been received for a link state advertisement not contained in the database across this OSPF area.')
ospfAreaNbrBadSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrBadSequence.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrBadSequence.setDescription('The total number of Database Description packets which have been received that either a) has an unexpected DD sequence number b) Unexpectedly has the init bit set c) Has an options field differing from the last Options field received in a Database Description packet. Any of these conditions indicate that some error has occured during adjacency establishment for this OSPF area.')
ospfAreaNbrLoadingDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrLoadingDone.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrLoadingDone.setDescription('The total number of link state updates received for all out-of-date portions of the database in this OSPF area.')
ospfAreaNbrN1way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrN1way.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrN1way.setDescription('The total number of Hello packets received from neighbours, in which this router is not mentioned in this OSPF area.')
ospfAreaNbrRstAd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrRstAd.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrRstAd.setDescription('The total number of times the Neighbour adjacency has been reset across this OPSF area.')
ospfAreaNbrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrDown.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrDown.setDescription('The total number of Neighbouring routers down (i.e. in the initial state of a neighbour conversation.) in this OSPF area.')
ospfAreaNbrN2way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrN2way.setStatus('current')
if mibBuilder.loadTexts: ospfAreaNbrN2way.setDescription('The total number of Hello packets received from neighbours, in which this router is mentioned in this OSPF area.')
ospfAreaChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3), )
if mibBuilder.loadTexts: ospfAreaChangeStats.setStatus('current')
if mibBuilder.loadTexts: ospfAreaChangeStats.setDescription('The table of OSPF Area Change Statistics.')
ospfAreaChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaIntfIndex"))
if mibBuilder.loadTexts: ospfAreaChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfAreaChangeStatsEntry.setDescription('Area Change Statistics about a OSPF area.')
ospfAreaIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfIndex.setDescription('The index of the OSPF Area for which these statistics apply.')
ospfAreaIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfHello.setDescription('The total number of Hello packets sent on this OSPF area.')
ospfAreaIntfDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfDown.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfDown.setDescription('The total number of interfaces down in this OSPF area.')
ospfAreaIntfLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfLoop.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfLoop.setDescription('The total number of interfaces no longer connected to the attatched network in this OSPF area.')
ospfAreaIntfUnloop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfUnloop.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfUnloop.setDescription('The total number of interfaces connected to the attatched network in this OSPF area..')
ospfAreaIntfWaitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfWaitTimer.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfWaitTimer.setDescription('The total number of times the Wait Timer has been fired, (indicating the end of the waiting period that is required before electing a (Backup) Designated Router) for this OSPF area.')
ospfAreaIntfBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfBackup.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfBackup.setDescription('The total number of Backup Designated Routers on the attatched network for this OSPF area.')
ospfAreaIntfNbrChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfNbrChange.setStatus('current')
if mibBuilder.loadTexts: ospfAreaIntfNbrChange.setDescription('The total number of changes in the set of bidirectional neighbours associated with the interface in this OSPF area.')
ospfAreaErrorStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4), )
if mibBuilder.loadTexts: ospfAreaErrorStats.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrorStats.setDescription('The table of OSPF Area Error Statistics.')
ospfAreaErrorStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaErrIndex"))
if mibBuilder.loadTexts: ospfAreaErrorStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrorStatsEntry.setDescription('Error Statistics for an OSPF area.')
ospfAreaErrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrIndex.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrIndex.setDescription('The index of the OSPF Area for which these statistics apply.')
ospfAreaErrAuthFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrAuthFailure.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrAuthFailure.setDescription('The total number of packets received with a wrong password in this area.')
ospfAreaErrNetmaskMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrNetmaskMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrNetmaskMismatch.setDescription('The total number of packets received with a wrong netmask in this area.')
ospfAreaErrHelloMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrHelloMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrHelloMismatch.setDescription('The total number of packets received with a different hello interval in this area.')
ospfAreaErrDeadMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrDeadMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrDeadMismatch.setDescription('The total number of packets received with a different dead interval in this area.')
ospfAreaErrOptionsMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrOptionsMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrOptionsMismatch.setDescription('The total number of packets received with a different options in this area.')
ospfAreaErrUnknownNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrUnknownNbr.setStatus('current')
if mibBuilder.loadTexts: ospfAreaErrUnknownNbr.setDescription('The total number of packets received from an unknown neighbour in this area.')
ospfInterface = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3))
ospfIntfRxTxStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1), )
if mibBuilder.loadTexts: ospfIntfRxTxStats.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxTxStats.setDescription('The table of OSPF Interface Rx/Tx packet Statistics.')
ospfIntfRxTxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfRxTxIndex"))
if mibBuilder.loadTexts: ospfIntfRxTxStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxTxStatsEntry.setDescription('OSPF interface Rx/Tx packet statistics.')
ospfIntfRxTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxTxIndex.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxTxIndex.setDescription('The OSPF interface for which these statistics apply.')
ospfIntfRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxPkts.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxPkts.setDescription('The total number of OSPF packets received for this OSPF interface.')
ospfIntfTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxPkts.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTxPkts.setDescription('The total number of OSPF packets transmitted for this OSPF interface.')
ospfIntfRxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxHello.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxHello.setDescription('The total number of Hello packets received for this OSPF interface.')
ospfIntfTxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxHello.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTxHello.setDescription('The total number of Hello packets transmitted for this OSPF interface.')
ospfIntfRxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxDatabase.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxDatabase.setDescription('The total number of Database Description packets received for this OSPF interface.')
ospfIntfTxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxDatabase.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTxDatabase.setDescription('The total number of Database Description packets transmitted for this OSPF interface.')
ospfIntfRxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxlsReqs.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxlsReqs.setDescription('The total number of Link State Request packets received for this OSPF interface.')
ospfIntfTxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxlsReqs.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTxlsReqs.setDescription('The total number of Link State Request packets transmitted for this OSPF interface.')
ospfIntfRxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxlsAcks.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxlsAcks.setDescription('The total number of Link State Acknowledgement packets received for this OSPF interface.')
ospfIntfTxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxlsAcks.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTxlsAcks.setDescription('The total number of Link State Acknowledgement packets transmitted for this OSPF interface.')
ospfIntfRxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxlsUpdates.setStatus('current')
if mibBuilder.loadTexts: ospfIntfRxlsUpdates.setDescription('The total number of Link State Update packets received for this OSPF interface.')
ospfIntfTxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxlsUpdates.setStatus('current')
if mibBuilder.loadTexts: ospfIntfTxlsUpdates.setDescription('The total number of Link State Update packets transmitted for this OSPF interface.')
ospfIntfNbrChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2), )
if mibBuilder.loadTexts: ospfIntfNbrChangeStats.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrChangeStats.setDescription('The table of OSPF Interface Neighbour change Statistics.')
ospfIntfNbrChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfNbrIndex"))
if mibBuilder.loadTexts: ospfIntfNbrChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrChangeStatsEntry.setDescription('OSPF interface Neighbour Change statistics.')
ospfIntfNbrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrIndex.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrIndex.setDescription('The index of the OSPF Interface for which these statistics apply.')
ospfIntfNbrhello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrhello.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrhello.setDescription('The total number of Hello packets received from neighbours in this OSPF interface.')
ospfIntfNbrStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrStart.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrStart.setDescription('The total number of neighbours in this state (i.e. an indication that Hello packets should now be sent to the neighbour at intervals of HelloInterval seconds.) in this OSPF interface.')
ospfIntfNbrAdjointOk = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrAdjointOk.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrAdjointOk.setDescription('The total number of decisions to be made (again) as to whether an adjacency should be established/maintained with the neighbour. for this OSPF interface.')
ospfIntfNbrNegotiationDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrNegotiationDone.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrNegotiationDone.setDescription('The total number of neighbours in this state wherein the Master/slave relationship has been negotiated, and sequence numbers have been exchanged, for this OSPF interface.')
ospfIntfNbrExchangeDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrExchangeDone.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrExchangeDone.setDescription("The total number of neighbours in this state (i.e. in an adjacency's final state) having transimitted a full sequence of Database Description packets, for this OSPF interface.")
ospfIntfNbrBadRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrBadRequests.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrBadRequests.setDescription('The total number of Link State Requests which have been received for a link state advertisement not contained in the database for this interface.')
ospfIntfNbrBadSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrBadSequence.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrBadSequence.setDescription('The total number of Database Description packets which have been received that either a) has an unexpected DD sequence number b) Unexpectedly has the init bit set c) Has an options field differing from the last Options field received in a Database Description packet. Any of these conditions indicate that some error has occured during adjacency establishment for this interface.')
ospfIntfNbrLoadingDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrLoadingDone.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrLoadingDone.setDescription('The total number of link state updates received for all out-of-date portions of the database for this OSPF interface.')
ospfIntfNbrN1way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrN1way.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrN1way.setDescription('The total number of Hello packets received from neighbours, in which this router is not mentioned for this OSPF interface.')
ospfIntfNbrRstAd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrRstAd.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrRstAd.setDescription('The sum total number of times the Neighbour adjacency has been reset on this interface.')
ospfIntfNbrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrDown.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrDown.setDescription('The total number of Neighbouring routers down (i.e. in the initial state of a neighbour conversation.) for this interface.')
ospfIntfNbrN2way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrN2way.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrN2way.setDescription('The total number of Hello packets received from neighbours, in which this router is mentioned for this OSPF interface.')
ospfIntfChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3), )
if mibBuilder.loadTexts: ospfIntfChangeStats.setStatus('current')
if mibBuilder.loadTexts: ospfIntfChangeStats.setDescription('The table of OSPF Interface change Statistics.')
ospfIntfChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfIndex"))
if mibBuilder.loadTexts: ospfIntfChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfIntfChangeStatsEntry.setDescription('OSPF interface Change statistics.')
ospfIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfIntfIndex.setDescription('The index of the OSPF Interface for which these statistics apply.')
ospfIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfIntfHello.setDescription('The total number of Hello packets sent by this interface.')
ospfIntfDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfDown.setStatus('current')
if mibBuilder.loadTexts: ospfIntfDown.setDescription('The total number of times the interface was down.')
ospfIntfLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfLoop.setStatus('current')
if mibBuilder.loadTexts: ospfIntfLoop.setDescription('The total number of times the interface was no longer connected to the attatched network.')
ospfIntfUnloop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfUnloop.setStatus('current')
if mibBuilder.loadTexts: ospfIntfUnloop.setDescription('The total number of times the interface, connected back to the attatched network.')
ospfIntfWaitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfWaitTimer.setStatus('current')
if mibBuilder.loadTexts: ospfIntfWaitTimer.setDescription('The total number of times the Wait Timer has been fired, (indicating the end of the waiting period that is required before electing a (Backup) Designated Router) for this OSPF interface.')
ospfIntfBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfBackup.setStatus('current')
if mibBuilder.loadTexts: ospfIntfBackup.setDescription('The total number of Backup Designated Routers on the attatched network for this OSPF interface.')
ospfIntfNbrChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrChange.setStatus('current')
if mibBuilder.loadTexts: ospfIntfNbrChange.setDescription('The total number of changes in the set of bidirectional neighbours associated with the interface for this OSPF interface.')
ospfIntfErrorStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4), )
if mibBuilder.loadTexts: ospfIntfErrorStats.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrorStats.setDescription('The table of OSPF Interface Error Statistics.')
ospfIntfErrorStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfErrIndex"))
if mibBuilder.loadTexts: ospfIntfErrorStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrorStatsEntry.setDescription('Error Statistics for an OSPF area.')
ospfIntfErrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrIndex.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrIndex.setDescription('The index of the OSPF Intf for which these statistics apply.')
ospfIntfErrAuthFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrAuthFailure.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrAuthFailure.setDescription('The total number of packets received with a wrong password in this area.')
ospfIntfErrNetmaskMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrNetmaskMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrNetmaskMismatch.setDescription('The total number of packets received with a wrong netmask in this area.')
ospfIntfErrHelloMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrHelloMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrHelloMismatch.setDescription('The total number of packets received with a different hello interval in this area.')
ospfIntfErrDeadMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrDeadMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrDeadMismatch.setDescription('The total number of packets received with a different dead interval in this area.')
ospfIntfErrOptionsMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrOptionsMismatch.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrOptionsMismatch.setDescription('The total number of packets received with a different options in this area.')
ospfIntfErrUnknownNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrUnknownNbr.setStatus('current')
if mibBuilder.loadTexts: ospfIntfErrUnknownNbr.setDescription('The total number of packets received from an unknown neighbour in this area.')
ospfCumRxPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxPkts.setStatus('current')
if mibBuilder.loadTexts: ospfCumRxPkts.setDescription('The sum total of all OSPF packets received on all OSPF areas and interfaces.')
ospfCumTxPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxPkts.setStatus('current')
if mibBuilder.loadTexts: ospfCumTxPkts.setDescription('The sum total of all OSPF packets transmitted on all OSPF areas and interfaces.')
ospfCumRxHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxHello.setStatus('current')
if mibBuilder.loadTexts: ospfCumRxHello.setDescription('The sum total of all Hello packets received on all OSPF areas and interfaces.')
ospfCumTxHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxHello.setStatus('current')
if mibBuilder.loadTexts: ospfCumTxHello.setDescription('The sum total of all Hello packets transmitted on all OSPF areas and interfaces.')
ospfCumRxDatabase = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxDatabase.setStatus('current')
if mibBuilder.loadTexts: ospfCumRxDatabase.setDescription('The sum total of all Database Description packets received on all OSPF areas and interfaces.')
ospfCumTxDatabase = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxDatabase.setStatus('current')
if mibBuilder.loadTexts: ospfCumTxDatabase.setDescription('The sum total of all Database Description packets transmitted on all OSPF areas and interfaces.')
ospfCumRxlsReqs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxlsReqs.setStatus('current')
if mibBuilder.loadTexts: ospfCumRxlsReqs.setDescription('The sum total of all Link State Request packets received on all OSPF areas and interfaces.')
ospfCumTxlsReqs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxlsReqs.setStatus('current')
if mibBuilder.loadTexts: ospfCumTxlsReqs.setDescription('The sum total of all Link State Request packets transmitted on all OSPF areas and interfaces.')
ospfCumRxlsAcks = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxlsAcks.setStatus('current')
if mibBuilder.loadTexts: ospfCumRxlsAcks.setDescription('The sum total of all Link State Acknowledgement packets received on all OSPF areas and interfaces.')
ospfCumTxlsAcks = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxlsAcks.setStatus('current')
if mibBuilder.loadTexts: ospfCumTxlsAcks.setDescription('The sum total of all Link State Acknowledgement packets transmitted on all OSPF areas and interfaces.')
ospfCumRxlsUpdates = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxlsUpdates.setStatus('current')
if mibBuilder.loadTexts: ospfCumRxlsUpdates.setDescription('The sum total of all Link State Update packets received on all OSPF areas and interfaces.')
ospfCumTxlsUpdates = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxlsUpdates.setStatus('current')
if mibBuilder.loadTexts: ospfCumTxlsUpdates.setDescription('The sum total of all Link State Update packets transmitted on all OSPF areas and interfaces.')
ospfCumNbrhello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrhello.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrhello.setDescription('The sum total of all Hello packets received from neighbours on all OSPF areas and interfaces.')
ospfCumNbrStart = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrStart.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrStart.setDescription('The sum total number of neighbours in this state (i.e. an indication that Hello packets should now be sent to the neighbour at intervals of HelloInterval seconds.) across all OSPF areas and interfaces.')
ospfCumNbrAdjointOk = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrAdjointOk.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrAdjointOk.setDescription('The sum total number of decisions to be made (again) as to whether an adjacency should be established/maintained with the neighbour across all OSPF areas and interfaces.')
ospfCumNbrNegotiationDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrNegotiationDone.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrNegotiationDone.setDescription('The sum total number of neighbours in this state wherein the Master/slave relationship has been negotiated, and sequence numbers have been exchanged, across all OSPF areas and interfaces.')
ospfCumNbrExchangeDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrExchangeDone.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrExchangeDone.setDescription("The sum total number of neighbours in this state (i.e. in an adjacency's final state) having transimitted a full sequence of Database Description packets, across all OSPF areas and interfaces.")
ospfCumNbrBadRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrBadRequests.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrBadRequests.setDescription('The sum total number of Link State Requests which have been received for a link state advertisement not contained in the database across all interfaces and OSPF areas.')
ospfCumNbrBadSequence = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrBadSequence.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrBadSequence.setDescription('The sum total number of Database Description packets which have been received that either a) has an unexpected DD sequence number b) Unexpectedly has the init bit set c) Has an options field differing from the last Options field received in a Database Description packet. Any of these conditions indicate that some error has occured during adjacency establishment for all OSPF areas and interfaces.')
ospfCumNbrLoadingDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrLoadingDone.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrLoadingDone.setDescription('The sum total number of link state updates received for all out-of-date portions of the database across all OSPF areas and interfaces.')
ospfCumNbrN1way = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrN1way.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrN1way.setDescription('The sum total number of Hello packets received from neighbours, in which this router is not mentioned across all OSPF interfaces and areas.')
ospfCumNbrRstAd = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrRstAd.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrRstAd.setDescription('The sum total number of times the Neighbour adjacency has been reset across all OPSF areas and interfaces.')
ospfCumNbrDown = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrDown.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrDown.setDescription('The total number of Neighbouring routers down (i.e. in the initial state of a neighbour conversation.) across all OSPF areas and interfaces.')
ospfCumNbrN2way = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrN2way.setStatus('current')
if mibBuilder.loadTexts: ospfCumNbrN2way.setDescription('The sum total number of Hello packets received from neighbours, in which this router is mentioned across all OSPF interfaces and areas.')
ospfCumIntfHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfHello.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfHello.setDescription('The sum total number of Hello packets sent on all interfaces and areas')
ospfCumIntfDown = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfDown.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfDown.setDescription('The sum total number of interfaces down in all OSPF areas.')
ospfCumIntfLoop = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfLoop.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfLoop.setDescription('The sum total of interfaces no longer connected to the attatched network across all OSPF areas and interfaces.')
ospfCumIntfUnloop = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfUnloop.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfUnloop.setDescription('The sum total number of interfaces, connected to the attatched network in all OSPF areas.')
ospfCumIntfWaitTimer = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfWaitTimer.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfWaitTimer.setDescription('The sum total number of times the Wait Timer has been fired, (indicating the end of the waiting period that is required before electing a (Backup) Designated Router) across all OSPF areas and interfaces.')
ospfCumIntfBackup = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfBackup.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfBackup.setDescription('The sum total number of Backup Designated Routers on the attatched network for all OSPF areas and interfaces.')
ospfCumIntfNbrChange = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfNbrChange.setStatus('current')
if mibBuilder.loadTexts: ospfCumIntfNbrChange.setDescription('The sum total number of changes in the set of bidirectional neighbours associated with any interface across all OSPF areas.')
ospfTmrsKckOffHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffHello.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffHello.setDescription('The sum total number of times the Hello timer has been fired (which triggers the send of a Hello packet) across all OPSF areas and interfaces.')
ospfTmrsKckOffRetransmit = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffRetransmit.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffRetransmit.setDescription('The sum total number of times the Retransmit timer has been fired across all OPSF areas and interfaces.')
ospfTmrsKckOffLsaLock = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffLsaLock.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffLsaLock.setDescription('The sum total number of times the Lsa Lock timer has been fired across all OSPF areas and interfaces.')
ospfTmrsKckOffLsaAck = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffLsaAck.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffLsaAck.setDescription('The sum total number of times the Lsa Ack timer has been fired across all ospf areas and interfaces.')
ospfTmrsKckOffDbage = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffDbage.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffDbage.setDescription('The total number of times the Dbage has been fired.')
ospfTmrsKckOffSummary = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffSummary.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffSummary.setDescription('The total number of times the Summary timer has been fired.')
ospfTmrsKckOffAseExport = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffAseExport.setStatus('current')
if mibBuilder.loadTexts: ospfTmrsKckOffAseExport.setDescription('The total number of times the ASE Export timer has been fired.')
ip6InReceives = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InReceives.setStatus('current')
if mibBuilder.loadTexts: ip6InReceives.setDescription('The total number of input datagrams received from interfaces, including those received in error.')
ip6ForwDatagrams = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6ForwDatagrams.setStatus('current')
if mibBuilder.loadTexts: ip6ForwDatagrams.setDescription('The number of input datagrams for which this entity was not their final IP destination, as a result of which an attempt was made to find a route to forward them to that final destination.')
ip6InDelivers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InDelivers.setStatus('current')
if mibBuilder.loadTexts: ip6InDelivers.setDescription('The total number of input datagrams successfully delivered to IP user-protocols (including ICMP).')
ip6InDiscards = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InDiscards.setStatus('current')
if mibBuilder.loadTexts: ip6InDiscards.setDescription('The number of input IP datagrams for which no problems were encountered to prevent their continued processing, but which were discarded (e.g., for lack of buffer space). Note that this counter does not include any datagrams discarded while awaiting re-assembly.')
ip6InUnknownProtos = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InUnknownProtos.setStatus('current')
if mibBuilder.loadTexts: ip6InUnknownProtos.setDescription('The number of locally-addressed datagrams received successfully but discarded because of an unknown or unsupported protocol.')
ip6InAddrErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InAddrErrors.setStatus('current')
if mibBuilder.loadTexts: ip6InAddrErrors.setDescription("The number of input datagrams discarded because the IP address in their IP header's destination field was not a valid address to be received at this entity.")
ip6OutRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6OutRequests.setStatus('current')
if mibBuilder.loadTexts: ip6OutRequests.setDescription('The total number of IP datagrams which local IP user-protocols (including ICMP) supplied to IP in requests for transmission. Note that this counter does not include any datagrams counted in ipForwDatagrams.')
ip6OutNoRoutes = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6OutNoRoutes.setStatus('current')
if mibBuilder.loadTexts: ip6OutNoRoutes.setDescription("The number of IP datagrams discarded because no route could be found to transmit them to their destination. Note that this Counter32 includes any packets counted in ipForwDatagrams which meet this`no-route' criterion. Note that this includes any datagrams which a host cannot route because all of its default gateways are down.")
ip6ReasmOKs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6ReasmOKs.setStatus('current')
if mibBuilder.loadTexts: ip6ReasmOKs.setDescription('The number of IP datagrams successfully re-assembled.')
ip6ReasmFails = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6ReasmFails.setStatus('current')
if mibBuilder.loadTexts: ip6ReasmFails.setDescription('The number of failures detected by the IP re-assembly.')
ip6icmpInMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpInMsgs.setStatus('current')
if mibBuilder.loadTexts: ip6icmpInMsgs.setDescription('The total number of ICMP messages received. Note that this Counter32 includes all those counted by icmpInErrors.')
ip6icmpOutMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpOutMsgs.setStatus('current')
if mibBuilder.loadTexts: ip6icmpOutMsgs.setDescription('The total number of ICMP messages attempted to send. Note that this Counter32 includes all those counted by icmp6OutErrors.')
ip6icmpInErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpInErrors.setStatus('current')
if mibBuilder.loadTexts: ip6icmpInErrors.setDescription('The number of ICMP messages received but determined as having ICMP-specific errors (bad ICMP checksums, bad length, etc.).')
ip6icmpOutErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpOutErrors.setStatus('current')
if mibBuilder.loadTexts: ip6icmpOutErrors.setDescription('The number of ICMP messages did not send due to problems discovered within ICMP such as a lack of buffers.')
icmp6StatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1), )
if mibBuilder.loadTexts: icmp6StatsTable.setStatus('current')
if mibBuilder.loadTexts: icmp6StatsTable.setDescription('Statistics for ICMP6.')
icmp6StatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "icmp6StatsIndx"))
if mibBuilder.loadTexts: icmp6StatsEntry.setStatus('current')
if mibBuilder.loadTexts: icmp6StatsEntry.setDescription('Statistics for IGMP Snooping.')
icmp6StatsIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6StatsIndx.setStatus('current')
if mibBuilder.loadTexts: icmp6StatsIndx.setDescription('The index of this statistics table.')
icmp6IntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6IntfIndex.setStatus('current')
if mibBuilder.loadTexts: icmp6IntfIndex.setDescription('IP interface index in interface configuration table.')
icmp6InMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InMsgs.setStatus('current')
if mibBuilder.loadTexts: icmp6InMsgs.setDescription('The total number of ICMP messages received. Note that this Counter32 includes all those counted by icmpInErrors.')
icmp6InErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InErrors.setStatus('current')
if mibBuilder.loadTexts: icmp6InErrors.setDescription('The number of ICMP messages received but determined as having ICMP-specific errors (bad ICMP checksums, bad length, etc.).')
icmp6InEchos = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InEchos.setStatus('current')
if mibBuilder.loadTexts: icmp6InEchos.setDescription('The number of ICMP Echo request messages received.')
icmp6InEchoReps = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InEchoReps.setStatus('current')
if mibBuilder.loadTexts: icmp6InEchoReps.setDescription('The number of ICMP Echo Reply messages received.')
icmp6InNSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InNSs.setStatus('current')
if mibBuilder.loadTexts: icmp6InNSs.setDescription('The number of neighbour solicitations received.')
icmp6InNAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InNAs.setStatus('current')
if mibBuilder.loadTexts: icmp6InNAs.setDescription('The number of neighbour advertisements received.')
icmp6InRSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InRSs.setStatus('current')
if mibBuilder.loadTexts: icmp6InRSs.setDescription('The number of router solicitations received.')
icmp6InRAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InRAs.setStatus('current')
if mibBuilder.loadTexts: icmp6InRAs.setDescription('The number of router advertisements received.')
icmp6InDestUnreachs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InDestUnreachs.setStatus('current')
if mibBuilder.loadTexts: icmp6InDestUnreachs.setDescription('The number of ICMP Destination Unreachable messages received.')
icmp6InTimeExcds = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InTimeExcds.setStatus('current')
if mibBuilder.loadTexts: icmp6InTimeExcds.setDescription('The number of ICMP Time Exceeded messages received.')
icmp6InTooBigs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InTooBigs.setStatus('current')
if mibBuilder.loadTexts: icmp6InTooBigs.setDescription('The number of ICMP too big messages received.')
icmp6InParmProbs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InParmProbs.setStatus('current')
if mibBuilder.loadTexts: icmp6InParmProbs.setDescription('The number of ICMP Parameter Problem messages received.')
icmp6InRedirects = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InRedirects.setStatus('current')
if mibBuilder.loadTexts: icmp6InRedirects.setDescription('The number of ICMP Redirect messages received.')
icmp6OutMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutMsgs.setStatus('current')
if mibBuilder.loadTexts: icmp6OutMsgs.setDescription('The total number of ICMP messages which this entity attempted to send. Note that this Counter32 includes all those counted by icmp6OutErrors.')
icmp6OutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutErrors.setStatus('current')
if mibBuilder.loadTexts: icmp6OutErrors.setDescription('The number of ICMP messages which this entity did not send due to problems discovered within ICMP such as a lack of buffers.')
icmp6OutEchos = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutEchos.setStatus('current')
if mibBuilder.loadTexts: icmp6OutEchos.setDescription('The number of ICMP Echo request messages sent.')
icmp6OutEchoReps = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutEchoReps.setStatus('current')
if mibBuilder.loadTexts: icmp6OutEchoReps.setDescription('The number of ICMP Echo Reply messages sent.')
icmp6OutNSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutNSs.setStatus('current')
if mibBuilder.loadTexts: icmp6OutNSs.setDescription('The number of neighbour solicitations sent.')
icmp6OutNAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutNAs.setStatus('current')
if mibBuilder.loadTexts: icmp6OutNAs.setDescription('The number of neighbour advertisements sent.')
icmp6OutRSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutRSs.setStatus('current')
if mibBuilder.loadTexts: icmp6OutRSs.setDescription('The number of router solicitations sent.')
icmp6OutRAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutRAs.setStatus('current')
if mibBuilder.loadTexts: icmp6OutRAs.setDescription('The number of router advertisements sent.')
icmp6OutRedirects = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutRedirects.setStatus('current')
if mibBuilder.loadTexts: icmp6OutRedirects.setDescription('The number of ICMP Redirect messages sent. For a host, this object will always be zero, since hosts do not send redirects.')
ip6GwStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1), )
if mibBuilder.loadTexts: ip6GwStatsTable.setStatus('current')
if mibBuilder.loadTexts: ip6GwStatsTable.setDescription('Statistics for IP6 Gateway.')
ip6GwStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ip6GwStatsIndex"))
if mibBuilder.loadTexts: ip6GwStatsEntry.setStatus('current')
if mibBuilder.loadTexts: ip6GwStatsEntry.setDescription('Statistics for IP6 Gateway.')
ip6GwStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwStatsIndex.setStatus('current')
if mibBuilder.loadTexts: ip6GwStatsIndex.setDescription('The index of Gw6 statistics.')
ip6GwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwIndex.setStatus('current')
if mibBuilder.loadTexts: ip6GwIndex.setDescription('Gateway index in gateway configuration table.')
ip6GwEchoreq = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwEchoreq.setStatus('current')
if mibBuilder.loadTexts: ip6GwEchoreq.setDescription('The number of GW Echo request messages .')
ip6GwEchoresp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwEchoresp.setStatus('current')
if mibBuilder.loadTexts: ip6GwEchoresp.setDescription('The number of GW Echo response messages .')
ip6GwFails = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwFails.setStatus('current')
if mibBuilder.loadTexts: ip6GwFails.setDescription('The number of GWs fails.')
ip6GwMaster = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwMaster.setStatus('current')
if mibBuilder.loadTexts: ip6GwMaster.setDescription('The master gateway.')
ip6IfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6IfIndex.setStatus('current')
if mibBuilder.loadTexts: ip6IfIndex.setDescription('The IP6 interface.')
ip6GwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwRetry.setStatus('current')
if mibBuilder.loadTexts: ip6GwRetry.setDescription('The number of retries.')
ipIntfInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1), )
if mibBuilder.loadTexts: ipIntfInfoTable.setStatus('current')
if mibBuilder.loadTexts: ipIntfInfoTable.setDescription('The table of IP interface information.')
intfInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "intfInfoIndex"))
if mibBuilder.loadTexts: intfInfoEntry.setStatus('current')
if mibBuilder.loadTexts: intfInfoEntry.setDescription('A row in IP interface information table.')
intfInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoIndex.setStatus('current')
if mibBuilder.loadTexts: intfInfoIndex.setDescription('The interface number for which the information is related.')
intfInfoIpver = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoIpver.setStatus('current')
if mibBuilder.loadTexts: intfInfoIpver.setDescription('The type of IP address.')
intfInfoAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoAddr.setStatus('current')
if mibBuilder.loadTexts: intfInfoAddr.setDescription('The IP address of the interface.')
intfInfoNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoNetMask.setStatus('current')
if mibBuilder.loadTexts: intfInfoNetMask.setDescription('The subnet mask of the interface.')
intfInfoBcastAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoBcastAddr.setStatus('current')
if mibBuilder.loadTexts: intfInfoBcastAddr.setDescription('The broadcast address of the interface.')
intfInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoVlan.setStatus('current')
if mibBuilder.loadTexts: intfInfoVlan.setDescription('The VLAN number for this interface.')
intfInfoStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoStatus.setStatus('current')
if mibBuilder.loadTexts: intfInfoStatus.setDescription('The status of the interface.')
intfInfoLinkLocalAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoLinkLocalAddr.setStatus('current')
if mibBuilder.loadTexts: intfInfoLinkLocalAddr.setDescription('The site local address of the interface.')
ipRouteInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1), )
if mibBuilder.loadTexts: ipRouteInfoTable.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoTable.setDescription('The table of run-time IP routes.')
ipRouteInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipRouteInfoIndx"))
if mibBuilder.loadTexts: ipRouteInfoEntry.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoEntry.setDescription('A row in the run-time IP route table')
ipRouteInfoIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoIndx.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoIndx.setDescription('The index of this route table.')
ipRouteInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoDestIp.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoDestIp.setDescription('The destination IP address of this route.')
ipRouteInfoMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoMask.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoMask.setDescription('The destination IP mask of this route.')
ipRouteInfoGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoGateway.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoGateway.setDescription('The next-hop router address for this route.')
ipRouteInfoTag = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("fixed", 1), ("static", 2), ("addr", 3), ("rip", 4), ("broadcast", 5), ("martian", 6), ("multicast", 7), ("vip", 8), ("bgp", 9), ("ospf", 10), ("none", 11)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoTag.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoTag.setDescription('The tag-type for this route.')
ipRouteInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("indirect", 1), ("direct", 2), ("local", 3), ("broadcast", 4), ("martian", 5), ("multicast", 6), ("other", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoType.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoType.setDescription('The type of the route.')
ipRouteInfoInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoInterface.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoInterface.setDescription('The interface number for which the destination address is applicable.')
ipRouteInfoGateway1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoGateway1.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoGateway1.setDescription('The next-hop router address for this route.')
ipRouteInfoGateway2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoGateway2.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoGateway2.setDescription('The next-hop router address for this route.')
ipRouteInfoMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoMetric.setStatus('current')
if mibBuilder.loadTexts: ipRouteInfoMetric.setDescription('The Metric for this route.')
routeTableClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: routeTableClear.setStatus('current')
if mibBuilder.loadTexts: routeTableClear.setDescription('Setting this value to clear(2) clears the route table.')
arpInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1), )
if mibBuilder.loadTexts: arpInfoTable.setStatus('current')
if mibBuilder.loadTexts: arpInfoTable.setDescription('The table of ARP entries.')
arpInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "arpInfoDestIp"))
if mibBuilder.loadTexts: arpInfoEntry.setStatus('current')
if mibBuilder.loadTexts: arpInfoEntry.setDescription('A row in the ARP table')
arpInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoDestIp.setStatus('current')
if mibBuilder.loadTexts: arpInfoDestIp.setDescription('The destination IP address of the ARP entry.')
arpInfoMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 2), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoMacAddr.setStatus('current')
if mibBuilder.loadTexts: arpInfoMacAddr.setDescription('The MAC address for the ARP entry.')
arpInfoVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoVLAN.setStatus('current')
if mibBuilder.loadTexts: arpInfoVLAN.setDescription('The VLAN identifier for the ARP entry.')
arpInfoSrcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoSrcPort.setStatus('current')
if mibBuilder.loadTexts: arpInfoSrcPort.setDescription("The port number on which this entry's equivalence is effective.")
arpInfoRefPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoRefPorts.setStatus('current')
if mibBuilder.loadTexts: arpInfoRefPorts.setDescription('The reference SPs associated with this ARP entry.')
arpInfoFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("clear", 1), ("unresolved", 2), ("permanent", 3), ("indirect", 4), ("layer4", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoFlag.setStatus('current')
if mibBuilder.loadTexts: arpInfoFlag.setDescription('The flag associated with this ARP entry.')
arpCacheClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: arpCacheClear.setStatus('current')
if mibBuilder.loadTexts: arpCacheClear.setDescription('Setting this value to clear(2) clears the ARP cache.')
vrrpInfoVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1), )
if mibBuilder.loadTexts: vrrpInfoVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrTable.setDescription('The table of VRRP virtual router run-time information.')
vrrpInfoVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpInfoVirtRtrIndex"))
if mibBuilder.loadTexts: vrrpInfoVirtRtrTableEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrTableEntry.setDescription('The run-time information about a VRRP virtual router.')
vrrpInfoVirtRtrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrIndex.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrIndex.setDescription('The VRRP virtual router index.')
vrrpInfoVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("init", 1), ("master", 2), ("backup", 3), ("holdoff", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrState.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrState.setDescription('The VRRP virtual router state.')
vrrpInfoVirtRtrOwnership = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("owner", 1), ("renter", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrOwnership.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrOwnership.setDescription('The VRRP virtual router ownership status.')
vrrpInfoVirtRtrServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrServer.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrServer.setDescription('The VRRP server state identifies virtual routers that support Layer 4 services.')
vrrpInfoVirtRtrProxy = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrProxy.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrProxy.setDescription('The VRRP proxy state identifies virtual proxy routers.')
vrrpInfoVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrPriority.setStatus('current')
if mibBuilder.loadTexts: vrrpInfoVirtRtrPriority.setDescription('The VRRP virtual router priority.')
ospfGeneralInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1))
ospfStartTime = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfStartTime.setStatus('current')
if mibBuilder.loadTexts: ospfStartTime.setDescription('The time when ospf has been started.')
ospfProcessUptime = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfProcessUptime.setStatus('current')
if mibBuilder.loadTexts: ospfProcessUptime.setDescription('The time since ospf has been started.')
ospfLsTypesSupported = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfLsTypesSupported.setStatus('current')
if mibBuilder.loadTexts: ospfLsTypesSupported.setDescription('The Link State Types that are supported.')
ospfIntfCountForRouter = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfCountForRouter.setStatus('current')
if mibBuilder.loadTexts: ospfIntfCountForRouter.setDescription('The number of interfaces for this router.')
ospfVlinkCountForRouter = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVlinkCountForRouter.setStatus('current')
if mibBuilder.loadTexts: ospfVlinkCountForRouter.setDescription('The number of virtual links for this router.')
ospfTotalNeighbours = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalNeighbours.setStatus('current')
if mibBuilder.loadTexts: ospfTotalNeighbours.setDescription('The total number of OSPF neighbours.')
ospfNbrInInitState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNbrInInitState.setStatus('current')
if mibBuilder.loadTexts: ospfNbrInInitState.setDescription('The number of neighbours in the initial state of exchange.')
ospfNbrInExchState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNbrInExchState.setStatus('current')
if mibBuilder.loadTexts: ospfNbrInExchState.setDescription('The number of neighbours in the exchange state.')
ospfNbrInFullState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNbrInFullState.setStatus('current')
if mibBuilder.loadTexts: ospfNbrInFullState.setDescription('The number of neighbours in the Full state of exchange.')
ospfTotalAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalAreas.setStatus('current')
if mibBuilder.loadTexts: ospfTotalAreas.setDescription('The Total number of areas.')
ospfTotalTransitAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalTransitAreas.setStatus('current')
if mibBuilder.loadTexts: ospfTotalTransitAreas.setDescription('The Total number of Transit areas.')
ospfTotalNssaAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalNssaAreas.setStatus('current')
if mibBuilder.loadTexts: ospfTotalNssaAreas.setDescription('The Total number of NSSA areas.')
ospfAreaInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2), )
if mibBuilder.loadTexts: ospfAreaInfoTable.setStatus('current')
if mibBuilder.loadTexts: ospfAreaInfoTable.setDescription('The table of OSPF Area information.')
ospfAreaInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaInfoIndex"))
if mibBuilder.loadTexts: ospfAreaInfoEntry.setStatus('current')
if mibBuilder.loadTexts: ospfAreaInfoEntry.setDescription('Information about a OSPF area.')
ospfAreaInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaInfoIndex.setStatus('current')
if mibBuilder.loadTexts: ospfAreaInfoIndex.setDescription('The OSPF area number for which the OSPF info table is related.')
ospfTotalNumberOfInterfaces = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalNumberOfInterfaces.setStatus('current')
if mibBuilder.loadTexts: ospfTotalNumberOfInterfaces.setDescription('The total number of interfaces for this OSPF area.')
ospfNumberOfInterfacesUp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNumberOfInterfacesUp.setStatus('current')
if mibBuilder.loadTexts: ospfNumberOfInterfacesUp.setDescription('The number of interfaces UP in area.')
ospfNumberOfLsdbEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNumberOfLsdbEntries.setStatus('current')
if mibBuilder.loadTexts: ospfNumberOfLsdbEntries.setDescription('The number of Link State Database entries for this OSPF area.')
ospfAreaInfoId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaInfoId.setStatus('current')
if mibBuilder.loadTexts: ospfAreaInfoId.setDescription('The IP address of the OSPF area.')
ospfIntfInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3), )
if mibBuilder.loadTexts: ospfIntfInfoTable.setStatus('current')
if mibBuilder.loadTexts: ospfIntfInfoTable.setDescription('The table of OSPF Interface information.')
ospfIntfInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfInfoIndex"))
if mibBuilder.loadTexts: ospfIntfInfoEntry.setStatus('current')
if mibBuilder.loadTexts: ospfIntfInfoEntry.setDescription('Information about a OSPF interface.')
ospfIfInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfInfoIndex.setStatus('current')
if mibBuilder.loadTexts: ospfIfInfoIndex.setDescription('The OSPF interface number for which the OSPF info table is related.')
ospfIfDesignatedRouterIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfDesignatedRouterIP.setStatus('current')
if mibBuilder.loadTexts: ospfIfDesignatedRouterIP.setDescription('The OSPF Designated Router ID (IP Address) for this OSPF interface.')
ospfIfBackupDesignatedRouterIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfBackupDesignatedRouterIP.setStatus('current')
if mibBuilder.loadTexts: ospfIfBackupDesignatedRouterIP.setDescription('The OSPF Backup Designated Router ID (IP Address) for this OSPF interface.')
ospfIfWaitInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfWaitInterval.setStatus('current')
if mibBuilder.loadTexts: ospfIfWaitInterval.setDescription('The OSPF Wait interval for this OSPF interface.')
ospfIfTotalNeighbours = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfTotalNeighbours.setStatus('current')
if mibBuilder.loadTexts: ospfIfTotalNeighbours.setDescription('The Total number of neighbours for this OSPF interface.')
ospfIfInfoIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfInfoIpAddress.setStatus('current')
if mibBuilder.loadTexts: ospfIfInfoIpAddress.setDescription('The IP address of the OSPF interface.')
ospfIfNbrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5), )
if mibBuilder.loadTexts: ospfIfNbrTable.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrTable.setDescription('The table of OSPF Interface Neighbour information.')
ospfIfNbrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfNbrIntfIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfNbrIpAddr"))
if mibBuilder.loadTexts: ospfIfNbrEntry.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrEntry.setDescription('Information about a OSPF interface, neighbour pair.')
ospfIfNbrIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrIntfIndex.setDescription('The OSPF Interface number for which this Interface/Nbr table is related.')
ospfIfNbrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrIpAddr.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrIpAddr.setDescription('The OSPF Neighbour ID .')
ospfIfNbrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrPriority.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrPriority.setDescription('The priority of the OSPF neighbour.')
ospfIfNbrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("down", 1), ("attempt", 2), ("init", 3), ("twoway", 4), ("exStart", 5), ("exchange", 6), ("loading", 7), ("full", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrState.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrState.setDescription('The state of the OSPF neighbour.')
ospfIfNbrDesignatedRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrDesignatedRtr.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrDesignatedRtr.setDescription('The IP Address of the Designated Router for this OSPF Neighbour.')
ospfIfNbrBackupDesignatedRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrBackupDesignatedRtr.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrBackupDesignatedRtr.setDescription('The IP Address of the backup designated Router for this OSPF Neighbour.')
ospfIfNbrIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrIpAddress.setStatus('current')
if mibBuilder.loadTexts: ospfIfNbrIpAddress.setDescription('The IP Address of the OSPF Neighbour.')
gatewayInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1), )
if mibBuilder.loadTexts: gatewayInfoTable.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoTable.setDescription('The table containing information for the default gateways.')
gatewayInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "gatewayInfoIndex"))
if mibBuilder.loadTexts: gatewayInfoEntry.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoEntry.setDescription('A row in the gateway information table')
gatewayInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoIndex.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoIndex.setDescription('The gateway number for which the information is related.')
gatewayInfoAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoAddr.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoAddr.setDescription('The IP address of the default gateway.')
gatewayInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoVlan.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoVlan.setDescription('The VLAN number for this gateway.')
gatewayInfoStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("failed", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoStatus.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoStatus.setDescription('The status of the default gateway.')
gatewayInfoAddr6 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoAddr6.setStatus('current')
if mibBuilder.loadTexts: gatewayInfoAddr6.setDescription('The IP6 address of the default gateway.')
nbrcacheInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1), )
if mibBuilder.loadTexts: nbrcacheInfoTable.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoTable.setDescription('The table of nbrcache information.')
nbrcacheInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "nbrcacheInfoIndex"))
if mibBuilder.loadTexts: nbrcacheInfoEntry.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoEntry.setDescription('Information about neighbour discovery protocol.')
nbrcacheInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoIndex.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoIndex.setDescription('The index of the nbrcache entry.')
nbrcacheInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoDestIp.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoDestIp.setDescription('The destination IP address of the nbrcache entry.')
nbrcacheInfoState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("undef", 1), ("reach", 2), ("stale", 3), ("delay", 4), ("probe", 5), ("inval", 6), ("unknown", 7), ("incmp", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoState.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoState.setDescription('The state of the nbrcache entry.')
nbrcacheInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("undef", 1), ("other", 2), ("invalid", 3), ("dynamic", 4), ("static", 5), ("local", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoType.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoType.setDescription('The type of the nbrcache entry.')
nbrcacheInfoMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 5), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoMacAddr.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoMacAddr.setDescription('The MAC address for the nbrcache entry.')
nbrcacheInfoVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoVlanId.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoVlanId.setDescription('The VLAN identifier for the nbrcache entry.')
nbrcacheInfoPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoPortNum.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoPortNum.setDescription("The port number on which this entry's equivalence is effective.")
nbrcacheClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: nbrcacheClear.setStatus('current')
if mibBuilder.loadTexts: nbrcacheClear.setDescription('Setting this value to clear(2) clears the Nbr cache, When read ok(1) is returned.')
nbrcacheInfoTotDynamicEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoTotDynamicEntries.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoTotDynamicEntries.setDescription('The total number of dynamic neighbour cache entries.')
nbrcacheInfoTotLocalEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoTotLocalEntries.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoTotLocalEntries.setDescription('The total number of local neighbour cache entries.')
nbrcacheInfoTotOtherEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoTotOtherEntries.setStatus('current')
if mibBuilder.loadTexts: nbrcacheInfoTotOtherEntries.setDescription('The total number of other neighbour cache entries.')
ipRoute6InfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1), )
if mibBuilder.loadTexts: ipRoute6InfoTable.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoTable.setDescription('The table of run-time IP6 routes.')
ipRoute6InfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipRoute6InfoIndx"))
if mibBuilder.loadTexts: ipRoute6InfoEntry.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoEntry.setDescription('A row in the run-time IP6 route table.')
ipRoute6InfoIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoIndx.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoIndx.setDescription('The index of this route6 table.')
ipRoute6InfoDestIp6 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoDestIp6.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoDestIp6.setDescription('The destination of the route.')
ipRoute6InfoInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoInterface.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoInterface.setDescription('The interface of the route.')
ipRoute6InfoNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoNextHop.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoNextHop.setDescription('The next hop of the route.')
ipRoute6InfoProto = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("isis", 1), ("rip", 2), ("ospf", 3), ("static", 4), ("local", 5), ("bgp", 6), ("stlow", 7), ("ospfi", 8), ("ospfe", 9), ("ospfe2", 10), ("ospfa", 11), ("ripa", 12), ("bgpa", 13), ("igmp", 14), ("unknown", 15), ("natpt", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoProto.setStatus('current')
if mibBuilder.loadTexts: ipRoute6InfoProto.setDescription('The protocol type of the route.')
rip2GeneralInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1))
ripInfoState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoState.setStatus('current')
if mibBuilder.loadTexts: ripInfoState.setDescription('RIP global state.')
ripInfoUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoUpdatePeriod.setStatus('current')
if mibBuilder.loadTexts: ripInfoUpdatePeriod.setDescription('Update Period in seconds.')
ripInfoVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoVip.setStatus('current')
if mibBuilder.loadTexts: ripInfoVip.setDescription('Advertise VIP Host Routes.')
ripInfoStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoStaticSupply.setStatus('current')
if mibBuilder.loadTexts: ripInfoStaticSupply.setDescription('Advertise Static Routes.')
rip2InfoIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2), )
if mibBuilder.loadTexts: rip2InfoIntfTable.setStatus('current')
if mibBuilder.loadTexts: rip2InfoIntfTable.setDescription('The information table of RIP.')
ripInfoIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripInfoIntfIndex"))
if mibBuilder.loadTexts: ripInfoIntfEntry.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfEntry.setDescription('Information about RIP on IP interface.')
ripInfoIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfIndex.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfIndex.setDescription('The interface number for which the RIP information is related.')
ripInfoIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfVersion.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfVersion.setDescription('RIP version.')
ripInfoIntfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfAddress.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfAddress.setDescription('The interface address.')
ripInfoIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfState.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfState.setDescription('The status of RIP protocol.')
ripInfoIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfListen.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfListen.setDescription('The status of listening to route updates.')
ripInfoIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfTrigUpdate.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfTrigUpdate.setDescription('The status of triggered updates.')
ripInfoIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfMcastUpdate.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfMcastUpdate.setDescription('The status of multicast updates.')
ripInfoIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfPoisonReverse.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfPoisonReverse.setDescription('The status of RIP poison reverse.')
ripInfoIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfSupply.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfSupply.setDescription('The status of supplying route updates.')
ripInfoIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfMetric.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfMetric.setDescription('RIP route metric for this interface.')
ripInfoIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfAuth.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfAuth.setDescription('The type of Authentication used on this interface.')
ripInfoIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfKey.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfKey.setDescription('RIP update authentication password.')
ripInfoIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfDefault.setStatus('current')
if mibBuilder.loadTexts: ripInfoIntfDefault.setDescription('Specifies what RIP does with default routes.')
rip2RoutesInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1), )
if mibBuilder.loadTexts: rip2RoutesInfoTable.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoTable.setDescription('The table of rip routes.')
rip2RoutesInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "rip2RoutesInfoDestIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "rip2RoutesInfoNxtHopIndex"))
if mibBuilder.loadTexts: rip2RoutesInfoEntry.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoEntry.setDescription('Information about rip routes.')
rip2RoutesInfoDestIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoDestIndex.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoDestIndex.setDescription('The index of the rip routes.')
rip2RoutesInfoNxtHopIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoNxtHopIndex.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoNxtHopIndex.setDescription('The index of the next hop.')
rip2RoutesInfoDestination = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoDestination.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoDestination.setDescription('The destination of the rip route.')
rip2RoutesInfoIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoIpAddress.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoIpAddress.setDescription('The ipaddress of the next hop.')
rip2RoutesInfoMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoMetric.setStatus('current')
if mibBuilder.loadTexts: rip2RoutesInfoMetric.setDescription('RIP route metric for this route.')
allowedNwInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1), )
if mibBuilder.loadTexts: allowedNwInfoTable.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoTable.setDescription('The table of allowed network run-time information.')
allowedNwInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "allowedNwInfoIndex"))
if mibBuilder.loadTexts: allowedNwInfoEntry.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoEntry.setDescription('A row in the allowed network information table.')
allowedNwInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoIndex.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoIndex.setDescription('The allowed network index')
allowedNwInfoIpver = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoIpver.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoIpver.setDescription('The type of IP address.')
allowedNwInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoVlan.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoVlan.setDescription('The VLAN that the allowed network belongs to.')
allowedNwInfoBeginIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoBeginIpAddr.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoBeginIpAddr.setDescription('The begin IP address of the allowed network.')
allowedNwInfoEndIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoEndIpAddr.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoEndIpAddr.setDescription('The begin IP address of the allowed network.')
allowedNwInfoNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoNetMask.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoNetMask.setDescription('The subnet mask of the allowed network.')
allowedNwInfoIp6Prefix = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoIp6Prefix.setStatus('current')
if mibBuilder.loadTexts: allowedNwInfoIp6Prefix.setDescription('The prefix length of the IP6 allowed network.')
vrrpOperVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1), )
if mibBuilder.loadTexts: vrrpOperVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts: vrrpOperVirtRtrTable.setDescription('An entry in the table of virtual routers.')
vrrpOperVirtRtrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpOperVirtRtrIndex"))
if mibBuilder.loadTexts: vrrpOperVirtRtrEntry.setStatus('current')
if mibBuilder.loadTexts: vrrpOperVirtRtrEntry.setDescription('A row in the vrrpOperVirtRtrTable ')
vrrpOperVirtRtrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpOperVirtRtrIndex.setStatus('current')
if mibBuilder.loadTexts: vrrpOperVirtRtrIndex.setDescription('The index for the VRRP virtual router.')
vrrpOperVirtRtrBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("backup", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpOperVirtRtrBackup.setStatus('current')
if mibBuilder.loadTexts: vrrpOperVirtRtrBackup.setDescription("When set to a value of 'backup(2)' it forces the specified master virtual router into backup mode. 'ok(1)' is returned when the object os read.")
vrrpOperVirtRtrGroupBackup = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("backup", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpOperVirtRtrGroupBackup.setStatus('current')
if mibBuilder.loadTexts: vrrpOperVirtRtrGroupBackup.setDescription("When set to a value of 'backup(2)' it forces the specified master virtual router group into backup mode. 'ok(1)' is returned when the object os read.")
bgpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1))
garpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2))
bgpOperStart = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1))
bgpOperStop = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2))
bgpOperStartPeerNum = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStartPeerNum.setStatus('current')
if mibBuilder.loadTexts: bgpOperStartPeerNum.setDescription('Enter BGP peer Number.Value 1 is returned when object is read.')
bgpOperStartSess = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("start", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStartSess.setStatus('current')
if mibBuilder.loadTexts: bgpOperStartSess.setDescription('This is the action object,start(2) is to Start BGP peer session. ok(1) is returned when object is read')
bgpOperStopPeerNum = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStopPeerNum.setStatus('current')
if mibBuilder.loadTexts: bgpOperStopPeerNum.setDescription('Enter BGP peer Number.Value 1 is returned when object is read.')
bgpOperStopSess = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("stop", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStopSess.setStatus('current')
if mibBuilder.loadTexts: bgpOperStopSess.setDescription('This is an action object,stop(2) is to Stop BGP peer session. ok(1) is returned when object is read')
garpOperIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: garpOperIpAddr.setStatus('current')
if mibBuilder.loadTexts: garpOperIpAddr.setDescription('Ip Address to Send gratuitous arp.Value 0.0.0.0 is returned when object is read.')
garpOperVlanNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4090))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: garpOperVlanNumber.setStatus('current')
if mibBuilder.loadTexts: garpOperVlanNumber.setDescription('Vlan Number to Send gratuitous arp.Value 1 is returned when object is read.')
garpOperSend = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ok", 1), ("send", 2), ("error", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: garpOperSend.setStatus('current')
if mibBuilder.loadTexts: garpOperSend.setDescription('This is an action object,When set to value of send(2), it sends gratuitous arp.ok(1) is returned when garp request is sent successfully.Otherwise error(3) is returned.')
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", vrrpCurCfgVirtRtrSharing=vrrpCurCfgVirtRtrSharing, vrrpCurCfgVirtRtrTckVirtRtr=vrrpCurCfgVirtRtrTckVirtRtr, ipNewCfgRmapDelete=ipNewCfgRmapDelete, arpInfoEntry=arpInfoEntry, ripInfoIntfAddress=ripInfoIntfAddress, ip6GwEchoresp=ip6GwEchoresp, ospfAreaErrNetmaskMismatch=ospfAreaErrNetmaskMismatch, vrrpInfoVirtRtrTableEntry=vrrpInfoVirtRtrTableEntry, vrrpCurCfgVirtRtrGrpInterval=vrrpCurCfgVirtRtrGrpInterval, vrrpNewCfgIfDelete=vrrpNewCfgIfDelete, ipCurCfgIntfIpv6Addr=ipCurCfgIntfIpv6Addr, ospfCurCfgEbgpOutRmapList=ospfCurCfgEbgpOutRmapList, vrrpNewCfgVirtRtrDelete=vrrpNewCfgVirtRtrDelete, icmp6Stats=icmp6Stats, ospfAreaIntfLoop=ospfAreaIntfLoop, vrrpNewCfgVirtRtrTckVirtRtr=vrrpNewCfgVirtRtrTckVirtRtr, ospfAreaIntfHello=ospfAreaIntfHello, tcpStats=tcpStats, vrrpNewCfgGenHoldoff=vrrpNewCfgGenHoldoff, ipv6CurCfgStaticRouteMask=ipv6CurCfgStaticRouteMask, dnsStatOutDnsRequests=dnsStatOutDnsRequests, rip2InfoIntfTable=rip2InfoIntfTable, vrrpNewCfgVirtRtrVrGrpPreemption=vrrpNewCfgVirtRtrVrGrpPreemption, ipv6CurCfgStaticRouteEntry=ipv6CurCfgStaticRouteEntry, ipv6CurCfgStaticRouteInterface=ipv6CurCfgStaticRouteInterface, ospfCurCfgRangeHideState=ospfCurCfgRangeHideState, ipGatewayCfg=ipGatewayCfg, vrrpNewCfgGenTckIpIntfInc=vrrpNewCfgGenTckIpIntfInc, ospfNewCfgVirtIntfIndex=ospfNewCfgVirtIntfIndex, vrrpVirtRtrGrpTableMaxSize=vrrpVirtRtrGrpTableMaxSize, bgpCurCfgPeerKeepAlive=bgpCurCfgPeerKeepAlive, ipCurCfgNwfMask=ipCurCfgNwfMask, ipCurCfgAspathAS=ipCurCfgAspathAS, arpStats=arpStats, vrrpInfoVirtRtrServer=vrrpInfoVirtRtrServer, bgpCurCfgPeerMinTime=bgpCurCfgPeerMinTime, vrrpNewCfgVirtRtrVrGrpTckIpIntf=vrrpNewCfgVirtRtrVrGrpTckIpIntf, ospfAreaIntfWaitTimer=ospfAreaIntfWaitTimer, ipNewCfgGwVlan=ipNewCfgGwVlan, ipNewCfgBootpState=ipNewCfgBootpState, ospfNewCfgRangeAddr=ospfNewCfgRangeAddr, ipNewCfgGwArp=ipNewCfgGwArp, ospfNewCfgRipMetricType=ospfNewCfgRipMetricType, ifStatsIndex=ifStatsIndex, ospfAreaInfoId=ospfAreaInfoId, vrrpNewCfgVirtRtrVrGrpDelete=vrrpNewCfgVirtRtrVrGrpDelete, ipFwdLocalTableMaxSize=ipFwdLocalTableMaxSize, ipNewCfgStaticRouteMask=ipNewCfgStaticRouteMask, bgpCurCfgPeerHoldTime=bgpCurCfgPeerHoldTime, ospfCurCfgAreaMetric=ospfCurCfgAreaMetric, ospfAreaNbrChangeStats=ospfAreaNbrChangeStats, ripInfoIntfIndex=ripInfoIntfIndex, ospfCumRxlsAcks=ospfCumRxlsAcks, vrrpOper=vrrpOper, ipCurCfgStaticRouteDestIp=ipCurCfgStaticRouteDestIp, bgpCurCfgPeerFixedState=bgpCurCfgPeerFixedState, bgpNewCfgPeerStaticState=bgpNewCfgPeerStaticState, vrrpNewCfgVirtRtrVrGrpIndx=vrrpNewCfgVirtRtrVrGrpIndx, ipNewCfgGwAddr=ipNewCfgGwAddr, ospfCumRxTxStats=ospfCumRxTxStats, arpInfoMacAddr=arpInfoMacAddr, ripStatInBadSizePkts=ripStatInBadSizePkts, bgpCurCfgPeerOspfState=bgpCurCfgPeerOspfState, ospfCurCfgIntfCost=ospfCurCfgIntfCost, ipNewCfgStaticRouteGateway=ipNewCfgStaticRouteGateway, vrrpNewCfgVirtRtrVrGrpBmap=vrrpNewCfgVirtRtrVrGrpBmap, ospfAreaChangeStatsEntry=ospfAreaChangeStatsEntry, ospfIntfDown=ospfIntfDown, allowedNwInfoIpver=allowedNwInfoIpver, vrrpNewCfgGenState=vrrpNewCfgGenState, ospfTotalTransitAreas=ospfTotalTransitAreas, ripNewCfgIntfMcastUpdate=ripNewCfgIntfMcastUpdate, ripCurCfgIntfTable=ripCurCfgIntfTable, ospfAreaNbrIndex=ospfAreaNbrIndex, ospfCurCfgAreaTable=ospfCurCfgAreaTable, vrrpStats=vrrpStats, ipCurCfgIntfBroadcast=ipCurCfgIntfBroadcast, ospfNewCfgVisionAreaId=ospfNewCfgVisionAreaId, ospfNewCfgHostIndex=ospfNewCfgHostIndex, vrrpCurCfgVirtRtrGrpPreempt=vrrpCurCfgVirtRtrGrpPreempt, ipCurCfgGwInterval=ipCurCfgGwInterval, ospfAreaNbrLoadingDone=ospfAreaNbrLoadingDone, ospfNbrInExchState=ospfNbrInExchState, vrrpNewCfgIfAuthType=vrrpNewCfgIfAuthType, ipCurCfgNwfEntry=ipCurCfgNwfEntry, ipRoute6InfoIndx=ipRoute6InfoIndx, vrrpNewCfgGenTckVlanPortInc=vrrpNewCfgGenTckVlanPortInc, ipRouteInfoGateway=ipRouteInfoGateway, ipNewCfgRmapPrec=ipNewCfgRmapPrec, ospfCurCfgIntfAreaId=ospfCurCfgIntfAreaId, ipv6NewCfgStaticRouteEntry=ipv6NewCfgStaticRouteEntry, ospfTotalNssaAreas=ospfTotalNssaAreas, vrrpCurCfgVirtRtrTckL4Port=vrrpCurCfgVirtRtrTckL4Port, ipNewCfgIntfEntry=ipNewCfgIntfEntry, ospfIntfRxlsUpdates=ospfIntfRxlsUpdates, dnsCurCfgSecondaryIpv6Addr=dnsCurCfgSecondaryIpv6Addr, ospfNewCfgDefaultRouteMetricType=ospfNewCfgDefaultRouteMetricType, ospfCurCfgVirtIntfState=ospfCurCfgVirtIntfState, ospfIntfRxPkts=ospfIntfRxPkts, ipCurCfgIntfBootpRelay=ipCurCfgIntfBootpRelay, ospfAreaNbrExchangeDone=ospfAreaNbrExchangeDone, routeTableClear=routeTableClear, bgpCurCfgAggrTable=bgpCurCfgAggrTable, ospfAreaIntfUnloop=ospfAreaIntfUnloop, ipCurCfgStaticArpMAC=ipCurCfgStaticArpMAC, vrrpNewCfgVirtRtrPriority=vrrpNewCfgVirtRtrPriority, ospfAreaRxDatabase=ospfAreaRxDatabase, ripInfoStaticSupply=ripInfoStaticSupply, bgpCurCfgPeerIndex=bgpCurCfgPeerIndex, ospfNewCfgVisionAreaTable=ospfNewCfgVisionAreaTable, rip2RoutesInfoTable=rip2RoutesInfoTable, intfInfoIpver=intfInfoIpver, ospfNewCfgEbgpRemoveOutRmap=ospfNewCfgEbgpRemoveOutRmap, vrrpCurCfgVirtRtrGrpTckHsrv=vrrpCurCfgVirtRtrGrpTckHsrv, ripInfoIntfKey=ripInfoIntfKey, ripCurCfgIntfDefault=ripCurCfgIntfDefault, vrrpCurCfgVirtRtrVrGrpTckIpIntf=vrrpCurCfgVirtRtrVrGrpTckIpIntf, routeStatHighWater=routeStatHighWater, ipNewCfgRmapLp=ipNewCfgRmapLp, ospfNewCfgVirtIntfTable=ospfNewCfgVirtIntfTable, dnsStatInGoodDnsRequests=dnsStatInGoodDnsRequests, ospfinfo=ospfinfo, ipCurCfgAlistEntry=ipCurCfgAlistEntry, intfInfoLinkLocalAddr=intfInfoLinkLocalAddr, ospfNewCfgStaticMetric=ospfNewCfgStaticMetric, ospfNewCfgIbgpAddOutRmap=ospfNewCfgIbgpAddOutRmap, ospfCurCfgVirtIntfMdkey=ospfCurCfgVirtIntfMdkey, vrrpNewCfgVirtRtrGrpPreempt=vrrpNewCfgVirtRtrGrpPreempt, ospfAreaRxTxStats=ospfAreaRxTxStats, ripNewCfgIntfAuth=ripNewCfgIntfAuth, allowedNwInfoTable=allowedNwInfoTable, rip2Cfg=rip2Cfg, ipNewCfgStaticArpIndx=ipNewCfgStaticArpIndx, vrrpCurCfgIfTable=vrrpCurCfgIfTable, vrrpCurCfgVirtRtrGrpIpv6Interval=vrrpCurCfgVirtRtrGrpIpv6Interval, ospfNewCfgAreaSpfInterval=ospfNewCfgAreaSpfInterval, ospfNewCfgFixedRemoveOutRmap=ospfNewCfgFixedRemoveOutRmap, ospfAreaNbrhello=ospfAreaNbrhello, ipCurCfgAlistAction=ipCurCfgAlistAction, ospfNewCfgVisionAreaAuthType=ospfNewCfgVisionAreaAuthType, ospfIntfChangeStats=ospfIntfChangeStats, garpOper=garpOper, ipCurCfgStaticArpEntry=ipCurCfgStaticArpEntry, ospfAreaInfoTable=ospfAreaInfoTable, vrrpNewCfgVirtRtrAddr=vrrpNewCfgVirtRtrAddr, bgpNewCfgPeerInRmapList=bgpNewCfgPeerInRmapList, ospfNewCfgMdkeyTable=ospfNewCfgMdkeyTable, icmp6InRAs=icmp6InRAs, bgpNewCfgPeerMinTime=bgpNewCfgPeerMinTime, ip6gwStats=ip6gwStats, vrrpNewCfgVirtRtrGrpDelete=vrrpNewCfgVirtRtrGrpDelete, ospfAreaErrOptionsMismatch=ospfAreaErrOptionsMismatch, arpCfg=arpCfg, ospfAreaTxlsUpdates=ospfAreaTxlsUpdates, ospfCurCfgHostAreaIndex=ospfCurCfgHostAreaIndex, ospfTmrsKckOffRetransmit=ospfTmrsKckOffRetransmit, ip6OutNoRoutes=ip6OutNoRoutes, vrrpNewCfgVirtRtrID=vrrpNewCfgVirtRtrID, icmp6StatsEntry=icmp6StatsEntry, gatewayInfoVlan=gatewayInfoVlan, ospfCurCfgDefaultRouteMetricType=ospfCurCfgDefaultRouteMetricType, allowedNwInfoIp6Prefix=allowedNwInfoIp6Prefix, ipFwdNewCfgNoICMPRedirect=ipFwdNewCfgNoICMPRedirect, ospfIntfTxHello=ospfIntfTxHello, ospfIntfTxPkts=ospfIntfTxPkts, vrrpCurCfgVirtRtrVrGrpIndx=vrrpCurCfgVirtRtrVrGrpIndx, vrrpCurCfgVirtRtrVrGrpTckL4Port=vrrpCurCfgVirtRtrVrGrpTckL4Port, ospfNewCfgIntfKey=ospfNewCfgIntfKey, ipCurCfgAlistTable=ipCurCfgAlistTable, ospfNewCfgIbgpOutRmapList=ospfNewCfgIbgpOutRmapList, ipCurCfgIntfIpVer=ipCurCfgIntfIpVer, ipNewCfgGwIndex=ipNewCfgGwIndex, ipNewCfgGwDelete=ipNewCfgGwDelete, nbrcacheClear=nbrcacheClear, ipNewCfgGwInterval=ipNewCfgGwInterval, dnsStatInBadDnsRequests=dnsStatInBadDnsRequests, ifStatsEntry=ifStatsEntry, ospfCumIntfChangeStats=ospfCumIntfChangeStats, vrrpNewCfgGenTckHsrpInc=vrrpNewCfgGenTckHsrpInc, clearStats=clearStats, bgpNewCfgPeerEntry=bgpNewCfgPeerEntry, ripStatOutResponsePkts=ripStatOutResponsePkts, ospfCumIntfBackup=ospfCumIntfBackup, ospfCurCfgVirtIntfNbr=ospfCurCfgVirtIntfNbr, ospfNewCfgRangeAreaIndex=ospfNewCfgRangeAreaIndex, ospfNewCfgVirtIntfState=ospfNewCfgVirtIntfState, garpOperSend=garpOperSend, gatewayInfo=gatewayInfo, vrrpNewCfgVirtRtrGrpID=vrrpNewCfgVirtRtrGrpID, ospfNewCfgVirtIntfHello=ospfNewCfgVirtIntfHello, ospfNewCfgEbgpMetricType=ospfNewCfgEbgpMetricType, ospfTmrsKckOffAseExport=ospfTmrsKckOffAseExport, vrrpNewCfgGenTckHsrvInc=vrrpNewCfgGenTckHsrvInc, ipCurCfgRmapWeight=ipCurCfgRmapWeight, ospfCumNbrDown=ospfCumNbrDown, ospfNewCfgAreaIndex=ospfNewCfgAreaIndex, vrrpNewCfgVirtRtrVrGrpTckHsrv=vrrpNewCfgVirtRtrVrGrpTckHsrv, ospfIntfTxlsAcks=ospfIntfTxlsAcks, bgpNewCfgPeerMetric=bgpNewCfgPeerMetric, icmp6InMsgs=icmp6InMsgs, ripInfoIntfListen=ripInfoIntfListen, vrrpCurCfgVirtRtrIpv6Addr=vrrpCurCfgVirtRtrIpv6Addr, ospfNewCfgHostCost=ospfNewCfgHostCost, vrrpNewCfgVirtRtrVrGrpName=vrrpNewCfgVirtRtrVrGrpName, ospfNewCfgIntfIndex=ospfNewCfgIntfIndex, ipFwdCurCfgNoICMPRedirect=ipFwdCurCfgNoICMPRedirect, ipCurCfgAspathTable=ipCurCfgAspathTable, ospfCurCfgMdkeyKey=ospfCurCfgMdkeyKey, ospfAreaIntfIndex=ospfAreaIntfIndex, bgpCurCfgPeerEntry=bgpCurCfgPeerEntry, ip6GwMaster=ip6GwMaster, bgpCurCfgAggrAddr=bgpCurCfgAggrAddr, ospfCurCfgLsdb=ospfCurCfgLsdb, ripCurCfgIntfState=ripCurCfgIntfState, vrrpCurCfgGenTckHsrvInc=vrrpCurCfgGenTckHsrvInc, ripStatInPackets=ripStatInPackets, vrrpInfoVirtRtrProxy=vrrpInfoVirtRtrProxy, ospfCumTxDatabase=ospfCumTxDatabase, ospfNewCfgAreaDelete=ospfNewCfgAreaDelete, ospfCurCfgRipMetricType=ospfCurCfgRipMetricType, ospfNewCfgAreaEntry=ospfNewCfgAreaEntry, ipNewCfgGwIpv6Addr=ipNewCfgGwIpv6Addr, ripNewCfgIntfDefault=ripNewCfgIntfDefault, vrrpOperVirtRtrEntry=vrrpOperVirtRtrEntry, ospfNewCfgVirtIntfDead=ospfNewCfgVirtIntfDead, arpNewCfgReARPPeriod=arpNewCfgReARPPeriod, ospfVlinkCountForRouter=ospfVlinkCountForRouter, vrrpCurCfgGenState=vrrpCurCfgGenState, ipFwdNewCfgState=ipFwdNewCfgState, ipFwdCurCfgRtCache=ipFwdCurCfgRtCache, ipRouteInfoTable=ipRouteInfoTable, vrrpCurCfgVirtRtrGrpTckVirtRtr=vrrpCurCfgVirtRtrGrpTckVirtRtr, bgpCurCfgPeerOutRmapList=bgpCurCfgPeerOutRmapList, ospfNewCfgVisionAreaIndex=ospfNewCfgVisionAreaIndex, ospfIntfNbrAdjointOk=ospfIntfNbrAdjointOk, arpCurCfgReARPPeriod=arpCurCfgReARPPeriod, ipNewCfgIntfDelete=ipNewCfgIntfDelete, vrrpNewCfgVirtRtrIpv6Interval=vrrpNewCfgVirtRtrIpv6Interval, dnsCurCfgDomainName=dnsCurCfgDomainName, ospfCurCfgVirtIntfTransit=ospfCurCfgVirtIntfTransit, ospfCurCfgHostTable=ospfCurCfgHostTable, ipRouteInfoGateway1=ipRouteInfoGateway1, ip6ReasmOKs=ip6ReasmOKs, ospfTmrsKckOffLsaAck=ospfTmrsKckOffLsaAck, ip6GwStatsEntry=ip6GwStatsEntry, ipNewCfgAspathIndex=ipNewCfgAspathIndex, ipNewCfgAlistRmapIndex=ipNewCfgAlistRmapIndex, ipFwdCurCfgPortTable=ipFwdCurCfgPortTable, ripCurCfgIntfSupply=ripCurCfgIntfSupply, bgpOperStartSess=bgpOperStartSess, vrrpNewCfgVirtRtrTckVlanPort=vrrpNewCfgVirtRtrTckVlanPort, ripStatInSelfRcvPkts=ripStatInSelfRcvPkts, ospfNewCfgVirtIntfDelete=ospfNewCfgVirtIntfDelete, allowedNwInfoBeginIpAddr=allowedNwInfoBeginIpAddr)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", dnsCurCfgPrimaryIpv6Addr=dnsCurCfgPrimaryIpv6Addr, nbrcacheInfoIndex=nbrcacheInfoIndex, ipInterfaceCfg=ipInterfaceCfg, ipNewCfgGwEntry=ipNewCfgGwEntry, ripNewCfgIntfTrigUpdate=ripNewCfgIntfTrigUpdate, ipFwdNewCfgPortEntry=ipFwdNewCfgPortEntry, ospfNewCfgLsdb=ospfNewCfgLsdb, ipCurCfgAspathState=ipCurCfgAspathState, ospfIntfErrOptionsMismatch=ospfIntfErrOptionsMismatch, ospfCurCfgState=ospfCurCfgState, ospfNbrInInitState=ospfNbrInInitState, ospfRedistributeFixed=ospfRedistributeFixed, vrrpCurCfgGenHotstandby=vrrpCurCfgGenHotstandby, vrrpNewCfgGenTckL4PortInc=vrrpNewCfgGenTckL4PortInc, ospfStartTime=ospfStartTime, ipCurCfgRmapEntry=ipCurCfgRmapEntry, vrrpInfoVirtRtrState=vrrpInfoVirtRtrState, rip2CurCfgStaticSupply=rip2CurCfgStaticSupply, ospfCumNbrRstAd=ospfCumNbrRstAd, vrrpNewCfgGenTckRServerInc=vrrpNewCfgGenTckRServerInc, ip6Stats=ip6Stats, ipRouteInfoEntry=ipRouteInfoEntry, ospfNewCfgRipRemoveOutRmap=ospfNewCfgRipRemoveOutRmap, icmp6InRSs=icmp6InRSs, ipNewCfgNwfState=ipNewCfgNwfState, ospfNumberOfInterfacesUp=ospfNumberOfInterfacesUp, allowedNwInfoEndIpAddr=allowedNwInfoEndIpAddr, ipNewCfgStaticRouteIndx=ipNewCfgStaticRouteIndx, ospfIntfTxDatabase=ospfIntfTxDatabase, ospfLsTypesSupported=ospfLsTypesSupported, bgpOperStopSess=bgpOperStopSess, vrrpCurCfgIfTableEntry=vrrpCurCfgIfTableEntry, ip6GwFails=ip6GwFails, ipRouteInfoMask=ipRouteInfoMask, ripInfoIntfState=ripInfoIntfState, ospfNewCfgIntfTable=ospfNewCfgIntfTable, ospfNewCfgMdkeyIndex=ospfNewCfgMdkeyIndex, vrrpCurCfgVirtRtrVrGrpName=vrrpCurCfgVirtRtrVrGrpName, ipCurCfgGwTable=ipCurCfgGwTable, ospfNewCfgAreaMetric=ospfNewCfgAreaMetric, ospfCumNbrStart=ospfCumNbrStart, ospfGeneralInfo=ospfGeneralInfo, bgpCurCfgPeerMetric=bgpCurCfgPeerMetric, ip6OutRequests=ip6OutRequests, ospfIntfNbrN2way=ospfIntfNbrN2way, ospfHostTableMaxSize=ospfHostTableMaxSize, vrrpCurCfgVirtRtrVrGrpState=vrrpCurCfgVirtRtrVrGrpState, ipRmapTableMax=ipRmapTableMax, ip6GwRetry=ip6GwRetry, icmp6OutNSs=icmp6OutNSs, ospfAreaNbrNegotiationDone=ospfAreaNbrNegotiationDone, allowedNwInfo=allowedNwInfo, vrrpCurCfgGenTckRServerInc=vrrpCurCfgGenTckRServerInc, vrrpCurCfgVirtRtrPreempt=vrrpCurCfgVirtRtrPreempt, bgpNewCfgPeerTable=bgpNewCfgPeerTable, ipFwdCurCfgDirectedBcast=ipFwdCurCfgDirectedBcast, vrrpCurCfgVirtRtrVrGrpTckRServer=vrrpCurCfgVirtRtrVrGrpTckRServer, ospfNewCfgRangeEntry=ospfNewCfgRangeEntry, ipNewCfgNwfAddr=ipNewCfgNwfAddr, ospfRouteRedistribution=ospfRouteRedistribution, ipNewCfgStaticRouteEntry=ipNewCfgStaticRouteEntry, ospfCurCfgRangeTable=ospfCurCfgRangeTable, ospfCumNbrChangeStats=ospfCumNbrChangeStats, ospfCurCfgHostEntry=ospfCurCfgHostEntry, icmp6InNSs=icmp6InNSs, vrrpCurCfgIfIndx=vrrpCurCfgIfIndx, ospfNewCfgIntfEntry=ospfNewCfgIntfEntry, ospfNewCfgEbgpMetric=ospfNewCfgEbgpMetric, rip2RoutesInfoIpAddress=rip2RoutesInfoIpAddress, bgpNewCfgPeerFixedState=bgpNewCfgPeerFixedState, ipStaticArpTableNextAvailableIndex=ipStaticArpTableNextAvailableIndex, gatewayInfoAddr6=gatewayInfoAddr6, ripNewCfgIntfSupply=ripNewCfgIntfSupply, rip2NewCfgVip=rip2NewCfgVip, ip6InUnknownProtos=ip6InUnknownProtos, ospfNewCfgVisionAreaDelete=ospfNewCfgVisionAreaDelete, ospfNewCfgRipOutRmapList=ospfNewCfgRipOutRmapList, ipCurCfgAspathEntry=ipCurCfgAspathEntry, vrrpCurCfgVirtRtrGrpState=vrrpCurCfgVirtRtrGrpState, ospfCurCfgRipOutRmapList=ospfCurCfgRipOutRmapList, ipCurCfgAspathIndex=ipCurCfgAspathIndex, bgpPeerTableMax=bgpPeerTableMax, gatewayInfoTable=gatewayInfoTable, ipNewCfgStaticArpIp=ipNewCfgStaticArpIp, ipCurCfgRmapPrec=ipCurCfgRmapPrec, allowedNwInfoNetMask=allowedNwInfoNetMask, bgpCfg=bgpCfg, bgpNewCfgPeerDelete=bgpNewCfgPeerDelete, ipCurCfgRmapLp=ipCurCfgRmapLp, dnsCurCfgPrimaryIpAddr=dnsCurCfgPrimaryIpAddr, arpInfo=arpInfo, ospfNewCfgHostDelete=ospfNewCfgHostDelete, ospfCurCfgHostCost=ospfCurCfgHostCost, ipCurCfgStaticArpTable=ipCurCfgStaticArpTable, vrrpCurCfgVirtRtrIpv6Interval=vrrpCurCfgVirtRtrIpv6Interval, ripNewCfgIntfListen=ripNewCfgIntfListen, ospfNewCfgFixedMetric=ospfNewCfgFixedMetric, ospfIfDesignatedRouterIP=ospfIfDesignatedRouterIP, vrrpOperVirtRtrTable=vrrpOperVirtRtrTable, ipNewCfgAlistAction=ipNewCfgAlistAction, vrrpOperVirtRtrIndex=vrrpOperVirtRtrIndex, ospfNewCfgStaticAddOutRmap=ospfNewCfgStaticAddOutRmap, layer3=layer3, ospfNewCfgIntfState=ospfNewCfgIntfState, ipv6CurCfgStaticRouteIndx=ipv6CurCfgStaticRouteIndx, ip6GwStatsIndex=ip6GwStatsIndex, ospfRedistributeEbgp=ospfRedistributeEbgp, bgpCurCfgAggrEntry=bgpCurCfgAggrEntry, ospfCumNbrLoadingDone=ospfCumNbrLoadingDone, vrrpInfo=vrrpInfo, ipNewCfgBootpAddr2=ipNewCfgBootpAddr2, intfInfoStatus=intfInfoStatus, vrrpCurCfgVirtRtrGrpTckL4Port=vrrpCurCfgVirtRtrGrpTckL4Port, vrrpNewCfgVirtRtrGrpTckIpIntf=vrrpNewCfgVirtRtrGrpTckIpIntf, ospfAreaTableMaxSize=ospfAreaTableMaxSize, ipCurCfgGwIpv6Addr=ipCurCfgGwIpv6Addr, vrrpCurCfgVirtRtrVrGrpTckVlanPort=vrrpCurCfgVirtRtrVrGrpTckVlanPort, vrrpInfoVirtRtrTable=vrrpInfoVirtRtrTable, ipNewCfgASNumber=ipNewCfgASNumber, ipRouteInfoInterface=ipRouteInfoInterface, bgpOper=bgpOper, ipCurCfgIntfIndex=ipCurCfgIntfIndex, ripCurCfgIntfMcastUpdate=ripCurCfgIntfMcastUpdate, ipNewCfgGwMetric=ipNewCfgGwMetric, ripCurCfgIntfListen=ripCurCfgIntfListen, ipNewCfgGwState=ipNewCfgGwState, ipCurCfgRmapAp=ipCurCfgRmapAp, ipCurCfgIntfPrefixLen=ipCurCfgIntfPrefixLen, vrrpNewCfgVirtRtrGrpInterval=vrrpNewCfgVirtRtrGrpInterval, ipNewCfgRmapAp=ipNewCfgRmapAp, ospfIntfIndex=ospfIntfIndex, ospfCurCfgMdkeyTable=ospfCurCfgMdkeyTable, vrrpNewCfgVirtRtrVersion=vrrpNewCfgVirtRtrVersion, ospfMdkeyTableMaxSize=ospfMdkeyTableMaxSize, ospfNewCfgMdkeyDelete=ospfNewCfgMdkeyDelete, vrrpStatOutAdvers=vrrpStatOutAdvers, vrrpCurCfgIfAuthType=vrrpCurCfgIfAuthType, vrrpCurCfgVirtRtrGrpTckHsrp=vrrpCurCfgVirtRtrGrpTckHsrp, bgpCurCfgPeerRemoteAs=bgpCurCfgPeerRemoteAs, bgpNewCfgPeerKeepAlive=bgpNewCfgPeerKeepAlive, ospfIntfErrorStatsEntry=ospfIntfErrorStatsEntry, ipRoute6InfoInterface=ipRoute6InfoInterface, vrrpNewCfgVirtRtrTableEntry=vrrpNewCfgVirtRtrTableEntry, ospfIfNbrIpAddress=ospfIfNbrIpAddress, ip6GwStatsTable=ip6GwStatsTable, ospfInterface=ospfInterface, ospfIntfNbrhello=ospfIntfNbrhello, ospfCurCfgVirtIntfKey=ospfCurCfgVirtIntfKey, vrrpNewCfgVirtRtrTckHsrp=vrrpNewCfgVirtRtrTckHsrp, ipFwdGeneralCfg=ipFwdGeneralCfg, ospfTmrsKckOffDbage=ospfTmrsKckOffDbage, allowedNwInfoVlan=allowedNwInfoVlan, ospfIfNbrIpAddr=ospfIfNbrIpAddr, ipNewCfgStaticArpEntry=ipNewCfgStaticArpEntry, nbrcacheInfoTotLocalEntries=nbrcacheInfoTotLocalEntries, arpInfoDestIp=arpInfoDestIp, ipFwdNewCfgLocalTable=ipFwdNewCfgLocalTable, vrrpCurCfgGenTckVlanPortInc=vrrpCurCfgGenTckVlanPortInc, ospfAreaRxPkts=ospfAreaRxPkts, ospfNewCfgRangeIndex=ospfNewCfgRangeIndex, ipNewCfgNwfIndex=ipNewCfgNwfIndex, ip6InDiscards=ip6InDiscards, vrrpCurCfgVirtRtrTckRServer=vrrpCurCfgVirtRtrTckRServer, icmp6OutErrors=icmp6OutErrors, PYSNMP_MODULE_ID=layer3, ipRouteInfoDestIp=ipRouteInfoDestIp, intfInfoAddr=intfInfoAddr, ipFwdNewCfgLocalEntry=ipFwdNewCfgLocalEntry, ip6InAddrErrors=ip6InAddrErrors, ipRoute6InfoNextHop=ipRoute6InfoNextHop, ospfIntfNbrLoadingDone=ospfIntfNbrLoadingDone, ripNewCfgIntfTable=ripNewCfgIntfTable, rip2CurCfgVip=rip2CurCfgVip, ospfAreaErrHelloMismatch=ospfAreaErrHelloMismatch, bgpNewCfgState=bgpNewCfgState, ipNewCfgStaticRouteInterface=ipNewCfgStaticRouteInterface, ospfCurCfgIbgpMetricType=ospfCurCfgIbgpMetricType, tcpStatCurInConn=tcpStatCurInConn, ospfAreaNbrChangeStatsEntry=ospfAreaNbrChangeStatsEntry, ospfNewCfgIbgpRemoveOutRmap=ospfNewCfgIbgpRemoveOutRmap, vrrpCurCfgVirtRtrIfIndex=vrrpCurCfgVirtRtrIfIndex, intfInfoEntry=intfInfoEntry, ospfCurCfgHostIpAddr=ospfCurCfgHostIpAddr, ipCurCfgGwIpVer=ipCurCfgGwIpVer, rip2RoutesInfoMetric=rip2RoutesInfoMetric, ipForwardCfg=ipForwardCfg, ospfIntfErrDeadMismatch=ospfIntfErrDeadMismatch, ipv6NewCfgStaticRouteTable=ipv6NewCfgStaticRouteTable, vrrpNewCfgGenHotstandby=vrrpNewCfgGenHotstandby, vrrpNewCfgVirtRtrIfIndex=vrrpNewCfgVirtRtrIfIndex, rip2RoutesInfoDestination=rip2RoutesInfoDestination, ospfNewCfgIbgpMetricType=ospfNewCfgIbgpMetricType, ospfTotalAreas=ospfTotalAreas, ospfCurCfgIntfKey=ospfCurCfgIntfKey, ospfNewCfgRipAddOutRmap=ospfNewCfgRipAddOutRmap, ipCurCfgStaticRouteIndx=ipCurCfgStaticRouteIndx, vrrpIfTableMaxSize=vrrpIfTableMaxSize, bgpCurCfgPeerStaticState=bgpCurCfgPeerStaticState, bgpOperStartPeerNum=bgpOperStartPeerNum, vrrpNewCfgVirtRtrState=vrrpNewCfgVirtRtrState, rip2NewCfgStaticSupply=rip2NewCfgStaticSupply, ospfCurCfgRangeIndex=ospfCurCfgRangeIndex, ospfRedistributeIbgp=ospfRedistributeIbgp, ipRoute6InfoEntry=ipRoute6InfoEntry, vrrpNewCfgVirtRtrVrGrpAdd=vrrpNewCfgVirtRtrVrGrpAdd, ipRouteInfoIndx=ipRouteInfoIndx, vrrpNewCfgVirtRtrPreempt=vrrpNewCfgVirtRtrPreempt, vrrpNewCfgVirtRtrGrpVersion=vrrpNewCfgVirtRtrGrpVersion, ipCurCfgNwfState=ipCurCfgNwfState, ipGeneralCfg=ipGeneralCfg, vrrpNewCfgIfTableEntry=vrrpNewCfgIfTableEntry, ospfIntfErrHelloMismatch=ospfIntfErrHelloMismatch, ipCurCfgGwVlan=ipCurCfgGwVlan, vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo=vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo, ipNewCfgStaticArpVlan=ipNewCfgStaticArpVlan, ospfCurCfgVirtIntfRetrans=ospfCurCfgVirtIntfRetrans, ipFwdNewCfgLocalIndex=ipFwdNewCfgLocalIndex, ipv6CurCfgStaticRouteDestIp=ipv6CurCfgStaticRouteDestIp, ospfNewCfgAreaAuthType=ospfNewCfgAreaAuthType, ospfCurCfgFixedMetricType=ospfCurCfgFixedMetricType, ospfCumRxDatabase=ospfCumRxDatabase, ospfAreaRxTxStatsEntry=ospfAreaRxTxStatsEntry, ospfNewCfgStaticRemoveOutRmap=ospfNewCfgStaticRemoveOutRmap, ripNewCfgIntfMetric=ripNewCfgIntfMetric, ospfRedistributeRip=ospfRedistributeRip, ospfIntfRxHello=ospfIntfRxHello, vrrpCurCfgVirtRtrGrpIfIndex=vrrpCurCfgVirtRtrGrpIfIndex, ipCurCfgAlistRmapIndex=ipCurCfgAlistRmapIndex, bgpCurCfgPeerTable=bgpCurCfgPeerTable, ripStatInBadSourceIP=ripStatInBadSourceIP, icmp6InParmProbs=icmp6InParmProbs, vrrpCurCfgVirtRtrVrGrpPriority=vrrpCurCfgVirtRtrVrGrpPriority, gatewayInfoEntry=gatewayInfoEntry, ospfIntfRxTxStatsEntry=ospfIntfRxTxStatsEntry, vrrpCurCfgVirtRtrVrGrpSharing=vrrpCurCfgVirtRtrVrGrpSharing, arpStatMaxEntries=arpStatMaxEntries, ipCurCfgGwIndex=ipCurCfgGwIndex, ipIntfInfoTable=ipIntfInfoTable, ip6ForwDatagrams=ip6ForwDatagrams, ipNewCfgRmapWeight=ipNewCfgRmapWeight, tcpStatCurConn=tcpStatCurConn, vrrpGeneral=vrrpGeneral, vrrpNewCfgIfTable=vrrpNewCfgIfTable, nbrcacheInfoPortNum=nbrcacheInfoPortNum, ripInfoIntfVersion=ripInfoIntfVersion, ipNewCfgIntfBroadcast=ipNewCfgIntfBroadcast, vrrpCurCfgVirtRtrTableEntry=vrrpCurCfgVirtRtrTableEntry, vrrpCurCfgVirtRtrGrpTableEntry=vrrpCurCfgVirtRtrGrpTableEntry, ospfRedistributeStatic=ospfRedistributeStatic, vrrpInfoVirtRtrOwnership=vrrpInfoVirtRtrOwnership, vrrpCurCfgVirtRtrVrGrpTableEntry=vrrpCurCfgVirtRtrVrGrpTableEntry, bgpGeneral=bgpGeneral, ospfNewCfgRangeHideState=ospfNewCfgRangeHideState, vrrpVirtRtrVrGrpTableMaxSize=vrrpVirtRtrVrGrpTableMaxSize)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", gatewayInfoAddr=gatewayInfoAddr, vrrpNewCfgVirtRtrIpv6Addr=vrrpNewCfgVirtRtrIpv6Addr, vrrpNewCfgVirtRtrGrpTckRServer=vrrpNewCfgVirtRtrGrpTckRServer, vrrpCurCfgVirtRtrGrpIndx=vrrpCurCfgVirtRtrGrpIndx, ipCurCfgIntfTable=ipCurCfgIntfTable, ospfAreaRxlsUpdates=ospfAreaRxlsUpdates, layer3Info=layer3Info, ospfNewCfgVisionAreaState=ospfNewCfgVisionAreaState, ipFwdCurCfgLocalEntry=ipFwdCurCfgLocalEntry, ipRouteInfoType=ipRouteInfoType, ospfIntfNbrNegotiationDone=ospfIntfNbrNegotiationDone, ospfArea=ospfArea, intfInfoIndex=intfInfoIndex, ipAlistTableMax=ipAlistTableMax, ospfAreaInfoEntry=ospfAreaInfoEntry, nbrcacheInfoTotDynamicEntries=nbrcacheInfoTotDynamicEntries, icmp6InErrors=icmp6InErrors, ipCurCfgIntfEntry=ipCurCfgIntfEntry, ospfNewCfgRangeTable=ospfNewCfgRangeTable, ospfIfInfoIndex=ospfIfInfoIndex, ospfAreaErrorStatsEntry=ospfAreaErrorStatsEntry, bgpNewCfgPeerState=bgpNewCfgPeerState, icmp6StatsIndx=icmp6StatsIndx, ipCurCfgStaticArpIp=ipCurCfgStaticArpIp, rip2RoutesInfoDestIndex=rip2RoutesInfoDestIndex, ospfIntfNbrExchangeDone=ospfIntfNbrExchangeDone, rip2CurCfgUpdatePeriod=rip2CurCfgUpdatePeriod, ospfIntfWaitTimer=ospfIntfWaitTimer, ipCurCfgRmapMetricType=ipCurCfgRmapMetricType, ifStatsTable=ifStatsTable, ospfAreaNbrBadSequence=ospfAreaNbrBadSequence, ipNewCfgRmapTable=ipNewCfgRmapTable, ripInfoIntfEntry=ripInfoIntfEntry, ip6GwIndex=ip6GwIndex, ripStatInBadZeros=ripStatInBadZeros, ipCurCfgNwfTable=ipCurCfgNwfTable, ospfAreaIntfBackup=ospfAreaIntfBackup, vrrpNewCfgVirtRtrSharing=vrrpNewCfgVirtRtrSharing, ospfIntfNbrBadRequests=ospfIntfNbrBadRequests, ipNewCfgAspathDelete=ipNewCfgAspathDelete, ospfCumTxHello=ospfCumTxHello, ipNewCfgStaticArpAction=ipNewCfgStaticArpAction, ipCurCfgRmapTable=ipCurCfgRmapTable, icmp6OutMsgs=icmp6OutMsgs, bgpCurCfgState=bgpCurCfgState, vrrpCurCfgIfPasswd=vrrpCurCfgIfPasswd, ospfIntfBackup=ospfIntfBackup, bgpNewCfgPeerOspfState=bgpNewCfgPeerOspfState, vrrpCurCfgVirtRtrGrpTckIpIntf=vrrpCurCfgVirtRtrGrpTckIpIntf, bgpCurCfgAggrIndex=bgpCurCfgAggrIndex, ospfCumIntfLoop=ospfCumIntfLoop, ospfIntfInfoEntry=ospfIntfInfoEntry, ipStaticArpTableMaxSize=ipStaticArpTableMaxSize, ospfIntfErrNetmaskMismatch=ospfIntfErrNetmaskMismatch, ospfGeneral=ospfGeneral, ospfIntfNbrDown=ospfIntfNbrDown, ospfRangeTableMaxSize=ospfRangeTableMaxSize, ripCurCfgIntfMetric=ripCurCfgIntfMetric, ospfCumIntfNbrChange=ospfCumIntfNbrChange, arpInfoSrcPort=arpInfoSrcPort, ripInfoState=ripInfoState, ipOper=ipOper, ipv6NewCfgStaticRouteDestIp=ipv6NewCfgStaticRouteDestIp, vrrpCurCfgVirtRtrIndx=vrrpCurCfgVirtRtrIndx, vrrpNewCfgIfIndx=vrrpNewCfgIfIndx, dnsCfg=dnsCfg, vrrpNewCfgVirtRtrVrGrpTckVlanPort=vrrpNewCfgVirtRtrVrGrpTckVlanPort, vrrpInfoVirtRtrPriority=vrrpInfoVirtRtrPriority, ospfCurCfgAreaSpfInterval=ospfCurCfgAreaSpfInterval, ospfNewCfgEbgpAddOutRmap=ospfNewCfgEbgpAddOutRmap, ospfIntfNbrChangeStats=ospfIntfNbrChangeStats, ospfCumTxlsUpdates=ospfCumTxlsUpdates, nbrcacheInfoState=nbrcacheInfoState, rip2GeneralInfo=rip2GeneralInfo, ospfNewCfgIntfMdkey=ospfNewCfgIntfMdkey, ripInfoVip=ripInfoVip, intfInfoVlan=intfInfoVlan, vrrpVirtRtrTableMaxSize=vrrpVirtRtrTableMaxSize, ipFwdNewCfgDirectedBcast=ipFwdNewCfgDirectedBcast, ripCurCfgIntfIndex=ripCurCfgIntfIndex, vrrpCurCfgVirtRtrInterval=vrrpCurCfgVirtRtrInterval, ipCurCfgGwRetry=ipCurCfgGwRetry, ipCurCfgGwAddr=ipCurCfgGwAddr, vrrpCurCfgGenTckVirtRtrInc=vrrpCurCfgGenTckVirtRtrInc, ospfNewCfgVirtIntfMdkey=ospfNewCfgVirtIntfMdkey, ospfAreaInfoIndex=ospfAreaInfoIndex, ospfNewCfgIntfDead=ospfNewCfgIntfDead, ospfCurCfgRangeAddr=ospfCurCfgRangeAddr, ospfAreaChangeStats=ospfAreaChangeStats, ospfIfNbrState=ospfIfNbrState, ospfIntfTableMaxSize=ospfIntfTableMaxSize, gatewayInfoIndex=gatewayInfoIndex, rip2RoutesInfoNxtHopIndex=rip2RoutesInfoNxtHopIndex, vrrpNewCfgGenTckVirtRtrInc=vrrpNewCfgGenTckVirtRtrInc, vrrpCurCfgVirtRtrTable=vrrpCurCfgVirtRtrTable, vrrpInfoVirtRtrIndex=vrrpInfoVirtRtrIndex, ospfIfNbrPriority=ospfIfNbrPriority, ospfNewCfgIntfHello=ospfNewCfgIntfHello, ipNewCfgIntfAddr=ipNewCfgIntfAddr, ipNewCfgIntfIpVer=ipNewCfgIntfIpVer, bgpNewCfgPeerOutRmapList=bgpNewCfgPeerOutRmapList, icmp6OutNAs=icmp6OutNAs, ipClearStats=ipClearStats, ospfNewCfgFixedOutRmapList=ospfNewCfgFixedOutRmapList, ipFwdNewCfgPortState=ipFwdNewCfgPortState, ipFwdCurCfgLocalSubnet=ipFwdCurCfgLocalSubnet, bgpNewCfgPeerRemoteAs=bgpNewCfgPeerRemoteAs, ospfCumTxlsAcks=ospfCumTxlsAcks, ipCurCfgAspathAction=ipCurCfgAspathAction, ipNewCfgIntfPrefixLen=ipNewCfgIntfPrefixLen, ipCurCfgBootpAddr2=ipCurCfgBootpAddr2, bgpNewCfgAggrDelete=bgpNewCfgAggrDelete, ospfCurCfgAreaIndex=ospfCurCfgAreaIndex, vrrpCurCfgVirtRtrVrGrpAdverInterval=vrrpCurCfgVirtRtrVrGrpAdverInterval, ripNewCfgIntfState=ripNewCfgIntfState, routeStatMaxEntries=routeStatMaxEntries, ospfCumIntfDown=ospfCumIntfDown, ospfCumNbrN2way=ospfCumNbrN2way, bgpNewCfgMaxASPath=bgpNewCfgMaxASPath, ipGatewayTableMax=ipGatewayTableMax, ipv6NewCfgStaticRouteInterface=ipv6NewCfgStaticRouteInterface, layer3Configs=layer3Configs, ipNewCfgStaticRouteAction=ipNewCfgStaticRouteAction, vrrpNewCfgVirtRtrIndx=vrrpNewCfgVirtRtrIndx, ospfCurCfgIntfMdkey=ospfCurCfgIntfMdkey, vrrpCurCfgVirtRtrVrGrpBmap=vrrpCurCfgVirtRtrVrGrpBmap, ospfAreaErrUnknownNbr=ospfAreaErrUnknownNbr, ospfAreaNbrStart=ospfAreaNbrStart, vrrpNewCfgVirtRtrVrGrpTable=vrrpNewCfgVirtRtrVrGrpTable, ipNewCfgNwfEntry=ipNewCfgNwfEntry, routeStats=routeStats, ipNewCfgIntfRouteAdv=ipNewCfgIntfRouteAdv, ospfAreaNbrN2way=ospfAreaNbrN2way, ipRouteInfoGateway2=ipRouteInfoGateway2, ospfCumTxlsReqs=ospfCumTxlsReqs, ospfCurCfgVirtIntfDead=ospfCurCfgVirtIntfDead, ripInfoIntfSupply=ripInfoIntfSupply, ipv6NewCfgStaticRouteGateway=ipv6NewCfgStaticRouteGateway, vrrpNewCfgVirtRtrGrpTckHsrv=vrrpNewCfgVirtRtrGrpTckHsrv, ipNewCfgNwfTable=ipNewCfgNwfTable, vrrpNewCfgVirtRtrGrpTckHsrp=vrrpNewCfgVirtRtrGrpTckHsrp, ripInfoIntfDefault=ripInfoIntfDefault, ipCurCfgStaticRouteInterface=ipCurCfgStaticRouteInterface, vrrpCurCfgGenHoldoff=vrrpCurCfgGenHoldoff, ospfAreaTxDatabase=ospfAreaTxDatabase, bgpNewCfgPeerRemoveOutRmap=bgpNewCfgPeerRemoveOutRmap, layer3Stats=layer3Stats, ospfNewCfgState=ospfNewCfgState, bgpNewCfgPeerVipState=bgpNewCfgPeerVipState, ospfCurCfgIntfTransit=ospfCurCfgIntfTransit, ipCurCfgStaticRouteGateway=ipCurCfgStaticRouteGateway, ipFwdCurCfgState=ipFwdCurCfgState, ip6icmpInErrors=ip6icmpInErrors, ipFwdCurCfgPortEntry=ipFwdCurCfgPortEntry, ospfNewCfgMdkeyKey=ospfNewCfgMdkeyKey, vrrpNewCfgVirtRtrGrpSharing=vrrpNewCfgVirtRtrGrpSharing, ospfIntfRxlsAcks=ospfIntfRxlsAcks, ipNewCfgIntfMask=ipNewCfgIntfMask, ipRoute6InfoTable=ipRoute6InfoTable, ip6ReasmFails=ip6ReasmFails, ripInfoIntfPoisonReverse=ripInfoIntfPoisonReverse, dnsStats=dnsStats, bgpNewCfgPeerIndex=bgpNewCfgPeerIndex, ripInfoIntfAuth=ripInfoIntfAuth, ipNewCfgIntfTable=ipNewCfgIntfTable, bgpAggrTableMax=bgpAggrTableMax, ipRoute6InfoDestIp6=ipRoute6InfoDestIp6, bgpCurCfgMaxASPath=bgpCurCfgMaxASPath, ospfAreaRxHello=ospfAreaRxHello, ospfAreaNbrDown=ospfAreaNbrDown, ipFwdNewCfgPortIndex=ipFwdNewCfgPortIndex, bgpCurCfgPeerVipState=bgpCurCfgPeerVipState, ospfIntfTxlsReqs=ospfIntfTxlsReqs, ipv6NewCfgStaticRouteAction=ipv6NewCfgStaticRouteAction, ospfCurCfgIntfIndex=ospfCurCfgIntfIndex, ospfCurCfgRangeState=ospfCurCfgRangeState, dnsNewCfgPrimaryIpv6Addr=dnsNewCfgPrimaryIpv6Addr, ipCurCfgNwfIndex=ipCurCfgNwfIndex, ripGeneral=ripGeneral, vrrpNewCfgVirtRtrGrpIpv6Interval=vrrpNewCfgVirtRtrGrpIpv6Interval, ospfCurCfgIntfHello=ospfCurCfgIntfHello, ospfNewCfgVisionAreaEntry=ospfNewCfgVisionAreaEntry, ospfIntfNbrBadSequence=ospfIntfNbrBadSequence, ipAspathTableMax=ipAspathTableMax, bgpCurCfgPeerDefaultAction=bgpCurCfgPeerDefaultAction, ospfCurCfgAreaId=ospfCurCfgAreaId, ipRoutingInfo=ipRoutingInfo, ospfNewCfgFixedAddOutRmap=ospfNewCfgFixedAddOutRmap, ipNewCfgRmapEntry=ipNewCfgRmapEntry, ospfNewCfgRangeDelete=ospfNewCfgRangeDelete, ospfTmrsKckOffLsaLock=ospfTmrsKckOffLsaLock, ospfNewCfgAreaState=ospfNewCfgAreaState, ospfCurCfgVirtIntfEntry=ospfCurCfgVirtIntfEntry, ipNewCfgAspathAction=ipNewCfgAspathAction, ipNwfCfg=ipNwfCfg, bgpNewCfgLocalPref=bgpNewCfgLocalPref, ospfNewCfgVisionAreaSpfInterval=ospfNewCfgVisionAreaSpfInterval, ipNewCfgAlistState=ipNewCfgAlistState, vrrpStatInAdvers=vrrpStatInAdvers, ospfNewCfgHostState=ospfNewCfgHostState, vrrpCurCfgVirtRtrGrpVersion=vrrpCurCfgVirtRtrGrpVersion, bgpCurCfgPeerMinAS=bgpCurCfgPeerMinAS, ospfAreaRxlsAcks=ospfAreaRxlsAcks, ospfCumNbrAdjointOk=ospfCumNbrAdjointOk, ripStatInRequestPkts=ripStatInRequestPkts, vrrpCurCfgVirtRtrTckHsrp=vrrpCurCfgVirtRtrTckHsrp, ipNewCfgAlistMetric=ipNewCfgAlistMetric, icmp6InDestUnreachs=icmp6InDestUnreachs, ripInfoIntfTrigUpdate=ripInfoIntfTrigUpdate, vrrpOperVirtRtrBackup=vrrpOperVirtRtrBackup, bgpCurCfgPeerRipState=bgpCurCfgPeerRipState, ospfCurCfgRangeAreaIndex=ospfCurCfgRangeAreaIndex, ipNewCfgRmapMetricType=ipNewCfgRmapMetricType, bgpNewCfgPeerTtl=bgpNewCfgPeerTtl, ospfStats=ospfStats, ipNewCfgIntfIpv6Addr=ipNewCfgIntfIpv6Addr, ipNwfTableMax=ipNwfTableMax, ip6GwEchoreq=ip6GwEchoreq, tcpStatCurOutConn=tcpStatCurOutConn, ipNewCfgRmapMetric=ipNewCfgRmapMetric, ipv6CurCfgStaticRouteTable=ipv6CurCfgStaticRouteTable, vrrpNewCfgVirtRtrVrGrpPriority=vrrpNewCfgVirtRtrVrGrpPriority, nbrcacheInfoType=nbrcacheInfoType, dnsNewCfgDomainName=dnsNewCfgDomainName, ipCurCfgAlistNwf=ipCurCfgAlistNwf, ospfCurCfgStaticMetricType=ospfCurCfgStaticMetricType, vrrpCurCfgVirtRtrGrpPriority=vrrpCurCfgVirtRtrGrpPriority, vrrpNewCfgVirtRtrGrpTckVlanPort=vrrpNewCfgVirtRtrGrpTckVlanPort, vrrpCurCfgVirtRtrGrpID=vrrpCurCfgVirtRtrGrpID, ospfCumNbrhello=ospfCumNbrhello, ospfCurCfgVirtIntfHello=ospfCurCfgVirtIntfHello, vrrpNewCfgVirtRtrTckRServer=vrrpNewCfgVirtRtrTckRServer, ospfAreaTxlsAcks=ospfAreaTxlsAcks, ospfAreaNbrAdjointOk=ospfAreaNbrAdjointOk, ipRouteInfoTag=ipRouteInfoTag, ipNewCfgGwRetry=ipNewCfgGwRetry, ospfAreaNbrRstAd=ospfAreaNbrRstAd, ospfCumNbrN1way=ospfCumNbrN1way, ipFwdCurCfgLocalTable=ipFwdCurCfgLocalTable, icmp6OutRSs=icmp6OutRSs, ripCurCfgIntfAuth=ripCurCfgIntfAuth, ipNewCfgAlistDelete=ipNewCfgAlistDelete, ospfIntfNbrRstAd=ospfIntfNbrRstAd, vrrpNewCfgVirtRtrGrpIfIndex=vrrpNewCfgVirtRtrGrpIfIndex, ospfNewCfgVirtIntfKey=ospfNewCfgVirtIntfKey, ipCurCfgBootpState=ipCurCfgBootpState, vrrpNewCfgVirtRtrVrGrpTckL4Port=vrrpNewCfgVirtRtrVrGrpTckL4Port, bgpNewCfgPeerRemoteAddr=bgpNewCfgPeerRemoteAddr, ospfCurCfgRipMetric=ospfCurCfgRipMetric, ipNewCfgGwPriority=ipNewCfgGwPriority, vrrpStatOutBadAdvers=vrrpStatOutBadAdvers, garpOperVlanNumber=garpOperVlanNumber, ospfNewCfgVirtIntfNbr=ospfNewCfgVirtIntfNbr, ipNewCfgAlistTable=ipNewCfgAlistTable)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ripStatInBadSourcePort=ripStatInBadSourcePort, dnsNewCfgSecondaryIpv6Addr=dnsNewCfgSecondaryIpv6Addr, ospfNewCfgAreaId=ospfNewCfgAreaId, ospfCurCfgHostState=ospfCurCfgHostState, ripStatOutPackets=ripStatOutPackets, ospfIfNbrTable=ospfIfNbrTable, ipCurCfgIntfMask=ipCurCfgIntfMask, ospfCumIntfWaitTimer=ospfCumIntfWaitTimer, ospfCurCfgIbgpMetric=ospfCurCfgIbgpMetric, vrrpNewCfgIfPasswd=vrrpNewCfgIfPasswd, ipCurCfgRmapMetric=ipCurCfgRmapMetric, ripInfoIntfMetric=ripInfoIntfMetric, rip2CurCfgState=rip2CurCfgState, ospfCurCfgVirtIntfAreaId=ospfCurCfgVirtIntfAreaId, ipNewCfgIntfIndex=ipNewCfgIntfIndex, bgpOperStopPeerNum=bgpOperStopPeerNum, ripCurCfgIntfPoisonReverse=ripCurCfgIntfPoisonReverse, ospfIntfNbrIndex=ospfIntfNbrIndex, ip6InReceives=ip6InReceives, ipv6CurCfgStaticRouteGateway=ipv6CurCfgStaticRouteGateway, ospfCurCfgIntfTable=ospfCurCfgIntfTable, ipStaticArpCfg=ipStaticArpCfg, ospfAreaErrorStats=ospfAreaErrorStats, ospfAreaErrDeadMismatch=ospfAreaErrDeadMismatch, ospfNewCfgHostAreaIndex=ospfNewCfgHostAreaIndex, nbrcacheInfoTable=nbrcacheInfoTable, ospfNewCfgDefaultRouteMetric=ospfNewCfgDefaultRouteMetric, ip6icmpOutMsgs=ip6icmpOutMsgs, ospfIntfErrorStats=ospfIntfErrorStats, ipCurCfgAlistMetric=ipCurCfgAlistMetric, ospfIfNbrIntfIndex=ospfIfNbrIntfIndex, ospfCurCfgIbgpOutRmapList=ospfCurCfgIbgpOutRmapList, ospfAreaIntfNbrChange=ospfAreaIntfNbrChange, vrrpNewCfgVirtRtrGrpTckVirtRtr=vrrpNewCfgVirtRtrGrpTckVirtRtr, ospfCurCfgFixedMetric=ospfCurCfgFixedMetric, ospfNewCfgVirtIntfEntry=ospfNewCfgVirtIntfEntry, ospfCumNbrExchangeDone=ospfCumNbrExchangeDone, ipCurCfgIntfAddr=ipCurCfgIntfAddr, ospfNewCfgRipMetric=ospfNewCfgRipMetric, vrrpCurCfgVirtRtrPriority=vrrpCurCfgVirtRtrPriority, ospfIntfLoop=ospfIntfLoop, ipFwdNewCfgRtCache=ipFwdNewCfgRtCache, icmp6OutEchoReps=icmp6OutEchoReps, nbrcacheInfoVlanId=nbrcacheInfoVlanId, ospfNewCfgVirtIntfAreaId=ospfNewCfgVirtIntfAreaId, ospfCurCfgRangeEntry=ospfCurCfgRangeEntry, vrrpNewCfgVirtRtrVrGrpSharing=vrrpNewCfgVirtRtrVrGrpSharing, ipCurCfgAlistState=ipCurCfgAlistState, ipCurCfgIntfRouteAdv=ipCurCfgIntfRouteAdv, ospfIntfNbrN1way=ospfIntfNbrN1way, ipRoute6InfoProto=ipRoute6InfoProto, ospfIfBackupDesignatedRouterIP=ospfIfBackupDesignatedRouterIP, ipRoute6Info=ipRoute6Info, ripCurCfgIntfEntry=ripCurCfgIntfEntry, ospfNewCfgIntfDelete=ospfNewCfgIntfDelete, ipFwdNewCfgPortTable=ipFwdNewCfgPortTable, bgpNewCfgPeerConRetry=bgpNewCfgPeerConRetry, ospfNewCfgFixedMetricType=ospfNewCfgFixedMetricType, ipNewCfgStaticArpTable=ipNewCfgStaticArpTable, ospfCumRxHello=ospfCumRxHello, ipIntfInfo=ipIntfInfo, bgpNewCfgAggrTable=bgpNewCfgAggrTable, ospfNewCfgAreaTable=ospfNewCfgAreaTable, ospfVirtIntfTableMaxSize=ospfVirtIntfTableMaxSize, ipFwdCurCfgPortIndex=ipFwdCurCfgPortIndex, ripCurCfgIntfVersion=ripCurCfgIntfVersion, ipNewCfgBootpAddr=ipNewCfgBootpAddr, ospfNewCfgVisionAreaMetric=ospfNewCfgVisionAreaMetric, ipCurCfgBootpAddr=ipCurCfgBootpAddr, arpInfoVLAN=arpInfoVLAN, vrrpNewCfgVirtRtrGrpIndx=vrrpNewCfgVirtRtrGrpIndx, ipCurCfgIntfState=ipCurCfgIntfState, bgpCurCfgLocalPref=bgpCurCfgLocalPref, ospfNewCfgEbgpOutRmapList=ospfNewCfgEbgpOutRmapList, ipCurCfgStaticArpIndx=ipCurCfgStaticArpIndx, ospfNewCfgRangeMask=ospfNewCfgRangeMask, ospfCurCfgEbgpMetric=ospfCurCfgEbgpMetric, arpInfoFlag=arpInfoFlag, ospfNewCfgAreaType=ospfNewCfgAreaType, ipBootpCfg=ipBootpCfg, vrrpCurCfgGenTckIpIntfInc=vrrpCurCfgGenTckIpIntfInc, vrrpCurCfgVirtRtrTckHsrv=vrrpCurCfgVirtRtrTckHsrv, ipCurCfgIntfVlan=ipCurCfgIntfVlan, ospfNewCfgHostIpAddr=ospfNewCfgHostIpAddr, vrrpNewCfgVirtRtrTckHsrv=vrrpNewCfgVirtRtrTckHsrv, ipStaticRouteCfg=ipStaticRouteCfg, ipCurCfgStaticRouteEntry=ipCurCfgStaticRouteEntry, dnsCurCfgSecondaryIpAddr=dnsCurCfgSecondaryIpAddr, ospfNewCfgIntfAreaId=ospfNewCfgIntfAreaId, vrrpCurCfgGenTckL4PortInc=vrrpCurCfgGenTckL4PortInc, vrrpCurCfgGenTckHsrpInc=vrrpCurCfgGenTckHsrpInc, ipCurCfgRmapIndex=ipCurCfgRmapIndex, ospfIfNbrDesignatedRtr=ospfIfNbrDesignatedRtr, ipCurCfgGwState=ipCurCfgGwState, ospfAreaTxlsReqs=ospfAreaTxlsReqs, ospfIntfNbrStart=ospfIntfNbrStart, ipv6NewCfgStaticRouteMask=ipv6NewCfgStaticRouteMask, ripCurCfgIntfTrigUpdate=ripCurCfgIntfTrigUpdate, ospfIntfRxTxIndex=ospfIntfRxTxIndex, ipNewCfgRmapState=ipNewCfgRmapState, ospfIntfInfoTable=ospfIntfInfoTable, ipv6NewCfgStaticRouteIndx=ipv6NewCfgStaticRouteIndx, bgpCurCfgAggrState=bgpCurCfgAggrState, bgpCurCfgPeerTtl=bgpCurCfgPeerTtl, ospfProcessUptime=ospfProcessUptime, ospfCurCfgFixedOutRmapList=ospfCurCfgFixedOutRmapList, ipCurCfgStaticArpPort=ipCurCfgStaticArpPort, ospfIfTotalNeighbours=ospfIfTotalNeighbours, ospfAreaRxlsReqs=ospfAreaRxlsReqs, ospfIntfErrAuthFailure=ospfIntfErrAuthFailure, ipRmapCfg=ipRmapCfg, ospfAreaErrIndex=ospfAreaErrIndex, ipFwdNewCfgLocalDelete=ipFwdNewCfgLocalDelete, vrrpCurCfgVirtRtrVrGrpTckHsrp=vrrpCurCfgVirtRtrVrGrpTckHsrp, vrrpCurCfgVirtRtrGrpTckRServer=vrrpCurCfgVirtRtrGrpTckRServer, ipFwdNewCfgLocalSubnet=ipFwdNewCfgLocalSubnet, vrrpNewCfgVirtRtrVrGrpAdverInterval=vrrpNewCfgVirtRtrVrGrpAdverInterval, ipNewCfgNwfDelete=ipNewCfgNwfDelete, ipNewCfgAspathTable=ipNewCfgAspathTable, ipNewCfgAlistIndex=ipNewCfgAlistIndex, garpOperIpAddr=garpOperIpAddr, ospfCurCfgStaticMetric=ospfCurCfgStaticMetric, icmp6InEchoReps=icmp6InEchoReps, gatewayInfoStatus=gatewayInfoStatus, ipStaticRouteTableMaxSize=ipStaticRouteTableMaxSize, bgpNewCfgAggrMask=bgpNewCfgAggrMask, ospfNewCfgVirtIntfTransit=ospfNewCfgVirtIntfTransit, ospfCumRxlsUpdates=ospfCumRxlsUpdates, ipNewCfgAspathEntry=ipNewCfgAspathEntry, ipNewCfgStaticArpMAC=ipNewCfgStaticArpMAC, ipCurCfgStaticRouteTable=ipCurCfgStaticRouteTable, ipNewCfgStaticRouteDestIp=ipNewCfgStaticRouteDestIp, ipFwdCurCfgLocalMask=ipFwdCurCfgLocalMask, vrrpCurCfgVirtRtrAddr=vrrpCurCfgVirtRtrAddr, ospfCurCfgIntfRetrans=ospfCurCfgIntfRetrans, ospfIntfTxlsUpdates=ospfIntfTxlsUpdates, rip2RoutesInfoEntry=rip2RoutesInfoEntry, ipCurCfgGwPriority=ipCurCfgGwPriority, rip2NewCfgUpdatePeriod=rip2NewCfgUpdatePeriod, vrrpCurCfgVirtRtrTckIpIntf=vrrpCurCfgVirtRtrTckIpIntf, ipCurCfgAlistIndex=ipCurCfgAlistIndex, bgpNewCfgPeerDefaultAction=bgpNewCfgPeerDefaultAction, arpInfoTable=arpInfoTable, vrrpCurCfgVirtRtrVrGrpPreemption=vrrpCurCfgVirtRtrVrGrpPreemption, ospfCurCfgAreaState=ospfCurCfgAreaState, vrrpCfg=vrrpCfg, ipNewCfgGwIpVer=ipNewCfgGwIpVer, ospfCumNbrBadSequence=ospfCumNbrBadSequence, bgpNewCfgPeerRipState=bgpNewCfgPeerRipState, ipNewCfgAlistNwf=ipNewCfgAlistNwf, ospfAreaIntfDown=ospfAreaIntfDown, icmp6InNAs=icmp6InNAs, ipCurCfgNwfAddr=ipCurCfgNwfAddr, nbrcacheInfoMacAddr=nbrcacheInfoMacAddr, ospfTotalNumberOfInterfaces=ospfTotalNumberOfInterfaces, vrrpNewCfgVirtRtrGrpTableEntry=vrrpNewCfgVirtRtrGrpTableEntry, ipNewCfgAlistEntry=ipNewCfgAlistEntry, ipNewCfgNwfMask=ipNewCfgNwfMask, ospfNewCfgIntfTransit=ospfNewCfgIntfTransit, bgpCurCfgPeerRemoteAddr=bgpCurCfgPeerRemoteAddr, ospfNewCfgMdkeyEntry=ospfNewCfgMdkeyEntry, allowedNwInfoEntry=allowedNwInfoEntry, ipFwdPortTableMaxSize=ipFwdPortTableMaxSize, ipCurCfgGwEntry=ipCurCfgGwEntry, ospfCurCfgEbgpMetricType=ospfCurCfgEbgpMetricType, ospfNewCfgIntfPriority=ospfNewCfgIntfPriority, vrrpCurCfgVirtRtrVrGrpTckHsrv=vrrpCurCfgVirtRtrVrGrpTckHsrv, ospfCurCfgDefaultRouteMetric=ospfCurCfgDefaultRouteMetric, arpStatHighWater=arpStatHighWater, ipNewCfgAspathState=ipNewCfgAspathState, vrrpCurCfgVirtRtrVrGrpTable=vrrpCurCfgVirtRtrVrGrpTable, dnsNewCfgPrimaryIpAddr=dnsNewCfgPrimaryIpAddr, ospfNewCfgIntfId=ospfNewCfgIntfId, ospfIntfHello=ospfIntfHello, bgpOperStart=bgpOperStart, ospfNewCfgStaticOutRmapList=ospfNewCfgStaticOutRmapList, ripStatOutRequestPkts=ripStatOutRequestPkts, vrrpCurCfgVirtRtrTckVlanPort=vrrpCurCfgVirtRtrTckVlanPort, ospfAreaRxTxIndex=ospfAreaRxTxIndex, ospfIntfUnloop=ospfIntfUnloop, ospfTmrsKckOffSummary=ospfTmrsKckOffSummary, icmp6OutRedirects=icmp6OutRedirects, ripNewCfgIntfEntry=ripNewCfgIntfEntry, bgpCurCfgPeerState=bgpCurCfgPeerState, vrrpNewCfgVirtRtrVrGrpTableEntry=vrrpNewCfgVirtRtrVrGrpTableEntry, icmp6OutRAs=icmp6OutRAs, vrrpOperVirtRtrGroupBackup=vrrpOperVirtRtrGroupBackup, ospfCurCfgIntfId=ospfCurCfgIntfId, ospfCurCfgStaticOutRmapList=ospfCurCfgStaticOutRmapList, nbrcacheInfoDestIp=nbrcacheInfoDestIp, layer3Oper=layer3Oper, ospfIfWaitInterval=ospfIfWaitInterval, icmp6IntfIndex=icmp6IntfIndex, ipCurCfgRouterID=ipCurCfgRouterID, bgpCurCfgPeerConRetry=bgpCurCfgPeerConRetry, intfInfoBcastAddr=intfInfoBcastAddr, ipCurCfgASNumber=ipCurCfgASNumber, ospfIntfRxDatabase=ospfIntfRxDatabase, nbrcacheInfo=nbrcacheInfo, ripInfoIntfMcastUpdate=ripInfoIntfMcastUpdate, ospfIfNbrBackupDesignatedRtr=ospfIfNbrBackupDesignatedRtr, vrrpCurCfgVirtRtrGrpTckVlanPort=vrrpCurCfgVirtRtrGrpTckVlanPort, vrrpNewCfgVirtRtrTckIpIntf=vrrpNewCfgVirtRtrTckIpIntf, ospfNewCfgHostTable=ospfNewCfgHostTable, ipNewCfgIntfState=ipNewCfgIntfState, ospfCurCfgVirtIntfIndex=ospfCurCfgVirtIntfIndex, vrrpCurCfgVirtRtrVersion=vrrpCurCfgVirtRtrVersion, ospfAreaTxHello=ospfAreaTxHello, ospfCumNbrBadRequests=ospfCumNbrBadRequests, ripInfoUpdatePeriod=ripInfoUpdatePeriod, ospfIntfChangeStatsEntry=ospfIntfChangeStatsEntry, rip2RoutesInfo=rip2RoutesInfo, ospfIfNbrEntry=ospfIfNbrEntry, rip2NewCfgState=rip2NewCfgState, ip6icmpInMsgs=ip6icmpInMsgs, ospfIntfErrUnknownNbr=ospfIntfErrUnknownNbr, bgpCurCfgAggrMask=bgpCurCfgAggrMask, vrrpNewCfgVirtRtrTckL4Port=vrrpNewCfgVirtRtrTckL4Port, ipCurCfgRmapState=ipCurCfgRmapState, ospfAreaNbrN1way=ospfAreaNbrN1way, ospfNbrInFullState=ospfNbrInFullState, vrrpCurCfgVirtRtrGrpTable=vrrpCurCfgVirtRtrGrpTable, icmp6InEchos=icmp6InEchos, ipFwdNewCfgLocalMask=ipFwdNewCfgLocalMask, ospfCurCfgMdkeyEntry=ospfCurCfgMdkeyEntry, ospfNewCfgIntfCost=ospfNewCfgIntfCost, ospfCurCfgHostIndex=ospfCurCfgHostIndex, bgpNewCfgPeerMinAS=bgpNewCfgPeerMinAS, icmp6InRedirects=icmp6InRedirects, vrrpNewCfgVirtRtrTable=vrrpNewCfgVirtRtrTable, ipNewCfgStaticArpPort=ipNewCfgStaticArpPort, ipNewCfgIntfVlan=ipNewCfgIntfVlan, ospfIntfErrIndex=ospfIntfErrIndex, ipFwdCurCfgLocalIndex=ipFwdCurCfgLocalIndex, vrrpNewCfgVirtRtrVrGrpTckHsrp=vrrpNewCfgVirtRtrVrGrpTckHsrp, vrrpNewCfgVirtRtrInterval=vrrpNewCfgVirtRtrInterval, bgpNewCfgPeerRemoveInRmap=bgpNewCfgPeerRemoveInRmap, nbrcacheInfoTotOtherEntries=nbrcacheInfoTotOtherEntries, bgpNewCfgASNumber=bgpNewCfgASNumber, ospfNewCfgIbgpMetric=ospfNewCfgIbgpMetric, vrrpNewCfgVirtRtrGrpState=vrrpNewCfgVirtRtrGrpState, ripNewCfgIntfDefListen=ripNewCfgIntfDefListen, vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo=vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo, bgpCurCfgPeerInRmapList=bgpCurCfgPeerInRmapList, ipNewCfgGwTable=ipNewCfgGwTable, bgpNewCfgAggrIndex=bgpNewCfgAggrIndex, ospfGeneralStats=ospfGeneralStats, intfInfoNetMask=intfInfoNetMask, ospfCurCfgIntfEntry=ospfCurCfgIntfEntry, ospfCurCfgRangeMask=ospfCurCfgRangeMask, arpCacheClear=arpCacheClear, ospfCurCfgAreaType=ospfCurCfgAreaType, ospfNewCfgIntfRetrans=ospfNewCfgIntfRetrans, ripCurCfgIntfKey=ripCurCfgIntfKey)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ripStatRouteTimeout=ripStatRouteTimeout, icmp6InTooBigs=icmp6InTooBigs, ospfCurCfgMdkeyIndex=ospfCurCfgMdkeyIndex, ospfNewCfgVirtIntfRetrans=ospfNewCfgVirtIntfRetrans, ospfIntfRxTxStats=ospfIntfRxTxStats, bgpNewCfgPeerAddOutRmap=bgpNewCfgPeerAddOutRmap, ripNewCfgIntfKey=ripNewCfgIntfKey, bgpNewCfgAggrAddr=bgpNewCfgAggrAddr, ospfTmrsKckOffHello=ospfTmrsKckOffHello, vrrpCurCfgVirtRtrState=vrrpCurCfgVirtRtrState, ipCurCfgGwMetric=ipCurCfgGwMetric, arpStatEntries=arpStatEntries, vrrpNewCfgVirtRtrGrpPriority=vrrpNewCfgVirtRtrGrpPriority, ospfNewCfgHostEntry=ospfNewCfgHostEntry, ospfCurCfgVirtIntfTable=ospfCurCfgVirtIntfTable, vrrpCurCfgVirtRtrID=vrrpCurCfgVirtRtrID, ospfIntfCountForRouter=ospfIntfCountForRouter, vrrpCurCfgIfIpAddr=vrrpCurCfgIfIpAddr, routeStatEntries=routeStatEntries, ospfTimersKickOffStats=ospfTimersKickOffStats, ipCurCfgAspathRmapIndex=ipCurCfgAspathRmapIndex, ipNewCfgStaticRouteTable=ipNewCfgStaticRouteTable, vrrpNewCfgVirtRtrGrpTckL4Port=vrrpNewCfgVirtRtrGrpTckL4Port, ospfCurCfgIntfState=ospfCurCfgIntfState, ospfNewCfgRangeState=ospfNewCfgRangeState, vrrpNewCfgVirtRtrVrGrpTckRServer=vrrpNewCfgVirtRtrVrGrpTckRServer, nbrcacheInfoEntry=nbrcacheInfoEntry, ospfNewCfgVisionAreaType=ospfNewCfgVisionAreaType, ripNewCfgIntfPoisonReverse=ripNewCfgIntfPoisonReverse, ospfAreaErrAuthFailure=ospfAreaErrAuthFailure, bgpNewCfgAggrEntry=bgpNewCfgAggrEntry, ospfAreaNbrBadRequests=ospfAreaNbrBadRequests, ospfTotalNeighbours=ospfTotalNeighbours, ripNewCfgIntfVersion=ripNewCfgIntfVersion, ipNewCfgAspathRmapIndex=ipNewCfgAspathRmapIndex, ripStatInResponsePkts=ripStatInResponsePkts, ipNewCfgAspathAS=ipNewCfgAspathAS, ospfCurCfgAreaEntry=ospfCurCfgAreaEntry, ospfIntfNbrChangeStatsEntry=ospfIntfNbrChangeStatsEntry, ipNewCfgRouterID=ipNewCfgRouterID, icmp6OutEchos=icmp6OutEchos, dnsNewCfgSecondaryIpAddr=dnsNewCfgSecondaryIpAddr, ospfCfg=ospfCfg, ipInterfaceTableMax=ipInterfaceTableMax, ipCurCfgStaticArpVlan=ipCurCfgStaticArpVlan, ospfCumRxlsReqs=ospfCumRxlsReqs, rip2Stats=rip2Stats, ospfCumIntfHello=ospfCumIntfHello, ripStatInBadVersion=ripStatInBadVersion, ip6IfIndex=ip6IfIndex, ospfNumberOfLsdbEntries=ospfNumberOfLsdbEntries, ospfCurCfgIntfPriority=ospfCurCfgIntfPriority, allowedNwInfoIndex=allowedNwInfoIndex, ifClearStats=ifClearStats, ospfIntfNbrChange=ospfIntfNbrChange, ripNewCfgIntfIndex=ripNewCfgIntfIndex, vrrpNewCfgVirtRtrGrpTable=vrrpNewCfgVirtRtrGrpTable, vrrpCurCfgVirtRtrVrGrpAdd=vrrpCurCfgVirtRtrVrGrpAdd, ospfAreaTxPkts=ospfAreaTxPkts, ospfCumNbrNegotiationDone=ospfCumNbrNegotiationDone, rip2Info=rip2Info, ipCurCfgStaticRouteMask=ipCurCfgStaticRouteMask, ipFwdCurCfgPortState=ipFwdCurCfgPortState, ip6InDelivers=ip6InDelivers, icmp6StatsTable=icmp6StatsTable, icmp6InTimeExcds=icmp6InTimeExcds, ipNewCfgRmapIndex=ipNewCfgRmapIndex, ipCurCfgGwArp=ipCurCfgGwArp, arpInfoRefPorts=arpInfoRefPorts, vrrpCurCfgVirtRtrGrpSharing=vrrpCurCfgVirtRtrGrpSharing, bgpNewCfgPeerAddInRmap=bgpNewCfgPeerAddInRmap, ospfIntfRxlsReqs=ospfIntfRxlsReqs, ospfCumRxPkts=ospfCumRxPkts, ospfCumIntfUnloop=ospfCumIntfUnloop, ospfCumTxPkts=ospfCumTxPkts, ospfNewCfgStaticMetricType=ospfNewCfgStaticMetricType, ospfCurCfgAreaAuthType=ospfCurCfgAreaAuthType, bgpNewCfgAggrState=bgpNewCfgAggrState, vrrpNewCfgVirtRtrVrGrpRem=vrrpNewCfgVirtRtrVrGrpRem, bgpNewCfgPeerHoldTime=bgpNewCfgPeerHoldTime, ospfCurCfgIntfDead=ospfCurCfgIntfDead, ipNewCfgIntfBootpRelay=ipNewCfgIntfBootpRelay, ipRouteInfoMetric=ipRouteInfoMetric, vrrpNewCfgVirtRtrVrGrpState=vrrpNewCfgVirtRtrVrGrpState, ip6icmpOutErrors=ip6icmpOutErrors, ripCurCfgIntfDefListen=ripCurCfgIntfDefListen, ospfIfInfoIpAddress=ospfIfInfoIpAddress, bgpOperStop=bgpOperStop, bgpCurCfgASNumber=bgpCurCfgASNumber)
| (aws_switch,) = mibBuilder.importSymbols('ALTEON-ROOT-MIB', 'aws-switch')
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, value_range_constraint, constraints_union, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(mib_identifier, unsigned32, object_identity, module_identity, gauge32, counter32, iso, ip_address, notification_type, counter64, integer32, time_ticks, bits, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'Unsigned32', 'ObjectIdentity', 'ModuleIdentity', 'Gauge32', 'Counter32', 'iso', 'IpAddress', 'NotificationType', 'Counter64', 'Integer32', 'TimeTicks', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(phys_address, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'PhysAddress', 'TextualConvention', 'DisplayString')
layer3 = module_identity((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3))
layer3.setRevisions(('2009-08-05 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
layer3.setRevisionsDescriptions(('Added revision clause for SMIv2 compliance.',))
if mibBuilder.loadTexts:
layer3.setLastUpdated('200908050000Z')
if mibBuilder.loadTexts:
layer3.setOrganization('Radware Ltd.')
if mibBuilder.loadTexts:
layer3.setContactInfo('Lobby 1 (Visitors) and Lobby 2 (Deliveries) 575 Corporate Drive Mahwah, NJ 07430 support@radware.com')
if mibBuilder.loadTexts:
layer3.setDescription('The MIB module for the Alteon OS Layer 3 configuration, statistics and information .')
layer3_configs = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1))
layer3_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2))
layer3_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3))
layer3_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4))
ip_interface_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1))
ip_gateway_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2))
ip_static_route_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3))
ip_forward_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4))
vrrp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6))
arp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7))
ip_bootp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8))
dns_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9))
ip_nwf_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10))
ip_rmap_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11))
bgp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12))
ospf_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13))
ip_general_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14))
ip_static_arp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15))
rip2_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18))
arp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2))
route_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3))
dns_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4))
vrrp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5))
ospf_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6))
clear_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7))
ip6_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10))
icmp6_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11))
ip6gw_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12))
rip2_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13))
tcp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14))
ip_routing_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1))
arp_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2))
vrrp_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3))
ospfinfo = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4))
gateway_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5))
nbrcache_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7))
ip_route6_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8))
ip_intf_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9))
rip2_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10))
rip2_routes_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11))
allowed_nw_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12))
vrrp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1))
ip_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2))
ip_interface_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipInterfaceTableMax.setStatus('current')
if mibBuilder.loadTexts:
ipInterfaceTableMax.setDescription('The maximum number of rows in the IP interface table.')
ip_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2))
if mibBuilder.loadTexts:
ipCurCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfTable.setDescription('The table of IP interface configuration.')
ip_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgIntfIndex'))
if mibBuilder.loadTexts:
ipCurCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfEntry.setDescription('A row in the Ip interface table')
ip_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfIndex.setDescription('The interface number for which the IP information is related.')
ip_cur_cfg_intf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfAddr.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfAddr.setDescription('The IP address of the interface.')
ip_cur_cfg_intf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfMask.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfMask.setDescription('The subnet mask of the interface.')
ip_cur_cfg_intf_broadcast = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfBroadcast.setStatus('obsolete')
if mibBuilder.loadTexts:
ipCurCfgIntfBroadcast.setDescription('The broadcast address of the interface.')
ip_cur_cfg_intf_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfVlan.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfVlan.setDescription('The VLAN associated with the interface.')
ip_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfState.setDescription('The state of the interface.')
ip_cur_cfg_intf_bootp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfBootpRelay.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfBootpRelay.setDescription('Enable/disable BOOTP relay.')
ip_cur_cfg_intf_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfIpVer.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfIpVer.setDescription('The type of IP address.')
ip_cur_cfg_intf_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfIpv6Addr.setDescription('The IPv6 address of the interface. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ip_cur_cfg_intf_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfPrefixLen.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfPrefixLen.setDescription('The prefix length associated with this IP address .')
ip_cur_cfg_intf_route_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfRouteAdv.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgIntfRouteAdv.setDescription('Enable/disable route advertisement of the interface.')
ip_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3))
if mibBuilder.loadTexts:
ipNewCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfTable.setDescription('The table of interface configuration in the New Configuration Block.')
ip_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgIntfIndex'))
if mibBuilder.loadTexts:
ipNewCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfEntry.setDescription('A row in the Ip interface table')
ip_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfIndex.setDescription('The interface number for which the IP information is related.')
ip_new_cfg_intf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfAddr.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfAddr.setDescription('The IP address of the interface.')
ip_new_cfg_intf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfMask.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfMask.setDescription('The subnet mask of the interface.')
ip_new_cfg_intf_broadcast = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfBroadcast.setStatus('obsolete')
if mibBuilder.loadTexts:
ipNewCfgIntfBroadcast.setDescription('The broadcast address of the interface.')
ip_new_cfg_intf_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 5), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfVlan.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfVlan.setDescription('The VLAN associated with the interface.')
ip_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfState.setDescription('The state of the interface.')
ip_new_cfg_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfDelete.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_new_cfg_intf_bootp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfBootpRelay.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfBootpRelay.setDescription('Enable/disable BOOTP relay.')
ip_new_cfg_intf_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfIpVer.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfIpVer.setDescription('The type of IP address.')
ip_new_cfg_intf_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfIpv6Addr.setDescription('The IPv6 address of the interface. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ip_new_cfg_intf_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfPrefixLen.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfPrefixLen.setDescription('The prefix length associated with this IP address .')
ip_new_cfg_intf_route_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfRouteAdv.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgIntfRouteAdv.setDescription('Enable/disable route advertisement of the interface.')
ip_cur_cfg_gw_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('strict', 1), ('roundrobin', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwMetric.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwMetric.setDescription('The default gateway metric.')
ip_new_cfg_gw_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('strict', 1), ('roundrobin', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgGwMetric.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwMetric.setDescription('The default gateway metric.')
ip_gateway_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipGatewayTableMax.setStatus('current')
if mibBuilder.loadTexts:
ipGatewayTableMax.setDescription('The maximum number of rows in the IP gateway table.')
ip_cur_cfg_gw_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4))
if mibBuilder.loadTexts:
ipCurCfgGwTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwTable.setDescription('The table of gateways in the Current configuration Block.')
ip_cur_cfg_gw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgGwIndex'))
if mibBuilder.loadTexts:
ipCurCfgGwEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwEntry.setDescription('A row in the Ip gateway table')
ip_cur_cfg_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwIndex.setDescription('The gateway number for which the information is related.')
ip_cur_cfg_gw_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwAddr.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwAddr.setDescription('The IP address of the default gateway.')
ip_cur_cfg_gw_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwInterval.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwInterval.setDescription('The interval between ping attempts.')
ip_cur_cfg_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwRetry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwRetry.setDescription('The number of failed attempts to declare the default gateway DOWN.')
ip_cur_cfg_gw_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwState.setDescription('The state of the default gateway.')
ip_cur_cfg_gw_arp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwArp.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwArp.setDescription('The state of ARP only health checks.')
ip_cur_cfg_gw_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwVlan.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwVlan.setDescription('The VLAN number for this gateway. The first 4 entries in the table are only used for default gateway load balancing hence the VLAN cannot be specified for the first 4 entries.')
ip_cur_cfg_gw_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('low', 1), ('high', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwPriority.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwPriority.setDescription('The priority of the default route for this gateway. High priority means that the default gateway route will have higher priority over learned default routes. Low priority means that the default gateway route will have lower priority than learned default routes.')
ip_cur_cfg_gw_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwIpVer.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwIpVer.setDescription('The type of IP address.')
ip_cur_cfg_gw_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgGwIpv6Addr.setDescription('The IPv6 address of the gateway. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ip_new_cfg_gw_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5))
if mibBuilder.loadTexts:
ipNewCfgGwTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwTable.setDescription('The table of gateway configuration in the new configuration block.')
ip_new_cfg_gw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgGwIndex'))
if mibBuilder.loadTexts:
ipNewCfgGwEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwEntry.setDescription('A row in the Ip default gateway table')
ip_new_cfg_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgGwIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwIndex.setDescription('The gateway number for which the information is related.')
ip_new_cfg_gw_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwAddr.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwAddr.setDescription('The IP address of the default gateway.')
ip_new_cfg_gw_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwInterval.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwInterval.setDescription('The interval in seconds between ping attempts.')
ip_new_cfg_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwRetry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwRetry.setDescription('The number of failed attempts to declare the default gateway DOWN.')
ip_new_cfg_gw_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwState.setDescription('The state of the default gateway.')
ip_new_cfg_gw_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwDelete.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_new_cfg_gw_arp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwArp.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwArp.setDescription('The state of the ARP only health checks.')
ip_new_cfg_gw_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 8), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwVlan.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwVlan.setDescription('The VLAN number for this gateway. The first 4 entries in the table are only used for default gateway load balancing hence the VLAN cannot be specified for the first 4 entries.')
ip_new_cfg_gw_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('low', 1), ('high', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwPriority.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwPriority.setDescription('The priority of the default route for this gateway. High priority means that the default gateway route will have higher priority over learned default routes. Low priority means that the default gateway route will have lower priority than learned default routes.')
ip_new_cfg_gw_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwIpVer.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwIpVer.setDescription('The type of IP address.')
ip_new_cfg_gw_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgGwIpv6Addr.setDescription('The IPv6 address of the gateway. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ip_static_route_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipStaticRouteTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ipStaticRouteTableMaxSize.setDescription('The maximum number of rows in the Static Route table.')
ip_cur_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2))
if mibBuilder.loadTexts:
ipCurCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteTable.setDescription('The table of static routes in the current configuration block.')
ip_cur_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipCurCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ip_cur_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteIndx.setDescription('The index of the static routing table.')
ip_cur_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteDestIp.setDescription('The destination IP address of this route.')
ip_cur_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteMask.setDescription('The destination IP address of this route.')
ip_cur_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteGateway.setDescription('The destination IP address of this route.')
ip_cur_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteInterface.setDescription('The IP interface of this route. The IP address of the specified interface shall be use as source IP when performs routing.')
ip_new_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3))
if mibBuilder.loadTexts:
ipNewCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteTable.setDescription('The table of static routes in the new configuration block.')
ip_new_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipNewCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ip_new_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteIndx.setDescription('The index of the static routing table.')
ip_new_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteDestIp.setDescription('The destination IP address of this route.')
ip_new_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteMask.setDescription('The subnet mask of this route.')
ip_new_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteGateway.setDescription('The IP address of the gateway for this route.')
ip_new_cfg_static_route_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteAction.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteAction.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_new_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 6), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteInterface.setDescription('The IP interface of this route. The IP address of the specified interface shall be use as source IP when performs routing.')
ipv6_cur_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4))
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteTable.setDescription('The table of ipv6 static routes in the current configuration block.')
ipv6_cur_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipv6CurCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ipv6_cur_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteIndx.setDescription('The index of the ipv6 static routing table.')
ipv6_cur_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteDestIp.setDescription(' The destination IPv6 address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6_cur_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteMask.setDescription('The prefix length associated with this IP address.')
ipv6_cur_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteGateway.setDescription('The destination IPv6 gateway address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6_cur_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteInterface.setDescription('The IPv6 interface of this route. The IPv6 address of the specified interface shall be use as source IP when performs routing.')
ipv6_new_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5))
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteTable.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteTable.setDescription('The table of ipv6 static routes in the current configuration block.')
ipv6_new_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipv6NewCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteEntry.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteEntry.setDescription('A row in the static IP route table')
ipv6_new_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 1), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteIndx.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteIndx.setDescription('The index of the ipv6 static routing table.')
ipv6_new_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteDestIp.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteDestIp.setDescription('The destination IPv6 address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6_new_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteMask.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteMask.setDescription('The prefix length associated with this IP address.')
ipv6_new_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteGateway.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteGateway.setDescription('The destination IPv6 gateway address of this route. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
ipv6_new_cfg_static_route_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteAction.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteAction.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ipv6_new_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteInterface.setStatus('current')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteInterface.setDescription('The IPv6 interface of this route. The IPv6 address of the specified interface shall be use as source IP when performs routing.')
rip_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1))
if mibBuilder.loadTexts:
ripCurCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfTable.setDescription('The table of RIP on IP interface configuration in the current_config.')
rip_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripCurCfgIntfIndex'))
if mibBuilder.loadTexts:
ripCurCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfEntry.setDescription('Information about RIP on IP interface.')
rip_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfIndex.setDescription('The interface number for which the RIP information is related.')
rip_cur_cfg_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2), ('both', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfVersion.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfVersion.setDescription('RIP version.')
rip_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfState.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfState.setDescription('Enable or disable RIP protocol.')
rip_cur_cfg_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfListen.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfListen.setDescription('Enable or disable listening to route updates.')
rip_cur_cfg_intf_def_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfDefListen.setStatus('obsolete')
if mibBuilder.loadTexts:
ripCurCfgIntfDefListen.setDescription('Enable or disable listening to default routes.')
rip_cur_cfg_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfTrigUpdate.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfTrigUpdate.setDescription('Enable or disable triggered updates.')
rip_cur_cfg_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfMcastUpdate.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfMcastUpdate.setDescription('Enable or disable multicast updates.')
rip_cur_cfg_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfPoisonReverse.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfPoisonReverse.setDescription('RIP poison reverse.')
rip_cur_cfg_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfSupply.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfSupply.setDescription('Enable or disable supplying route updates.')
rip_cur_cfg_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfMetric.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfMetric.setDescription('RIP route metric for this interface.')
rip_cur_cfg_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfAuth.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfAuth.setDescription('The type of Authentication used on this interface.')
rip_cur_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfKey.setDescription('RIP update authentication password.')
rip_cur_cfg_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfDefault.setStatus('current')
if mibBuilder.loadTexts:
ripCurCfgIntfDefault.setDescription('Specifies what RIP does with default routes.')
rip_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2))
if mibBuilder.loadTexts:
ripNewCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfTable.setDescription('The table of RIP on IP interface configuration in the new_config.')
rip_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripNewCfgIntfIndex'))
if mibBuilder.loadTexts:
ripNewCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfEntry.setDescription('Information about RIP on IP interface.')
rip_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripNewCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfIndex.setDescription('The interface number for which the RIP information is related.')
rip_new_cfg_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2), ('both', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfVersion.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfVersion.setDescription('RIP version.')
rip_new_cfg_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfSupply.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfSupply.setDescription('Enable or disable supplying route updates.')
rip_new_cfg_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfListen.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfListen.setDescription('Enable or disable listening to route updates.')
rip_new_cfg_intf_def_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfDefListen.setStatus('obsolete')
if mibBuilder.loadTexts:
ripNewCfgIntfDefListen.setDescription('Enable or disable listening to default routes.')
rip_new_cfg_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfTrigUpdate.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfTrigUpdate.setDescription('Enable or disable triggered updates.')
rip_new_cfg_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfMcastUpdate.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfMcastUpdate.setDescription('Enable or disable multicast updates.')
rip_new_cfg_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfPoisonReverse.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfPoisonReverse.setDescription('RIP poison reverse.')
rip_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfState.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfState.setDescription('Enable or disable RIP protocol.')
rip_new_cfg_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ripNewCfgIntfMetric.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfMetric.setDescription('RIP route metric for this interface.')
rip_new_cfg_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ripNewCfgIntfAuth.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfAuth.setDescription('The type of Authentication used on this interface.')
rip_new_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfKey.setDescription('RIP update authentication password.')
rip_new_cfg_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfDefault.setStatus('current')
if mibBuilder.loadTexts:
ripNewCfgIntfDefault.setDescription('Specifies what RIP does with default routes. The default routes action could be set to listen/supply/both/none.')
rip_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3))
rip2_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgState.setStatus('current')
if mibBuilder.loadTexts:
rip2CurCfgState.setDescription('RIP global state.')
rip2_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgState.setStatus('current')
if mibBuilder.loadTexts:
rip2NewCfgState.setDescription('Globally turn RIP on or off.')
rip2_cur_cfg_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgUpdatePeriod.setStatus('current')
if mibBuilder.loadTexts:
rip2CurCfgUpdatePeriod.setDescription('Update Period in seconds.')
rip2_new_cfg_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgUpdatePeriod.setStatus('current')
if mibBuilder.loadTexts:
rip2NewCfgUpdatePeriod.setDescription('Update Period in seconds.')
rip2_cur_cfg_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgVip.setStatus('current')
if mibBuilder.loadTexts:
rip2CurCfgVip.setDescription('Advertise VIP Host Routes.')
rip2_new_cfg_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgVip.setStatus('current')
if mibBuilder.loadTexts:
rip2NewCfgVip.setDescription('Advertise VIP Host Routes.')
rip2_cur_cfg_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgStaticSupply.setStatus('current')
if mibBuilder.loadTexts:
rip2CurCfgStaticSupply.setDescription('Advertise Static Routes.')
rip2_new_cfg_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgStaticSupply.setStatus('current')
if mibBuilder.loadTexts:
rip2NewCfgStaticSupply.setDescription('Advertise Static Routes.')
ip_fwd_general_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1))
ip_fwd_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('on', 2), ('off', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgState.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgState.setDescription('IP forwarding global state.')
ip_fwd_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('on', 2), ('off', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgState.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgState.setDescription('IP forwarding global state.')
ip_fwd_cur_cfg_directed_bcast = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgDirectedBcast.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgDirectedBcast.setDescription('Enable or disable forwarding directed broadcasts.')
ip_fwd_new_cfg_directed_bcast = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgDirectedBcast.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgDirectedBcast.setDescription('Enable or disable forwarding directed broadcasts.')
ip_fwd_cur_cfg_no_icmp_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgNoICMPRedirect.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgNoICMPRedirect.setDescription('Enable or disable no icmp redirects.')
ip_fwd_new_cfg_no_icmp_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgNoICMPRedirect.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgNoICMPRedirect.setDescription('Enable or disable no icmp redirects.')
ip_fwd_cur_cfg_rt_cache = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgRtCache.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgRtCache.setDescription('Enable or disable SP Route Caching.')
ip_fwd_new_cfg_rt_cache = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgRtCache.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgRtCache.setDescription('Enable or disable SP Route Caching.')
ip_fwd_port_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdPortTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ipFwdPortTableMaxSize.setDescription('The maximum number of rows in the IP Port table.')
ip_fwd_cur_cfg_port_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3))
if mibBuilder.loadTexts:
ipFwdCurCfgPortTable.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgPortTable.setDescription('The table of ports and their forwarding states')
ip_fwd_cur_cfg_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdCurCfgPortIndex'))
if mibBuilder.loadTexts:
ipFwdCurCfgPortEntry.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgPortEntry.setDescription('A row in the ipFwdCurCfgPortTable ')
ip_fwd_cur_cfg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgPortIndex.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgPortIndex.setDescription('The port number for which the forwarding state information pertains.')
ip_fwd_cur_cfg_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgPortState.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgPortState.setDescription('The forwarding state of the port.')
ip_fwd_new_cfg_port_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4))
if mibBuilder.loadTexts:
ipFwdNewCfgPortTable.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgPortTable.setDescription('The table of ports and their forwarding states')
ip_fwd_new_cfg_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdNewCfgPortIndex'))
if mibBuilder.loadTexts:
ipFwdNewCfgPortEntry.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgPortEntry.setDescription('A row in the ipFwdNewCfgPortTable ')
ip_fwd_new_cfg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdNewCfgPortIndex.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgPortIndex.setDescription('The port number for which the forwarding state information pertains.')
ip_fwd_new_cfg_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgPortState.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgPortState.setDescription('The forwarding state of the port.')
ip_fwd_local_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdLocalTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ipFwdLocalTableMaxSize.setDescription('The maximum number of rows in the Local table.')
ip_fwd_cur_cfg_local_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6))
if mibBuilder.loadTexts:
ipFwdCurCfgLocalTable.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalTable.setDescription('The table of local network definition.')
ip_fwd_cur_cfg_local_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdCurCfgLocalIndex'))
if mibBuilder.loadTexts:
ipFwdCurCfgLocalEntry.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalEntry.setDescription('A row in the ipFwdCurCfgLocalTable ')
ip_fwd_cur_cfg_local_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalIndex.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalIndex.setDescription('The index of ipFwdCurCfgLocalTable.')
ip_fwd_cur_cfg_local_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalSubnet.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalSubnet.setDescription('The current local IP subnet.')
ip_fwd_cur_cfg_local_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalMask.setStatus('current')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalMask.setDescription('The current local IP subnet mask.')
ip_fwd_new_cfg_local_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7))
if mibBuilder.loadTexts:
ipFwdNewCfgLocalTable.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalTable.setDescription('The table of local network definition.')
ip_fwd_new_cfg_local_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdNewCfgLocalIndex'))
if mibBuilder.loadTexts:
ipFwdNewCfgLocalEntry.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalEntry.setDescription('A row in the ipFwdNewCfgLocalTable ')
ip_fwd_new_cfg_local_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalIndex.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalIndex.setDescription('The index of ipFwdNewCfgLocalTable.')
ip_fwd_new_cfg_local_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalSubnet.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalSubnet.setDescription('The new local IP subnet.')
ip_fwd_new_cfg_local_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalMask.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalMask.setDescription('The new local IP subnet mask.')
ip_fwd_new_cfg_local_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalDelete.setStatus('current')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
arp_cur_cfg_re_arp_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 1), integer32().subtype(subtypeSpec=value_range_constraint(2, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpCurCfgReARPPeriod.setStatus('current')
if mibBuilder.loadTexts:
arpCurCfgReARPPeriod.setDescription('Re-ARP Period in seconds.')
arp_new_cfg_re_arp_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 2), integer32().subtype(subtypeSpec=value_range_constraint(2, 120))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
arpNewCfgReARPPeriod.setStatus('current')
if mibBuilder.loadTexts:
arpNewCfgReARPPeriod.setDescription('Re-ARP Period in seconds.')
ip_cur_cfg_bootp_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgBootpAddr.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgBootpAddr.setDescription('The IP address of BOOTP server.')
ip_new_cfg_bootp_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgBootpAddr.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgBootpAddr.setDescription('The IP address of BOOTP server.')
ip_cur_cfg_bootp_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgBootpAddr2.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgBootpAddr2.setDescription('The IP address of second BOOTP server.')
ip_new_cfg_bootp_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgBootpAddr2.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgBootpAddr2.setDescription('The IP address of second BOOTP server.')
ip_cur_cfg_bootp_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgBootpState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgBootpState.setDescription('The state of BOOTP relay.')
ip_new_cfg_bootp_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgBootpState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgBootpState.setDescription('The state of BOOTP relay.')
vrrp_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1))
vrrp_cur_cfg_gen_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenState.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenState.setDescription('Enable or disable VRRP operation globally.')
vrrp_new_cfg_gen_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenState.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenState.setDescription('Enable or disable VRRP operation globally.')
vrrp_cur_cfg_gen_tck_virt_rtr_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckVirtRtrInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckVirtRtrInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other virtual routers.')
vrrp_new_cfg_gen_tck_virt_rtr_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckVirtRtrInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckVirtRtrInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other virtual routers.')
vrrp_cur_cfg_gen_tck_ip_intf_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckIpIntfInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckIpIntfInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other router interfaces.')
vrrp_new_cfg_gen_tck_ip_intf_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckIpIntfInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckIpIntfInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of other router interfaces.')
vrrp_cur_cfg_gen_tck_vlan_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckVlanPortInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckVlanPortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the port state of ports that belongs to the same virtual LAN as the virtual router.')
vrrp_new_cfg_gen_tck_vlan_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckVlanPortInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckVlanPortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the port state of ports that belongs to the same virtual LAN as the virtual router.')
vrrp_cur_cfg_gen_tck_l4_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckL4PortInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckL4PortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the Layer 4 port states. This is valid when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_gen_tck_l4_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckL4PortInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckL4PortInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the Layer 4 port states. This is valid when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_gen_tck_r_server_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckRServerInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckRServerInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of real servers under the virtual server which is configured as a VRRP virtual router.')
vrrp_new_cfg_gen_tck_r_server_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckRServerInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckRServerInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the state of real servers under the virtual server which is configured as a VRRP virtual router.')
vrrp_cur_cfg_gen_tck_hsrp_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckHsrpInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckHsrpInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements.')
vrrp_new_cfg_gen_tck_hsrp_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckHsrpInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckHsrpInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements.')
vrrp_cur_cfg_gen_hotstandby = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenHotstandby.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenHotstandby.setDescription('Enable or disable hotstandby processing.')
vrrp_new_cfg_gen_hotstandby = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenHotstandby.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenHotstandby.setDescription('Enable or disable hotstandby processing.')
vrrp_cur_cfg_gen_tck_hsrv_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckHsrvInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckHsrvInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements by VLAN.')
vrrp_new_cfg_gen_tck_hsrv_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckHsrvInc.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckHsrvInc.setDescription('The increment of VRRP virtual router priority. The priority is adjusted by tracking the HSRP advertisements by VLAN.')
vrrp_cur_cfg_gen_holdoff = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenHoldoff.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgGenHoldoff.setDescription('The time for VRRP virtual router to hold before it begins to change state to backup or master state.')
vrrp_new_cfg_gen_holdoff = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenHoldoff.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgGenHoldoff.setDescription('The time for VRRP virtual router to hold before it begins to change state to backup or master state.')
vrrp_virt_rtr_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpVirtRtrTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
vrrpVirtRtrTableMaxSize.setDescription('The maximum number of entries in VRRP virtual router table.')
vrrp_cur_cfg_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTable.setDescription('The table of VRRP virtual routers configuration in current_config.')
vrrp_cur_cfg_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTableEntry.setDescription('Information about a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIndx.setDescription('The VRRP virtual router table index.')
vrrp_cur_cfg_virt_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrID.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrID.setDescription('The VRRP virtual router identifier.')
vrrp_cur_cfg_virt_rtr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrAddr.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrAddr.setDescription('The VRRP virtual router IP address.')
vrrp_cur_cfg_virt_rtr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIfIndex.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrp_cur_cfg_virt_rtr_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrInterval.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrp_cur_cfg_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrp_cur_cfg_virt_rtr_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrPreempt.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrp_cur_cfg_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrState.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrState.setDescription('Enable or disable the VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrSharing.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrp_cur_cfg_virt_rtr_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVirtRtrInc.')
vrrp_cur_cfg_virt_rtr_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckIpIntf.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrp_cur_cfg_virt_rtr_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckVlanPort.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrp_cur_cfg_virt_rtr_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckL4Port.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckRServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckHsrp.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckHsrv.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckHsrv.setDescription('Enable or disable tracking HSRP advertisements by VLAN for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVersion.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVersion.setDescription('The VRRP virtual router IP Version.')
vrrp_cur_cfg_virt_rtr_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 18), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIpv6Addr.setDescription('The IPv6 address of the virtual router. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
vrrp_cur_cfg_virt_rtr_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 1045))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIpv6Interval.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIpv6Interval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrp_new_cfg_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTable.setDescription('The table of VRRP virtual routers configuration in current_config.')
vrrp_new_cfg_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTableEntry.setDescription('Information about a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIndx.setDescription('The VRRP virtual router table index.')
vrrp_new_cfg_virt_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrID.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrID.setDescription('The VRRP virtual router identifier.')
vrrp_new_cfg_virt_rtr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrAddr.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrAddr.setDescription('The VRRP virtual router IP address.')
vrrp_new_cfg_virt_rtr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIfIndex.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrp_new_cfg_virt_rtr_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrInterval.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrp_new_cfg_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrPriority.setDescription('The priority value to be used by the specified VRRP virtual router.')
vrrp_new_cfg_virt_rtr_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrPreempt.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrp_new_cfg_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrState.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrState.setDescription('Enable or disable the VRRP virtual router.')
vrrp_new_cfg_virt_rtr_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrDelete.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than delete(2) has no effect on the state of the row.')
vrrp_new_cfg_virt_rtr_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrSharing.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrp_new_cfg_virt_rtr_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVirtRtrInc.')
vrrp_new_cfg_virt_rtr_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckIpIntf.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckIpIntfInc.')
vrrp_new_cfg_virt_rtr_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckVlanPort.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVlanPortInc.')
vrrp_new_cfg_virt_rtr_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckL4Port.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckRServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckHsrp.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckHsrv.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckHsrv.setDescription('Enable or disable tracking HSRP by VLAN advertisements for priority adjustment. The priority increment is defined in vrrpNewCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVersion.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVersion.setDescription('The VRRP virtual router IP Version.')
vrrp_new_cfg_virt_rtr_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 19), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIpv6Addr.setDescription('The IPv6 address of the virtual router. Address should be 4-byte haxadecimal colon notation. Valid IPv6 address should be in any of the following forms xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx or xxxx::xxxx:xxxx:xxxx:xxxx or ::xxxx')
vrrp_new_cfg_virt_rtr_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIpv6Interval.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIpv6Interval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrp_if_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpIfTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
vrrpIfTableMaxSize.setDescription('The maximum number of entries in VRRP interface table.')
vrrp_cur_cfg_if_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6))
if mibBuilder.loadTexts:
vrrpCurCfgIfTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgIfTable.setDescription('The table of VRRP interface configuration in current_config.')
vrrp_cur_cfg_if_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgIfIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgIfTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgIfTableEntry.setDescription('Information about a VRRP interface.')
vrrp_cur_cfg_if_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgIfIndx.setDescription('The VRRP interface index. This is eqivalent to IfIndex.')
vrrp_cur_cfg_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('simple-text-password', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfAuthType.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgIfAuthType.setDescription('Type of authentication being used. none(1) - no authentication simple-text-password(2) - use password specified in vrrpCurCfgIfPasswd for authentication.')
vrrp_cur_cfg_if_passwd = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfPasswd.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgIfPasswd.setDescription('The password for authentication.')
vrrp_cur_cfg_if_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfIpAddr.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgIfIpAddr.setDescription('The IP address of the VRRP interface.This is eqivalent to ipCurCfgIntfAddr.')
vrrp_new_cfg_if_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7))
if mibBuilder.loadTexts:
vrrpNewCfgIfTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgIfTable.setDescription('The table of VRRP interface configuration in current_config.')
vrrp_new_cfg_if_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgIfIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgIfTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgIfTableEntry.setDescription('Information about a VRRP interface.')
vrrp_new_cfg_if_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgIfIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgIfIndx.setDescription('The VRRP interface index. This is eqivalent to IfIndex.')
vrrp_new_cfg_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('simple-text-password', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgIfAuthType.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgIfAuthType.setDescription('Type of authentication being used. none(1) - no authentication simple-text-password(2) - use password specified in vrrpNewCfgIfPasswd for authentication.')
vrrp_new_cfg_if_passwd = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgIfPasswd.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgIfPasswd.setDescription('The password for authentication.')
vrrp_new_cfg_if_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgIfDelete.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgIfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than delete(2) has no effect on the state of the row.')
vrrp_virt_rtr_grp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpVirtRtrGrpTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
vrrpVirtRtrGrpTableMaxSize.setDescription('The maximum number of entries in VRRP Group table.')
vrrp_cur_cfg_virt_rtr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTable.setDescription('The table of VRRP virtual router group in current_config.')
vrrp_cur_cfg_virt_rtr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrGrpIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTableEntry.setDescription('Information about a VRRP failover virtual router.')
vrrp_cur_cfg_virt_rtr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIndx.setDescription('The VRRP virtual router table index.')
vrrp_cur_cfg_virt_rtr_grp_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpID.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpID.setDescription('The VRRP virtual router identifier.')
vrrp_cur_cfg_virt_rtr_grp_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIfIndex.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrp_cur_cfg_virt_rtr_grp_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpInterval.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrp_cur_cfg_virt_rtr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrp_cur_cfg_virt_rtr_grp_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpPreempt.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrp_cur_cfg_virt_rtr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpState.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpState.setDescription('Enable or disable the VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpSharing.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrp_cur_cfg_virt_rtr_grp_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckVirtRtrInc.')
vrrp_cur_cfg_virt_rtr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrp_cur_cfg_virt_rtr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrp_cur_cfg_virt_rtr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckHsrv.setDescription('Enable or disable tracking HSRP by VLAN advertisements for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_grp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpVersion.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpVersion.setDescription('The VRRP virtual router group IP Version.')
vrrp_cur_cfg_virt_rtr_grp_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIpv6Interval.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIpv6Interval.setDescription('The time interval between IPv6 VRRP advertisements in seconds.')
vrrp_new_cfg_virt_rtr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTable.setDescription('The table of VRRP virtual router group configuration in new_config.')
vrrp_new_cfg_virt_rtr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrGrpIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTableEntry.setDescription('Information about a VRRP failover virtual router.')
vrrp_new_cfg_virt_rtr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIndx.setDescription('The VRRP virtual router table index.')
vrrp_new_cfg_virt_rtr_grp_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpID.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpID.setDescription('The VRRP virtual router identifier.')
vrrp_new_cfg_virt_rtr_grp_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 3), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIfIndex.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIfIndex.setDescription('The IfIndex that the VRRP virtual router is representing.')
vrrp_new_cfg_virt_rtr_grp_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpInterval.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpInterval.setDescription('The time interval between VRRP advertisements in seconds.')
vrrp_new_cfg_virt_rtr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual router.')
vrrp_new_cfg_virt_rtr_grp_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpPreempt.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpPreempt.setDescription('This is for controlling whether a higher priority Backup VRRP virtual router preempts a low priority Master. enabled(1) - allow preemption disabled(2) - prohibit preemption')
vrrp_new_cfg_virt_rtr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpState.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpState.setDescription('Enable or disable the VRRP virtual router.')
vrrp_new_cfg_virt_rtr_grp_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpDelete.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than delete(2) has no effect on the state of the row.')
vrrp_new_cfg_virt_rtr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpSharing.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpSharing.setDescription('Enable or disable load sharing of non-master virtual router.')
vrrp_new_cfg_virt_rtr_grp_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckVirtRtr.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckVirtRtr.setDescription('Enable or disable tracking other virtual routers for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVirtRtrInc.')
vrrp_new_cfg_virt_rtr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckIpIntf.setDescription('Enable or disable tracking other router interfaces for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckIpIntfInc.')
vrrp_new_cfg_virt_rtr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckVlanPortInc.')
vrrp_new_cfg_virt_rtr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpNewCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckHsrv.setDescription('Enable or disable tracking HSRP by VLAN advertisements for priority adjustment. The priority increment is defined in vrrpNewCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_grp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpVersion.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpVersion.setDescription('The VRRP virtual router group IP Version.')
vrrp_new_cfg_virt_rtr_grp_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIpv6Interval.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIpv6Interval.setDescription('The time interval between IPv6 VRRP advertisements in seconds.')
vrrp_virt_rtr_vr_grp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpVirtRtrVrGrpTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
vrrpVirtRtrVrGrpTableMaxSize.setDescription('The maximum number of entries in VRRP VrGroup table.')
vrrp_cur_cfg_virt_rtr_vr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTable.setDescription('The table of VRRP virtual router vrgroup configuration in the current config.')
vrrp_cur_cfg_virt_rtr_vr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrVrGrpIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTableEntry.setDescription('Information about setting VRRP virtual router vrgroup.')
vrrp_cur_cfg_virt_rtr_vr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpIndx.setDescription('The VRRP virtual router vrgroup table index.')
vrrp_cur_cfg_virt_rtr_vr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpName.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpName.setDescription('The VRRP virtual router vrgroup name.')
vrrp_cur_cfg_virt_rtr_vr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpState.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpState.setDescription('Enable or disable VRRP Vrgroup state ')
vrrp_cur_cfg_virt_rtr_vr_grp_bmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpBmap.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpBmap.setDescription('The virtual routers added for to this VRRP vrgroup. The selected virtual routers are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Virtual Router 9 || || || ||___ Virtual Router 8 || |____ Virtual Router 7 || . . . ||_________ Virtual Router 2 |__________ Virtual Router 1 where x : 1 - The represented Virtual Router is added 0 - The represented Virtual Router is not added')
vrrp_cur_cfg_virt_rtr_vr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckIpIntf.setDescription('Enable or disable tracking interfaces in vrgroup for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckHsrv.setDescription('Enable or disable tracking HSRP advertisements by VLAN for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_virt_rtr_no = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setDescription('The track virtual router for group.')
vrrp_cur_cfg_virt_rtr_vr_grp_add = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpAdd.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpAdd.setDescription('Specify virtual router number which needs to be added to group.')
vrrp_cur_cfg_virt_rtr_vr_grp_adver_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpAdverInterval.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpAdverInterval.setDescription('The advertisement interval for virtual router group.')
vrrp_cur_cfg_virt_rtr_vr_grp_preemption = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpPreemption.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpPreemption.setDescription('Enable/Disable preemption for virtual router group.')
vrrp_cur_cfg_virt_rtr_vr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpSharing.setStatus('current')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpSharing.setDescription('Enable/Disable sharing for virtual router group.')
vrrp_new_cfg_virt_rtr_vr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTable.setDescription('The table of VRRP virtual router vrgroup configuration in new_config.')
vrrp_new_cfg_virt_rtr_vr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrVrGrpIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTableEntry.setDescription('Information about setting VRRP virtual router Vrgroup.')
vrrp_new_cfg_virt_rtr_vr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpIndx.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpIndx.setDescription('The VRRP virtual router vrgroup table index.')
vrrp_new_cfg_virt_rtr_vr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpName.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpName.setDescription('The VRRP virtual router vrgroup name.')
vrrp_new_cfg_virt_rtr_vr_grp_add = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpAdd.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpAdd.setDescription('The VRRP virtual router to be added to this vrgroup table.')
vrrp_new_cfg_virt_rtr_vr_grp_rem = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpRem.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpRem.setDescription('The VRRP virtual router to be removed from this vrgroup table.')
vrrp_new_cfg_virt_rtr_vr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpState.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpState.setDescription('Enable or disable VRRP Vrgroup state ')
vrrp_new_cfg_virt_rtr_vr_grp_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpDelete.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
vrrp_new_cfg_virt_rtr_vr_grp_bmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 7), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpBmap.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpBmap.setDescription('The virtual routers added to this VRRP vrgroup. The selected virtual routers are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Virtual Router 9 || || || ||___ Virtual Router 8 || |____ Virtual Router 7 || . . . ||_________ Virtual Router 2 |__________ Virtual Router 1 where x : 1 - The represented Virtual Router is added 0 - The represented Virtual Router is not added')
vrrp_new_cfg_virt_rtr_vr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpPriority.setDescription('The priority value to be used by the specified VRRP virtual routers.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckIpIntf.setDescription('Enable or disable tracking interfaces in vrgroup for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckIpIntfInc.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckVlanPort.setDescription('Enable or disable tracking port state of VLAN ports for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckVlanPortInc.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckL4Port.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckL4Port.setDescription('Enable or disable tracking Layer 4 port states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckL4PortInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckRServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckRServer.setDescription('Enable or disable tracking real server states for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckRServerInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckHsrp.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckHsrp.setDescription('Enable or disable tracking HSRP advertisements for priority adjustment. the priority increment is defined in vrrpCurCfgGenTckHsrpInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckHsrv.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckHsrv.setDescription('Enable or disable tracking HSRP advertisements by VLAN for priority adjustment. The priority increment is defined in vrrpCurCfgGenTckHsrvInc. This is applied when virtual server is configured as a VRRP virtual router.')
vrrp_new_cfg_virt_rtr_vr_grp_tck_virt_rtr_no = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setDescription('The track virtual router for group.')
vrrp_new_cfg_virt_rtr_vr_grp_adver_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpAdverInterval.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpAdverInterval.setDescription('The advertisement interval for virtual router group.')
vrrp_new_cfg_virt_rtr_vr_grp_preemption = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpPreemption.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpPreemption.setDescription('Enable/Disable preemption for virtual router group.')
vrrp_new_cfg_virt_rtr_vr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpSharing.setStatus('current')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpSharing.setDescription('Enable/Disable sharing for virtual router group.')
dns_cur_cfg_primary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgPrimaryIpAddr.setStatus('current')
if mibBuilder.loadTexts:
dnsCurCfgPrimaryIpAddr.setDescription('The DNS primary IP address in the current_configuration block.')
dns_new_cfg_primary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgPrimaryIpAddr.setStatus('current')
if mibBuilder.loadTexts:
dnsNewCfgPrimaryIpAddr.setDescription('The DNS primary IP address in the new_configuration block.')
dns_cur_cfg_secondary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgSecondaryIpAddr.setStatus('current')
if mibBuilder.loadTexts:
dnsCurCfgSecondaryIpAddr.setDescription('The DNS secondary IP address in the current_configuration block.')
dns_new_cfg_secondary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgSecondaryIpAddr.setStatus('current')
if mibBuilder.loadTexts:
dnsNewCfgSecondaryIpAddr.setDescription('The DNS secondary IP address in the new_configuration block.')
dns_cur_cfg_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 191))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgDomainName.setStatus('current')
if mibBuilder.loadTexts:
dnsCurCfgDomainName.setDescription('The DNS doamin name in the current_configuration block.')
dns_new_cfg_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 191))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgDomainName.setStatus('current')
if mibBuilder.loadTexts:
dnsNewCfgDomainName.setDescription('The DNS doamin name in the new_configuration block.')
dns_cur_cfg_primary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgPrimaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
dnsCurCfgPrimaryIpv6Addr.setDescription('The DNS primary IPv6 address in the current_configuration block.')
dns_new_cfg_primary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgPrimaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
dnsNewCfgPrimaryIpv6Addr.setDescription('The DNS primary IPv6 address in the new_configuration block.')
dns_cur_cfg_secondary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgSecondaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
dnsCurCfgSecondaryIpv6Addr.setDescription('The DNS secondary IPv6 address in the current_configuration block.')
dns_new_cfg_secondary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgSecondaryIpv6Addr.setStatus('current')
if mibBuilder.loadTexts:
dnsNewCfgSecondaryIpv6Addr.setDescription('The DNS secondary IPv6 address in the new_configuration block.')
ip_nwf_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNwfTableMax.setStatus('current')
if mibBuilder.loadTexts:
ipNwfTableMax.setDescription('The maximum number of rows in the IP network filter table.')
ip_cur_cfg_nwf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2))
if mibBuilder.loadTexts:
ipCurCfgNwfTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgNwfTable.setDescription('The table of IP network filter configuration in the current_config.')
ip_cur_cfg_nwf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgNwfIndex'))
if mibBuilder.loadTexts:
ipCurCfgNwfEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgNwfEntry.setDescription('Information about an IP network filter.')
ip_cur_cfg_nwf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgNwfIndex.setDescription('The network filter number for which the NWF is related.')
ip_cur_cfg_nwf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfAddr.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgNwfAddr.setDescription('The IP address of the network filter.')
ip_cur_cfg_nwf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfMask.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgNwfMask.setDescription('The subnet mask of the network filter.')
ip_cur_cfg_nwf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgNwfState.setDescription('Enable or disable the network filter.')
ip_new_cfg_nwf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3))
if mibBuilder.loadTexts:
ipNewCfgNwfTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfTable.setDescription('The table of IP network filter configuration in the current_config.')
ip_new_cfg_nwf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgNwfIndex'))
if mibBuilder.loadTexts:
ipNewCfgNwfEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfEntry.setDescription('Information about an IP network filter.')
ip_new_cfg_nwf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgNwfIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfIndex.setDescription('The network filter number for which the NWF is related.')
ip_new_cfg_nwf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfAddr.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfAddr.setDescription('The IP address of the network filter.')
ip_new_cfg_nwf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfMask.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfMask.setDescription('The subnet mask of the network filter.')
ip_new_cfg_nwf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfState.setDescription('Enable or disable the network filter.')
ip_new_cfg_nwf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfDelete.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgNwfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_rmap_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRmapTableMax.setStatus('current')
if mibBuilder.loadTexts:
ipRmapTableMax.setDescription('The maximum number of rows in the IP route map table.')
ip_cur_cfg_rmap_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2))
if mibBuilder.loadTexts:
ipCurCfgRmapTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapTable.setDescription('The table of IP route map configuration in the current_config.')
ip_cur_cfg_rmap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgRmapIndex'))
if mibBuilder.loadTexts:
ipCurCfgRmapEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapEntry.setDescription('Information about an IP route map.')
ip_cur_cfg_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapIndex.setDescription('The route map number for which the RMAP is related.')
ip_cur_cfg_rmap_lp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapLp.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapLp.setDescription('The local-preference of the route map. 4294967295 means none')
ip_cur_cfg_rmap_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapMetric.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapMetric.setDescription('The metric of the route map. 4294967295 means none')
ip_cur_cfg_rmap_prec = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapPrec.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapPrec.setDescription('The precedence of the route map.')
ip_cur_cfg_rmap_weight = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapWeight.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapWeight.setDescription('The weight of the route map. 65535 means none')
ip_cur_cfg_rmap_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapState.setDescription('Enable or disable the route map.')
ip_cur_cfg_rmap_ap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapAp.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapAp.setDescription('The as-path prepend of the matched route. Up to 3 AS number can be displayed for the string. The usuage is:<AS number> [<AS number>][ <AS number>]')
ip_cur_cfg_rmap_metric_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapMetricType.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRmapMetricType.setDescription('The OSPF metric-type of the matched route.')
ip_new_cfg_rmap_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3))
if mibBuilder.loadTexts:
ipNewCfgRmapTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapTable.setDescription('The table of IP route map configuration in the current_config.')
ip_new_cfg_rmap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgRmapIndex'))
if mibBuilder.loadTexts:
ipNewCfgRmapEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapEntry.setDescription('Information about an IP route map.')
ip_new_cfg_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgRmapIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapIndex.setDescription('The route map number for which the RMAP is related.')
ip_new_cfg_rmap_lp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapLp.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapLp.setDescription('The local-preference of the route map. 4294967295 means none')
ip_new_cfg_rmap_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapMetric.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapMetric.setDescription('The metric of the route map. 4294967295 means none')
ip_new_cfg_rmap_prec = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapPrec.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapPrec.setDescription('The precedence of the route map.')
ip_new_cfg_rmap_weight = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapWeight.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapWeight.setDescription('The weight of the route map. 65535 means none')
ip_new_cfg_rmap_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapState.setDescription('Enable or disable the route map.')
ip_new_cfg_rmap_ap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapAp.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapAp.setDescription('The as-path prepend of the matched route. Up to 3 AS number can be displayed for the string. The usuage is:<AS number> [<AS number>][ <AS number>]')
ip_new_cfg_rmap_metric_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapMetricType.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapMetricType.setDescription('The OSPF metric-type of the matched route.')
ip_new_cfg_rmap_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapDelete.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRmapDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_alist_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipAlistTableMax.setStatus('current')
if mibBuilder.loadTexts:
ipAlistTableMax.setDescription('The maximum number of rows in the IP route map table.')
ip_cur_cfg_alist_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5))
if mibBuilder.loadTexts:
ipCurCfgAlistTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistTable.setDescription('The table of IP route map access list configuration in the current_config.')
ip_cur_cfg_alist_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistIndex'))
if mibBuilder.loadTexts:
ipCurCfgAlistEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistEntry.setDescription('Information about an IP route map.')
ip_cur_cfg_alist_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistRmapIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistRmapIndex.setDescription('The route map number for which the RMAP is related.')
ip_cur_cfg_alist_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistIndex.setDescription('The access list number for which the access list is related.')
ip_cur_cfg_alist_nwf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistNwf.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistNwf.setDescription('The network filter number of the route map access list. 0 means none')
ip_cur_cfg_alist_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistMetric.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistMetric.setDescription('The metric of the route map access list. 4294967295 means none')
ip_cur_cfg_alist_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistAction.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistAction.setDescription('Action of the route map access list.')
ip_cur_cfg_alist_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAlistState.setDescription('Enable or disable the route map access list.')
ip_new_cfg_alist_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6))
if mibBuilder.loadTexts:
ipNewCfgAlistTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistTable.setDescription('The table of IP route map access list configuration in the current_config.')
ip_new_cfg_alist_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAlistRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAlistIndex'))
if mibBuilder.loadTexts:
ipNewCfgAlistEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistEntry.setDescription('Information about an IP route map.')
ip_new_cfg_alist_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAlistRmapIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistRmapIndex.setDescription('The route map number for which the RMAP is related.')
ip_new_cfg_alist_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAlistIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistIndex.setDescription('The access list number for which the access list is related.')
ip_new_cfg_alist_nwf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistNwf.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistNwf.setDescription('The network filter number of the route map access list. 0 means none')
ip_new_cfg_alist_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistMetric.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistMetric.setDescription('The metric of the route map access list. 4294967295 means none')
ip_new_cfg_alist_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistAction.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistAction.setDescription('Action of the route map access list.')
ip_new_cfg_alist_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistState.setDescription('Enable or disable the route map access list.')
ip_new_cfg_alist_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistDelete.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAlistDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_aspath_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipAspathTableMax.setStatus('current')
if mibBuilder.loadTexts:
ipAspathTableMax.setDescription('The maximum number of rows in the IP route map table.')
ip_cur_cfg_aspath_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8))
if mibBuilder.loadTexts:
ipCurCfgAspathTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathTable.setDescription('The table of IP route map access path configuration.')
ip_cur_cfg_aspath_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAspathRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistIndex'))
if mibBuilder.loadTexts:
ipCurCfgAspathEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathEntry.setDescription('Information about an IP route map.')
ip_cur_cfg_aspath_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathRmapIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathRmapIndex.setDescription('The route map number for which the RMAP is related.')
ip_cur_cfg_aspath_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathIndex.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathIndex.setDescription('The access path number for which the access list is related.')
ip_cur_cfg_aspath_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathAS.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathAS.setDescription('The AS number of the route map access path. 0 means none')
ip_cur_cfg_aspath_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathAction.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathAction.setDescription('Action of the route map access path.')
ip_cur_cfg_aspath_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathState.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgAspathState.setDescription('Enable or disable the route map access path.')
ip_new_cfg_aspath_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9))
if mibBuilder.loadTexts:
ipNewCfgAspathTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathTable.setDescription('The table of IP route map access path configuration')
ip_new_cfg_aspath_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAspathRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAspathIndex'))
if mibBuilder.loadTexts:
ipNewCfgAspathEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathEntry.setDescription('Information about an IP route map.')
ip_new_cfg_aspath_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAspathRmapIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathRmapIndex.setDescription('The route map number for which the RMAP is related.')
ip_new_cfg_aspath_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAspathIndex.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathIndex.setDescription('The access path number for which the access list is related.')
ip_new_cfg_aspath_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathAS.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathAS.setDescription('The AS number of the route map access path. 0 means none')
ip_new_cfg_aspath_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathAction.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathAction.setDescription('Action of the route map access path.')
ip_new_cfg_aspath_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathState.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathState.setDescription('Enable or disable the route map access path.')
ip_new_cfg_aspath_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathDelete.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgAspathDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
bgp_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1))
bgp_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgState.setDescription('BGP global state.')
bgp_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgState.setDescription('Globally turn BGP on or off.')
bgp_cur_cfg_local_pref = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgLocalPref.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgLocalPref.setDescription('Local preference value.')
bgp_new_cfg_local_pref = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgLocalPref.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgLocalPref.setDescription('Local Preference value.')
bgp_cur_cfg_max_as_path = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgMaxASPath.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgMaxASPath.setDescription('Maximum AS Path Length.')
bgp_new_cfg_max_as_path = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgMaxASPath.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgMaxASPath.setDescription('Maximum AS Path Length.')
bgp_cur_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgASNumber.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgASNumber.setDescription('Current autonomous system number.')
bgp_new_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgASNumber.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgASNumber.setDescription('New autonomous system number.Enter 0 to delete this number.')
bgp_peer_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpPeerTableMax.setStatus('current')
if mibBuilder.loadTexts:
bgpPeerTableMax.setDescription('The maximum number of rows in the BGP peer table.')
bgp_cur_cfg_peer_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3))
if mibBuilder.loadTexts:
bgpCurCfgPeerTable.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerTable.setDescription('The table of BGP peer configuration in the current_config.')
bgp_cur_cfg_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpCurCfgPeerIndex'))
if mibBuilder.loadTexts:
bgpCurCfgPeerEntry.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerEntry.setDescription('Information about a BGP peer.')
bgp_cur_cfg_peer_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerIndex.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerIndex.setDescription('The BGP peer number for which the BGP peer table is related.')
bgp_cur_cfg_peer_remote_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerRemoteAddr.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerRemoteAddr.setDescription('The remote IP address of the BGP peer.')
bgp_cur_cfg_peer_remote_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerRemoteAs.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerRemoteAs.setDescription('The remote AS number of the BGP peer. 0 means none')
bgp_cur_cfg_peer_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerTtl.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerTtl.setDescription('The time-to-live value of the BGP peer IP datagram. ')
bgp_cur_cfg_peer_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerState.setDescription('Enable or disable the peer.')
bgp_cur_cfg_peer_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerMetric.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerMetric.setDescription("The metric value of the BGP peer. A value of '0' means none")
bgp_cur_cfg_peer_default_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('import', 2), ('originate', 3), ('redistribute', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerDefaultAction.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerDefaultAction.setDescription('The value of default route action.')
bgp_cur_cfg_peer_ospf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerOspfState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerOspfState.setDescription('Enable or disable advertising OSPF routes.')
bgp_cur_cfg_peer_fixed_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerFixedState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerFixedState.setDescription('Enable or disable advertising fixed routes.')
bgp_cur_cfg_peer_static_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerStaticState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerStaticState.setDescription('Enable or disable advertising static routes.')
bgp_cur_cfg_peer_vip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerVipState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerVipState.setDescription('Enable or disable VIP static routes.')
bgp_cur_cfg_peer_in_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 16), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerInRmapList.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerInRmapList.setDescription('The route maps present in the in route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgp_cur_cfg_peer_out_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 17), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgp_cur_cfg_peer_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerHoldTime.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerHoldTime.setDescription('The Hold Time value of the BGP peer IP datagram. ')
bgp_cur_cfg_peer_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 21845))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerKeepAlive.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerKeepAlive.setDescription('The KeepAlive Time value of the BGP peer IP datagram. ')
bgp_cur_cfg_peer_min_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerMinTime.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerMinTime.setDescription('The min time between advertisements of the BGP peer IP datagram. ')
bgp_cur_cfg_peer_con_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerConRetry.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerConRetry.setDescription('The Connect Retry Timer Interval value of the BGP peer IP datagram. ')
bgp_cur_cfg_peer_min_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(30, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerMinAS.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerMinAS.setDescription('The minimum time between route originations of the BGP peer IP datagram.')
bgp_cur_cfg_peer_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerRipState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgPeerRipState.setDescription('Enable or disable RIP static routes.')
bgp_new_cfg_peer_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4))
if mibBuilder.loadTexts:
bgpNewCfgPeerTable.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerTable.setDescription('The table of BGP peer configuration in the current_config.')
bgp_new_cfg_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpNewCfgPeerIndex'))
if mibBuilder.loadTexts:
bgpNewCfgPeerEntry.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerEntry.setDescription('Information about a BGP peer.')
bgp_new_cfg_peer_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgPeerIndex.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerIndex.setDescription('The BGP peer number for which the BGP peer table is related.')
bgp_new_cfg_peer_remote_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoteAddr.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoteAddr.setDescription('The remote IP address of the BGP peer.')
bgp_new_cfg_peer_remote_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoteAs.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoteAs.setDescription('The remote AS number of the BGP peer. 0 means none')
bgp_new_cfg_peer_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerTtl.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerTtl.setDescription('The time-to-live value of the BGP peer IP datagram. ')
bgp_new_cfg_peer_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerState.setDescription('Enable or disable the peer.')
bgp_new_cfg_peer_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerDelete.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
bgp_new_cfg_peer_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerMetric.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerMetric.setDescription("The metric value of the BGP peer. A value of '0' means none")
bgp_new_cfg_peer_default_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('import', 2), ('originate', 3), ('redistribute', 4)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerDefaultAction.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerDefaultAction.setDescription('The value of default route action.')
bgp_new_cfg_peer_ospf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerOspfState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerOspfState.setDescription('Enable or disable advertising OSPF routes.')
bgp_new_cfg_peer_fixed_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerFixedState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerFixedState.setDescription('Enable or disable advertising fixed routes.')
bgp_new_cfg_peer_static_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerStaticState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerStaticState.setDescription('Enable or disable advertising static routes.')
bgp_new_cfg_peer_vip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerVipState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerVipState.setDescription('Enable or disable VIP static routes.')
bgp_new_cfg_peer_in_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 16), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgPeerInRmapList.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerInRmapList.setDescription('The route maps present in the in route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgp_new_cfg_peer_out_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 17), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgPeerOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
bgp_new_cfg_peer_add_in_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 18), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerAddInRmap.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerAddInRmap.setDescription('The route map to be add into in-rmap list. When read, 0 is returned.')
bgp_new_cfg_peer_add_out_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 19), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerAddOutRmap.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
bgp_new_cfg_peer_remove_in_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 20), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoveInRmap.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoveInRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
bgp_new_cfg_peer_remove_out_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 21), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
bgp_new_cfg_peer_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerHoldTime.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerHoldTime.setDescription('The Hold Time value of the BGP peer IP datagram. ')
bgp_new_cfg_peer_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 21845))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerKeepAlive.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerKeepAlive.setDescription('The KeepAlive Time value of the BGP peer IP datagram. ')
bgp_new_cfg_peer_min_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerMinTime.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerMinTime.setDescription('The mininum time between advertisements of the BGP peer IP datagram. ')
bgp_new_cfg_peer_con_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerConRetry.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerConRetry.setDescription('The Connect Retry Timer Interval value of the BGP peer IP datagram. ')
bgp_new_cfg_peer_min_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(30, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerMinAS.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerMinAS.setDescription('The minimum time between route originations of the BGP peer IP datagram. ')
bgp_new_cfg_peer_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRipState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgPeerRipState.setDescription('Enable or disable RIP static routes.')
bgp_aggr_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpAggrTableMax.setStatus('current')
if mibBuilder.loadTexts:
bgpAggrTableMax.setDescription('The maximum number of rows in the BGP aggregation table.')
bgp_cur_cfg_aggr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6))
if mibBuilder.loadTexts:
bgpCurCfgAggrTable.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgAggrTable.setDescription('The table of BGP aggregation configuration.')
bgp_cur_cfg_aggr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpCurCfgAggrIndex'))
if mibBuilder.loadTexts:
bgpCurCfgAggrEntry.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgAggrEntry.setDescription('Information about a BGP aggregation.')
bgp_cur_cfg_aggr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrIndex.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgAggrIndex.setDescription('The aggregation number for which the BGP aggregation is related.')
bgp_cur_cfg_aggr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrAddr.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgAggrAddr.setDescription('The IP address of the BGP aggregation.')
bgp_cur_cfg_aggr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrMask.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgAggrMask.setDescription('The subnet mask of the BGP aggregation.')
bgp_cur_cfg_aggr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrState.setStatus('current')
if mibBuilder.loadTexts:
bgpCurCfgAggrState.setDescription('Enable or disable the BGP aggregation.')
bgp_new_cfg_aggr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7))
if mibBuilder.loadTexts:
bgpNewCfgAggrTable.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrTable.setDescription('The table of BGP aggregation configuration.')
bgp_new_cfg_aggr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpNewCfgAggrIndex'))
if mibBuilder.loadTexts:
bgpNewCfgAggrEntry.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrEntry.setDescription('Information about an BGP aggregation.')
bgp_new_cfg_aggr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgAggrIndex.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrIndex.setDescription('The aggregation number for which the BGP aggregation is related.')
bgp_new_cfg_aggr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrAddr.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrAddr.setDescription('The IP address of the BGP aggregation.')
bgp_new_cfg_aggr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrMask.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrMask.setDescription('The subnet mask of the BGP aggregation.')
bgp_new_cfg_aggr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrState.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrState.setDescription('Enable or disable the BGP aggregation.')
bgp_new_cfg_aggr_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrDelete.setStatus('current')
if mibBuilder.loadTexts:
bgpNewCfgAggrDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1))
ospf_cur_cfg_default_route_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgDefaultRouteMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgDefaultRouteMetric.setDescription('Specify the metric to be assigned.')
ospf_new_cfg_default_route_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgDefaultRouteMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgDefaultRouteMetric.setDescription('Specify the metric to be assigned.')
ospf_cur_cfg_default_route_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgDefaultRouteMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgDefaultRouteMetricType.setDescription('Specify the AS External metric type to be assigned.')
ospf_new_cfg_default_route_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgDefaultRouteMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgDefaultRouteMetricType.setDescription('Specify the AS External metric type to be assigned.')
ospf_intf_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTableMaxSize.setDescription('The maximum number of rows in the OSPF Interface table.')
ospf_area_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTableMaxSize.setDescription('The maximum number of rows in the OSPF Area table.')
ospf_range_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfRangeTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ospfRangeTableMaxSize.setDescription('The maximum number of rows in the OSPF Range table.')
ospf_virt_intf_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVirtIntfTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ospfVirtIntfTableMaxSize.setDescription('The maximum number of rows in the OSPF Virtual Interface table.')
ospf_host_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfHostTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ospfHostTableMaxSize.setDescription('The maximum number of rows in the OSPF Host table.')
ospf_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgState.setDescription('OSPF global state.')
ospf_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgState.setDescription('Globally turn OSPF on or off.')
ospf_cur_cfg_lsdb = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgLsdb.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgLsdb.setDescription('Specify the LSDB limit for external LSA.')
ospf_new_cfg_lsdb = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgLsdb.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgLsdb.setDescription('Specify the LSDB limit for external LSA.')
ospf_cur_cfg_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2))
if mibBuilder.loadTexts:
ospfCurCfgAreaTable.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaTable.setDescription('The table of OSPF Area configuration in the current_config.')
ospf_cur_cfg_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgAreaIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgAreaId'))
if mibBuilder.loadTexts:
ospfCurCfgAreaEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaEntry.setDescription('Information about a OSPF area.')
ospf_cur_cfg_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaIndex.setDescription('The OSPF area number for which the OSPF area table is related.')
ospf_cur_cfg_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaId.setDescription('The IP Address of the OSPF area.')
ospf_cur_cfg_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaSpfInterval.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaSpfInterval.setDescription('The SPF interval for the OSPF area.')
ospf_cur_cfg_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaAuthType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaAuthType.setDescription('Type of authentication being used. none(1) - no authentication password(2) - use password md5(3) - use MD5 authentication.')
ospf_cur_cfg_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaType.setDescription('Type of area being used.')
ospf_cur_cfg_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaMetric.setDescription('The Stub area metric for the OSPF area.')
ospf_cur_cfg_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgAreaState.setDescription('Globally turn OSPF on or off.')
ospf_new_cfg_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3))
if mibBuilder.loadTexts:
ospfNewCfgAreaTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaTable.setDescription('The table of OSPF Area configuration in the new_config.')
ospf_new_cfg_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgAreaIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgAreaId'))
if mibBuilder.loadTexts:
ospfNewCfgAreaEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaEntry.setDescription('Information about a OSPF area.')
ospf_new_cfg_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaIndex.setDescription('The OSPF area number for which the OSPF area table is related.')
ospf_new_cfg_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaId.setDescription('The IP Address of the OSPF area.')
ospf_new_cfg_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaSpfInterval.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaSpfInterval.setDescription('The SPF interval for the OSPF area.')
ospf_new_cfg_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaAuthType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaAuthType.setDescription('Type of authentication being used. none(1) - no authentication password(2) - use password. md5(3) - use MD5 authentication.')
ospf_new_cfg_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaType.setDescription('Type of area being used.')
ospf_new_cfg_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaMetric.setDescription('The Stub area metric for the OSPF area.')
ospf_new_cfg_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaState.setDescription('Enable or disable OSPF Area.')
ospf_new_cfg_area_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgAreaDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_new_cfg_vision_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16))
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaTable.setDescription('The table of OSPF Area configuration in the new_config.')
ospf_new_cfg_vision_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgVisionAreaIndex'))
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaEntry.setDescription('Information about a OSPF area.')
ospf_new_cfg_vision_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaIndex.setDescription('The OSPF area number for which the OSPF area table is related.')
ospf_new_cfg_vision_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaId.setDescription('The IP Address of the OSPF area.')
ospf_new_cfg_vision_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaSpfInterval.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaSpfInterval.setDescription('The SPF interval for the OSPF area.')
ospf_new_cfg_vision_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaAuthType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaAuthType.setDescription('Type of authentication being used. none(1) - no authentication password(2) - use password. md5(3) - use MD5 authentication.')
ospf_new_cfg_vision_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaType.setDescription('Type of area being used.')
ospf_new_cfg_vision_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaMetric.setDescription('The Stub area metric for the OSPF area.')
ospf_new_cfg_vision_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaState.setDescription('Enable or disable OSPF Area.')
ospf_new_cfg_vision_area_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_cur_cfg_host_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12))
if mibBuilder.loadTexts:
ospfCurCfgHostTable.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostTable.setDescription('The table of OSPF Host configuration.')
ospf_cur_cfg_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgHostIndex'))
if mibBuilder.loadTexts:
ospfCurCfgHostEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostEntry.setDescription('Information about a OSPF host.')
ospf_cur_cfg_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostIndex.setDescription('The OSPF host number for which the OSPF host table is related.')
ospf_cur_cfg_host_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostIpAddr.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostIpAddr.setDescription('The IP Address of the OSPF host.')
ospf_cur_cfg_host_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostAreaIndex.setDescription('The area index.')
ospf_cur_cfg_host_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostCost.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostCost.setDescription('Cost of the host entry.')
ospf_cur_cfg_host_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgHostState.setDescription('Enable or disable Host Entry.')
ospf_new_cfg_host_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13))
if mibBuilder.loadTexts:
ospfNewCfgHostTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostTable.setDescription('The table of OSPF Host configuration.')
ospf_new_cfg_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgHostIndex'))
if mibBuilder.loadTexts:
ospfNewCfgHostEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostEntry.setDescription('Information about a OSPF host.')
ospf_new_cfg_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgHostIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostIndex.setDescription('The OSPF host number for which the OSPF host table is related.')
ospf_new_cfg_host_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostIpAddr.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostIpAddr.setDescription('The IP Address of the OSPF host.')
ospf_new_cfg_host_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 3), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostAreaIndex.setDescription('The OSPF area index.')
ospf_new_cfg_host_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostCost.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostCost.setDescription('Cost of the host entry.')
ospf_new_cfg_host_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostState.setDescription('Enable or disable Host Entry.')
ospf_new_cfg_host_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgHostDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_mdkey_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfMdkeyTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ospfMdkeyTableMaxSize.setDescription('The maximum number of rows in the OSPF Mdkey table.')
ospf_cur_cfg_mdkey_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5))
if mibBuilder.loadTexts:
ospfCurCfgMdkeyTable.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyTable.setDescription('The table of OSPF MD5 keys in the current_config.')
ospf_cur_cfg_mdkey_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgMdkeyIndex'))
if mibBuilder.loadTexts:
ospfCurCfgMdkeyEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyEntry.setDescription('Information about an OSPF MD keys table.')
ospf_cur_cfg_mdkey_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyIndex.setDescription('The OSPF MD5 Key number for which the OSPF MdKey table is related.')
ospf_cur_cfg_mdkey_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyKey.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyKey.setDescription('The character string representing the MD5 Key.')
ospf_new_cfg_mdkey_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6))
if mibBuilder.loadTexts:
ospfNewCfgMdkeyTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyTable.setDescription('The table of OSPF MD5 keys in the new_config.')
ospf_new_cfg_mdkey_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgMdkeyIndex'))
if mibBuilder.loadTexts:
ospfNewCfgMdkeyEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyEntry.setDescription('Information about an OSPF MD keys table.')
ospf_new_cfg_mdkey_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyIndex.setDescription('The OSPF MD5 Key number for which the OSPF MdKey table is related.')
ospf_new_cfg_mdkey_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyKey.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyKey.setDescription('The character string representing the MD5 Key.')
ospf_new_cfg_mdkey_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7))
if mibBuilder.loadTexts:
ospfCurCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfTable.setDescription('The table of OSPF Interface configuration in the current_config.')
ospf_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgIntfIndex'))
if mibBuilder.loadTexts:
ospfCurCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfEntry.setDescription('Information about an OSPF Interface.')
ospf_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfIndex.setDescription('The OSPF Interface number for which the OSPF Interface table is related.')
ospf_cur_cfg_intf_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfId.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfId.setDescription('The IP Address of the OSPF interface.')
ospf_cur_cfg_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfMdkey.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfMdkey.setDescription('The MD5 key for the OSPF interface 0 (none) no MD5 authentication.')
ospf_cur_cfg_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfAreaId.setDescription('Specify Area Index.')
ospf_cur_cfg_intf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfPriority.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfPriority.setDescription('Specify interface router priority.')
ospf_cur_cfg_intf_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfCost.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfCost.setDescription('Interface Cost.')
ospf_cur_cfg_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfHello.setDescription('Hello interval in seconds.')
ospf_cur_cfg_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfDead.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfDead.setDescription('Dead interval in seconds.')
ospf_cur_cfg_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfTransit.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfTransit.setDescription('Transit delay in seconds.')
ospf_cur_cfg_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfRetrans.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfRetrans.setDescription('Retransmit interval in seconds.')
ospf_cur_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfKey.setDescription('Specify Authentication Key.')
ospf_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIntfState.setDescription('Enable or disable OSPF Interface.')
ospf_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8))
if mibBuilder.loadTexts:
ospfNewCfgIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfTable.setDescription('The table of OSPF Interface configuration in the new_config.')
ospf_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgIntfIndex'))
if mibBuilder.loadTexts:
ospfNewCfgIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfEntry.setDescription('Information about an OSPF Interface.')
ospf_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfIndex.setDescription('The OSPF Interface number for which the OSPF Interface table is related.')
ospf_new_cfg_intf_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgIntfId.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfId.setDescription('The IP Address of the OSPF interface.')
ospf_new_cfg_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfMdkey.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfMdkey.setDescription('The MD5 key for the OSPF interface 0 (none) no MD5 authentication.')
ospf_new_cfg_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfAreaId.setDescription('Specify Area Index.')
ospf_new_cfg_intf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfPriority.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfPriority.setDescription('Specify interface router priority.')
ospf_new_cfg_intf_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfCost.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfCost.setDescription('Specify interface cost.')
ospf_new_cfg_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfHello.setDescription('Hello interval in seconds.')
ospf_new_cfg_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfDead.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfDead.setDescription('Dead interval in seconds.')
ospf_new_cfg_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfTransit.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfTransit.setDescription('Transit delay in seconds.')
ospf_new_cfg_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfRetrans.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfRetrans.setDescription('Retransmit interval in seconds.')
ospf_new_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfKey.setDescription('Specify Authentication Key.')
ospf_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfState.setDescription('Enable or disable OSPF Interface.')
ospf_new_cfg_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIntfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_cur_cfg_virt_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9))
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfTable.setDescription('The table of OSPF Virtual Interface configuration in the current configuration.')
ospf_cur_cfg_virt_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgVirtIntfIndex'))
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfEntry.setDescription('Information about an OSPF virtual Interface.')
ospf_cur_cfg_virt_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfIndex.setDescription('The OSPF Virtual Interface number for which the OSPF Virtual Interface table is related.')
ospf_cur_cfg_virt_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfAreaId.setDescription('The OSPF Area Id.')
ospf_cur_cfg_virt_intf_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfNbr.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfNbr.setDescription('The IP Address of the OSPF neighbour for this virtual interface.')
ospf_cur_cfg_virt_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfMdkey.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfMdkey.setDescription('The MD5 key for the OSPF virtual interface 0 (none) no MD5 authentication.')
ospf_cur_cfg_virt_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfHello.setDescription('Hello interval in seconds.')
ospf_cur_cfg_virt_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfDead.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfDead.setDescription('Dead interval in seconds.')
ospf_cur_cfg_virt_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfTransit.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfTransit.setDescription('Transit delay in seconds.')
ospf_cur_cfg_virt_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfRetrans.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfRetrans.setDescription('Retransmit interval in seconds.')
ospf_cur_cfg_virt_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfKey.setDescription('Specify Authentication Key.')
ospf_cur_cfg_virt_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfState.setDescription('Enable or disable OSPF Interface.')
ospf_new_cfg_virt_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10))
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfTable.setDescription('The table of OSPF Virtual Interface configuration in the new_config.')
ospf_new_cfg_virt_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgVirtIntfIndex'))
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfEntry.setDescription('Information about an OSPF virtual Interface.')
ospf_new_cfg_virt_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfIndex.setDescription('The OSPF Virtual Interface number for which the OSPF Virtual Interface table is related.')
ospf_new_cfg_virt_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfAreaId.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfAreaId.setDescription('The OSPF Area Id.')
ospf_new_cfg_virt_intf_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfNbr.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfNbr.setDescription('The IP Address of the OSPF neighbour for this virtual interface.')
ospf_new_cfg_virt_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfMdkey.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfMdkey.setDescription('The MD5 key for the OSPF virtual interface 0 (none) no MD5 authentication.')
ospf_new_cfg_virt_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfHello.setDescription('Hello interval in seconds.')
ospf_new_cfg_virt_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfDead.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfDead.setDescription('Dead interval in seconds.')
ospf_new_cfg_virt_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfTransit.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfTransit.setDescription('Transit delay in seconds.')
ospf_new_cfg_virt_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfRetrans.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfRetrans.setDescription('Retransmit interval in seconds.')
ospf_new_cfg_virt_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfKey.setDescription('Specify Authentication Key. Enter string of 8 characters or None.')
ospf_new_cfg_virt_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfState.setDescription('Enable or disable OSPF Interface.')
ospf_new_cfg_virt_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_cur_cfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14))
if mibBuilder.loadTexts:
ospfCurCfgRangeTable.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeTable.setDescription('The table of OSPF summary range in the current configuration.')
ospf_cur_cfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgRangeIndex'))
if mibBuilder.loadTexts:
ospfCurCfgRangeEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeEntry.setDescription('Information about an OSPF summary range.')
ospf_cur_cfg_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeIndex.setDescription('The range number for which the OSPF summary range table is related.')
ospf_cur_cfg_range_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeAddr.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeAddr.setDescription('The IP Address of the range.')
ospf_cur_cfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeMask.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeMask.setDescription('The mask of the range.')
ospf_cur_cfg_range_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeAreaIndex.setDescription('The area index.')
ospf_cur_cfg_range_hide_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeHideState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeHideState.setDescription('The state of the hide range.')
ospf_cur_cfg_range_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeState.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRangeState.setDescription('The state of the range.')
ospf_new_cfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15))
if mibBuilder.loadTexts:
ospfNewCfgRangeTable.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeTable.setDescription('The table of OSPF summary range in the new configuration.')
ospf_new_cfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgRangeIndex'))
if mibBuilder.loadTexts:
ospfNewCfgRangeEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeEntry.setDescription('Information about an OSPF summary range.')
ospf_new_cfg_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgRangeIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeIndex.setDescription('The range number for which the OSPF summary range table is related.')
ospf_new_cfg_range_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeAddr.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeAddr.setDescription('The IP Address of the range.')
ospf_new_cfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeMask.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeMask.setDescription('The mask of the range.')
ospf_new_cfg_range_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeAreaIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeAreaIndex.setDescription('The area index.')
ospf_new_cfg_range_hide_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeHideState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeHideState.setDescription('The state of the hide range.')
ospf_new_cfg_range_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeState.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeState.setDescription('The state of the range.')
ospf_new_cfg_range_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeDelete.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRangeDelete.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other(1) is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ospf_route_redistribution = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4))
ospf_redistribute_static = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1))
ospf_cur_cfg_static_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgStaticMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgStaticMetric.setDescription('The metric to be assigned to static routes. A value of 0 indicates none.')
ospf_new_cfg_static_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgStaticMetric.setDescription('The metric to be assigned to static routes. A value of 0 indicates none.')
ospf_cur_cfg_static_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgStaticMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgStaticMetricType.setDescription('The AS External metric type for static routes.')
ospf_new_cfg_static_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgStaticMetricType.setDescription('The AS External metric type for static routes.')
ospf_cur_cfg_static_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgStaticOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgStaticOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_static_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgStaticOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgStaticOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_static_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticAddOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgStaticAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospf_new_cfg_static_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgStaticRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospf_redistribute_ebgp = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2))
ospf_cur_cfg_ebgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgEbgpMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgEbgpMetric.setDescription('The export metric to be assigned to External BGP routes. A value of 0 indicates none.')
ospf_new_cfg_ebgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgEbgpMetric.setDescription('The export metric to be assigned to External BGP routes. A value of 0 indicates none.')
ospf_cur_cfg_ebgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgEbgpMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgEbgpMetricType.setDescription('The AS External metric type for External BGP routes.')
ospf_new_cfg_ebgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgEbgpMetricType.setDescription('The AS External metric type for External BGP routes.')
ospf_cur_cfg_ebgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgEbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgEbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_ebgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgEbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgEbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_ebgp_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpAddOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgEbgpAddOutRmap.setDescription('The route map to be added into out-rmap list. When read, 0 is returned.')
ospf_new_cfg_ebgp_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgEbgpRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospf_redistribute_ibgp = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3))
ospf_cur_cfg_ibgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIbgpMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIbgpMetric.setDescription('The export metric for Internal BGP routes. A value of 0 indicates none.')
ospf_new_cfg_ibgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIbgpMetric.setDescription('The export metric for Internal BGP routes. A value of 0 indicates none.')
ospf_cur_cfg_ibgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIbgpMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIbgpMetricType.setDescription('The AS External metric type for Internal BGP routes.')
ospf_new_cfg_ibgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIbgpMetricType.setDescription('The AS External metric type for Internal BGP routes.')
ospf_cur_cfg_ibgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgIbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_ibgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgIbgpOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIbgpOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_ibgp_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpAddOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIbgpAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospf_new_cfg_ibgp_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgIbgpRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospf_redistribute_fixed = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4))
ospf_cur_cfg_fixed_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgFixedMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgFixedMetric.setDescription('The export metric for fixed routes. A value of 0 indicates none')
ospf_new_cfg_fixed_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgFixedMetric.setDescription('The export metric for fixed routes. A value of 0 indicates none')
ospf_cur_cfg_fixed_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgFixedMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgFixedMetricType.setDescription('The AS External metric type for fixed routes.')
ospf_new_cfg_fixed_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgFixedMetricType.setDescription('The AS External metric type for fixed routes.')
ospf_cur_cfg_fixed_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgFixedOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgFixedOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_fixed_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgFixedOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgFixedOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_fixed_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedAddOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgFixedAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospf_new_cfg_fixed_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgFixedRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ospf_redistribute_rip = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5))
ospf_cur_cfg_rip_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRipMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRipMetric.setDescription('The export metric for RIP routes. A value of 0 indicates none')
ospf_new_cfg_rip_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipMetric.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRipMetric.setDescription('The export metric for RIP routes. A value of 0 indicates none')
ospf_cur_cfg_rip_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRipMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRipMetricType.setDescription('The AS External metric type for RIP routes.')
ospf_new_cfg_rip_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipMetricType.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRipMetricType.setDescription('The AS External metric type for RIP routes.')
ospf_cur_cfg_rip_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRipOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfCurCfgRipOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_rip_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgRipOutRmapList.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRipOutRmapList.setDescription('The route maps present in the out route map list. The route maps are presented in a bitmap format. in receiving order: OCTET 1 OCTET 2 ..... xxxxxxxx xxxxxxxx ..... || || |_ Rmap 9 || || || ||___ Rmap 8 || |____ Rmap 7 || . . . ||_________ Rmap 2 |__________ Rmap 1 where x : 1 - The represented route map is selected 0 - The represented route map is not selected')
ospf_new_cfg_rip_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipAddOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRipAddOutRmap.setDescription('The route map to be add into out-rmap list. When read, 0 is returned.')
ospf_new_cfg_rip_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipRemoveOutRmap.setStatus('current')
if mibBuilder.loadTexts:
ospfNewCfgRipRemoveOutRmap.setDescription('The route map to be removed from out-rmap list. When read, 0 is returned.')
ip_cur_cfg_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRouterID.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgRouterID.setDescription('The router ID of the switch.')
ip_new_cfg_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgRouterID.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgRouterID.setDescription('The router ID of the switch.')
ip_cur_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgASNumber.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgASNumber.setDescription('The autonomous system (AS) number.')
ip_new_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgASNumber.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgASNumber.setDescription('The autonomous system (AS) number.')
ip_static_arp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipStaticArpTableMaxSize.setStatus('current')
if mibBuilder.loadTexts:
ipStaticArpTableMaxSize.setDescription('The maximum number of rows in the Static ARP table.')
ip_cur_cfg_static_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2))
if mibBuilder.loadTexts:
ipCurCfgStaticArpTable.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpTable.setDescription('The table of static ARPs in the current configuration block.')
ip_cur_cfg_static_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgStaticArpIndx'))
if mibBuilder.loadTexts:
ipCurCfgStaticArpEntry.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpEntry.setDescription('A row in the static ARP table')
ip_cur_cfg_static_arp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpIndx.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpIndx.setDescription('The index of the static ARP table.')
ip_cur_cfg_static_arp_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpIp.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpIp.setDescription('The IP address for the ARP entry.')
ip_cur_cfg_static_arp_mac = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 3), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpMAC.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpMAC.setDescription('The MAC address for the ARP entry.')
ip_cur_cfg_static_arp_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpVlan.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpVlan.setDescription('The VLAN for the ARP entry.')
ip_cur_cfg_static_arp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpPort.setStatus('current')
if mibBuilder.loadTexts:
ipCurCfgStaticArpPort.setDescription('The port for the ARP entry.')
ip_new_cfg_static_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3))
if mibBuilder.loadTexts:
ipNewCfgStaticArpTable.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpTable.setDescription('The table of static ARPs in the new configuration block.')
ip_new_cfg_static_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgStaticArpIndx'))
if mibBuilder.loadTexts:
ipNewCfgStaticArpEntry.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpEntry.setDescription('A row in the static ARP table')
ip_new_cfg_static_arp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgStaticArpIndx.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpIndx.setDescription('The index of the static ARP table.')
ip_new_cfg_static_arp_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpIp.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpIp.setDescription('The IP address for the ARP entry.')
ip_new_cfg_static_arp_mac = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 3), phys_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpMAC.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpMAC.setDescription('The MAC address for the ARP entry.')
ip_new_cfg_static_arp_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpVlan.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpVlan.setDescription('The VLAN for the ARP entry.')
ip_new_cfg_static_arp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 5), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpPort.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpPort.setDescription('The port for the ARP entry.')
ip_new_cfg_static_arp_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpAction.setStatus('current')
if mibBuilder.loadTexts:
ipNewCfgStaticArpAction.setDescription('When set to the value of 2 (delete), the entire row is deleted. When read, other is returned. Setting the value to anything other than 2(delete) has no effect on the state of the row.')
ip_static_arp_table_next_available_index = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipStaticArpTableNextAvailableIndex.setStatus('current')
if mibBuilder.loadTexts:
ipStaticArpTableNextAvailableIndex.setDescription('The next available index in the Static ARP table.')
rip_stat_in_packets = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInPackets.setStatus('current')
if mibBuilder.loadTexts:
ripStatInPackets.setDescription('The total number of RIP packets recieved.')
rip_stat_out_packets = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatOutPackets.setStatus('current')
if mibBuilder.loadTexts:
ripStatOutPackets.setDescription('The total number of RIP packets transmitted.')
rip_stat_in_request_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInRequestPkts.setStatus('current')
if mibBuilder.loadTexts:
ripStatInRequestPkts.setDescription('The total number of RIP requests recieved.')
rip_stat_in_response_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInResponsePkts.setStatus('current')
if mibBuilder.loadTexts:
ripStatInResponsePkts.setDescription('The total number of RIP response recieved.')
rip_stat_out_request_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatOutRequestPkts.setStatus('current')
if mibBuilder.loadTexts:
ripStatOutRequestPkts.setDescription('The total number of RIP requests transmitted.')
rip_stat_out_response_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatOutResponsePkts.setStatus('current')
if mibBuilder.loadTexts:
ripStatOutResponsePkts.setDescription('The total number of RIP responses transmitted.')
rip_stat_route_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatRouteTimeout.setStatus('current')
if mibBuilder.loadTexts:
ripStatRouteTimeout.setDescription('The total number of RIP route timeouts.')
rip_stat_in_bad_size_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadSizePkts.setStatus('current')
if mibBuilder.loadTexts:
ripStatInBadSizePkts.setDescription('The total number of bad size RIP packets recieved.')
rip_stat_in_bad_version = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadVersion.setStatus('current')
if mibBuilder.loadTexts:
ripStatInBadVersion.setDescription('The total number of RIP bad versions recieved.')
rip_stat_in_bad_zeros = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadZeros.setStatus('current')
if mibBuilder.loadTexts:
ripStatInBadZeros.setDescription('The total number of RIP bad zeros recieved.')
rip_stat_in_bad_source_port = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadSourcePort.setStatus('current')
if mibBuilder.loadTexts:
ripStatInBadSourcePort.setDescription('The total number of RIP bad source port recieved.')
rip_stat_in_bad_source_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadSourceIP.setStatus('current')
if mibBuilder.loadTexts:
ripStatInBadSourceIP.setDescription('The total number of RIP bad source IP recieved.')
rip_stat_in_self_rcv_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInSelfRcvPkts.setStatus('current')
if mibBuilder.loadTexts:
ripStatInSelfRcvPkts.setDescription('The total number of RIP packets from self received.')
tcp_stat_cur_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tcpStatCurConn.setStatus('current')
if mibBuilder.loadTexts:
tcpStatCurConn.setDescription('The total number of outstanding TCP sessions that are currently opened.')
tcp_stat_cur_in_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tcpStatCurInConn.setStatus('current')
if mibBuilder.loadTexts:
tcpStatCurInConn.setDescription('The total number of remotely-initiated TCP connections.')
tcp_stat_cur_out_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tcpStatCurOutConn.setStatus('current')
if mibBuilder.loadTexts:
tcpStatCurOutConn.setDescription('The total number of switch-originated TCP connection requests.')
arp_stat_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 1), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpStatEntries.setStatus('current')
if mibBuilder.loadTexts:
arpStatEntries.setDescription('The current number of ARP entries.')
arp_stat_high_water = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpStatHighWater.setStatus('current')
if mibBuilder.loadTexts:
arpStatHighWater.setDescription('The highest number of ARP entries.')
arp_stat_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpStatMaxEntries.setStatus('current')
if mibBuilder.loadTexts:
arpStatMaxEntries.setDescription('The maximum number of ARP entries.')
route_stat_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 1), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
routeStatEntries.setStatus('current')
if mibBuilder.loadTexts:
routeStatEntries.setDescription('The current number of IP routes.')
route_stat_high_water = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
routeStatHighWater.setStatus('current')
if mibBuilder.loadTexts:
routeStatHighWater.setDescription('The highest number of IP routes.')
route_stat_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
routeStatMaxEntries.setStatus('current')
if mibBuilder.loadTexts:
routeStatMaxEntries.setDescription('The maximum number of IP routes.')
dns_stat_in_good_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsStatInGoodDnsRequests.setStatus('current')
if mibBuilder.loadTexts:
dnsStatInGoodDnsRequests.setDescription('The total number of DNS request packets which are received.')
dns_stat_in_bad_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsStatInBadDnsRequests.setStatus('current')
if mibBuilder.loadTexts:
dnsStatInBadDnsRequests.setDescription('The total number of DNS request packets received that were dropped.')
dns_stat_out_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsStatOutDnsRequests.setStatus('current')
if mibBuilder.loadTexts:
dnsStatOutDnsRequests.setDescription('The total number of DNS response packets that have been transmitted.')
vrrp_stat_in_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpStatInAdvers.setStatus('current')
if mibBuilder.loadTexts:
vrrpStatInAdvers.setDescription('The number of good VRRP advertisements which are received.')
vrrp_stat_out_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpStatOutAdvers.setStatus('current')
if mibBuilder.loadTexts:
vrrpStatOutAdvers.setDescription('The number of good VRRP advertisements which are transmitted.')
vrrp_stat_out_bad_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpStatOutBadAdvers.setStatus('current')
if mibBuilder.loadTexts:
vrrpStatOutBadAdvers.setDescription('The number of bad VRRP advertisements which are received.')
ip_clear_stats = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipClearStats.setStatus('current')
if mibBuilder.loadTexts:
ipClearStats.setDescription('Setting this to clear(2) results in clearing the IP statistics.')
if_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2))
if mibBuilder.loadTexts:
ifStatsTable.setStatus('current')
if mibBuilder.loadTexts:
ifStatsTable.setDescription('The table of Interface Statistics.')
if_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ifStatsIndex'))
if mibBuilder.loadTexts:
ifStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ifStatsEntry.setDescription('IP Interface statistics.')
if_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifStatsIndex.setStatus('current')
if mibBuilder.loadTexts:
ifStatsIndex.setDescription('The index of the IP interface for which these statistics apply.')
if_clear_stats = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifClearStats.setStatus('current')
if mibBuilder.loadTexts:
ifClearStats.setDescription('Setting this to clear(2) results in clearing the statistics for this IP interface (if) stats.')
ospf_general_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1))
ospf_cum_rx_tx_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1))
ospf_cum_nbr_change_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2))
ospf_cum_intf_change_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3))
ospf_timers_kick_off_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4))
ospf_area = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2))
ospf_area_rx_tx_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1))
if mibBuilder.loadTexts:
ospfAreaRxTxStats.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxTxStats.setDescription('The table of OSPF Area Rx/Tx Statistics.')
ospf_area_rx_tx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaRxTxIndex'))
if mibBuilder.loadTexts:
ospfAreaRxTxStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxTxStatsEntry.setDescription('Rx Tx packet Statistics about a OSPF area.')
ospf_area_rx_tx_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxTxIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxTxIndex.setDescription('The index of the ospf Area for which these statistics apply.')
ospf_area_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxPkts.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxPkts.setDescription('The total number of OSPF packets received in this OSPF area.')
ospf_area_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxPkts.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTxPkts.setDescription('The total number of OSPF packets transmitted in this OSPF area.')
ospf_area_rx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxHello.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxHello.setDescription('The total number of Hello packets received in this OSPF area.')
ospf_area_tx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxHello.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTxHello.setDescription('The total number of Hello packets transmitted in this OSPF area.')
ospf_area_rx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxDatabase.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxDatabase.setDescription('The total number of Database Description packets transmitted for this OSPF area.')
ospf_area_tx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxDatabase.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTxDatabase.setDescription('The total number of Database Description packets transmitted for this OSPF area.')
ospf_area_rxls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxlsReqs.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxlsReqs.setDescription('The total number of Link State Request packets received for this OSPF area.')
ospf_area_txls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxlsReqs.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTxlsReqs.setDescription('The total number of Link State Request packets transmitted for this OSPF area.')
ospf_area_rxls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxlsAcks.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxlsAcks.setDescription('The total number of Link State Acknowledgement packets received for this OSPF area.')
ospf_area_txls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxlsAcks.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTxlsAcks.setDescription('The total number of Link State Acknowledgement packets transmitted for this OSPF area.')
ospf_area_rxls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxlsUpdates.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaRxlsUpdates.setDescription('The total number of Link State Update packets received for this OSPF area.')
ospf_area_txls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxlsUpdates.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaTxlsUpdates.setDescription('The total number of Link State Update packets transmitted for this OSPF area.')
ospf_area_nbr_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2))
if mibBuilder.loadTexts:
ospfAreaNbrChangeStats.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrChangeStats.setDescription('The table of OSPF Area Neighbour Statistics.')
ospf_area_nbr_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaNbrIndex'))
if mibBuilder.loadTexts:
ospfAreaNbrChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrChangeStatsEntry.setDescription('Area Neighbour Change Statistics about a OSPF area.')
ospf_area_nbr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrIndex.setDescription('The index of the ospf Area for which these statistics apply.')
ospf_area_nbrhello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrhello.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrhello.setDescription('The total number of Hello packets received from neighbours in this OSPF area.')
ospf_area_nbr_start = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrStart.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrStart.setDescription('The total number of neighbours in this state (i.e. an indication that Hello packets should now be sent to the neighbour at intervals of HelloInterval seconds.) in this OSPF area.')
ospf_area_nbr_adjoint_ok = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrAdjointOk.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrAdjointOk.setDescription('The total number of decisions to be made (again) as to whether an adjacency should be established/maintained with the neighbour. for this OSPF area.')
ospf_area_nbr_negotiation_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrNegotiationDone.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrNegotiationDone.setDescription('The total number of neighbours in this state wherein the Master/slave relationship has been negotiated, and sequence numbers have been exchanged, for this OSPF area.')
ospf_area_nbr_exchange_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrExchangeDone.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrExchangeDone.setDescription("The total number of neighbours in this state (i.e. in an adjacency's final state) having transimitted a full sequence of Database Description packets, for this OSPF area.")
ospf_area_nbr_bad_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrBadRequests.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrBadRequests.setDescription('The sum total number of Link State Requests which have been received for a link state advertisement not contained in the database across this OSPF area.')
ospf_area_nbr_bad_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrBadSequence.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrBadSequence.setDescription('The total number of Database Description packets which have been received that either a) has an unexpected DD sequence number b) Unexpectedly has the init bit set c) Has an options field differing from the last Options field received in a Database Description packet. Any of these conditions indicate that some error has occured during adjacency establishment for this OSPF area.')
ospf_area_nbr_loading_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrLoadingDone.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrLoadingDone.setDescription('The total number of link state updates received for all out-of-date portions of the database in this OSPF area.')
ospf_area_nbr_n1way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrN1way.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrN1way.setDescription('The total number of Hello packets received from neighbours, in which this router is not mentioned in this OSPF area.')
ospf_area_nbr_rst_ad = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrRstAd.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrRstAd.setDescription('The total number of times the Neighbour adjacency has been reset across this OPSF area.')
ospf_area_nbr_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrDown.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrDown.setDescription('The total number of Neighbouring routers down (i.e. in the initial state of a neighbour conversation.) in this OSPF area.')
ospf_area_nbr_n2way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrN2way.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaNbrN2way.setDescription('The total number of Hello packets received from neighbours, in which this router is mentioned in this OSPF area.')
ospf_area_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3))
if mibBuilder.loadTexts:
ospfAreaChangeStats.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaChangeStats.setDescription('The table of OSPF Area Change Statistics.')
ospf_area_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaIntfIndex'))
if mibBuilder.loadTexts:
ospfAreaChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaChangeStatsEntry.setDescription('Area Change Statistics about a OSPF area.')
ospf_area_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfIndex.setDescription('The index of the OSPF Area for which these statistics apply.')
ospf_area_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfHello.setDescription('The total number of Hello packets sent on this OSPF area.')
ospf_area_intf_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfDown.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfDown.setDescription('The total number of interfaces down in this OSPF area.')
ospf_area_intf_loop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfLoop.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfLoop.setDescription('The total number of interfaces no longer connected to the attatched network in this OSPF area.')
ospf_area_intf_unloop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfUnloop.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfUnloop.setDescription('The total number of interfaces connected to the attatched network in this OSPF area..')
ospf_area_intf_wait_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfWaitTimer.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfWaitTimer.setDescription('The total number of times the Wait Timer has been fired, (indicating the end of the waiting period that is required before electing a (Backup) Designated Router) for this OSPF area.')
ospf_area_intf_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfBackup.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfBackup.setDescription('The total number of Backup Designated Routers on the attatched network for this OSPF area.')
ospf_area_intf_nbr_change = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfNbrChange.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaIntfNbrChange.setDescription('The total number of changes in the set of bidirectional neighbours associated with the interface in this OSPF area.')
ospf_area_error_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4))
if mibBuilder.loadTexts:
ospfAreaErrorStats.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrorStats.setDescription('The table of OSPF Area Error Statistics.')
ospf_area_error_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaErrIndex'))
if mibBuilder.loadTexts:
ospfAreaErrorStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrorStatsEntry.setDescription('Error Statistics for an OSPF area.')
ospf_area_err_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrIndex.setDescription('The index of the OSPF Area for which these statistics apply.')
ospf_area_err_auth_failure = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrAuthFailure.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrAuthFailure.setDescription('The total number of packets received with a wrong password in this area.')
ospf_area_err_netmask_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrNetmaskMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrNetmaskMismatch.setDescription('The total number of packets received with a wrong netmask in this area.')
ospf_area_err_hello_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrHelloMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrHelloMismatch.setDescription('The total number of packets received with a different hello interval in this area.')
ospf_area_err_dead_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrDeadMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrDeadMismatch.setDescription('The total number of packets received with a different dead interval in this area.')
ospf_area_err_options_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrOptionsMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrOptionsMismatch.setDescription('The total number of packets received with a different options in this area.')
ospf_area_err_unknown_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrUnknownNbr.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaErrUnknownNbr.setDescription('The total number of packets received from an unknown neighbour in this area.')
ospf_interface = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3))
ospf_intf_rx_tx_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1))
if mibBuilder.loadTexts:
ospfIntfRxTxStats.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxTxStats.setDescription('The table of OSPF Interface Rx/Tx packet Statistics.')
ospf_intf_rx_tx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfRxTxIndex'))
if mibBuilder.loadTexts:
ospfIntfRxTxStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxTxStatsEntry.setDescription('OSPF interface Rx/Tx packet statistics.')
ospf_intf_rx_tx_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxTxIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxTxIndex.setDescription('The OSPF interface for which these statistics apply.')
ospf_intf_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxPkts.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxPkts.setDescription('The total number of OSPF packets received for this OSPF interface.')
ospf_intf_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxPkts.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTxPkts.setDescription('The total number of OSPF packets transmitted for this OSPF interface.')
ospf_intf_rx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxHello.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxHello.setDescription('The total number of Hello packets received for this OSPF interface.')
ospf_intf_tx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxHello.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTxHello.setDescription('The total number of Hello packets transmitted for this OSPF interface.')
ospf_intf_rx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxDatabase.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxDatabase.setDescription('The total number of Database Description packets received for this OSPF interface.')
ospf_intf_tx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxDatabase.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTxDatabase.setDescription('The total number of Database Description packets transmitted for this OSPF interface.')
ospf_intf_rxls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxlsReqs.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxlsReqs.setDescription('The total number of Link State Request packets received for this OSPF interface.')
ospf_intf_txls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxlsReqs.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTxlsReqs.setDescription('The total number of Link State Request packets transmitted for this OSPF interface.')
ospf_intf_rxls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxlsAcks.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxlsAcks.setDescription('The total number of Link State Acknowledgement packets received for this OSPF interface.')
ospf_intf_txls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxlsAcks.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTxlsAcks.setDescription('The total number of Link State Acknowledgement packets transmitted for this OSPF interface.')
ospf_intf_rxls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxlsUpdates.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfRxlsUpdates.setDescription('The total number of Link State Update packets received for this OSPF interface.')
ospf_intf_txls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxlsUpdates.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfTxlsUpdates.setDescription('The total number of Link State Update packets transmitted for this OSPF interface.')
ospf_intf_nbr_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2))
if mibBuilder.loadTexts:
ospfIntfNbrChangeStats.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrChangeStats.setDescription('The table of OSPF Interface Neighbour change Statistics.')
ospf_intf_nbr_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfNbrIndex'))
if mibBuilder.loadTexts:
ospfIntfNbrChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrChangeStatsEntry.setDescription('OSPF interface Neighbour Change statistics.')
ospf_intf_nbr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrIndex.setDescription('The index of the OSPF Interface for which these statistics apply.')
ospf_intf_nbrhello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrhello.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrhello.setDescription('The total number of Hello packets received from neighbours in this OSPF interface.')
ospf_intf_nbr_start = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrStart.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrStart.setDescription('The total number of neighbours in this state (i.e. an indication that Hello packets should now be sent to the neighbour at intervals of HelloInterval seconds.) in this OSPF interface.')
ospf_intf_nbr_adjoint_ok = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrAdjointOk.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrAdjointOk.setDescription('The total number of decisions to be made (again) as to whether an adjacency should be established/maintained with the neighbour. for this OSPF interface.')
ospf_intf_nbr_negotiation_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrNegotiationDone.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrNegotiationDone.setDescription('The total number of neighbours in this state wherein the Master/slave relationship has been negotiated, and sequence numbers have been exchanged, for this OSPF interface.')
ospf_intf_nbr_exchange_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrExchangeDone.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrExchangeDone.setDescription("The total number of neighbours in this state (i.e. in an adjacency's final state) having transimitted a full sequence of Database Description packets, for this OSPF interface.")
ospf_intf_nbr_bad_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrBadRequests.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrBadRequests.setDescription('The total number of Link State Requests which have been received for a link state advertisement not contained in the database for this interface.')
ospf_intf_nbr_bad_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrBadSequence.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrBadSequence.setDescription('The total number of Database Description packets which have been received that either a) has an unexpected DD sequence number b) Unexpectedly has the init bit set c) Has an options field differing from the last Options field received in a Database Description packet. Any of these conditions indicate that some error has occured during adjacency establishment for this interface.')
ospf_intf_nbr_loading_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrLoadingDone.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrLoadingDone.setDescription('The total number of link state updates received for all out-of-date portions of the database for this OSPF interface.')
ospf_intf_nbr_n1way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrN1way.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrN1way.setDescription('The total number of Hello packets received from neighbours, in which this router is not mentioned for this OSPF interface.')
ospf_intf_nbr_rst_ad = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrRstAd.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrRstAd.setDescription('The sum total number of times the Neighbour adjacency has been reset on this interface.')
ospf_intf_nbr_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrDown.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrDown.setDescription('The total number of Neighbouring routers down (i.e. in the initial state of a neighbour conversation.) for this interface.')
ospf_intf_nbr_n2way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrN2way.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrN2way.setDescription('The total number of Hello packets received from neighbours, in which this router is mentioned for this OSPF interface.')
ospf_intf_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3))
if mibBuilder.loadTexts:
ospfIntfChangeStats.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfChangeStats.setDescription('The table of OSPF Interface change Statistics.')
ospf_intf_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfIndex'))
if mibBuilder.loadTexts:
ospfIntfChangeStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfChangeStatsEntry.setDescription('OSPF interface Change statistics.')
ospf_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfIndex.setDescription('The index of the OSPF Interface for which these statistics apply.')
ospf_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfHello.setDescription('The total number of Hello packets sent by this interface.')
ospf_intf_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfDown.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfDown.setDescription('The total number of times the interface was down.')
ospf_intf_loop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfLoop.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfLoop.setDescription('The total number of times the interface was no longer connected to the attatched network.')
ospf_intf_unloop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfUnloop.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfUnloop.setDescription('The total number of times the interface, connected back to the attatched network.')
ospf_intf_wait_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfWaitTimer.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfWaitTimer.setDescription('The total number of times the Wait Timer has been fired, (indicating the end of the waiting period that is required before electing a (Backup) Designated Router) for this OSPF interface.')
ospf_intf_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfBackup.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfBackup.setDescription('The total number of Backup Designated Routers on the attatched network for this OSPF interface.')
ospf_intf_nbr_change = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrChange.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfNbrChange.setDescription('The total number of changes in the set of bidirectional neighbours associated with the interface for this OSPF interface.')
ospf_intf_error_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4))
if mibBuilder.loadTexts:
ospfIntfErrorStats.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrorStats.setDescription('The table of OSPF Interface Error Statistics.')
ospf_intf_error_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfErrIndex'))
if mibBuilder.loadTexts:
ospfIntfErrorStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrorStatsEntry.setDescription('Error Statistics for an OSPF area.')
ospf_intf_err_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrIndex.setDescription('The index of the OSPF Intf for which these statistics apply.')
ospf_intf_err_auth_failure = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrAuthFailure.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrAuthFailure.setDescription('The total number of packets received with a wrong password in this area.')
ospf_intf_err_netmask_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrNetmaskMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrNetmaskMismatch.setDescription('The total number of packets received with a wrong netmask in this area.')
ospf_intf_err_hello_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrHelloMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrHelloMismatch.setDescription('The total number of packets received with a different hello interval in this area.')
ospf_intf_err_dead_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrDeadMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrDeadMismatch.setDescription('The total number of packets received with a different dead interval in this area.')
ospf_intf_err_options_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrOptionsMismatch.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrOptionsMismatch.setDescription('The total number of packets received with a different options in this area.')
ospf_intf_err_unknown_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrUnknownNbr.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfErrUnknownNbr.setDescription('The total number of packets received from an unknown neighbour in this area.')
ospf_cum_rx_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxPkts.setStatus('current')
if mibBuilder.loadTexts:
ospfCumRxPkts.setDescription('The sum total of all OSPF packets received on all OSPF areas and interfaces.')
ospf_cum_tx_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxPkts.setStatus('current')
if mibBuilder.loadTexts:
ospfCumTxPkts.setDescription('The sum total of all OSPF packets transmitted on all OSPF areas and interfaces.')
ospf_cum_rx_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxHello.setStatus('current')
if mibBuilder.loadTexts:
ospfCumRxHello.setDescription('The sum total of all Hello packets received on all OSPF areas and interfaces.')
ospf_cum_tx_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxHello.setStatus('current')
if mibBuilder.loadTexts:
ospfCumTxHello.setDescription('The sum total of all Hello packets transmitted on all OSPF areas and interfaces.')
ospf_cum_rx_database = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxDatabase.setStatus('current')
if mibBuilder.loadTexts:
ospfCumRxDatabase.setDescription('The sum total of all Database Description packets received on all OSPF areas and interfaces.')
ospf_cum_tx_database = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxDatabase.setStatus('current')
if mibBuilder.loadTexts:
ospfCumTxDatabase.setDescription('The sum total of all Database Description packets transmitted on all OSPF areas and interfaces.')
ospf_cum_rxls_reqs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxlsReqs.setStatus('current')
if mibBuilder.loadTexts:
ospfCumRxlsReqs.setDescription('The sum total of all Link State Request packets received on all OSPF areas and interfaces.')
ospf_cum_txls_reqs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxlsReqs.setStatus('current')
if mibBuilder.loadTexts:
ospfCumTxlsReqs.setDescription('The sum total of all Link State Request packets transmitted on all OSPF areas and interfaces.')
ospf_cum_rxls_acks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxlsAcks.setStatus('current')
if mibBuilder.loadTexts:
ospfCumRxlsAcks.setDescription('The sum total of all Link State Acknowledgement packets received on all OSPF areas and interfaces.')
ospf_cum_txls_acks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxlsAcks.setStatus('current')
if mibBuilder.loadTexts:
ospfCumTxlsAcks.setDescription('The sum total of all Link State Acknowledgement packets transmitted on all OSPF areas and interfaces.')
ospf_cum_rxls_updates = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxlsUpdates.setStatus('current')
if mibBuilder.loadTexts:
ospfCumRxlsUpdates.setDescription('The sum total of all Link State Update packets received on all OSPF areas and interfaces.')
ospf_cum_txls_updates = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxlsUpdates.setStatus('current')
if mibBuilder.loadTexts:
ospfCumTxlsUpdates.setDescription('The sum total of all Link State Update packets transmitted on all OSPF areas and interfaces.')
ospf_cum_nbrhello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrhello.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrhello.setDescription('The sum total of all Hello packets received from neighbours on all OSPF areas and interfaces.')
ospf_cum_nbr_start = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrStart.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrStart.setDescription('The sum total number of neighbours in this state (i.e. an indication that Hello packets should now be sent to the neighbour at intervals of HelloInterval seconds.) across all OSPF areas and interfaces.')
ospf_cum_nbr_adjoint_ok = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrAdjointOk.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrAdjointOk.setDescription('The sum total number of decisions to be made (again) as to whether an adjacency should be established/maintained with the neighbour across all OSPF areas and interfaces.')
ospf_cum_nbr_negotiation_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrNegotiationDone.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrNegotiationDone.setDescription('The sum total number of neighbours in this state wherein the Master/slave relationship has been negotiated, and sequence numbers have been exchanged, across all OSPF areas and interfaces.')
ospf_cum_nbr_exchange_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrExchangeDone.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrExchangeDone.setDescription("The sum total number of neighbours in this state (i.e. in an adjacency's final state) having transimitted a full sequence of Database Description packets, across all OSPF areas and interfaces.")
ospf_cum_nbr_bad_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrBadRequests.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrBadRequests.setDescription('The sum total number of Link State Requests which have been received for a link state advertisement not contained in the database across all interfaces and OSPF areas.')
ospf_cum_nbr_bad_sequence = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrBadSequence.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrBadSequence.setDescription('The sum total number of Database Description packets which have been received that either a) has an unexpected DD sequence number b) Unexpectedly has the init bit set c) Has an options field differing from the last Options field received in a Database Description packet. Any of these conditions indicate that some error has occured during adjacency establishment for all OSPF areas and interfaces.')
ospf_cum_nbr_loading_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrLoadingDone.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrLoadingDone.setDescription('The sum total number of link state updates received for all out-of-date portions of the database across all OSPF areas and interfaces.')
ospf_cum_nbr_n1way = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrN1way.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrN1way.setDescription('The sum total number of Hello packets received from neighbours, in which this router is not mentioned across all OSPF interfaces and areas.')
ospf_cum_nbr_rst_ad = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrRstAd.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrRstAd.setDescription('The sum total number of times the Neighbour adjacency has been reset across all OPSF areas and interfaces.')
ospf_cum_nbr_down = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrDown.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrDown.setDescription('The total number of Neighbouring routers down (i.e. in the initial state of a neighbour conversation.) across all OSPF areas and interfaces.')
ospf_cum_nbr_n2way = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrN2way.setStatus('current')
if mibBuilder.loadTexts:
ospfCumNbrN2way.setDescription('The sum total number of Hello packets received from neighbours, in which this router is mentioned across all OSPF interfaces and areas.')
ospf_cum_intf_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfHello.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfHello.setDescription('The sum total number of Hello packets sent on all interfaces and areas')
ospf_cum_intf_down = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfDown.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfDown.setDescription('The sum total number of interfaces down in all OSPF areas.')
ospf_cum_intf_loop = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfLoop.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfLoop.setDescription('The sum total of interfaces no longer connected to the attatched network across all OSPF areas and interfaces.')
ospf_cum_intf_unloop = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfUnloop.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfUnloop.setDescription('The sum total number of interfaces, connected to the attatched network in all OSPF areas.')
ospf_cum_intf_wait_timer = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfWaitTimer.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfWaitTimer.setDescription('The sum total number of times the Wait Timer has been fired, (indicating the end of the waiting period that is required before electing a (Backup) Designated Router) across all OSPF areas and interfaces.')
ospf_cum_intf_backup = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfBackup.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfBackup.setDescription('The sum total number of Backup Designated Routers on the attatched network for all OSPF areas and interfaces.')
ospf_cum_intf_nbr_change = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfNbrChange.setStatus('current')
if mibBuilder.loadTexts:
ospfCumIntfNbrChange.setDescription('The sum total number of changes in the set of bidirectional neighbours associated with any interface across all OSPF areas.')
ospf_tmrs_kck_off_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffHello.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffHello.setDescription('The sum total number of times the Hello timer has been fired (which triggers the send of a Hello packet) across all OPSF areas and interfaces.')
ospf_tmrs_kck_off_retransmit = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffRetransmit.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffRetransmit.setDescription('The sum total number of times the Retransmit timer has been fired across all OPSF areas and interfaces.')
ospf_tmrs_kck_off_lsa_lock = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffLsaLock.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffLsaLock.setDescription('The sum total number of times the Lsa Lock timer has been fired across all OSPF areas and interfaces.')
ospf_tmrs_kck_off_lsa_ack = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffLsaAck.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffLsaAck.setDescription('The sum total number of times the Lsa Ack timer has been fired across all ospf areas and interfaces.')
ospf_tmrs_kck_off_dbage = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffDbage.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffDbage.setDescription('The total number of times the Dbage has been fired.')
ospf_tmrs_kck_off_summary = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffSummary.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffSummary.setDescription('The total number of times the Summary timer has been fired.')
ospf_tmrs_kck_off_ase_export = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffAseExport.setStatus('current')
if mibBuilder.loadTexts:
ospfTmrsKckOffAseExport.setDescription('The total number of times the ASE Export timer has been fired.')
ip6_in_receives = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InReceives.setStatus('current')
if mibBuilder.loadTexts:
ip6InReceives.setDescription('The total number of input datagrams received from interfaces, including those received in error.')
ip6_forw_datagrams = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6ForwDatagrams.setStatus('current')
if mibBuilder.loadTexts:
ip6ForwDatagrams.setDescription('The number of input datagrams for which this entity was not their final IP destination, as a result of which an attempt was made to find a route to forward them to that final destination.')
ip6_in_delivers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InDelivers.setStatus('current')
if mibBuilder.loadTexts:
ip6InDelivers.setDescription('The total number of input datagrams successfully delivered to IP user-protocols (including ICMP).')
ip6_in_discards = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InDiscards.setStatus('current')
if mibBuilder.loadTexts:
ip6InDiscards.setDescription('The number of input IP datagrams for which no problems were encountered to prevent their continued processing, but which were discarded (e.g., for lack of buffer space). Note that this counter does not include any datagrams discarded while awaiting re-assembly.')
ip6_in_unknown_protos = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InUnknownProtos.setStatus('current')
if mibBuilder.loadTexts:
ip6InUnknownProtos.setDescription('The number of locally-addressed datagrams received successfully but discarded because of an unknown or unsupported protocol.')
ip6_in_addr_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InAddrErrors.setStatus('current')
if mibBuilder.loadTexts:
ip6InAddrErrors.setDescription("The number of input datagrams discarded because the IP address in their IP header's destination field was not a valid address to be received at this entity.")
ip6_out_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6OutRequests.setStatus('current')
if mibBuilder.loadTexts:
ip6OutRequests.setDescription('The total number of IP datagrams which local IP user-protocols (including ICMP) supplied to IP in requests for transmission. Note that this counter does not include any datagrams counted in ipForwDatagrams.')
ip6_out_no_routes = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6OutNoRoutes.setStatus('current')
if mibBuilder.loadTexts:
ip6OutNoRoutes.setDescription("The number of IP datagrams discarded because no route could be found to transmit them to their destination. Note that this Counter32 includes any packets counted in ipForwDatagrams which meet this`no-route' criterion. Note that this includes any datagrams which a host cannot route because all of its default gateways are down.")
ip6_reasm_o_ks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6ReasmOKs.setStatus('current')
if mibBuilder.loadTexts:
ip6ReasmOKs.setDescription('The number of IP datagrams successfully re-assembled.')
ip6_reasm_fails = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6ReasmFails.setStatus('current')
if mibBuilder.loadTexts:
ip6ReasmFails.setDescription('The number of failures detected by the IP re-assembly.')
ip6icmp_in_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpInMsgs.setStatus('current')
if mibBuilder.loadTexts:
ip6icmpInMsgs.setDescription('The total number of ICMP messages received. Note that this Counter32 includes all those counted by icmpInErrors.')
ip6icmp_out_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpOutMsgs.setStatus('current')
if mibBuilder.loadTexts:
ip6icmpOutMsgs.setDescription('The total number of ICMP messages attempted to send. Note that this Counter32 includes all those counted by icmp6OutErrors.')
ip6icmp_in_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpInErrors.setStatus('current')
if mibBuilder.loadTexts:
ip6icmpInErrors.setDescription('The number of ICMP messages received but determined as having ICMP-specific errors (bad ICMP checksums, bad length, etc.).')
ip6icmp_out_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpOutErrors.setStatus('current')
if mibBuilder.loadTexts:
ip6icmpOutErrors.setDescription('The number of ICMP messages did not send due to problems discovered within ICMP such as a lack of buffers.')
icmp6_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1))
if mibBuilder.loadTexts:
icmp6StatsTable.setStatus('current')
if mibBuilder.loadTexts:
icmp6StatsTable.setDescription('Statistics for ICMP6.')
icmp6_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'icmp6StatsIndx'))
if mibBuilder.loadTexts:
icmp6StatsEntry.setStatus('current')
if mibBuilder.loadTexts:
icmp6StatsEntry.setDescription('Statistics for IGMP Snooping.')
icmp6_stats_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6StatsIndx.setStatus('current')
if mibBuilder.loadTexts:
icmp6StatsIndx.setDescription('The index of this statistics table.')
icmp6_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6IntfIndex.setStatus('current')
if mibBuilder.loadTexts:
icmp6IntfIndex.setDescription('IP interface index in interface configuration table.')
icmp6_in_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InMsgs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InMsgs.setDescription('The total number of ICMP messages received. Note that this Counter32 includes all those counted by icmpInErrors.')
icmp6_in_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InErrors.setStatus('current')
if mibBuilder.loadTexts:
icmp6InErrors.setDescription('The number of ICMP messages received but determined as having ICMP-specific errors (bad ICMP checksums, bad length, etc.).')
icmp6_in_echos = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InEchos.setStatus('current')
if mibBuilder.loadTexts:
icmp6InEchos.setDescription('The number of ICMP Echo request messages received.')
icmp6_in_echo_reps = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InEchoReps.setStatus('current')
if mibBuilder.loadTexts:
icmp6InEchoReps.setDescription('The number of ICMP Echo Reply messages received.')
icmp6_in_n_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InNSs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InNSs.setDescription('The number of neighbour solicitations received.')
icmp6_in_n_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InNAs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InNAs.setDescription('The number of neighbour advertisements received.')
icmp6_in_r_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InRSs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InRSs.setDescription('The number of router solicitations received.')
icmp6_in_r_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InRAs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InRAs.setDescription('The number of router advertisements received.')
icmp6_in_dest_unreachs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InDestUnreachs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InDestUnreachs.setDescription('The number of ICMP Destination Unreachable messages received.')
icmp6_in_time_excds = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InTimeExcds.setStatus('current')
if mibBuilder.loadTexts:
icmp6InTimeExcds.setDescription('The number of ICMP Time Exceeded messages received.')
icmp6_in_too_bigs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InTooBigs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InTooBigs.setDescription('The number of ICMP too big messages received.')
icmp6_in_parm_probs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InParmProbs.setStatus('current')
if mibBuilder.loadTexts:
icmp6InParmProbs.setDescription('The number of ICMP Parameter Problem messages received.')
icmp6_in_redirects = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InRedirects.setStatus('current')
if mibBuilder.loadTexts:
icmp6InRedirects.setDescription('The number of ICMP Redirect messages received.')
icmp6_out_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutMsgs.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutMsgs.setDescription('The total number of ICMP messages which this entity attempted to send. Note that this Counter32 includes all those counted by icmp6OutErrors.')
icmp6_out_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutErrors.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutErrors.setDescription('The number of ICMP messages which this entity did not send due to problems discovered within ICMP such as a lack of buffers.')
icmp6_out_echos = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutEchos.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutEchos.setDescription('The number of ICMP Echo request messages sent.')
icmp6_out_echo_reps = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutEchoReps.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutEchoReps.setDescription('The number of ICMP Echo Reply messages sent.')
icmp6_out_n_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutNSs.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutNSs.setDescription('The number of neighbour solicitations sent.')
icmp6_out_n_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutNAs.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutNAs.setDescription('The number of neighbour advertisements sent.')
icmp6_out_r_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutRSs.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutRSs.setDescription('The number of router solicitations sent.')
icmp6_out_r_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutRAs.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutRAs.setDescription('The number of router advertisements sent.')
icmp6_out_redirects = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutRedirects.setStatus('current')
if mibBuilder.loadTexts:
icmp6OutRedirects.setDescription('The number of ICMP Redirect messages sent. For a host, this object will always be zero, since hosts do not send redirects.')
ip6_gw_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1))
if mibBuilder.loadTexts:
ip6GwStatsTable.setStatus('current')
if mibBuilder.loadTexts:
ip6GwStatsTable.setDescription('Statistics for IP6 Gateway.')
ip6_gw_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ip6GwStatsIndex'))
if mibBuilder.loadTexts:
ip6GwStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
ip6GwStatsEntry.setDescription('Statistics for IP6 Gateway.')
ip6_gw_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwStatsIndex.setStatus('current')
if mibBuilder.loadTexts:
ip6GwStatsIndex.setDescription('The index of Gw6 statistics.')
ip6_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwIndex.setStatus('current')
if mibBuilder.loadTexts:
ip6GwIndex.setDescription('Gateway index in gateway configuration table.')
ip6_gw_echoreq = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwEchoreq.setStatus('current')
if mibBuilder.loadTexts:
ip6GwEchoreq.setDescription('The number of GW Echo request messages .')
ip6_gw_echoresp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwEchoresp.setStatus('current')
if mibBuilder.loadTexts:
ip6GwEchoresp.setDescription('The number of GW Echo response messages .')
ip6_gw_fails = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwFails.setStatus('current')
if mibBuilder.loadTexts:
ip6GwFails.setDescription('The number of GWs fails.')
ip6_gw_master = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwMaster.setStatus('current')
if mibBuilder.loadTexts:
ip6GwMaster.setDescription('The master gateway.')
ip6_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6IfIndex.setStatus('current')
if mibBuilder.loadTexts:
ip6IfIndex.setDescription('The IP6 interface.')
ip6_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwRetry.setStatus('current')
if mibBuilder.loadTexts:
ip6GwRetry.setDescription('The number of retries.')
ip_intf_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1))
if mibBuilder.loadTexts:
ipIntfInfoTable.setStatus('current')
if mibBuilder.loadTexts:
ipIntfInfoTable.setDescription('The table of IP interface information.')
intf_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'intfInfoIndex'))
if mibBuilder.loadTexts:
intfInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
intfInfoEntry.setDescription('A row in IP interface information table.')
intf_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoIndex.setStatus('current')
if mibBuilder.loadTexts:
intfInfoIndex.setDescription('The interface number for which the information is related.')
intf_info_ipver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoIpver.setStatus('current')
if mibBuilder.loadTexts:
intfInfoIpver.setDescription('The type of IP address.')
intf_info_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoAddr.setStatus('current')
if mibBuilder.loadTexts:
intfInfoAddr.setDescription('The IP address of the interface.')
intf_info_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoNetMask.setStatus('current')
if mibBuilder.loadTexts:
intfInfoNetMask.setDescription('The subnet mask of the interface.')
intf_info_bcast_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoBcastAddr.setStatus('current')
if mibBuilder.loadTexts:
intfInfoBcastAddr.setDescription('The broadcast address of the interface.')
intf_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoVlan.setStatus('current')
if mibBuilder.loadTexts:
intfInfoVlan.setDescription('The VLAN number for this interface.')
intf_info_status = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoStatus.setStatus('current')
if mibBuilder.loadTexts:
intfInfoStatus.setDescription('The status of the interface.')
intf_info_link_local_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoLinkLocalAddr.setStatus('current')
if mibBuilder.loadTexts:
intfInfoLinkLocalAddr.setDescription('The site local address of the interface.')
ip_route_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1))
if mibBuilder.loadTexts:
ipRouteInfoTable.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoTable.setDescription('The table of run-time IP routes.')
ip_route_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipRouteInfoIndx'))
if mibBuilder.loadTexts:
ipRouteInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoEntry.setDescription('A row in the run-time IP route table')
ip_route_info_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoIndx.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoIndx.setDescription('The index of this route table.')
ip_route_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoDestIp.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoDestIp.setDescription('The destination IP address of this route.')
ip_route_info_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoMask.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoMask.setDescription('The destination IP mask of this route.')
ip_route_info_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoGateway.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoGateway.setDescription('The next-hop router address for this route.')
ip_route_info_tag = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('fixed', 1), ('static', 2), ('addr', 3), ('rip', 4), ('broadcast', 5), ('martian', 6), ('multicast', 7), ('vip', 8), ('bgp', 9), ('ospf', 10), ('none', 11)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoTag.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoTag.setDescription('The tag-type for this route.')
ip_route_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('indirect', 1), ('direct', 2), ('local', 3), ('broadcast', 4), ('martian', 5), ('multicast', 6), ('other', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoType.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoType.setDescription('The type of the route.')
ip_route_info_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoInterface.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoInterface.setDescription('The interface number for which the destination address is applicable.')
ip_route_info_gateway1 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoGateway1.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoGateway1.setDescription('The next-hop router address for this route.')
ip_route_info_gateway2 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoGateway2.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoGateway2.setDescription('The next-hop router address for this route.')
ip_route_info_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoMetric.setStatus('current')
if mibBuilder.loadTexts:
ipRouteInfoMetric.setDescription('The Metric for this route.')
route_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
routeTableClear.setStatus('current')
if mibBuilder.loadTexts:
routeTableClear.setDescription('Setting this value to clear(2) clears the route table.')
arp_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1))
if mibBuilder.loadTexts:
arpInfoTable.setStatus('current')
if mibBuilder.loadTexts:
arpInfoTable.setDescription('The table of ARP entries.')
arp_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'arpInfoDestIp'))
if mibBuilder.loadTexts:
arpInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
arpInfoEntry.setDescription('A row in the ARP table')
arp_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoDestIp.setStatus('current')
if mibBuilder.loadTexts:
arpInfoDestIp.setDescription('The destination IP address of the ARP entry.')
arp_info_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 2), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoMacAddr.setStatus('current')
if mibBuilder.loadTexts:
arpInfoMacAddr.setDescription('The MAC address for the ARP entry.')
arp_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoVLAN.setStatus('current')
if mibBuilder.loadTexts:
arpInfoVLAN.setDescription('The VLAN identifier for the ARP entry.')
arp_info_src_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoSrcPort.setStatus('current')
if mibBuilder.loadTexts:
arpInfoSrcPort.setDescription("The port number on which this entry's equivalence is effective.")
arp_info_ref_ports = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoRefPorts.setStatus('current')
if mibBuilder.loadTexts:
arpInfoRefPorts.setDescription('The reference SPs associated with this ARP entry.')
arp_info_flag = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('clear', 1), ('unresolved', 2), ('permanent', 3), ('indirect', 4), ('layer4', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoFlag.setStatus('current')
if mibBuilder.loadTexts:
arpInfoFlag.setDescription('The flag associated with this ARP entry.')
arp_cache_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
arpCacheClear.setStatus('current')
if mibBuilder.loadTexts:
arpCacheClear.setDescription('Setting this value to clear(2) clears the ARP cache.')
vrrp_info_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1))
if mibBuilder.loadTexts:
vrrpInfoVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrTable.setDescription('The table of VRRP virtual router run-time information.')
vrrp_info_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpInfoVirtRtrIndex'))
if mibBuilder.loadTexts:
vrrpInfoVirtRtrTableEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrTableEntry.setDescription('The run-time information about a VRRP virtual router.')
vrrp_info_virt_rtr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrIndex.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrIndex.setDescription('The VRRP virtual router index.')
vrrp_info_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('init', 1), ('master', 2), ('backup', 3), ('holdoff', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrState.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrState.setDescription('The VRRP virtual router state.')
vrrp_info_virt_rtr_ownership = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('owner', 1), ('renter', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrOwnership.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrOwnership.setDescription('The VRRP virtual router ownership status.')
vrrp_info_virt_rtr_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrServer.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrServer.setDescription('The VRRP server state identifies virtual routers that support Layer 4 services.')
vrrp_info_virt_rtr_proxy = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrProxy.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrProxy.setDescription('The VRRP proxy state identifies virtual proxy routers.')
vrrp_info_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrPriority.setStatus('current')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrPriority.setDescription('The VRRP virtual router priority.')
ospf_general_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1))
ospf_start_time = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfStartTime.setStatus('current')
if mibBuilder.loadTexts:
ospfStartTime.setDescription('The time when ospf has been started.')
ospf_process_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfProcessUptime.setStatus('current')
if mibBuilder.loadTexts:
ospfProcessUptime.setDescription('The time since ospf has been started.')
ospf_ls_types_supported = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfLsTypesSupported.setStatus('current')
if mibBuilder.loadTexts:
ospfLsTypesSupported.setDescription('The Link State Types that are supported.')
ospf_intf_count_for_router = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfCountForRouter.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfCountForRouter.setDescription('The number of interfaces for this router.')
ospf_vlink_count_for_router = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVlinkCountForRouter.setStatus('current')
if mibBuilder.loadTexts:
ospfVlinkCountForRouter.setDescription('The number of virtual links for this router.')
ospf_total_neighbours = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalNeighbours.setStatus('current')
if mibBuilder.loadTexts:
ospfTotalNeighbours.setDescription('The total number of OSPF neighbours.')
ospf_nbr_in_init_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNbrInInitState.setStatus('current')
if mibBuilder.loadTexts:
ospfNbrInInitState.setDescription('The number of neighbours in the initial state of exchange.')
ospf_nbr_in_exch_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNbrInExchState.setStatus('current')
if mibBuilder.loadTexts:
ospfNbrInExchState.setDescription('The number of neighbours in the exchange state.')
ospf_nbr_in_full_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNbrInFullState.setStatus('current')
if mibBuilder.loadTexts:
ospfNbrInFullState.setDescription('The number of neighbours in the Full state of exchange.')
ospf_total_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalAreas.setStatus('current')
if mibBuilder.loadTexts:
ospfTotalAreas.setDescription('The Total number of areas.')
ospf_total_transit_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalTransitAreas.setStatus('current')
if mibBuilder.loadTexts:
ospfTotalTransitAreas.setDescription('The Total number of Transit areas.')
ospf_total_nssa_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalNssaAreas.setStatus('current')
if mibBuilder.loadTexts:
ospfTotalNssaAreas.setDescription('The Total number of NSSA areas.')
ospf_area_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2))
if mibBuilder.loadTexts:
ospfAreaInfoTable.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaInfoTable.setDescription('The table of OSPF Area information.')
ospf_area_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaInfoIndex'))
if mibBuilder.loadTexts:
ospfAreaInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaInfoEntry.setDescription('Information about a OSPF area.')
ospf_area_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaInfoIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaInfoIndex.setDescription('The OSPF area number for which the OSPF info table is related.')
ospf_total_number_of_interfaces = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalNumberOfInterfaces.setStatus('current')
if mibBuilder.loadTexts:
ospfTotalNumberOfInterfaces.setDescription('The total number of interfaces for this OSPF area.')
ospf_number_of_interfaces_up = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNumberOfInterfacesUp.setStatus('current')
if mibBuilder.loadTexts:
ospfNumberOfInterfacesUp.setDescription('The number of interfaces UP in area.')
ospf_number_of_lsdb_entries = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNumberOfLsdbEntries.setStatus('current')
if mibBuilder.loadTexts:
ospfNumberOfLsdbEntries.setDescription('The number of Link State Database entries for this OSPF area.')
ospf_area_info_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaInfoId.setStatus('current')
if mibBuilder.loadTexts:
ospfAreaInfoId.setDescription('The IP address of the OSPF area.')
ospf_intf_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3))
if mibBuilder.loadTexts:
ospfIntfInfoTable.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfInfoTable.setDescription('The table of OSPF Interface information.')
ospf_intf_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfInfoIndex'))
if mibBuilder.loadTexts:
ospfIntfInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfIntfInfoEntry.setDescription('Information about a OSPF interface.')
ospf_if_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfInfoIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfIfInfoIndex.setDescription('The OSPF interface number for which the OSPF info table is related.')
ospf_if_designated_router_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfDesignatedRouterIP.setStatus('current')
if mibBuilder.loadTexts:
ospfIfDesignatedRouterIP.setDescription('The OSPF Designated Router ID (IP Address) for this OSPF interface.')
ospf_if_backup_designated_router_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfBackupDesignatedRouterIP.setStatus('current')
if mibBuilder.loadTexts:
ospfIfBackupDesignatedRouterIP.setDescription('The OSPF Backup Designated Router ID (IP Address) for this OSPF interface.')
ospf_if_wait_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfWaitInterval.setStatus('current')
if mibBuilder.loadTexts:
ospfIfWaitInterval.setDescription('The OSPF Wait interval for this OSPF interface.')
ospf_if_total_neighbours = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfTotalNeighbours.setStatus('current')
if mibBuilder.loadTexts:
ospfIfTotalNeighbours.setDescription('The Total number of neighbours for this OSPF interface.')
ospf_if_info_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfInfoIpAddress.setStatus('current')
if mibBuilder.loadTexts:
ospfIfInfoIpAddress.setDescription('The IP address of the OSPF interface.')
ospf_if_nbr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5))
if mibBuilder.loadTexts:
ospfIfNbrTable.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrTable.setDescription('The table of OSPF Interface Neighbour information.')
ospf_if_nbr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfNbrIntfIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfNbrIpAddr'))
if mibBuilder.loadTexts:
ospfIfNbrEntry.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrEntry.setDescription('Information about a OSPF interface, neighbour pair.')
ospf_if_nbr_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrIntfIndex.setDescription('The OSPF Interface number for which this Interface/Nbr table is related.')
ospf_if_nbr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrIpAddr.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrIpAddr.setDescription('The OSPF Neighbour ID .')
ospf_if_nbr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrPriority.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrPriority.setDescription('The priority of the OSPF neighbour.')
ospf_if_nbr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('down', 1), ('attempt', 2), ('init', 3), ('twoway', 4), ('exStart', 5), ('exchange', 6), ('loading', 7), ('full', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrState.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrState.setDescription('The state of the OSPF neighbour.')
ospf_if_nbr_designated_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrDesignatedRtr.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrDesignatedRtr.setDescription('The IP Address of the Designated Router for this OSPF Neighbour.')
ospf_if_nbr_backup_designated_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrBackupDesignatedRtr.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrBackupDesignatedRtr.setDescription('The IP Address of the backup designated Router for this OSPF Neighbour.')
ospf_if_nbr_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrIpAddress.setStatus('current')
if mibBuilder.loadTexts:
ospfIfNbrIpAddress.setDescription('The IP Address of the OSPF Neighbour.')
gateway_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1))
if mibBuilder.loadTexts:
gatewayInfoTable.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoTable.setDescription('The table containing information for the default gateways.')
gateway_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'gatewayInfoIndex'))
if mibBuilder.loadTexts:
gatewayInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoEntry.setDescription('A row in the gateway information table')
gateway_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoIndex.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoIndex.setDescription('The gateway number for which the information is related.')
gateway_info_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoAddr.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoAddr.setDescription('The IP address of the default gateway.')
gateway_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoVlan.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoVlan.setDescription('The VLAN number for this gateway.')
gateway_info_status = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('failed', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoStatus.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoStatus.setDescription('The status of the default gateway.')
gateway_info_addr6 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoAddr6.setStatus('current')
if mibBuilder.loadTexts:
gatewayInfoAddr6.setDescription('The IP6 address of the default gateway.')
nbrcache_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1))
if mibBuilder.loadTexts:
nbrcacheInfoTable.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoTable.setDescription('The table of nbrcache information.')
nbrcache_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'nbrcacheInfoIndex'))
if mibBuilder.loadTexts:
nbrcacheInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoEntry.setDescription('Information about neighbour discovery protocol.')
nbrcache_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoIndex.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoIndex.setDescription('The index of the nbrcache entry.')
nbrcache_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoDestIp.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoDestIp.setDescription('The destination IP address of the nbrcache entry.')
nbrcache_info_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('undef', 1), ('reach', 2), ('stale', 3), ('delay', 4), ('probe', 5), ('inval', 6), ('unknown', 7), ('incmp', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoState.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoState.setDescription('The state of the nbrcache entry.')
nbrcache_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('undef', 1), ('other', 2), ('invalid', 3), ('dynamic', 4), ('static', 5), ('local', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoType.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoType.setDescription('The type of the nbrcache entry.')
nbrcache_info_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 5), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoMacAddr.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoMacAddr.setDescription('The MAC address for the nbrcache entry.')
nbrcache_info_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoVlanId.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoVlanId.setDescription('The VLAN identifier for the nbrcache entry.')
nbrcache_info_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoPortNum.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoPortNum.setDescription("The port number on which this entry's equivalence is effective.")
nbrcache_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
nbrcacheClear.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheClear.setDescription('Setting this value to clear(2) clears the Nbr cache, When read ok(1) is returned.')
nbrcache_info_tot_dynamic_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoTotDynamicEntries.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoTotDynamicEntries.setDescription('The total number of dynamic neighbour cache entries.')
nbrcache_info_tot_local_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoTotLocalEntries.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoTotLocalEntries.setDescription('The total number of local neighbour cache entries.')
nbrcache_info_tot_other_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoTotOtherEntries.setStatus('current')
if mibBuilder.loadTexts:
nbrcacheInfoTotOtherEntries.setDescription('The total number of other neighbour cache entries.')
ip_route6_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1))
if mibBuilder.loadTexts:
ipRoute6InfoTable.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoTable.setDescription('The table of run-time IP6 routes.')
ip_route6_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipRoute6InfoIndx'))
if mibBuilder.loadTexts:
ipRoute6InfoEntry.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoEntry.setDescription('A row in the run-time IP6 route table.')
ip_route6_info_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoIndx.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoIndx.setDescription('The index of this route6 table.')
ip_route6_info_dest_ip6 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoDestIp6.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoDestIp6.setDescription('The destination of the route.')
ip_route6_info_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoInterface.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoInterface.setDescription('The interface of the route.')
ip_route6_info_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoNextHop.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoNextHop.setDescription('The next hop of the route.')
ip_route6_info_proto = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=named_values(('isis', 1), ('rip', 2), ('ospf', 3), ('static', 4), ('local', 5), ('bgp', 6), ('stlow', 7), ('ospfi', 8), ('ospfe', 9), ('ospfe2', 10), ('ospfa', 11), ('ripa', 12), ('bgpa', 13), ('igmp', 14), ('unknown', 15), ('natpt', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoProto.setStatus('current')
if mibBuilder.loadTexts:
ipRoute6InfoProto.setDescription('The protocol type of the route.')
rip2_general_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1))
rip_info_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoState.setStatus('current')
if mibBuilder.loadTexts:
ripInfoState.setDescription('RIP global state.')
rip_info_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoUpdatePeriod.setStatus('current')
if mibBuilder.loadTexts:
ripInfoUpdatePeriod.setDescription('Update Period in seconds.')
rip_info_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoVip.setStatus('current')
if mibBuilder.loadTexts:
ripInfoVip.setDescription('Advertise VIP Host Routes.')
rip_info_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoStaticSupply.setStatus('current')
if mibBuilder.loadTexts:
ripInfoStaticSupply.setDescription('Advertise Static Routes.')
rip2_info_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2))
if mibBuilder.loadTexts:
rip2InfoIntfTable.setStatus('current')
if mibBuilder.loadTexts:
rip2InfoIntfTable.setDescription('The information table of RIP.')
rip_info_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripInfoIntfIndex'))
if mibBuilder.loadTexts:
ripInfoIntfEntry.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfEntry.setDescription('Information about RIP on IP interface.')
rip_info_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfIndex.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfIndex.setDescription('The interface number for which the RIP information is related.')
rip_info_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfVersion.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfVersion.setDescription('RIP version.')
rip_info_intf_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfAddress.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfAddress.setDescription('The interface address.')
rip_info_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfState.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfState.setDescription('The status of RIP protocol.')
rip_info_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfListen.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfListen.setDescription('The status of listening to route updates.')
rip_info_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfTrigUpdate.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfTrigUpdate.setDescription('The status of triggered updates.')
rip_info_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfMcastUpdate.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfMcastUpdate.setDescription('The status of multicast updates.')
rip_info_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfPoisonReverse.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfPoisonReverse.setDescription('The status of RIP poison reverse.')
rip_info_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfSupply.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfSupply.setDescription('The status of supplying route updates.')
rip_info_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfMetric.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfMetric.setDescription('RIP route metric for this interface.')
rip_info_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfAuth.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfAuth.setDescription('The type of Authentication used on this interface.')
rip_info_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfKey.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfKey.setDescription('RIP update authentication password.')
rip_info_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfDefault.setStatus('current')
if mibBuilder.loadTexts:
ripInfoIntfDefault.setDescription('Specifies what RIP does with default routes.')
rip2_routes_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1))
if mibBuilder.loadTexts:
rip2RoutesInfoTable.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoTable.setDescription('The table of rip routes.')
rip2_routes_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'rip2RoutesInfoDestIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'rip2RoutesInfoNxtHopIndex'))
if mibBuilder.loadTexts:
rip2RoutesInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoEntry.setDescription('Information about rip routes.')
rip2_routes_info_dest_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoDestIndex.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoDestIndex.setDescription('The index of the rip routes.')
rip2_routes_info_nxt_hop_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoNxtHopIndex.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoNxtHopIndex.setDescription('The index of the next hop.')
rip2_routes_info_destination = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoDestination.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoDestination.setDescription('The destination of the rip route.')
rip2_routes_info_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoIpAddress.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoIpAddress.setDescription('The ipaddress of the next hop.')
rip2_routes_info_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoMetric.setStatus('current')
if mibBuilder.loadTexts:
rip2RoutesInfoMetric.setDescription('RIP route metric for this route.')
allowed_nw_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1))
if mibBuilder.loadTexts:
allowedNwInfoTable.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoTable.setDescription('The table of allowed network run-time information.')
allowed_nw_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'allowedNwInfoIndex'))
if mibBuilder.loadTexts:
allowedNwInfoEntry.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoEntry.setDescription('A row in the allowed network information table.')
allowed_nw_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoIndex.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoIndex.setDescription('The allowed network index')
allowed_nw_info_ipver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoIpver.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoIpver.setDescription('The type of IP address.')
allowed_nw_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoVlan.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoVlan.setDescription('The VLAN that the allowed network belongs to.')
allowed_nw_info_begin_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoBeginIpAddr.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoBeginIpAddr.setDescription('The begin IP address of the allowed network.')
allowed_nw_info_end_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoEndIpAddr.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoEndIpAddr.setDescription('The begin IP address of the allowed network.')
allowed_nw_info_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoNetMask.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoNetMask.setDescription('The subnet mask of the allowed network.')
allowed_nw_info_ip6_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoIp6Prefix.setStatus('current')
if mibBuilder.loadTexts:
allowedNwInfoIp6Prefix.setDescription('The prefix length of the IP6 allowed network.')
vrrp_oper_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1))
if mibBuilder.loadTexts:
vrrpOperVirtRtrTable.setStatus('current')
if mibBuilder.loadTexts:
vrrpOperVirtRtrTable.setDescription('An entry in the table of virtual routers.')
vrrp_oper_virt_rtr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpOperVirtRtrIndex'))
if mibBuilder.loadTexts:
vrrpOperVirtRtrEntry.setStatus('current')
if mibBuilder.loadTexts:
vrrpOperVirtRtrEntry.setDescription('A row in the vrrpOperVirtRtrTable ')
vrrp_oper_virt_rtr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpOperVirtRtrIndex.setStatus('current')
if mibBuilder.loadTexts:
vrrpOperVirtRtrIndex.setDescription('The index for the VRRP virtual router.')
vrrp_oper_virt_rtr_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('backup', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpOperVirtRtrBackup.setStatus('current')
if mibBuilder.loadTexts:
vrrpOperVirtRtrBackup.setDescription("When set to a value of 'backup(2)' it forces the specified master virtual router into backup mode. 'ok(1)' is returned when the object os read.")
vrrp_oper_virt_rtr_group_backup = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('backup', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpOperVirtRtrGroupBackup.setStatus('current')
if mibBuilder.loadTexts:
vrrpOperVirtRtrGroupBackup.setDescription("When set to a value of 'backup(2)' it forces the specified master virtual router group into backup mode. 'ok(1)' is returned when the object os read.")
bgp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1))
garp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2))
bgp_oper_start = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1))
bgp_oper_stop = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2))
bgp_oper_start_peer_num = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStartPeerNum.setStatus('current')
if mibBuilder.loadTexts:
bgpOperStartPeerNum.setDescription('Enter BGP peer Number.Value 1 is returned when object is read.')
bgp_oper_start_sess = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('start', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStartSess.setStatus('current')
if mibBuilder.loadTexts:
bgpOperStartSess.setDescription('This is the action object,start(2) is to Start BGP peer session. ok(1) is returned when object is read')
bgp_oper_stop_peer_num = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStopPeerNum.setStatus('current')
if mibBuilder.loadTexts:
bgpOperStopPeerNum.setDescription('Enter BGP peer Number.Value 1 is returned when object is read.')
bgp_oper_stop_sess = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('stop', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStopSess.setStatus('current')
if mibBuilder.loadTexts:
bgpOperStopSess.setDescription('This is an action object,stop(2) is to Stop BGP peer session. ok(1) is returned when object is read')
garp_oper_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
garpOperIpAddr.setStatus('current')
if mibBuilder.loadTexts:
garpOperIpAddr.setDescription('Ip Address to Send gratuitous arp.Value 0.0.0.0 is returned when object is read.')
garp_oper_vlan_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 4090))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
garpOperVlanNumber.setStatus('current')
if mibBuilder.loadTexts:
garpOperVlanNumber.setDescription('Vlan Number to Send gratuitous arp.Value 1 is returned when object is read.')
garp_oper_send = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ok', 1), ('send', 2), ('error', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
garpOperSend.setStatus('current')
if mibBuilder.loadTexts:
garpOperSend.setDescription('This is an action object,When set to value of send(2), it sends gratuitous arp.ok(1) is returned when garp request is sent successfully.Otherwise error(3) is returned.')
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', vrrpCurCfgVirtRtrSharing=vrrpCurCfgVirtRtrSharing, vrrpCurCfgVirtRtrTckVirtRtr=vrrpCurCfgVirtRtrTckVirtRtr, ipNewCfgRmapDelete=ipNewCfgRmapDelete, arpInfoEntry=arpInfoEntry, ripInfoIntfAddress=ripInfoIntfAddress, ip6GwEchoresp=ip6GwEchoresp, ospfAreaErrNetmaskMismatch=ospfAreaErrNetmaskMismatch, vrrpInfoVirtRtrTableEntry=vrrpInfoVirtRtrTableEntry, vrrpCurCfgVirtRtrGrpInterval=vrrpCurCfgVirtRtrGrpInterval, vrrpNewCfgIfDelete=vrrpNewCfgIfDelete, ipCurCfgIntfIpv6Addr=ipCurCfgIntfIpv6Addr, ospfCurCfgEbgpOutRmapList=ospfCurCfgEbgpOutRmapList, vrrpNewCfgVirtRtrDelete=vrrpNewCfgVirtRtrDelete, icmp6Stats=icmp6Stats, ospfAreaIntfLoop=ospfAreaIntfLoop, vrrpNewCfgVirtRtrTckVirtRtr=vrrpNewCfgVirtRtrTckVirtRtr, ospfAreaIntfHello=ospfAreaIntfHello, tcpStats=tcpStats, vrrpNewCfgGenHoldoff=vrrpNewCfgGenHoldoff, ipv6CurCfgStaticRouteMask=ipv6CurCfgStaticRouteMask, dnsStatOutDnsRequests=dnsStatOutDnsRequests, rip2InfoIntfTable=rip2InfoIntfTable, vrrpNewCfgVirtRtrVrGrpPreemption=vrrpNewCfgVirtRtrVrGrpPreemption, ipv6CurCfgStaticRouteEntry=ipv6CurCfgStaticRouteEntry, ipv6CurCfgStaticRouteInterface=ipv6CurCfgStaticRouteInterface, ospfCurCfgRangeHideState=ospfCurCfgRangeHideState, ipGatewayCfg=ipGatewayCfg, vrrpNewCfgGenTckIpIntfInc=vrrpNewCfgGenTckIpIntfInc, ospfNewCfgVirtIntfIndex=ospfNewCfgVirtIntfIndex, vrrpVirtRtrGrpTableMaxSize=vrrpVirtRtrGrpTableMaxSize, bgpCurCfgPeerKeepAlive=bgpCurCfgPeerKeepAlive, ipCurCfgNwfMask=ipCurCfgNwfMask, ipCurCfgAspathAS=ipCurCfgAspathAS, arpStats=arpStats, vrrpInfoVirtRtrServer=vrrpInfoVirtRtrServer, bgpCurCfgPeerMinTime=bgpCurCfgPeerMinTime, vrrpNewCfgVirtRtrVrGrpTckIpIntf=vrrpNewCfgVirtRtrVrGrpTckIpIntf, ospfAreaIntfWaitTimer=ospfAreaIntfWaitTimer, ipNewCfgGwVlan=ipNewCfgGwVlan, ipNewCfgBootpState=ipNewCfgBootpState, ospfNewCfgRangeAddr=ospfNewCfgRangeAddr, ipNewCfgGwArp=ipNewCfgGwArp, ospfNewCfgRipMetricType=ospfNewCfgRipMetricType, ifStatsIndex=ifStatsIndex, ospfAreaInfoId=ospfAreaInfoId, vrrpNewCfgVirtRtrVrGrpDelete=vrrpNewCfgVirtRtrVrGrpDelete, ipFwdLocalTableMaxSize=ipFwdLocalTableMaxSize, ipNewCfgStaticRouteMask=ipNewCfgStaticRouteMask, bgpCurCfgPeerHoldTime=bgpCurCfgPeerHoldTime, ospfCurCfgAreaMetric=ospfCurCfgAreaMetric, ospfAreaNbrChangeStats=ospfAreaNbrChangeStats, ripInfoIntfIndex=ripInfoIntfIndex, ospfCumRxlsAcks=ospfCumRxlsAcks, vrrpOper=vrrpOper, ipCurCfgStaticRouteDestIp=ipCurCfgStaticRouteDestIp, bgpCurCfgPeerFixedState=bgpCurCfgPeerFixedState, bgpNewCfgPeerStaticState=bgpNewCfgPeerStaticState, vrrpNewCfgVirtRtrVrGrpIndx=vrrpNewCfgVirtRtrVrGrpIndx, ipNewCfgGwAddr=ipNewCfgGwAddr, ospfCumRxTxStats=ospfCumRxTxStats, arpInfoMacAddr=arpInfoMacAddr, ripStatInBadSizePkts=ripStatInBadSizePkts, bgpCurCfgPeerOspfState=bgpCurCfgPeerOspfState, ospfCurCfgIntfCost=ospfCurCfgIntfCost, ipNewCfgStaticRouteGateway=ipNewCfgStaticRouteGateway, vrrpNewCfgVirtRtrVrGrpBmap=vrrpNewCfgVirtRtrVrGrpBmap, ospfAreaChangeStatsEntry=ospfAreaChangeStatsEntry, ospfIntfDown=ospfIntfDown, allowedNwInfoIpver=allowedNwInfoIpver, vrrpNewCfgGenState=vrrpNewCfgGenState, ospfTotalTransitAreas=ospfTotalTransitAreas, ripNewCfgIntfMcastUpdate=ripNewCfgIntfMcastUpdate, ripCurCfgIntfTable=ripCurCfgIntfTable, ospfAreaNbrIndex=ospfAreaNbrIndex, ospfCurCfgAreaTable=ospfCurCfgAreaTable, vrrpStats=vrrpStats, ipCurCfgIntfBroadcast=ipCurCfgIntfBroadcast, ospfNewCfgVisionAreaId=ospfNewCfgVisionAreaId, ospfNewCfgHostIndex=ospfNewCfgHostIndex, vrrpCurCfgVirtRtrGrpPreempt=vrrpCurCfgVirtRtrGrpPreempt, ipCurCfgGwInterval=ipCurCfgGwInterval, ospfAreaNbrLoadingDone=ospfAreaNbrLoadingDone, ospfNbrInExchState=ospfNbrInExchState, vrrpNewCfgIfAuthType=vrrpNewCfgIfAuthType, ipCurCfgNwfEntry=ipCurCfgNwfEntry, ipRoute6InfoIndx=ipRoute6InfoIndx, vrrpNewCfgGenTckVlanPortInc=vrrpNewCfgGenTckVlanPortInc, ipRouteInfoGateway=ipRouteInfoGateway, ipNewCfgRmapPrec=ipNewCfgRmapPrec, ospfCurCfgIntfAreaId=ospfCurCfgIntfAreaId, ipv6NewCfgStaticRouteEntry=ipv6NewCfgStaticRouteEntry, ospfTotalNssaAreas=ospfTotalNssaAreas, vrrpCurCfgVirtRtrTckL4Port=vrrpCurCfgVirtRtrTckL4Port, ipNewCfgIntfEntry=ipNewCfgIntfEntry, ospfIntfRxlsUpdates=ospfIntfRxlsUpdates, dnsCurCfgSecondaryIpv6Addr=dnsCurCfgSecondaryIpv6Addr, ospfNewCfgDefaultRouteMetricType=ospfNewCfgDefaultRouteMetricType, ospfCurCfgVirtIntfState=ospfCurCfgVirtIntfState, ospfIntfRxPkts=ospfIntfRxPkts, ipCurCfgIntfBootpRelay=ipCurCfgIntfBootpRelay, ospfAreaNbrExchangeDone=ospfAreaNbrExchangeDone, routeTableClear=routeTableClear, bgpCurCfgAggrTable=bgpCurCfgAggrTable, ospfAreaIntfUnloop=ospfAreaIntfUnloop, ipCurCfgStaticArpMAC=ipCurCfgStaticArpMAC, vrrpNewCfgVirtRtrPriority=vrrpNewCfgVirtRtrPriority, ospfAreaRxDatabase=ospfAreaRxDatabase, ripInfoStaticSupply=ripInfoStaticSupply, bgpCurCfgPeerIndex=bgpCurCfgPeerIndex, ospfNewCfgVisionAreaTable=ospfNewCfgVisionAreaTable, rip2RoutesInfoTable=rip2RoutesInfoTable, intfInfoIpver=intfInfoIpver, ospfNewCfgEbgpRemoveOutRmap=ospfNewCfgEbgpRemoveOutRmap, vrrpCurCfgVirtRtrGrpTckHsrv=vrrpCurCfgVirtRtrGrpTckHsrv, ripInfoIntfKey=ripInfoIntfKey, ripCurCfgIntfDefault=ripCurCfgIntfDefault, vrrpCurCfgVirtRtrVrGrpTckIpIntf=vrrpCurCfgVirtRtrVrGrpTckIpIntf, routeStatHighWater=routeStatHighWater, ipNewCfgRmapLp=ipNewCfgRmapLp, ospfNewCfgVirtIntfTable=ospfNewCfgVirtIntfTable, dnsStatInGoodDnsRequests=dnsStatInGoodDnsRequests, ospfinfo=ospfinfo, ipCurCfgAlistEntry=ipCurCfgAlistEntry, intfInfoLinkLocalAddr=intfInfoLinkLocalAddr, ospfNewCfgStaticMetric=ospfNewCfgStaticMetric, ospfNewCfgIbgpAddOutRmap=ospfNewCfgIbgpAddOutRmap, ospfCurCfgVirtIntfMdkey=ospfCurCfgVirtIntfMdkey, vrrpNewCfgVirtRtrGrpPreempt=vrrpNewCfgVirtRtrGrpPreempt, ospfAreaRxTxStats=ospfAreaRxTxStats, ripNewCfgIntfAuth=ripNewCfgIntfAuth, allowedNwInfoTable=allowedNwInfoTable, rip2Cfg=rip2Cfg, ipNewCfgStaticArpIndx=ipNewCfgStaticArpIndx, vrrpCurCfgIfTable=vrrpCurCfgIfTable, vrrpCurCfgVirtRtrGrpIpv6Interval=vrrpCurCfgVirtRtrGrpIpv6Interval, ospfNewCfgAreaSpfInterval=ospfNewCfgAreaSpfInterval, ospfNewCfgFixedRemoveOutRmap=ospfNewCfgFixedRemoveOutRmap, ospfAreaNbrhello=ospfAreaNbrhello, ipCurCfgAlistAction=ipCurCfgAlistAction, ospfNewCfgVisionAreaAuthType=ospfNewCfgVisionAreaAuthType, ospfIntfChangeStats=ospfIntfChangeStats, garpOper=garpOper, ipCurCfgStaticArpEntry=ipCurCfgStaticArpEntry, ospfAreaInfoTable=ospfAreaInfoTable, vrrpNewCfgVirtRtrAddr=vrrpNewCfgVirtRtrAddr, bgpNewCfgPeerInRmapList=bgpNewCfgPeerInRmapList, ospfNewCfgMdkeyTable=ospfNewCfgMdkeyTable, icmp6InRAs=icmp6InRAs, bgpNewCfgPeerMinTime=bgpNewCfgPeerMinTime, ip6gwStats=ip6gwStats, vrrpNewCfgVirtRtrGrpDelete=vrrpNewCfgVirtRtrGrpDelete, ospfAreaErrOptionsMismatch=ospfAreaErrOptionsMismatch, arpCfg=arpCfg, ospfAreaTxlsUpdates=ospfAreaTxlsUpdates, ospfCurCfgHostAreaIndex=ospfCurCfgHostAreaIndex, ospfTmrsKckOffRetransmit=ospfTmrsKckOffRetransmit, ip6OutNoRoutes=ip6OutNoRoutes, vrrpNewCfgVirtRtrID=vrrpNewCfgVirtRtrID, icmp6StatsEntry=icmp6StatsEntry, gatewayInfoVlan=gatewayInfoVlan, ospfCurCfgDefaultRouteMetricType=ospfCurCfgDefaultRouteMetricType, allowedNwInfoIp6Prefix=allowedNwInfoIp6Prefix, ipFwdNewCfgNoICMPRedirect=ipFwdNewCfgNoICMPRedirect, ospfIntfTxHello=ospfIntfTxHello, ospfIntfTxPkts=ospfIntfTxPkts, vrrpCurCfgVirtRtrVrGrpIndx=vrrpCurCfgVirtRtrVrGrpIndx, vrrpCurCfgVirtRtrVrGrpTckL4Port=vrrpCurCfgVirtRtrVrGrpTckL4Port, ospfNewCfgIntfKey=ospfNewCfgIntfKey, ipCurCfgAlistTable=ipCurCfgAlistTable, ospfNewCfgIbgpOutRmapList=ospfNewCfgIbgpOutRmapList, ipCurCfgIntfIpVer=ipCurCfgIntfIpVer, ipNewCfgGwIndex=ipNewCfgGwIndex, ipNewCfgGwDelete=ipNewCfgGwDelete, nbrcacheClear=nbrcacheClear, ipNewCfgGwInterval=ipNewCfgGwInterval, dnsStatInBadDnsRequests=dnsStatInBadDnsRequests, ifStatsEntry=ifStatsEntry, ospfCumIntfChangeStats=ospfCumIntfChangeStats, vrrpNewCfgGenTckHsrpInc=vrrpNewCfgGenTckHsrpInc, clearStats=clearStats, bgpNewCfgPeerEntry=bgpNewCfgPeerEntry, ripStatOutResponsePkts=ripStatOutResponsePkts, ospfCumIntfBackup=ospfCumIntfBackup, ospfCurCfgVirtIntfNbr=ospfCurCfgVirtIntfNbr, ospfNewCfgRangeAreaIndex=ospfNewCfgRangeAreaIndex, ospfNewCfgVirtIntfState=ospfNewCfgVirtIntfState, garpOperSend=garpOperSend, gatewayInfo=gatewayInfo, vrrpNewCfgVirtRtrGrpID=vrrpNewCfgVirtRtrGrpID, ospfNewCfgVirtIntfHello=ospfNewCfgVirtIntfHello, ospfNewCfgEbgpMetricType=ospfNewCfgEbgpMetricType, ospfTmrsKckOffAseExport=ospfTmrsKckOffAseExport, vrrpNewCfgGenTckHsrvInc=vrrpNewCfgGenTckHsrvInc, ipCurCfgRmapWeight=ipCurCfgRmapWeight, ospfCumNbrDown=ospfCumNbrDown, ospfNewCfgAreaIndex=ospfNewCfgAreaIndex, vrrpNewCfgVirtRtrVrGrpTckHsrv=vrrpNewCfgVirtRtrVrGrpTckHsrv, ospfIntfTxlsAcks=ospfIntfTxlsAcks, bgpNewCfgPeerMetric=bgpNewCfgPeerMetric, icmp6InMsgs=icmp6InMsgs, ripInfoIntfListen=ripInfoIntfListen, vrrpCurCfgVirtRtrIpv6Addr=vrrpCurCfgVirtRtrIpv6Addr, ospfNewCfgHostCost=ospfNewCfgHostCost, vrrpNewCfgVirtRtrVrGrpName=vrrpNewCfgVirtRtrVrGrpName, ospfNewCfgIntfIndex=ospfNewCfgIntfIndex, ipFwdCurCfgNoICMPRedirect=ipFwdCurCfgNoICMPRedirect, ipCurCfgAspathTable=ipCurCfgAspathTable, ospfCurCfgMdkeyKey=ospfCurCfgMdkeyKey, ospfAreaIntfIndex=ospfAreaIntfIndex, bgpCurCfgPeerEntry=bgpCurCfgPeerEntry, ip6GwMaster=ip6GwMaster, bgpCurCfgAggrAddr=bgpCurCfgAggrAddr, ospfCurCfgLsdb=ospfCurCfgLsdb, ripCurCfgIntfState=ripCurCfgIntfState, vrrpCurCfgGenTckHsrvInc=vrrpCurCfgGenTckHsrvInc, ripStatInPackets=ripStatInPackets, vrrpInfoVirtRtrProxy=vrrpInfoVirtRtrProxy, ospfCumTxDatabase=ospfCumTxDatabase, ospfNewCfgAreaDelete=ospfNewCfgAreaDelete, ospfCurCfgRipMetricType=ospfCurCfgRipMetricType, ospfNewCfgAreaEntry=ospfNewCfgAreaEntry, ipNewCfgGwIpv6Addr=ipNewCfgGwIpv6Addr, ripNewCfgIntfDefault=ripNewCfgIntfDefault, vrrpOperVirtRtrEntry=vrrpOperVirtRtrEntry, ospfNewCfgVirtIntfDead=ospfNewCfgVirtIntfDead, arpNewCfgReARPPeriod=arpNewCfgReARPPeriod, ospfVlinkCountForRouter=ospfVlinkCountForRouter, vrrpCurCfgGenState=vrrpCurCfgGenState, ipFwdNewCfgState=ipFwdNewCfgState, ipFwdCurCfgRtCache=ipFwdCurCfgRtCache, ipRouteInfoTable=ipRouteInfoTable, vrrpCurCfgVirtRtrGrpTckVirtRtr=vrrpCurCfgVirtRtrGrpTckVirtRtr, bgpCurCfgPeerOutRmapList=bgpCurCfgPeerOutRmapList, ospfNewCfgVisionAreaIndex=ospfNewCfgVisionAreaIndex, ospfIntfNbrAdjointOk=ospfIntfNbrAdjointOk, arpCurCfgReARPPeriod=arpCurCfgReARPPeriod, ipNewCfgIntfDelete=ipNewCfgIntfDelete, vrrpNewCfgVirtRtrIpv6Interval=vrrpNewCfgVirtRtrIpv6Interval, dnsCurCfgDomainName=dnsCurCfgDomainName, ospfCurCfgVirtIntfTransit=ospfCurCfgVirtIntfTransit, ospfCurCfgHostTable=ospfCurCfgHostTable, ipRouteInfoGateway1=ipRouteInfoGateway1, ip6ReasmOKs=ip6ReasmOKs, ospfTmrsKckOffLsaAck=ospfTmrsKckOffLsaAck, ip6GwStatsEntry=ip6GwStatsEntry, ipNewCfgAspathIndex=ipNewCfgAspathIndex, ipNewCfgAlistRmapIndex=ipNewCfgAlistRmapIndex, ipFwdCurCfgPortTable=ipFwdCurCfgPortTable, ripCurCfgIntfSupply=ripCurCfgIntfSupply, bgpOperStartSess=bgpOperStartSess, vrrpNewCfgVirtRtrTckVlanPort=vrrpNewCfgVirtRtrTckVlanPort, ripStatInSelfRcvPkts=ripStatInSelfRcvPkts, ospfNewCfgVirtIntfDelete=ospfNewCfgVirtIntfDelete, allowedNwInfoBeginIpAddr=allowedNwInfoBeginIpAddr)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', dnsCurCfgPrimaryIpv6Addr=dnsCurCfgPrimaryIpv6Addr, nbrcacheInfoIndex=nbrcacheInfoIndex, ipInterfaceCfg=ipInterfaceCfg, ipNewCfgGwEntry=ipNewCfgGwEntry, ripNewCfgIntfTrigUpdate=ripNewCfgIntfTrigUpdate, ipFwdNewCfgPortEntry=ipFwdNewCfgPortEntry, ospfNewCfgLsdb=ospfNewCfgLsdb, ipCurCfgAspathState=ipCurCfgAspathState, ospfIntfErrOptionsMismatch=ospfIntfErrOptionsMismatch, ospfCurCfgState=ospfCurCfgState, ospfNbrInInitState=ospfNbrInInitState, ospfRedistributeFixed=ospfRedistributeFixed, vrrpCurCfgGenHotstandby=vrrpCurCfgGenHotstandby, vrrpNewCfgGenTckL4PortInc=vrrpNewCfgGenTckL4PortInc, ospfStartTime=ospfStartTime, ipCurCfgRmapEntry=ipCurCfgRmapEntry, vrrpInfoVirtRtrState=vrrpInfoVirtRtrState, rip2CurCfgStaticSupply=rip2CurCfgStaticSupply, ospfCumNbrRstAd=ospfCumNbrRstAd, vrrpNewCfgGenTckRServerInc=vrrpNewCfgGenTckRServerInc, ip6Stats=ip6Stats, ipRouteInfoEntry=ipRouteInfoEntry, ospfNewCfgRipRemoveOutRmap=ospfNewCfgRipRemoveOutRmap, icmp6InRSs=icmp6InRSs, ipNewCfgNwfState=ipNewCfgNwfState, ospfNumberOfInterfacesUp=ospfNumberOfInterfacesUp, allowedNwInfoEndIpAddr=allowedNwInfoEndIpAddr, ipNewCfgStaticRouteIndx=ipNewCfgStaticRouteIndx, ospfIntfTxDatabase=ospfIntfTxDatabase, ospfLsTypesSupported=ospfLsTypesSupported, bgpOperStopSess=bgpOperStopSess, vrrpCurCfgIfTableEntry=vrrpCurCfgIfTableEntry, ip6GwFails=ip6GwFails, ipRouteInfoMask=ipRouteInfoMask, ripInfoIntfState=ripInfoIntfState, ospfNewCfgIntfTable=ospfNewCfgIntfTable, ospfNewCfgMdkeyIndex=ospfNewCfgMdkeyIndex, vrrpCurCfgVirtRtrVrGrpName=vrrpCurCfgVirtRtrVrGrpName, ipCurCfgGwTable=ipCurCfgGwTable, ospfNewCfgAreaMetric=ospfNewCfgAreaMetric, ospfCumNbrStart=ospfCumNbrStart, ospfGeneralInfo=ospfGeneralInfo, bgpCurCfgPeerMetric=bgpCurCfgPeerMetric, ip6OutRequests=ip6OutRequests, ospfIntfNbrN2way=ospfIntfNbrN2way, ospfHostTableMaxSize=ospfHostTableMaxSize, vrrpCurCfgVirtRtrVrGrpState=vrrpCurCfgVirtRtrVrGrpState, ipRmapTableMax=ipRmapTableMax, ip6GwRetry=ip6GwRetry, icmp6OutNSs=icmp6OutNSs, ospfAreaNbrNegotiationDone=ospfAreaNbrNegotiationDone, allowedNwInfo=allowedNwInfo, vrrpCurCfgGenTckRServerInc=vrrpCurCfgGenTckRServerInc, vrrpCurCfgVirtRtrPreempt=vrrpCurCfgVirtRtrPreempt, bgpNewCfgPeerTable=bgpNewCfgPeerTable, ipFwdCurCfgDirectedBcast=ipFwdCurCfgDirectedBcast, vrrpCurCfgVirtRtrVrGrpTckRServer=vrrpCurCfgVirtRtrVrGrpTckRServer, ospfNewCfgRangeEntry=ospfNewCfgRangeEntry, ipNewCfgNwfAddr=ipNewCfgNwfAddr, ospfRouteRedistribution=ospfRouteRedistribution, ipNewCfgStaticRouteEntry=ipNewCfgStaticRouteEntry, ospfCurCfgRangeTable=ospfCurCfgRangeTable, ospfCumNbrChangeStats=ospfCumNbrChangeStats, ospfCurCfgHostEntry=ospfCurCfgHostEntry, icmp6InNSs=icmp6InNSs, vrrpCurCfgIfIndx=vrrpCurCfgIfIndx, ospfNewCfgIntfEntry=ospfNewCfgIntfEntry, ospfNewCfgEbgpMetric=ospfNewCfgEbgpMetric, rip2RoutesInfoIpAddress=rip2RoutesInfoIpAddress, bgpNewCfgPeerFixedState=bgpNewCfgPeerFixedState, ipStaticArpTableNextAvailableIndex=ipStaticArpTableNextAvailableIndex, gatewayInfoAddr6=gatewayInfoAddr6, ripNewCfgIntfSupply=ripNewCfgIntfSupply, rip2NewCfgVip=rip2NewCfgVip, ip6InUnknownProtos=ip6InUnknownProtos, ospfNewCfgVisionAreaDelete=ospfNewCfgVisionAreaDelete, ospfNewCfgRipOutRmapList=ospfNewCfgRipOutRmapList, ipCurCfgAspathEntry=ipCurCfgAspathEntry, vrrpCurCfgVirtRtrGrpState=vrrpCurCfgVirtRtrGrpState, ospfCurCfgRipOutRmapList=ospfCurCfgRipOutRmapList, ipCurCfgAspathIndex=ipCurCfgAspathIndex, bgpPeerTableMax=bgpPeerTableMax, gatewayInfoTable=gatewayInfoTable, ipNewCfgStaticArpIp=ipNewCfgStaticArpIp, ipCurCfgRmapPrec=ipCurCfgRmapPrec, allowedNwInfoNetMask=allowedNwInfoNetMask, bgpCfg=bgpCfg, bgpNewCfgPeerDelete=bgpNewCfgPeerDelete, ipCurCfgRmapLp=ipCurCfgRmapLp, dnsCurCfgPrimaryIpAddr=dnsCurCfgPrimaryIpAddr, arpInfo=arpInfo, ospfNewCfgHostDelete=ospfNewCfgHostDelete, ospfCurCfgHostCost=ospfCurCfgHostCost, ipCurCfgStaticArpTable=ipCurCfgStaticArpTable, vrrpCurCfgVirtRtrIpv6Interval=vrrpCurCfgVirtRtrIpv6Interval, ripNewCfgIntfListen=ripNewCfgIntfListen, ospfNewCfgFixedMetric=ospfNewCfgFixedMetric, ospfIfDesignatedRouterIP=ospfIfDesignatedRouterIP, vrrpOperVirtRtrTable=vrrpOperVirtRtrTable, ipNewCfgAlistAction=ipNewCfgAlistAction, vrrpOperVirtRtrIndex=vrrpOperVirtRtrIndex, ospfNewCfgStaticAddOutRmap=ospfNewCfgStaticAddOutRmap, layer3=layer3, ospfNewCfgIntfState=ospfNewCfgIntfState, ipv6CurCfgStaticRouteIndx=ipv6CurCfgStaticRouteIndx, ip6GwStatsIndex=ip6GwStatsIndex, ospfRedistributeEbgp=ospfRedistributeEbgp, bgpCurCfgAggrEntry=bgpCurCfgAggrEntry, ospfCumNbrLoadingDone=ospfCumNbrLoadingDone, vrrpInfo=vrrpInfo, ipNewCfgBootpAddr2=ipNewCfgBootpAddr2, intfInfoStatus=intfInfoStatus, vrrpCurCfgVirtRtrGrpTckL4Port=vrrpCurCfgVirtRtrGrpTckL4Port, vrrpNewCfgVirtRtrGrpTckIpIntf=vrrpNewCfgVirtRtrGrpTckIpIntf, ospfAreaTableMaxSize=ospfAreaTableMaxSize, ipCurCfgGwIpv6Addr=ipCurCfgGwIpv6Addr, vrrpCurCfgVirtRtrVrGrpTckVlanPort=vrrpCurCfgVirtRtrVrGrpTckVlanPort, vrrpInfoVirtRtrTable=vrrpInfoVirtRtrTable, ipNewCfgASNumber=ipNewCfgASNumber, ipRouteInfoInterface=ipRouteInfoInterface, bgpOper=bgpOper, ipCurCfgIntfIndex=ipCurCfgIntfIndex, ripCurCfgIntfMcastUpdate=ripCurCfgIntfMcastUpdate, ipNewCfgGwMetric=ipNewCfgGwMetric, ripCurCfgIntfListen=ripCurCfgIntfListen, ipNewCfgGwState=ipNewCfgGwState, ipCurCfgRmapAp=ipCurCfgRmapAp, ipCurCfgIntfPrefixLen=ipCurCfgIntfPrefixLen, vrrpNewCfgVirtRtrGrpInterval=vrrpNewCfgVirtRtrGrpInterval, ipNewCfgRmapAp=ipNewCfgRmapAp, ospfIntfIndex=ospfIntfIndex, ospfCurCfgMdkeyTable=ospfCurCfgMdkeyTable, vrrpNewCfgVirtRtrVersion=vrrpNewCfgVirtRtrVersion, ospfMdkeyTableMaxSize=ospfMdkeyTableMaxSize, ospfNewCfgMdkeyDelete=ospfNewCfgMdkeyDelete, vrrpStatOutAdvers=vrrpStatOutAdvers, vrrpCurCfgIfAuthType=vrrpCurCfgIfAuthType, vrrpCurCfgVirtRtrGrpTckHsrp=vrrpCurCfgVirtRtrGrpTckHsrp, bgpCurCfgPeerRemoteAs=bgpCurCfgPeerRemoteAs, bgpNewCfgPeerKeepAlive=bgpNewCfgPeerKeepAlive, ospfIntfErrorStatsEntry=ospfIntfErrorStatsEntry, ipRoute6InfoInterface=ipRoute6InfoInterface, vrrpNewCfgVirtRtrTableEntry=vrrpNewCfgVirtRtrTableEntry, ospfIfNbrIpAddress=ospfIfNbrIpAddress, ip6GwStatsTable=ip6GwStatsTable, ospfInterface=ospfInterface, ospfIntfNbrhello=ospfIntfNbrhello, ospfCurCfgVirtIntfKey=ospfCurCfgVirtIntfKey, vrrpNewCfgVirtRtrTckHsrp=vrrpNewCfgVirtRtrTckHsrp, ipFwdGeneralCfg=ipFwdGeneralCfg, ospfTmrsKckOffDbage=ospfTmrsKckOffDbage, allowedNwInfoVlan=allowedNwInfoVlan, ospfIfNbrIpAddr=ospfIfNbrIpAddr, ipNewCfgStaticArpEntry=ipNewCfgStaticArpEntry, nbrcacheInfoTotLocalEntries=nbrcacheInfoTotLocalEntries, arpInfoDestIp=arpInfoDestIp, ipFwdNewCfgLocalTable=ipFwdNewCfgLocalTable, vrrpCurCfgGenTckVlanPortInc=vrrpCurCfgGenTckVlanPortInc, ospfAreaRxPkts=ospfAreaRxPkts, ospfNewCfgRangeIndex=ospfNewCfgRangeIndex, ipNewCfgNwfIndex=ipNewCfgNwfIndex, ip6InDiscards=ip6InDiscards, vrrpCurCfgVirtRtrTckRServer=vrrpCurCfgVirtRtrTckRServer, icmp6OutErrors=icmp6OutErrors, PYSNMP_MODULE_ID=layer3, ipRouteInfoDestIp=ipRouteInfoDestIp, intfInfoAddr=intfInfoAddr, ipFwdNewCfgLocalEntry=ipFwdNewCfgLocalEntry, ip6InAddrErrors=ip6InAddrErrors, ipRoute6InfoNextHop=ipRoute6InfoNextHop, ospfIntfNbrLoadingDone=ospfIntfNbrLoadingDone, ripNewCfgIntfTable=ripNewCfgIntfTable, rip2CurCfgVip=rip2CurCfgVip, ospfAreaErrHelloMismatch=ospfAreaErrHelloMismatch, bgpNewCfgState=bgpNewCfgState, ipNewCfgStaticRouteInterface=ipNewCfgStaticRouteInterface, ospfCurCfgIbgpMetricType=ospfCurCfgIbgpMetricType, tcpStatCurInConn=tcpStatCurInConn, ospfAreaNbrChangeStatsEntry=ospfAreaNbrChangeStatsEntry, ospfNewCfgIbgpRemoveOutRmap=ospfNewCfgIbgpRemoveOutRmap, vrrpCurCfgVirtRtrIfIndex=vrrpCurCfgVirtRtrIfIndex, intfInfoEntry=intfInfoEntry, ospfCurCfgHostIpAddr=ospfCurCfgHostIpAddr, ipCurCfgGwIpVer=ipCurCfgGwIpVer, rip2RoutesInfoMetric=rip2RoutesInfoMetric, ipForwardCfg=ipForwardCfg, ospfIntfErrDeadMismatch=ospfIntfErrDeadMismatch, ipv6NewCfgStaticRouteTable=ipv6NewCfgStaticRouteTable, vrrpNewCfgGenHotstandby=vrrpNewCfgGenHotstandby, vrrpNewCfgVirtRtrIfIndex=vrrpNewCfgVirtRtrIfIndex, rip2RoutesInfoDestination=rip2RoutesInfoDestination, ospfNewCfgIbgpMetricType=ospfNewCfgIbgpMetricType, ospfTotalAreas=ospfTotalAreas, ospfCurCfgIntfKey=ospfCurCfgIntfKey, ospfNewCfgRipAddOutRmap=ospfNewCfgRipAddOutRmap, ipCurCfgStaticRouteIndx=ipCurCfgStaticRouteIndx, vrrpIfTableMaxSize=vrrpIfTableMaxSize, bgpCurCfgPeerStaticState=bgpCurCfgPeerStaticState, bgpOperStartPeerNum=bgpOperStartPeerNum, vrrpNewCfgVirtRtrState=vrrpNewCfgVirtRtrState, rip2NewCfgStaticSupply=rip2NewCfgStaticSupply, ospfCurCfgRangeIndex=ospfCurCfgRangeIndex, ospfRedistributeIbgp=ospfRedistributeIbgp, ipRoute6InfoEntry=ipRoute6InfoEntry, vrrpNewCfgVirtRtrVrGrpAdd=vrrpNewCfgVirtRtrVrGrpAdd, ipRouteInfoIndx=ipRouteInfoIndx, vrrpNewCfgVirtRtrPreempt=vrrpNewCfgVirtRtrPreempt, vrrpNewCfgVirtRtrGrpVersion=vrrpNewCfgVirtRtrGrpVersion, ipCurCfgNwfState=ipCurCfgNwfState, ipGeneralCfg=ipGeneralCfg, vrrpNewCfgIfTableEntry=vrrpNewCfgIfTableEntry, ospfIntfErrHelloMismatch=ospfIntfErrHelloMismatch, ipCurCfgGwVlan=ipCurCfgGwVlan, vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo=vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo, ipNewCfgStaticArpVlan=ipNewCfgStaticArpVlan, ospfCurCfgVirtIntfRetrans=ospfCurCfgVirtIntfRetrans, ipFwdNewCfgLocalIndex=ipFwdNewCfgLocalIndex, ipv6CurCfgStaticRouteDestIp=ipv6CurCfgStaticRouteDestIp, ospfNewCfgAreaAuthType=ospfNewCfgAreaAuthType, ospfCurCfgFixedMetricType=ospfCurCfgFixedMetricType, ospfCumRxDatabase=ospfCumRxDatabase, ospfAreaRxTxStatsEntry=ospfAreaRxTxStatsEntry, ospfNewCfgStaticRemoveOutRmap=ospfNewCfgStaticRemoveOutRmap, ripNewCfgIntfMetric=ripNewCfgIntfMetric, ospfRedistributeRip=ospfRedistributeRip, ospfIntfRxHello=ospfIntfRxHello, vrrpCurCfgVirtRtrGrpIfIndex=vrrpCurCfgVirtRtrGrpIfIndex, ipCurCfgAlistRmapIndex=ipCurCfgAlistRmapIndex, bgpCurCfgPeerTable=bgpCurCfgPeerTable, ripStatInBadSourceIP=ripStatInBadSourceIP, icmp6InParmProbs=icmp6InParmProbs, vrrpCurCfgVirtRtrVrGrpPriority=vrrpCurCfgVirtRtrVrGrpPriority, gatewayInfoEntry=gatewayInfoEntry, ospfIntfRxTxStatsEntry=ospfIntfRxTxStatsEntry, vrrpCurCfgVirtRtrVrGrpSharing=vrrpCurCfgVirtRtrVrGrpSharing, arpStatMaxEntries=arpStatMaxEntries, ipCurCfgGwIndex=ipCurCfgGwIndex, ipIntfInfoTable=ipIntfInfoTable, ip6ForwDatagrams=ip6ForwDatagrams, ipNewCfgRmapWeight=ipNewCfgRmapWeight, tcpStatCurConn=tcpStatCurConn, vrrpGeneral=vrrpGeneral, vrrpNewCfgIfTable=vrrpNewCfgIfTable, nbrcacheInfoPortNum=nbrcacheInfoPortNum, ripInfoIntfVersion=ripInfoIntfVersion, ipNewCfgIntfBroadcast=ipNewCfgIntfBroadcast, vrrpCurCfgVirtRtrTableEntry=vrrpCurCfgVirtRtrTableEntry, vrrpCurCfgVirtRtrGrpTableEntry=vrrpCurCfgVirtRtrGrpTableEntry, ospfRedistributeStatic=ospfRedistributeStatic, vrrpInfoVirtRtrOwnership=vrrpInfoVirtRtrOwnership, vrrpCurCfgVirtRtrVrGrpTableEntry=vrrpCurCfgVirtRtrVrGrpTableEntry, bgpGeneral=bgpGeneral, ospfNewCfgRangeHideState=ospfNewCfgRangeHideState, vrrpVirtRtrVrGrpTableMaxSize=vrrpVirtRtrVrGrpTableMaxSize)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', gatewayInfoAddr=gatewayInfoAddr, vrrpNewCfgVirtRtrIpv6Addr=vrrpNewCfgVirtRtrIpv6Addr, vrrpNewCfgVirtRtrGrpTckRServer=vrrpNewCfgVirtRtrGrpTckRServer, vrrpCurCfgVirtRtrGrpIndx=vrrpCurCfgVirtRtrGrpIndx, ipCurCfgIntfTable=ipCurCfgIntfTable, ospfAreaRxlsUpdates=ospfAreaRxlsUpdates, layer3Info=layer3Info, ospfNewCfgVisionAreaState=ospfNewCfgVisionAreaState, ipFwdCurCfgLocalEntry=ipFwdCurCfgLocalEntry, ipRouteInfoType=ipRouteInfoType, ospfIntfNbrNegotiationDone=ospfIntfNbrNegotiationDone, ospfArea=ospfArea, intfInfoIndex=intfInfoIndex, ipAlistTableMax=ipAlistTableMax, ospfAreaInfoEntry=ospfAreaInfoEntry, nbrcacheInfoTotDynamicEntries=nbrcacheInfoTotDynamicEntries, icmp6InErrors=icmp6InErrors, ipCurCfgIntfEntry=ipCurCfgIntfEntry, ospfNewCfgRangeTable=ospfNewCfgRangeTable, ospfIfInfoIndex=ospfIfInfoIndex, ospfAreaErrorStatsEntry=ospfAreaErrorStatsEntry, bgpNewCfgPeerState=bgpNewCfgPeerState, icmp6StatsIndx=icmp6StatsIndx, ipCurCfgStaticArpIp=ipCurCfgStaticArpIp, rip2RoutesInfoDestIndex=rip2RoutesInfoDestIndex, ospfIntfNbrExchangeDone=ospfIntfNbrExchangeDone, rip2CurCfgUpdatePeriod=rip2CurCfgUpdatePeriod, ospfIntfWaitTimer=ospfIntfWaitTimer, ipCurCfgRmapMetricType=ipCurCfgRmapMetricType, ifStatsTable=ifStatsTable, ospfAreaNbrBadSequence=ospfAreaNbrBadSequence, ipNewCfgRmapTable=ipNewCfgRmapTable, ripInfoIntfEntry=ripInfoIntfEntry, ip6GwIndex=ip6GwIndex, ripStatInBadZeros=ripStatInBadZeros, ipCurCfgNwfTable=ipCurCfgNwfTable, ospfAreaIntfBackup=ospfAreaIntfBackup, vrrpNewCfgVirtRtrSharing=vrrpNewCfgVirtRtrSharing, ospfIntfNbrBadRequests=ospfIntfNbrBadRequests, ipNewCfgAspathDelete=ipNewCfgAspathDelete, ospfCumTxHello=ospfCumTxHello, ipNewCfgStaticArpAction=ipNewCfgStaticArpAction, ipCurCfgRmapTable=ipCurCfgRmapTable, icmp6OutMsgs=icmp6OutMsgs, bgpCurCfgState=bgpCurCfgState, vrrpCurCfgIfPasswd=vrrpCurCfgIfPasswd, ospfIntfBackup=ospfIntfBackup, bgpNewCfgPeerOspfState=bgpNewCfgPeerOspfState, vrrpCurCfgVirtRtrGrpTckIpIntf=vrrpCurCfgVirtRtrGrpTckIpIntf, bgpCurCfgAggrIndex=bgpCurCfgAggrIndex, ospfCumIntfLoop=ospfCumIntfLoop, ospfIntfInfoEntry=ospfIntfInfoEntry, ipStaticArpTableMaxSize=ipStaticArpTableMaxSize, ospfIntfErrNetmaskMismatch=ospfIntfErrNetmaskMismatch, ospfGeneral=ospfGeneral, ospfIntfNbrDown=ospfIntfNbrDown, ospfRangeTableMaxSize=ospfRangeTableMaxSize, ripCurCfgIntfMetric=ripCurCfgIntfMetric, ospfCumIntfNbrChange=ospfCumIntfNbrChange, arpInfoSrcPort=arpInfoSrcPort, ripInfoState=ripInfoState, ipOper=ipOper, ipv6NewCfgStaticRouteDestIp=ipv6NewCfgStaticRouteDestIp, vrrpCurCfgVirtRtrIndx=vrrpCurCfgVirtRtrIndx, vrrpNewCfgIfIndx=vrrpNewCfgIfIndx, dnsCfg=dnsCfg, vrrpNewCfgVirtRtrVrGrpTckVlanPort=vrrpNewCfgVirtRtrVrGrpTckVlanPort, vrrpInfoVirtRtrPriority=vrrpInfoVirtRtrPriority, ospfCurCfgAreaSpfInterval=ospfCurCfgAreaSpfInterval, ospfNewCfgEbgpAddOutRmap=ospfNewCfgEbgpAddOutRmap, ospfIntfNbrChangeStats=ospfIntfNbrChangeStats, ospfCumTxlsUpdates=ospfCumTxlsUpdates, nbrcacheInfoState=nbrcacheInfoState, rip2GeneralInfo=rip2GeneralInfo, ospfNewCfgIntfMdkey=ospfNewCfgIntfMdkey, ripInfoVip=ripInfoVip, intfInfoVlan=intfInfoVlan, vrrpVirtRtrTableMaxSize=vrrpVirtRtrTableMaxSize, ipFwdNewCfgDirectedBcast=ipFwdNewCfgDirectedBcast, ripCurCfgIntfIndex=ripCurCfgIntfIndex, vrrpCurCfgVirtRtrInterval=vrrpCurCfgVirtRtrInterval, ipCurCfgGwRetry=ipCurCfgGwRetry, ipCurCfgGwAddr=ipCurCfgGwAddr, vrrpCurCfgGenTckVirtRtrInc=vrrpCurCfgGenTckVirtRtrInc, ospfNewCfgVirtIntfMdkey=ospfNewCfgVirtIntfMdkey, ospfAreaInfoIndex=ospfAreaInfoIndex, ospfNewCfgIntfDead=ospfNewCfgIntfDead, ospfCurCfgRangeAddr=ospfCurCfgRangeAddr, ospfAreaChangeStats=ospfAreaChangeStats, ospfIfNbrState=ospfIfNbrState, ospfIntfTableMaxSize=ospfIntfTableMaxSize, gatewayInfoIndex=gatewayInfoIndex, rip2RoutesInfoNxtHopIndex=rip2RoutesInfoNxtHopIndex, vrrpNewCfgGenTckVirtRtrInc=vrrpNewCfgGenTckVirtRtrInc, vrrpCurCfgVirtRtrTable=vrrpCurCfgVirtRtrTable, vrrpInfoVirtRtrIndex=vrrpInfoVirtRtrIndex, ospfIfNbrPriority=ospfIfNbrPriority, ospfNewCfgIntfHello=ospfNewCfgIntfHello, ipNewCfgIntfAddr=ipNewCfgIntfAddr, ipNewCfgIntfIpVer=ipNewCfgIntfIpVer, bgpNewCfgPeerOutRmapList=bgpNewCfgPeerOutRmapList, icmp6OutNAs=icmp6OutNAs, ipClearStats=ipClearStats, ospfNewCfgFixedOutRmapList=ospfNewCfgFixedOutRmapList, ipFwdNewCfgPortState=ipFwdNewCfgPortState, ipFwdCurCfgLocalSubnet=ipFwdCurCfgLocalSubnet, bgpNewCfgPeerRemoteAs=bgpNewCfgPeerRemoteAs, ospfCumTxlsAcks=ospfCumTxlsAcks, ipCurCfgAspathAction=ipCurCfgAspathAction, ipNewCfgIntfPrefixLen=ipNewCfgIntfPrefixLen, ipCurCfgBootpAddr2=ipCurCfgBootpAddr2, bgpNewCfgAggrDelete=bgpNewCfgAggrDelete, ospfCurCfgAreaIndex=ospfCurCfgAreaIndex, vrrpCurCfgVirtRtrVrGrpAdverInterval=vrrpCurCfgVirtRtrVrGrpAdverInterval, ripNewCfgIntfState=ripNewCfgIntfState, routeStatMaxEntries=routeStatMaxEntries, ospfCumIntfDown=ospfCumIntfDown, ospfCumNbrN2way=ospfCumNbrN2way, bgpNewCfgMaxASPath=bgpNewCfgMaxASPath, ipGatewayTableMax=ipGatewayTableMax, ipv6NewCfgStaticRouteInterface=ipv6NewCfgStaticRouteInterface, layer3Configs=layer3Configs, ipNewCfgStaticRouteAction=ipNewCfgStaticRouteAction, vrrpNewCfgVirtRtrIndx=vrrpNewCfgVirtRtrIndx, ospfCurCfgIntfMdkey=ospfCurCfgIntfMdkey, vrrpCurCfgVirtRtrVrGrpBmap=vrrpCurCfgVirtRtrVrGrpBmap, ospfAreaErrUnknownNbr=ospfAreaErrUnknownNbr, ospfAreaNbrStart=ospfAreaNbrStart, vrrpNewCfgVirtRtrVrGrpTable=vrrpNewCfgVirtRtrVrGrpTable, ipNewCfgNwfEntry=ipNewCfgNwfEntry, routeStats=routeStats, ipNewCfgIntfRouteAdv=ipNewCfgIntfRouteAdv, ospfAreaNbrN2way=ospfAreaNbrN2way, ipRouteInfoGateway2=ipRouteInfoGateway2, ospfCumTxlsReqs=ospfCumTxlsReqs, ospfCurCfgVirtIntfDead=ospfCurCfgVirtIntfDead, ripInfoIntfSupply=ripInfoIntfSupply, ipv6NewCfgStaticRouteGateway=ipv6NewCfgStaticRouteGateway, vrrpNewCfgVirtRtrGrpTckHsrv=vrrpNewCfgVirtRtrGrpTckHsrv, ipNewCfgNwfTable=ipNewCfgNwfTable, vrrpNewCfgVirtRtrGrpTckHsrp=vrrpNewCfgVirtRtrGrpTckHsrp, ripInfoIntfDefault=ripInfoIntfDefault, ipCurCfgStaticRouteInterface=ipCurCfgStaticRouteInterface, vrrpCurCfgGenHoldoff=vrrpCurCfgGenHoldoff, ospfAreaTxDatabase=ospfAreaTxDatabase, bgpNewCfgPeerRemoveOutRmap=bgpNewCfgPeerRemoveOutRmap, layer3Stats=layer3Stats, ospfNewCfgState=ospfNewCfgState, bgpNewCfgPeerVipState=bgpNewCfgPeerVipState, ospfCurCfgIntfTransit=ospfCurCfgIntfTransit, ipCurCfgStaticRouteGateway=ipCurCfgStaticRouteGateway, ipFwdCurCfgState=ipFwdCurCfgState, ip6icmpInErrors=ip6icmpInErrors, ipFwdCurCfgPortEntry=ipFwdCurCfgPortEntry, ospfNewCfgMdkeyKey=ospfNewCfgMdkeyKey, vrrpNewCfgVirtRtrGrpSharing=vrrpNewCfgVirtRtrGrpSharing, ospfIntfRxlsAcks=ospfIntfRxlsAcks, ipNewCfgIntfMask=ipNewCfgIntfMask, ipRoute6InfoTable=ipRoute6InfoTable, ip6ReasmFails=ip6ReasmFails, ripInfoIntfPoisonReverse=ripInfoIntfPoisonReverse, dnsStats=dnsStats, bgpNewCfgPeerIndex=bgpNewCfgPeerIndex, ripInfoIntfAuth=ripInfoIntfAuth, ipNewCfgIntfTable=ipNewCfgIntfTable, bgpAggrTableMax=bgpAggrTableMax, ipRoute6InfoDestIp6=ipRoute6InfoDestIp6, bgpCurCfgMaxASPath=bgpCurCfgMaxASPath, ospfAreaRxHello=ospfAreaRxHello, ospfAreaNbrDown=ospfAreaNbrDown, ipFwdNewCfgPortIndex=ipFwdNewCfgPortIndex, bgpCurCfgPeerVipState=bgpCurCfgPeerVipState, ospfIntfTxlsReqs=ospfIntfTxlsReqs, ipv6NewCfgStaticRouteAction=ipv6NewCfgStaticRouteAction, ospfCurCfgIntfIndex=ospfCurCfgIntfIndex, ospfCurCfgRangeState=ospfCurCfgRangeState, dnsNewCfgPrimaryIpv6Addr=dnsNewCfgPrimaryIpv6Addr, ipCurCfgNwfIndex=ipCurCfgNwfIndex, ripGeneral=ripGeneral, vrrpNewCfgVirtRtrGrpIpv6Interval=vrrpNewCfgVirtRtrGrpIpv6Interval, ospfCurCfgIntfHello=ospfCurCfgIntfHello, ospfNewCfgVisionAreaEntry=ospfNewCfgVisionAreaEntry, ospfIntfNbrBadSequence=ospfIntfNbrBadSequence, ipAspathTableMax=ipAspathTableMax, bgpCurCfgPeerDefaultAction=bgpCurCfgPeerDefaultAction, ospfCurCfgAreaId=ospfCurCfgAreaId, ipRoutingInfo=ipRoutingInfo, ospfNewCfgFixedAddOutRmap=ospfNewCfgFixedAddOutRmap, ipNewCfgRmapEntry=ipNewCfgRmapEntry, ospfNewCfgRangeDelete=ospfNewCfgRangeDelete, ospfTmrsKckOffLsaLock=ospfTmrsKckOffLsaLock, ospfNewCfgAreaState=ospfNewCfgAreaState, ospfCurCfgVirtIntfEntry=ospfCurCfgVirtIntfEntry, ipNewCfgAspathAction=ipNewCfgAspathAction, ipNwfCfg=ipNwfCfg, bgpNewCfgLocalPref=bgpNewCfgLocalPref, ospfNewCfgVisionAreaSpfInterval=ospfNewCfgVisionAreaSpfInterval, ipNewCfgAlistState=ipNewCfgAlistState, vrrpStatInAdvers=vrrpStatInAdvers, ospfNewCfgHostState=ospfNewCfgHostState, vrrpCurCfgVirtRtrGrpVersion=vrrpCurCfgVirtRtrGrpVersion, bgpCurCfgPeerMinAS=bgpCurCfgPeerMinAS, ospfAreaRxlsAcks=ospfAreaRxlsAcks, ospfCumNbrAdjointOk=ospfCumNbrAdjointOk, ripStatInRequestPkts=ripStatInRequestPkts, vrrpCurCfgVirtRtrTckHsrp=vrrpCurCfgVirtRtrTckHsrp, ipNewCfgAlistMetric=ipNewCfgAlistMetric, icmp6InDestUnreachs=icmp6InDestUnreachs, ripInfoIntfTrigUpdate=ripInfoIntfTrigUpdate, vrrpOperVirtRtrBackup=vrrpOperVirtRtrBackup, bgpCurCfgPeerRipState=bgpCurCfgPeerRipState, ospfCurCfgRangeAreaIndex=ospfCurCfgRangeAreaIndex, ipNewCfgRmapMetricType=ipNewCfgRmapMetricType, bgpNewCfgPeerTtl=bgpNewCfgPeerTtl, ospfStats=ospfStats, ipNewCfgIntfIpv6Addr=ipNewCfgIntfIpv6Addr, ipNwfTableMax=ipNwfTableMax, ip6GwEchoreq=ip6GwEchoreq, tcpStatCurOutConn=tcpStatCurOutConn, ipNewCfgRmapMetric=ipNewCfgRmapMetric, ipv6CurCfgStaticRouteTable=ipv6CurCfgStaticRouteTable, vrrpNewCfgVirtRtrVrGrpPriority=vrrpNewCfgVirtRtrVrGrpPriority, nbrcacheInfoType=nbrcacheInfoType, dnsNewCfgDomainName=dnsNewCfgDomainName, ipCurCfgAlistNwf=ipCurCfgAlistNwf, ospfCurCfgStaticMetricType=ospfCurCfgStaticMetricType, vrrpCurCfgVirtRtrGrpPriority=vrrpCurCfgVirtRtrGrpPriority, vrrpNewCfgVirtRtrGrpTckVlanPort=vrrpNewCfgVirtRtrGrpTckVlanPort, vrrpCurCfgVirtRtrGrpID=vrrpCurCfgVirtRtrGrpID, ospfCumNbrhello=ospfCumNbrhello, ospfCurCfgVirtIntfHello=ospfCurCfgVirtIntfHello, vrrpNewCfgVirtRtrTckRServer=vrrpNewCfgVirtRtrTckRServer, ospfAreaTxlsAcks=ospfAreaTxlsAcks, ospfAreaNbrAdjointOk=ospfAreaNbrAdjointOk, ipRouteInfoTag=ipRouteInfoTag, ipNewCfgGwRetry=ipNewCfgGwRetry, ospfAreaNbrRstAd=ospfAreaNbrRstAd, ospfCumNbrN1way=ospfCumNbrN1way, ipFwdCurCfgLocalTable=ipFwdCurCfgLocalTable, icmp6OutRSs=icmp6OutRSs, ripCurCfgIntfAuth=ripCurCfgIntfAuth, ipNewCfgAlistDelete=ipNewCfgAlistDelete, ospfIntfNbrRstAd=ospfIntfNbrRstAd, vrrpNewCfgVirtRtrGrpIfIndex=vrrpNewCfgVirtRtrGrpIfIndex, ospfNewCfgVirtIntfKey=ospfNewCfgVirtIntfKey, ipCurCfgBootpState=ipCurCfgBootpState, vrrpNewCfgVirtRtrVrGrpTckL4Port=vrrpNewCfgVirtRtrVrGrpTckL4Port, bgpNewCfgPeerRemoteAddr=bgpNewCfgPeerRemoteAddr, ospfCurCfgRipMetric=ospfCurCfgRipMetric, ipNewCfgGwPriority=ipNewCfgGwPriority, vrrpStatOutBadAdvers=vrrpStatOutBadAdvers, garpOperVlanNumber=garpOperVlanNumber, ospfNewCfgVirtIntfNbr=ospfNewCfgVirtIntfNbr, ipNewCfgAlistTable=ipNewCfgAlistTable)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ripStatInBadSourcePort=ripStatInBadSourcePort, dnsNewCfgSecondaryIpv6Addr=dnsNewCfgSecondaryIpv6Addr, ospfNewCfgAreaId=ospfNewCfgAreaId, ospfCurCfgHostState=ospfCurCfgHostState, ripStatOutPackets=ripStatOutPackets, ospfIfNbrTable=ospfIfNbrTable, ipCurCfgIntfMask=ipCurCfgIntfMask, ospfCumIntfWaitTimer=ospfCumIntfWaitTimer, ospfCurCfgIbgpMetric=ospfCurCfgIbgpMetric, vrrpNewCfgIfPasswd=vrrpNewCfgIfPasswd, ipCurCfgRmapMetric=ipCurCfgRmapMetric, ripInfoIntfMetric=ripInfoIntfMetric, rip2CurCfgState=rip2CurCfgState, ospfCurCfgVirtIntfAreaId=ospfCurCfgVirtIntfAreaId, ipNewCfgIntfIndex=ipNewCfgIntfIndex, bgpOperStopPeerNum=bgpOperStopPeerNum, ripCurCfgIntfPoisonReverse=ripCurCfgIntfPoisonReverse, ospfIntfNbrIndex=ospfIntfNbrIndex, ip6InReceives=ip6InReceives, ipv6CurCfgStaticRouteGateway=ipv6CurCfgStaticRouteGateway, ospfCurCfgIntfTable=ospfCurCfgIntfTable, ipStaticArpCfg=ipStaticArpCfg, ospfAreaErrorStats=ospfAreaErrorStats, ospfAreaErrDeadMismatch=ospfAreaErrDeadMismatch, ospfNewCfgHostAreaIndex=ospfNewCfgHostAreaIndex, nbrcacheInfoTable=nbrcacheInfoTable, ospfNewCfgDefaultRouteMetric=ospfNewCfgDefaultRouteMetric, ip6icmpOutMsgs=ip6icmpOutMsgs, ospfIntfErrorStats=ospfIntfErrorStats, ipCurCfgAlistMetric=ipCurCfgAlistMetric, ospfIfNbrIntfIndex=ospfIfNbrIntfIndex, ospfCurCfgIbgpOutRmapList=ospfCurCfgIbgpOutRmapList, ospfAreaIntfNbrChange=ospfAreaIntfNbrChange, vrrpNewCfgVirtRtrGrpTckVirtRtr=vrrpNewCfgVirtRtrGrpTckVirtRtr, ospfCurCfgFixedMetric=ospfCurCfgFixedMetric, ospfNewCfgVirtIntfEntry=ospfNewCfgVirtIntfEntry, ospfCumNbrExchangeDone=ospfCumNbrExchangeDone, ipCurCfgIntfAddr=ipCurCfgIntfAddr, ospfNewCfgRipMetric=ospfNewCfgRipMetric, vrrpCurCfgVirtRtrPriority=vrrpCurCfgVirtRtrPriority, ospfIntfLoop=ospfIntfLoop, ipFwdNewCfgRtCache=ipFwdNewCfgRtCache, icmp6OutEchoReps=icmp6OutEchoReps, nbrcacheInfoVlanId=nbrcacheInfoVlanId, ospfNewCfgVirtIntfAreaId=ospfNewCfgVirtIntfAreaId, ospfCurCfgRangeEntry=ospfCurCfgRangeEntry, vrrpNewCfgVirtRtrVrGrpSharing=vrrpNewCfgVirtRtrVrGrpSharing, ipCurCfgAlistState=ipCurCfgAlistState, ipCurCfgIntfRouteAdv=ipCurCfgIntfRouteAdv, ospfIntfNbrN1way=ospfIntfNbrN1way, ipRoute6InfoProto=ipRoute6InfoProto, ospfIfBackupDesignatedRouterIP=ospfIfBackupDesignatedRouterIP, ipRoute6Info=ipRoute6Info, ripCurCfgIntfEntry=ripCurCfgIntfEntry, ospfNewCfgIntfDelete=ospfNewCfgIntfDelete, ipFwdNewCfgPortTable=ipFwdNewCfgPortTable, bgpNewCfgPeerConRetry=bgpNewCfgPeerConRetry, ospfNewCfgFixedMetricType=ospfNewCfgFixedMetricType, ipNewCfgStaticArpTable=ipNewCfgStaticArpTable, ospfCumRxHello=ospfCumRxHello, ipIntfInfo=ipIntfInfo, bgpNewCfgAggrTable=bgpNewCfgAggrTable, ospfNewCfgAreaTable=ospfNewCfgAreaTable, ospfVirtIntfTableMaxSize=ospfVirtIntfTableMaxSize, ipFwdCurCfgPortIndex=ipFwdCurCfgPortIndex, ripCurCfgIntfVersion=ripCurCfgIntfVersion, ipNewCfgBootpAddr=ipNewCfgBootpAddr, ospfNewCfgVisionAreaMetric=ospfNewCfgVisionAreaMetric, ipCurCfgBootpAddr=ipCurCfgBootpAddr, arpInfoVLAN=arpInfoVLAN, vrrpNewCfgVirtRtrGrpIndx=vrrpNewCfgVirtRtrGrpIndx, ipCurCfgIntfState=ipCurCfgIntfState, bgpCurCfgLocalPref=bgpCurCfgLocalPref, ospfNewCfgEbgpOutRmapList=ospfNewCfgEbgpOutRmapList, ipCurCfgStaticArpIndx=ipCurCfgStaticArpIndx, ospfNewCfgRangeMask=ospfNewCfgRangeMask, ospfCurCfgEbgpMetric=ospfCurCfgEbgpMetric, arpInfoFlag=arpInfoFlag, ospfNewCfgAreaType=ospfNewCfgAreaType, ipBootpCfg=ipBootpCfg, vrrpCurCfgGenTckIpIntfInc=vrrpCurCfgGenTckIpIntfInc, vrrpCurCfgVirtRtrTckHsrv=vrrpCurCfgVirtRtrTckHsrv, ipCurCfgIntfVlan=ipCurCfgIntfVlan, ospfNewCfgHostIpAddr=ospfNewCfgHostIpAddr, vrrpNewCfgVirtRtrTckHsrv=vrrpNewCfgVirtRtrTckHsrv, ipStaticRouteCfg=ipStaticRouteCfg, ipCurCfgStaticRouteEntry=ipCurCfgStaticRouteEntry, dnsCurCfgSecondaryIpAddr=dnsCurCfgSecondaryIpAddr, ospfNewCfgIntfAreaId=ospfNewCfgIntfAreaId, vrrpCurCfgGenTckL4PortInc=vrrpCurCfgGenTckL4PortInc, vrrpCurCfgGenTckHsrpInc=vrrpCurCfgGenTckHsrpInc, ipCurCfgRmapIndex=ipCurCfgRmapIndex, ospfIfNbrDesignatedRtr=ospfIfNbrDesignatedRtr, ipCurCfgGwState=ipCurCfgGwState, ospfAreaTxlsReqs=ospfAreaTxlsReqs, ospfIntfNbrStart=ospfIntfNbrStart, ipv6NewCfgStaticRouteMask=ipv6NewCfgStaticRouteMask, ripCurCfgIntfTrigUpdate=ripCurCfgIntfTrigUpdate, ospfIntfRxTxIndex=ospfIntfRxTxIndex, ipNewCfgRmapState=ipNewCfgRmapState, ospfIntfInfoTable=ospfIntfInfoTable, ipv6NewCfgStaticRouteIndx=ipv6NewCfgStaticRouteIndx, bgpCurCfgAggrState=bgpCurCfgAggrState, bgpCurCfgPeerTtl=bgpCurCfgPeerTtl, ospfProcessUptime=ospfProcessUptime, ospfCurCfgFixedOutRmapList=ospfCurCfgFixedOutRmapList, ipCurCfgStaticArpPort=ipCurCfgStaticArpPort, ospfIfTotalNeighbours=ospfIfTotalNeighbours, ospfAreaRxlsReqs=ospfAreaRxlsReqs, ospfIntfErrAuthFailure=ospfIntfErrAuthFailure, ipRmapCfg=ipRmapCfg, ospfAreaErrIndex=ospfAreaErrIndex, ipFwdNewCfgLocalDelete=ipFwdNewCfgLocalDelete, vrrpCurCfgVirtRtrVrGrpTckHsrp=vrrpCurCfgVirtRtrVrGrpTckHsrp, vrrpCurCfgVirtRtrGrpTckRServer=vrrpCurCfgVirtRtrGrpTckRServer, ipFwdNewCfgLocalSubnet=ipFwdNewCfgLocalSubnet, vrrpNewCfgVirtRtrVrGrpAdverInterval=vrrpNewCfgVirtRtrVrGrpAdverInterval, ipNewCfgNwfDelete=ipNewCfgNwfDelete, ipNewCfgAspathTable=ipNewCfgAspathTable, ipNewCfgAlistIndex=ipNewCfgAlistIndex, garpOperIpAddr=garpOperIpAddr, ospfCurCfgStaticMetric=ospfCurCfgStaticMetric, icmp6InEchoReps=icmp6InEchoReps, gatewayInfoStatus=gatewayInfoStatus, ipStaticRouteTableMaxSize=ipStaticRouteTableMaxSize, bgpNewCfgAggrMask=bgpNewCfgAggrMask, ospfNewCfgVirtIntfTransit=ospfNewCfgVirtIntfTransit, ospfCumRxlsUpdates=ospfCumRxlsUpdates, ipNewCfgAspathEntry=ipNewCfgAspathEntry, ipNewCfgStaticArpMAC=ipNewCfgStaticArpMAC, ipCurCfgStaticRouteTable=ipCurCfgStaticRouteTable, ipNewCfgStaticRouteDestIp=ipNewCfgStaticRouteDestIp, ipFwdCurCfgLocalMask=ipFwdCurCfgLocalMask, vrrpCurCfgVirtRtrAddr=vrrpCurCfgVirtRtrAddr, ospfCurCfgIntfRetrans=ospfCurCfgIntfRetrans, ospfIntfTxlsUpdates=ospfIntfTxlsUpdates, rip2RoutesInfoEntry=rip2RoutesInfoEntry, ipCurCfgGwPriority=ipCurCfgGwPriority, rip2NewCfgUpdatePeriod=rip2NewCfgUpdatePeriod, vrrpCurCfgVirtRtrTckIpIntf=vrrpCurCfgVirtRtrTckIpIntf, ipCurCfgAlistIndex=ipCurCfgAlistIndex, bgpNewCfgPeerDefaultAction=bgpNewCfgPeerDefaultAction, arpInfoTable=arpInfoTable, vrrpCurCfgVirtRtrVrGrpPreemption=vrrpCurCfgVirtRtrVrGrpPreemption, ospfCurCfgAreaState=ospfCurCfgAreaState, vrrpCfg=vrrpCfg, ipNewCfgGwIpVer=ipNewCfgGwIpVer, ospfCumNbrBadSequence=ospfCumNbrBadSequence, bgpNewCfgPeerRipState=bgpNewCfgPeerRipState, ipNewCfgAlistNwf=ipNewCfgAlistNwf, ospfAreaIntfDown=ospfAreaIntfDown, icmp6InNAs=icmp6InNAs, ipCurCfgNwfAddr=ipCurCfgNwfAddr, nbrcacheInfoMacAddr=nbrcacheInfoMacAddr, ospfTotalNumberOfInterfaces=ospfTotalNumberOfInterfaces, vrrpNewCfgVirtRtrGrpTableEntry=vrrpNewCfgVirtRtrGrpTableEntry, ipNewCfgAlistEntry=ipNewCfgAlistEntry, ipNewCfgNwfMask=ipNewCfgNwfMask, ospfNewCfgIntfTransit=ospfNewCfgIntfTransit, bgpCurCfgPeerRemoteAddr=bgpCurCfgPeerRemoteAddr, ospfNewCfgMdkeyEntry=ospfNewCfgMdkeyEntry, allowedNwInfoEntry=allowedNwInfoEntry, ipFwdPortTableMaxSize=ipFwdPortTableMaxSize, ipCurCfgGwEntry=ipCurCfgGwEntry, ospfCurCfgEbgpMetricType=ospfCurCfgEbgpMetricType, ospfNewCfgIntfPriority=ospfNewCfgIntfPriority, vrrpCurCfgVirtRtrVrGrpTckHsrv=vrrpCurCfgVirtRtrVrGrpTckHsrv, ospfCurCfgDefaultRouteMetric=ospfCurCfgDefaultRouteMetric, arpStatHighWater=arpStatHighWater, ipNewCfgAspathState=ipNewCfgAspathState, vrrpCurCfgVirtRtrVrGrpTable=vrrpCurCfgVirtRtrVrGrpTable, dnsNewCfgPrimaryIpAddr=dnsNewCfgPrimaryIpAddr, ospfNewCfgIntfId=ospfNewCfgIntfId, ospfIntfHello=ospfIntfHello, bgpOperStart=bgpOperStart, ospfNewCfgStaticOutRmapList=ospfNewCfgStaticOutRmapList, ripStatOutRequestPkts=ripStatOutRequestPkts, vrrpCurCfgVirtRtrTckVlanPort=vrrpCurCfgVirtRtrTckVlanPort, ospfAreaRxTxIndex=ospfAreaRxTxIndex, ospfIntfUnloop=ospfIntfUnloop, ospfTmrsKckOffSummary=ospfTmrsKckOffSummary, icmp6OutRedirects=icmp6OutRedirects, ripNewCfgIntfEntry=ripNewCfgIntfEntry, bgpCurCfgPeerState=bgpCurCfgPeerState, vrrpNewCfgVirtRtrVrGrpTableEntry=vrrpNewCfgVirtRtrVrGrpTableEntry, icmp6OutRAs=icmp6OutRAs, vrrpOperVirtRtrGroupBackup=vrrpOperVirtRtrGroupBackup, ospfCurCfgIntfId=ospfCurCfgIntfId, ospfCurCfgStaticOutRmapList=ospfCurCfgStaticOutRmapList, nbrcacheInfoDestIp=nbrcacheInfoDestIp, layer3Oper=layer3Oper, ospfIfWaitInterval=ospfIfWaitInterval, icmp6IntfIndex=icmp6IntfIndex, ipCurCfgRouterID=ipCurCfgRouterID, bgpCurCfgPeerConRetry=bgpCurCfgPeerConRetry, intfInfoBcastAddr=intfInfoBcastAddr, ipCurCfgASNumber=ipCurCfgASNumber, ospfIntfRxDatabase=ospfIntfRxDatabase, nbrcacheInfo=nbrcacheInfo, ripInfoIntfMcastUpdate=ripInfoIntfMcastUpdate, ospfIfNbrBackupDesignatedRtr=ospfIfNbrBackupDesignatedRtr, vrrpCurCfgVirtRtrGrpTckVlanPort=vrrpCurCfgVirtRtrGrpTckVlanPort, vrrpNewCfgVirtRtrTckIpIntf=vrrpNewCfgVirtRtrTckIpIntf, ospfNewCfgHostTable=ospfNewCfgHostTable, ipNewCfgIntfState=ipNewCfgIntfState, ospfCurCfgVirtIntfIndex=ospfCurCfgVirtIntfIndex, vrrpCurCfgVirtRtrVersion=vrrpCurCfgVirtRtrVersion, ospfAreaTxHello=ospfAreaTxHello, ospfCumNbrBadRequests=ospfCumNbrBadRequests, ripInfoUpdatePeriod=ripInfoUpdatePeriod, ospfIntfChangeStatsEntry=ospfIntfChangeStatsEntry, rip2RoutesInfo=rip2RoutesInfo, ospfIfNbrEntry=ospfIfNbrEntry, rip2NewCfgState=rip2NewCfgState, ip6icmpInMsgs=ip6icmpInMsgs, ospfIntfErrUnknownNbr=ospfIntfErrUnknownNbr, bgpCurCfgAggrMask=bgpCurCfgAggrMask, vrrpNewCfgVirtRtrTckL4Port=vrrpNewCfgVirtRtrTckL4Port, ipCurCfgRmapState=ipCurCfgRmapState, ospfAreaNbrN1way=ospfAreaNbrN1way, ospfNbrInFullState=ospfNbrInFullState, vrrpCurCfgVirtRtrGrpTable=vrrpCurCfgVirtRtrGrpTable, icmp6InEchos=icmp6InEchos, ipFwdNewCfgLocalMask=ipFwdNewCfgLocalMask, ospfCurCfgMdkeyEntry=ospfCurCfgMdkeyEntry, ospfNewCfgIntfCost=ospfNewCfgIntfCost, ospfCurCfgHostIndex=ospfCurCfgHostIndex, bgpNewCfgPeerMinAS=bgpNewCfgPeerMinAS, icmp6InRedirects=icmp6InRedirects, vrrpNewCfgVirtRtrTable=vrrpNewCfgVirtRtrTable, ipNewCfgStaticArpPort=ipNewCfgStaticArpPort, ipNewCfgIntfVlan=ipNewCfgIntfVlan, ospfIntfErrIndex=ospfIntfErrIndex, ipFwdCurCfgLocalIndex=ipFwdCurCfgLocalIndex, vrrpNewCfgVirtRtrVrGrpTckHsrp=vrrpNewCfgVirtRtrVrGrpTckHsrp, vrrpNewCfgVirtRtrInterval=vrrpNewCfgVirtRtrInterval, bgpNewCfgPeerRemoveInRmap=bgpNewCfgPeerRemoveInRmap, nbrcacheInfoTotOtherEntries=nbrcacheInfoTotOtherEntries, bgpNewCfgASNumber=bgpNewCfgASNumber, ospfNewCfgIbgpMetric=ospfNewCfgIbgpMetric, vrrpNewCfgVirtRtrGrpState=vrrpNewCfgVirtRtrGrpState, ripNewCfgIntfDefListen=ripNewCfgIntfDefListen, vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo=vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo, bgpCurCfgPeerInRmapList=bgpCurCfgPeerInRmapList, ipNewCfgGwTable=ipNewCfgGwTable, bgpNewCfgAggrIndex=bgpNewCfgAggrIndex, ospfGeneralStats=ospfGeneralStats, intfInfoNetMask=intfInfoNetMask, ospfCurCfgIntfEntry=ospfCurCfgIntfEntry, ospfCurCfgRangeMask=ospfCurCfgRangeMask, arpCacheClear=arpCacheClear, ospfCurCfgAreaType=ospfCurCfgAreaType, ospfNewCfgIntfRetrans=ospfNewCfgIntfRetrans, ripCurCfgIntfKey=ripCurCfgIntfKey)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ripStatRouteTimeout=ripStatRouteTimeout, icmp6InTooBigs=icmp6InTooBigs, ospfCurCfgMdkeyIndex=ospfCurCfgMdkeyIndex, ospfNewCfgVirtIntfRetrans=ospfNewCfgVirtIntfRetrans, ospfIntfRxTxStats=ospfIntfRxTxStats, bgpNewCfgPeerAddOutRmap=bgpNewCfgPeerAddOutRmap, ripNewCfgIntfKey=ripNewCfgIntfKey, bgpNewCfgAggrAddr=bgpNewCfgAggrAddr, ospfTmrsKckOffHello=ospfTmrsKckOffHello, vrrpCurCfgVirtRtrState=vrrpCurCfgVirtRtrState, ipCurCfgGwMetric=ipCurCfgGwMetric, arpStatEntries=arpStatEntries, vrrpNewCfgVirtRtrGrpPriority=vrrpNewCfgVirtRtrGrpPriority, ospfNewCfgHostEntry=ospfNewCfgHostEntry, ospfCurCfgVirtIntfTable=ospfCurCfgVirtIntfTable, vrrpCurCfgVirtRtrID=vrrpCurCfgVirtRtrID, ospfIntfCountForRouter=ospfIntfCountForRouter, vrrpCurCfgIfIpAddr=vrrpCurCfgIfIpAddr, routeStatEntries=routeStatEntries, ospfTimersKickOffStats=ospfTimersKickOffStats, ipCurCfgAspathRmapIndex=ipCurCfgAspathRmapIndex, ipNewCfgStaticRouteTable=ipNewCfgStaticRouteTable, vrrpNewCfgVirtRtrGrpTckL4Port=vrrpNewCfgVirtRtrGrpTckL4Port, ospfCurCfgIntfState=ospfCurCfgIntfState, ospfNewCfgRangeState=ospfNewCfgRangeState, vrrpNewCfgVirtRtrVrGrpTckRServer=vrrpNewCfgVirtRtrVrGrpTckRServer, nbrcacheInfoEntry=nbrcacheInfoEntry, ospfNewCfgVisionAreaType=ospfNewCfgVisionAreaType, ripNewCfgIntfPoisonReverse=ripNewCfgIntfPoisonReverse, ospfAreaErrAuthFailure=ospfAreaErrAuthFailure, bgpNewCfgAggrEntry=bgpNewCfgAggrEntry, ospfAreaNbrBadRequests=ospfAreaNbrBadRequests, ospfTotalNeighbours=ospfTotalNeighbours, ripNewCfgIntfVersion=ripNewCfgIntfVersion, ipNewCfgAspathRmapIndex=ipNewCfgAspathRmapIndex, ripStatInResponsePkts=ripStatInResponsePkts, ipNewCfgAspathAS=ipNewCfgAspathAS, ospfCurCfgAreaEntry=ospfCurCfgAreaEntry, ospfIntfNbrChangeStatsEntry=ospfIntfNbrChangeStatsEntry, ipNewCfgRouterID=ipNewCfgRouterID, icmp6OutEchos=icmp6OutEchos, dnsNewCfgSecondaryIpAddr=dnsNewCfgSecondaryIpAddr, ospfCfg=ospfCfg, ipInterfaceTableMax=ipInterfaceTableMax, ipCurCfgStaticArpVlan=ipCurCfgStaticArpVlan, ospfCumRxlsReqs=ospfCumRxlsReqs, rip2Stats=rip2Stats, ospfCumIntfHello=ospfCumIntfHello, ripStatInBadVersion=ripStatInBadVersion, ip6IfIndex=ip6IfIndex, ospfNumberOfLsdbEntries=ospfNumberOfLsdbEntries, ospfCurCfgIntfPriority=ospfCurCfgIntfPriority, allowedNwInfoIndex=allowedNwInfoIndex, ifClearStats=ifClearStats, ospfIntfNbrChange=ospfIntfNbrChange, ripNewCfgIntfIndex=ripNewCfgIntfIndex, vrrpNewCfgVirtRtrGrpTable=vrrpNewCfgVirtRtrGrpTable, vrrpCurCfgVirtRtrVrGrpAdd=vrrpCurCfgVirtRtrVrGrpAdd, ospfAreaTxPkts=ospfAreaTxPkts, ospfCumNbrNegotiationDone=ospfCumNbrNegotiationDone, rip2Info=rip2Info, ipCurCfgStaticRouteMask=ipCurCfgStaticRouteMask, ipFwdCurCfgPortState=ipFwdCurCfgPortState, ip6InDelivers=ip6InDelivers, icmp6StatsTable=icmp6StatsTable, icmp6InTimeExcds=icmp6InTimeExcds, ipNewCfgRmapIndex=ipNewCfgRmapIndex, ipCurCfgGwArp=ipCurCfgGwArp, arpInfoRefPorts=arpInfoRefPorts, vrrpCurCfgVirtRtrGrpSharing=vrrpCurCfgVirtRtrGrpSharing, bgpNewCfgPeerAddInRmap=bgpNewCfgPeerAddInRmap, ospfIntfRxlsReqs=ospfIntfRxlsReqs, ospfCumRxPkts=ospfCumRxPkts, ospfCumIntfUnloop=ospfCumIntfUnloop, ospfCumTxPkts=ospfCumTxPkts, ospfNewCfgStaticMetricType=ospfNewCfgStaticMetricType, ospfCurCfgAreaAuthType=ospfCurCfgAreaAuthType, bgpNewCfgAggrState=bgpNewCfgAggrState, vrrpNewCfgVirtRtrVrGrpRem=vrrpNewCfgVirtRtrVrGrpRem, bgpNewCfgPeerHoldTime=bgpNewCfgPeerHoldTime, ospfCurCfgIntfDead=ospfCurCfgIntfDead, ipNewCfgIntfBootpRelay=ipNewCfgIntfBootpRelay, ipRouteInfoMetric=ipRouteInfoMetric, vrrpNewCfgVirtRtrVrGrpState=vrrpNewCfgVirtRtrVrGrpState, ip6icmpOutErrors=ip6icmpOutErrors, ripCurCfgIntfDefListen=ripCurCfgIntfDefListen, ospfIfInfoIpAddress=ospfIfInfoIpAddress, bgpOperStop=bgpOperStop, bgpCurCfgASNumber=bgpCurCfgASNumber) |
# Wrong answer
c, e, m = map(int, input().split())
if c == 4:
surface = (c + e + m) ** 0.5
if surface == int(surface):
print(int(surface), int(surface), flush=True)
else:
root1 = (-(e / 2) / 2) + ((((e / 2) / 2) ** 2 - m) ** 0.5)
root2 = (-(e / 2) / 2) - ((((e / 2) / 2) ** 2 - m) ** 0.5)
try:
if (root1, root2) == (int(root1), int(root2)):
print(int(abs(root1)) + 2, int(abs(root2)) + 2, flush=True)
else:
print("impossible", flush=True)
except TypeError:
print("impossible", flush=True)
else:
print("impossible", flush=True) | (c, e, m) = map(int, input().split())
if c == 4:
surface = (c + e + m) ** 0.5
if surface == int(surface):
print(int(surface), int(surface), flush=True)
else:
root1 = -(e / 2) / 2 + ((e / 2 / 2) ** 2 - m) ** 0.5
root2 = -(e / 2) / 2 - ((e / 2 / 2) ** 2 - m) ** 0.5
try:
if (root1, root2) == (int(root1), int(root2)):
print(int(abs(root1)) + 2, int(abs(root2)) + 2, flush=True)
else:
print('impossible', flush=True)
except TypeError:
print('impossible', flush=True)
else:
print('impossible', flush=True) |
filename = "../Docs/crickets.txt"
print('host', 'IP', 'root_pwd')
lines = [line.rstrip('\n') for line in open(filename)]
for line in lines:
a = line.split()
cron_file = a[1] + "_cron"
cfile = open(cron_file, 'w')
#arr = a[1].split('et')
for i in range(1,61):
cricket = a[1] + "_" + str(i)
cfile.write("* * * * * root /root/cricket_message_generator.py 50.23.117.76 " + cricket + " " + a[4] + " " + cricket + ".txt > /root/" + cricket + "_message_generator.log 2>&1")
# cfile.write("; /root/roy_generator.py > /root/roy_generator.log 2>&1) ")
cfile.write("\n")
cfile.close()
print("scp ", cron_file, "root@" + a[2] + ":/etc/cron.d/")
| filename = '../Docs/crickets.txt'
print('host', 'IP', 'root_pwd')
lines = [line.rstrip('\n') for line in open(filename)]
for line in lines:
a = line.split()
cron_file = a[1] + '_cron'
cfile = open(cron_file, 'w')
for i in range(1, 61):
cricket = a[1] + '_' + str(i)
cfile.write('* * * * * root /root/cricket_message_generator.py 50.23.117.76 ' + cricket + ' ' + a[4] + ' ' + cricket + '.txt > /root/' + cricket + '_message_generator.log 2>&1')
cfile.write('\n')
cfile.close()
print('scp ', cron_file, 'root@' + a[2] + ':/etc/cron.d/') |
{
"targets": [
{
"target_name": "node_sketch_bridge",
"sources": [
"main.m"
],
"conditions": [
[
"OS=='mac'",
{
"defines": [
"__MACOSX_CORE__"
],
"link_settings": {
"libraries": [
"-framework CoreFoundation",
"-framework AppKit",
"-framework CoreGraphics"
]
},
"ccflags": [],
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES"
}
}
]
]
}
]
}
| {'targets': [{'target_name': 'node_sketch_bridge', 'sources': ['main.m'], 'conditions': [["OS=='mac'", {'defines': ['__MACOSX_CORE__'], 'link_settings': {'libraries': ['-framework CoreFoundation', '-framework AppKit', '-framework CoreGraphics']}, 'ccflags': [], 'xcode_settings': {'GCC_ENABLE_CPP_EXCEPTIONS': 'YES'}}]]}]} |
x={}
y={"apple"}
print(type(x))
print(type(y))
# add set item in x
# x.add("orange")
x["color"]="red"
x["type"]="apple"
x["price"]=1000.0
print(type(x), x)
for i,j in x.items():
print(i,j);
| x = {}
y = {'apple'}
print(type(x))
print(type(y))
x['color'] = 'red'
x['type'] = 'apple'
x['price'] = 1000.0
print(type(x), x)
for (i, j) in x.items():
print(i, j) |
# -*- coding: utf-8 -*-
# 2021/11/6
# create by: snower
class DataValuerLoaderOption:
pass
class DataValuerOutputerOption:
def __init__(self, changed_require_update=False):
self.changed_require_update = changed_require_update
| class Datavaluerloaderoption:
pass
class Datavalueroutputeroption:
def __init__(self, changed_require_update=False):
self.changed_require_update = changed_require_update |
def organizar(vetor):
quantidade_trocas = 0
i = 1
while i < len(vetor):
while vetor[i] != i:
quantidade_trocas += 1
tmp = vetor[i]
vetor[i] = vetor[tmp]
vetor[tmp] = tmp
i += 1
return quantidade_trocas
jogadores = ['Finn','Jake']
while True:
entrada = raw_input().split()
entrada = [int(x) for x in entrada]
n = entrada[0]
if n == 0:
break
quantidade_trocas = organizar(entrada)
print(jogadores[quantidade_trocas%2])
| def organizar(vetor):
quantidade_trocas = 0
i = 1
while i < len(vetor):
while vetor[i] != i:
quantidade_trocas += 1
tmp = vetor[i]
vetor[i] = vetor[tmp]
vetor[tmp] = tmp
i += 1
return quantidade_trocas
jogadores = ['Finn', 'Jake']
while True:
entrada = raw_input().split()
entrada = [int(x) for x in entrada]
n = entrada[0]
if n == 0:
break
quantidade_trocas = organizar(entrada)
print(jogadores[quantidade_trocas % 2]) |
#
# PySNMP MIB module HH3C-USER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-USER-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:17: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)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection")
hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
Bits, Integer32, TimeTicks, NotificationType, Gauge32, ObjectIdentity, IpAddress, iso, Unsigned32, ModuleIdentity, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Counter64 = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Integer32", "TimeTicks", "NotificationType", "Gauge32", "ObjectIdentity", "IpAddress", "iso", "Unsigned32", "ModuleIdentity", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Counter64")
DisplayString, DateAndTime, RowStatus, TextualConvention, MacAddress = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "DateAndTime", "RowStatus", "TextualConvention", "MacAddress")
hh3cUser = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 12))
if mibBuilder.loadTexts: hh3cUser.setLastUpdated('200304100000Z')
if mibBuilder.loadTexts: hh3cUser.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
class DisplayString(OctetString):
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 255)
class ServiceType(TextualConvention, Integer32):
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2))
namedValues = NamedValues(("enable", 1), ("disable", 2))
hh3cUserObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1))
hh3cUserInfoTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1), )
if mibBuilder.loadTexts: hh3cUserInfoTable.setStatus('current')
hh3cUserInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1), ).setIndexNames((0, "HH3C-USER-MIB", "hh3cUserIndex"))
if mibBuilder.loadTexts: hh3cUserInfoEntry.setStatus('current')
hh3cUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 1), DisplayString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cUserName.setStatus('current')
hh3cUserPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 2), DisplayString()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cUserPassword.setStatus('current')
hh3cAuthMode = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 3), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cAuthMode.setStatus('current')
hh3cUserLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cUserLevel.setStatus('current')
hh3cUserState = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("active", 0), ("block", 1)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cUserState.setStatus('current')
hh3cUserInfoRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 6), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cUserInfoRowStatus.setStatus('current')
hh3cUserIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 7), Integer32())
if mibBuilder.loadTexts: hh3cUserIndex.setStatus('current')
hh3cUserAttributeTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2), )
if mibBuilder.loadTexts: hh3cUserAttributeTable.setStatus('current')
hh3cUserAttributeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1), ).setIndexNames((0, "HH3C-USER-MIB", "hh3cUserIndex"))
if mibBuilder.loadTexts: hh3cUserAttributeEntry.setStatus('current')
hh3cAccessLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cAccessLimit.setStatus('current')
hh3cIdleCut = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cIdleCut.setStatus('current')
hh3cIPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 3), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cIPAddress.setStatus('current')
hh3cNasIPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cNasIPAddress.setStatus('current')
hh3cSlotNum = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSlotNum.setStatus('current')
hh3cSubSlotNum = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSubSlotNum.setStatus('current')
hh3cPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cPortNum.setStatus('current')
hh3cMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 8), MacAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cMacAddress.setStatus('current')
hh3cVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cVlan.setStatus('current')
hh3cFtpService = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 10), ServiceType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cFtpService.setStatus('current')
hh3cFtpDirectory = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 11), OctetString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cFtpDirectory.setStatus('current')
hh3cLanAccessService = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 12), ServiceType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cLanAccessService.setStatus('current')
hh3cSshService = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 13), ServiceType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cSshService.setStatus('current')
hh3cTelnetService = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 14), ServiceType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cTelnetService.setStatus('current')
hh3cTerminalService = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 15), ServiceType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cTerminalService.setStatus('current')
hh3cExpirationDate = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 16), DateAndTime().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cExpirationDate.setStatus('current')
hh3cUserGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 17), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cUserGroup.setStatus('current')
hh3cPortalService = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 18), ServiceType()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hh3cPortalService.setStatus('current')
hh3cUserMaxNum = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cUserMaxNum.setStatus('current')
hh3cUserCurrNum = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cUserCurrNum.setStatus('current')
hh3cUserIndexIndicator = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cUserIndexIndicator.setStatus('current')
hh3cUserGroupObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2))
hh3cUserGroupInfoTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1), )
if mibBuilder.loadTexts: hh3cUserGroupInfoTable.setStatus('current')
hh3cUserGroupInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1, 1), ).setIndexNames((0, "HH3C-USER-MIB", "hh3cUserGroupName"))
if mibBuilder.loadTexts: hh3cUserGroupInfoEntry.setStatus('current')
hh3cUserGroupName = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 80)))
if mibBuilder.loadTexts: hh3cUserGroupName.setStatus('current')
hh3cUserGroupInfoRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cUserGroupInfoRowStatus.setStatus('current')
mibBuilder.exportSymbols("HH3C-USER-MIB", hh3cSubSlotNum=hh3cSubSlotNum, hh3cUserState=hh3cUserState, hh3cNasIPAddress=hh3cNasIPAddress, hh3cExpirationDate=hh3cExpirationDate, hh3cSshService=hh3cSshService, hh3cUserInfoRowStatus=hh3cUserInfoRowStatus, hh3cIdleCut=hh3cIdleCut, hh3cTerminalService=hh3cTerminalService, hh3cUserInfoEntry=hh3cUserInfoEntry, hh3cUserCurrNum=hh3cUserCurrNum, hh3cUserGroupName=hh3cUserGroupName, hh3cUserGroupObjects=hh3cUserGroupObjects, hh3cUserIndexIndicator=hh3cUserIndexIndicator, hh3cUserAttributeEntry=hh3cUserAttributeEntry, DisplayString=DisplayString, hh3cUserInfoTable=hh3cUserInfoTable, hh3cFtpDirectory=hh3cFtpDirectory, hh3cUserName=hh3cUserName, hh3cIPAddress=hh3cIPAddress, hh3cVlan=hh3cVlan, hh3cUserGroupInfoRowStatus=hh3cUserGroupInfoRowStatus, ServiceType=ServiceType, hh3cUserAttributeTable=hh3cUserAttributeTable, hh3cAuthMode=hh3cAuthMode, hh3cTelnetService=hh3cTelnetService, hh3cLanAccessService=hh3cLanAccessService, hh3cUserIndex=hh3cUserIndex, hh3cUserGroupInfoEntry=hh3cUserGroupInfoEntry, hh3cMacAddress=hh3cMacAddress, hh3cPortalService=hh3cPortalService, hh3cPortNum=hh3cPortNum, hh3cSlotNum=hh3cSlotNum, hh3cUserGroup=hh3cUserGroup, PYSNMP_MODULE_ID=hh3cUser, hh3cUserGroupInfoTable=hh3cUserGroupInfoTable, hh3cFtpService=hh3cFtpService, hh3cUserMaxNum=hh3cUserMaxNum, hh3cAccessLimit=hh3cAccessLimit, hh3cUser=hh3cUser, hh3cUserPassword=hh3cUserPassword, hh3cUserLevel=hh3cUserLevel, hh3cUserObjects=hh3cUserObjects)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, value_range_constraint, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection')
(hh3c_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cCommon')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(bits, integer32, time_ticks, notification_type, gauge32, object_identity, ip_address, iso, unsigned32, module_identity, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, counter64) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'Integer32', 'TimeTicks', 'NotificationType', 'Gauge32', 'ObjectIdentity', 'IpAddress', 'iso', 'Unsigned32', 'ModuleIdentity', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Counter64')
(display_string, date_and_time, row_status, textual_convention, mac_address) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'DateAndTime', 'RowStatus', 'TextualConvention', 'MacAddress')
hh3c_user = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 12))
if mibBuilder.loadTexts:
hh3cUser.setLastUpdated('200304100000Z')
if mibBuilder.loadTexts:
hh3cUser.setOrganization('Hangzhou H3C Tech. Co., Ltd.')
class Displaystring(OctetString):
subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 255)
class Servicetype(TextualConvention, Integer32):
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2))
named_values = named_values(('enable', 1), ('disable', 2))
hh3c_user_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1))
hh3c_user_info_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1))
if mibBuilder.loadTexts:
hh3cUserInfoTable.setStatus('current')
hh3c_user_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1)).setIndexNames((0, 'HH3C-USER-MIB', 'hh3cUserIndex'))
if mibBuilder.loadTexts:
hh3cUserInfoEntry.setStatus('current')
hh3c_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 1), display_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cUserName.setStatus('current')
hh3c_user_password = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 2), display_string()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cUserPassword.setStatus('current')
hh3c_auth_mode = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 3), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cAuthMode.setStatus('current')
hh3c_user_level = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cUserLevel.setStatus('current')
hh3c_user_state = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('active', 0), ('block', 1)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cUserState.setStatus('current')
hh3c_user_info_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 6), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cUserInfoRowStatus.setStatus('current')
hh3c_user_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 1, 1, 7), integer32())
if mibBuilder.loadTexts:
hh3cUserIndex.setStatus('current')
hh3c_user_attribute_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2))
if mibBuilder.loadTexts:
hh3cUserAttributeTable.setStatus('current')
hh3c_user_attribute_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1)).setIndexNames((0, 'HH3C-USER-MIB', 'hh3cUserIndex'))
if mibBuilder.loadTexts:
hh3cUserAttributeEntry.setStatus('current')
hh3c_access_limit = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cAccessLimit.setStatus('current')
hh3c_idle_cut = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cIdleCut.setStatus('current')
hh3c_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 3), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cIPAddress.setStatus('current')
hh3c_nas_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cNasIPAddress.setStatus('current')
hh3c_slot_num = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSlotNum.setStatus('current')
hh3c_sub_slot_num = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSubSlotNum.setStatus('current')
hh3c_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cPortNum.setStatus('current')
hh3c_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 8), mac_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cMacAddress.setStatus('current')
hh3c_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cVlan.setStatus('current')
hh3c_ftp_service = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 10), service_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cFtpService.setStatus('current')
hh3c_ftp_directory = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 11), octet_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cFtpDirectory.setStatus('current')
hh3c_lan_access_service = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 12), service_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cLanAccessService.setStatus('current')
hh3c_ssh_service = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 13), service_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cSshService.setStatus('current')
hh3c_telnet_service = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 14), service_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cTelnetService.setStatus('current')
hh3c_terminal_service = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 15), service_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cTerminalService.setStatus('current')
hh3c_expiration_date = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 16), date_and_time().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cExpirationDate.setStatus('current')
hh3c_user_group = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 17), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cUserGroup.setStatus('current')
hh3c_portal_service = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 2, 1, 18), service_type()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hh3cPortalService.setStatus('current')
hh3c_user_max_num = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cUserMaxNum.setStatus('current')
hh3c_user_curr_num = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cUserCurrNum.setStatus('current')
hh3c_user_index_indicator = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 12, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cUserIndexIndicator.setStatus('current')
hh3c_user_group_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2))
hh3c_user_group_info_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1))
if mibBuilder.loadTexts:
hh3cUserGroupInfoTable.setStatus('current')
hh3c_user_group_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1, 1)).setIndexNames((0, 'HH3C-USER-MIB', 'hh3cUserGroupName'))
if mibBuilder.loadTexts:
hh3cUserGroupInfoEntry.setStatus('current')
hh3c_user_group_name = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(1, 80)))
if mibBuilder.loadTexts:
hh3cUserGroupName.setStatus('current')
hh3c_user_group_info_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 12, 2, 1, 1, 2), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
hh3cUserGroupInfoRowStatus.setStatus('current')
mibBuilder.exportSymbols('HH3C-USER-MIB', hh3cSubSlotNum=hh3cSubSlotNum, hh3cUserState=hh3cUserState, hh3cNasIPAddress=hh3cNasIPAddress, hh3cExpirationDate=hh3cExpirationDate, hh3cSshService=hh3cSshService, hh3cUserInfoRowStatus=hh3cUserInfoRowStatus, hh3cIdleCut=hh3cIdleCut, hh3cTerminalService=hh3cTerminalService, hh3cUserInfoEntry=hh3cUserInfoEntry, hh3cUserCurrNum=hh3cUserCurrNum, hh3cUserGroupName=hh3cUserGroupName, hh3cUserGroupObjects=hh3cUserGroupObjects, hh3cUserIndexIndicator=hh3cUserIndexIndicator, hh3cUserAttributeEntry=hh3cUserAttributeEntry, DisplayString=DisplayString, hh3cUserInfoTable=hh3cUserInfoTable, hh3cFtpDirectory=hh3cFtpDirectory, hh3cUserName=hh3cUserName, hh3cIPAddress=hh3cIPAddress, hh3cVlan=hh3cVlan, hh3cUserGroupInfoRowStatus=hh3cUserGroupInfoRowStatus, ServiceType=ServiceType, hh3cUserAttributeTable=hh3cUserAttributeTable, hh3cAuthMode=hh3cAuthMode, hh3cTelnetService=hh3cTelnetService, hh3cLanAccessService=hh3cLanAccessService, hh3cUserIndex=hh3cUserIndex, hh3cUserGroupInfoEntry=hh3cUserGroupInfoEntry, hh3cMacAddress=hh3cMacAddress, hh3cPortalService=hh3cPortalService, hh3cPortNum=hh3cPortNum, hh3cSlotNum=hh3cSlotNum, hh3cUserGroup=hh3cUserGroup, PYSNMP_MODULE_ID=hh3cUser, hh3cUserGroupInfoTable=hh3cUserGroupInfoTable, hh3cFtpService=hh3cFtpService, hh3cUserMaxNum=hh3cUserMaxNum, hh3cAccessLimit=hh3cAccessLimit, hh3cUser=hh3cUser, hh3cUserPassword=hh3cUserPassword, hh3cUserLevel=hh3cUserLevel, hh3cUserObjects=hh3cUserObjects) |
# 54. Spiral Matrix
# Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order.
# Example 1:
# Input:
# [
# [ 1, 2, 3 ],
# [ 4, 5, 6 ],
# [ 7, 8, 9 ]
# ]
# Output: [1,2,3,6,9,8,7,4,5]
# Example 2:
# Input:
# [
# [1, 2, 3, 4],
# [5, 6, 7, 8],
# [9,10,11,12]
# ]
# Output: [1,2,3,4,8,12,11,10,9,5,6,7]
'''
Space - O(1) if output is not considered
Time - O(row*col)
row*col = number of elements in the input matrix
'''
class Solution:
def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
if len(matrix) < 1:
return []
# start with an empty result list
resultList = []
# define boundaries
left, right, upper, bottom = 0, len(matrix[0]) -1, 0, len(matrix)-1
# exit condition
while len(resultList)<(len(matrix)*len(matrix[0])):
if upper<=bottom:
#left to right --> step size '+' -- row constant -- col variable
for i in range(left, right+1, 1):
resultList.append(matrix[upper][i])
upper +=1
if left<=right:
#top to bottom --> step size '+' -- row variable -- col constant
for i in range(upper, bottom+1, 1):
resultList.append(matrix[i][right])
right -=1
if upper<=bottom:
#left to right --> step size '-' -- row constant -- col variable
for i in range(right, left-1, -1):
resultList.append(matrix[bottom][i])
bottom -= 1
if left<=right:
#left to right --> step size '-' -- row varaible -- col constant
for i in range(bottom, upper-1, -1):
resultList.append(matrix[i][left])
left += 1
return resultList | """
Space - O(1) if output is not considered
Time - O(row*col)
row*col = number of elements in the input matrix
"""
class Solution:
def spiral_order(self, matrix: List[List[int]]) -> List[int]:
if len(matrix) < 1:
return []
result_list = []
(left, right, upper, bottom) = (0, len(matrix[0]) - 1, 0, len(matrix) - 1)
while len(resultList) < len(matrix) * len(matrix[0]):
if upper <= bottom:
for i in range(left, right + 1, 1):
resultList.append(matrix[upper][i])
upper += 1
if left <= right:
for i in range(upper, bottom + 1, 1):
resultList.append(matrix[i][right])
right -= 1
if upper <= bottom:
for i in range(right, left - 1, -1):
resultList.append(matrix[bottom][i])
bottom -= 1
if left <= right:
for i in range(bottom, upper - 1, -1):
resultList.append(matrix[i][left])
left += 1
return resultList |
# -*- coding: utf-8 -*-
raise NotImplementedError(
'No Nuke context yet...feel free to contribute!'
)
| raise not_implemented_error('No Nuke context yet...feel free to contribute!') |
def sec_2_hms(t):
hms = '%02dh%02dm%02ds' % (t/3600, t/60 % 60 , t%60)
return hms
steps_per_second = 10
want_steps = 5e5 #2e6 # 2M
t_str = sec_2_hms(want_steps / steps_per_second)
print(t_str) | def sec_2_hms(t):
hms = '%02dh%02dm%02ds' % (t / 3600, t / 60 % 60, t % 60)
return hms
steps_per_second = 10
want_steps = 500000.0
t_str = sec_2_hms(want_steps / steps_per_second)
print(t_str) |
# Sometimes our contracts can be type alias like List[int] and in that case it's
# unfortunately much harder to check these things, so here we just cover the simple case
def type_check_derived_type_when_possible(parentType, derived_type):
if type(parentType) == type and type(derived_type) == type:
assert issubclass(derived_type, parentType), f"Expected type '{derived_type}' to derive from type '{parentType}'"
def type_check_instance_when_possible(instance, expectedType):
if type(expectedType) == type:
assert isinstance(instance, expectedType), f"Expected type '{expectedType}' but found type '{type(instance)}'"
| def type_check_derived_type_when_possible(parentType, derived_type):
if type(parentType) == type and type(derived_type) == type:
assert issubclass(derived_type, parentType), f"Expected type '{derived_type}' to derive from type '{parentType}'"
def type_check_instance_when_possible(instance, expectedType):
if type(expectedType) == type:
assert isinstance(instance, expectedType), f"Expected type '{expectedType}' but found type '{type(instance)}'" |
def main(file_name="data.txt", n=7):
# Code
pass
if __name__ == "__main__":
main(file_name="data_sym.txt", n=7)
| def main(file_name='data.txt', n=7):
pass
if __name__ == '__main__':
main(file_name='data_sym.txt', n=7) |
# $Header$
def generate(env, **kw):
if not kw.get('depsOnly', 0):
env.Tool('addLibrary', library = ['CRflux'])
env.Tool('addLibrary', library = env['cfitsioLibs'])
env.Tool('addLibrary', library = env['clhepLibs'])
env.Tool('EventLib')
env.Tool('addLibrary', library = env['xercesLibs'])
env.Tool('astroLib')
env.Tool('xmlBaseLib')
env.Tool('fluxLib')
if env['PLATFORM']=='win32' and env.get('CONTAINERNAME','')=='GlastRelease':
env.Tool('findPkgPath', package = 'FluxSvc')
def exists(env):
return 1;
| def generate(env, **kw):
if not kw.get('depsOnly', 0):
env.Tool('addLibrary', library=['CRflux'])
env.Tool('addLibrary', library=env['cfitsioLibs'])
env.Tool('addLibrary', library=env['clhepLibs'])
env.Tool('EventLib')
env.Tool('addLibrary', library=env['xercesLibs'])
env.Tool('astroLib')
env.Tool('xmlBaseLib')
env.Tool('fluxLib')
if env['PLATFORM'] == 'win32' and env.get('CONTAINERNAME', '') == 'GlastRelease':
env.Tool('findPkgPath', package='FluxSvc')
def exists(env):
return 1 |
class BST:
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def insert(self, value):
if value < self.value:
if self.left is None:
self.left = BST(value)
else:
self.left.insert(value)
if value > self.value:
if self.right is None:
self.right = BST(value)
else:
self.right.insert(value)
return self
def contains(self, value):
if value == self.value:
return True
if value < self.value and self.left:
return self.left.contains(value)
if self.right:
return self.right.contains(value)
return False
def remove(self, value):
if value < self.value:
if self.left:
if value == self.left.value:
temp = self.left.left
self.left = self.left.left
self.left.right = temp
if value > self.value:
if self.right:
if value == self.right.value:
temp = self.right.right
self.right = self.right.left
self.right.right = temp
return self
def test_contains():
actual = BST(1)
assert actual.contains(1) == True
def test_not_contains():
actual = BST(1)
assert actual.contains(2) == False
def test_contains_nested():
actual = BST(1)
actual.right = BST(2)
assert actual.contains(2) == True
def test_inserst():
actual = BST(1)
actual.insert(2)
expected = BST(1)
expected.right = BST(2)
assert actual.right.value == expected.right.value
def test_inserst_right_left():
actual = BST(1)
actual.right = BST(3)
actual.insert(2)
expected = BST(1)
expected.right = BST(3)
expected.right.left = BST(2)
assert actual.right.left.value == expected.right.left.value
def test_remove():
actual = BST(1)
actual.right = BST(3)
actual.right.left()
actual.insert(2)
expected = BST(1)
expected.right = BST(3)
expected.right.left = BST(2)
assert actual.right.left.value == expected.right.left.value | class Bst:
def __init__(self, value):
self.value = value
self.left = None
self.right = None
def insert(self, value):
if value < self.value:
if self.left is None:
self.left = bst(value)
else:
self.left.insert(value)
if value > self.value:
if self.right is None:
self.right = bst(value)
else:
self.right.insert(value)
return self
def contains(self, value):
if value == self.value:
return True
if value < self.value and self.left:
return self.left.contains(value)
if self.right:
return self.right.contains(value)
return False
def remove(self, value):
if value < self.value:
if self.left:
if value == self.left.value:
temp = self.left.left
self.left = self.left.left
self.left.right = temp
if value > self.value:
if self.right:
if value == self.right.value:
temp = self.right.right
self.right = self.right.left
self.right.right = temp
return self
def test_contains():
actual = bst(1)
assert actual.contains(1) == True
def test_not_contains():
actual = bst(1)
assert actual.contains(2) == False
def test_contains_nested():
actual = bst(1)
actual.right = bst(2)
assert actual.contains(2) == True
def test_inserst():
actual = bst(1)
actual.insert(2)
expected = bst(1)
expected.right = bst(2)
assert actual.right.value == expected.right.value
def test_inserst_right_left():
actual = bst(1)
actual.right = bst(3)
actual.insert(2)
expected = bst(1)
expected.right = bst(3)
expected.right.left = bst(2)
assert actual.right.left.value == expected.right.left.value
def test_remove():
actual = bst(1)
actual.right = bst(3)
actual.right.left()
actual.insert(2)
expected = bst(1)
expected.right = bst(3)
expected.right.left = bst(2)
assert actual.right.left.value == expected.right.left.value |
# -*- python -*-
# This software was produced by NIST, an agency of the U.S. government,
# and by statute is not subject to copyright in the United States.
# Recipients of this software assume all responsibilities associated
# with its operation, modification and maintenance. However, to
# facilitate maintenance we ask that before distributing modified
# versions of this software, you first contact the authors at
# oof_manager@nist.gov.
# Until we merge the 2D and 3D branches, we need a way to set the name
# of the distribution file that make_dist creates. This file just
# contains that name. Putting hte name here, instead of in make_dist,
# allows both versions to use the same make_dist script.
distname = 'oof3d'
| distname = 'oof3d' |
# Reverse Cipher
message = 'Three can keep a secret, if two of them are dead.'
translated = ''
i = len(message) - 1
while i >=0:
translated += message[i]
i -= 1
print(translated)
| message = 'Three can keep a secret, if two of them are dead.'
translated = ''
i = len(message) - 1
while i >= 0:
translated += message[i]
i -= 1
print(translated) |
a=[[" "," "," "],[" "," "," "],[" "," "," "]]
def conditions():
test=0
for i in range(len(a)):
if a[i][0]==a[i][1]==a[i][2]!=" ":
if a[i][0]==1:
print(players_names[1], "won the match")
return 0
else:
print(players_names[0], "won the match")
return 0
if a[0][i]==a[1][i]==a[2][i]!=" ":
if a[0][i]==1:
print(players_names[1], "won the match")
return 0
else:
print(players_names[0], "won the match")
return 0
if a[0][0]==a[1][1]==a[2][2]!=" ":
if a[0][0]==1:
print(players_names[1], "won the match")
return 0
else:
print(players_names[0], "won the match")
return 0
if a[0][2]==a[1][1]==a[2][0]!=" ":
if a[0][2]==1:
print(players_names[1], "won the match")
return 0
else:
print(players_names[0], "won the match")
return 0
for i in range(len(a)):
for j in range(len(a[0])):
if a[i][j]!=" ":
test=test+1
if test==9:
print("Game Tie")
return 0
return 1
b={1:[0,0],2:[0,1],3:[0,2],4:[1,0],5:[1,1],6:[1,2],7:[2,0],8:[2,1],9:[2,2]}
players_names=[]
print("Enter name of player no:- 1")
player_1=input()
players_names.append(player_1)
print("Your letter is 0")
print("Enter name of player no:- 2")
player_2=input()
players_names.append(player_2)
print("Your letter is 1")
die=0
while True:
if die==2:
die=0
for i in range(len(a)):
print("*-----*-----*-----*")
print("| ",a[i][0]," | ",a[i][1]," | ",a[i][2]," |")
if i==2:
print("*-----*-----*-----*")
while True:
print(players_names[die],"select a square between 1 - 9")
choice=int(input())
u,k=b[choice]
if a[u][k]==" ":
a[u][k]=die
break
else:
print("unable to select that square. choose another")
die=die+1
breaks=conditions ()
if breaks==0:
for i in range(len(a)):
print("*-----*-----*-----*")
print("| ",a[i][0]," | ",a[i][1]," | ",a[i][2]," |")
if i==2:
print("*-----*-----*-----*")
break
| a = [[' ', ' ', ' '], [' ', ' ', ' '], [' ', ' ', ' ']]
def conditions():
test = 0
for i in range(len(a)):
if a[i][0] == a[i][1] == a[i][2] != ' ':
if a[i][0] == 1:
print(players_names[1], 'won the match')
return 0
else:
print(players_names[0], 'won the match')
return 0
if a[0][i] == a[1][i] == a[2][i] != ' ':
if a[0][i] == 1:
print(players_names[1], 'won the match')
return 0
else:
print(players_names[0], 'won the match')
return 0
if a[0][0] == a[1][1] == a[2][2] != ' ':
if a[0][0] == 1:
print(players_names[1], 'won the match')
return 0
else:
print(players_names[0], 'won the match')
return 0
if a[0][2] == a[1][1] == a[2][0] != ' ':
if a[0][2] == 1:
print(players_names[1], 'won the match')
return 0
else:
print(players_names[0], 'won the match')
return 0
for i in range(len(a)):
for j in range(len(a[0])):
if a[i][j] != ' ':
test = test + 1
if test == 9:
print('Game Tie')
return 0
return 1
b = {1: [0, 0], 2: [0, 1], 3: [0, 2], 4: [1, 0], 5: [1, 1], 6: [1, 2], 7: [2, 0], 8: [2, 1], 9: [2, 2]}
players_names = []
print('Enter name of player no:- 1')
player_1 = input()
players_names.append(player_1)
print('Your letter is 0')
print('Enter name of player no:- 2')
player_2 = input()
players_names.append(player_2)
print('Your letter is 1')
die = 0
while True:
if die == 2:
die = 0
for i in range(len(a)):
print('*-----*-----*-----*')
print('| ', a[i][0], ' | ', a[i][1], ' | ', a[i][2], ' |')
if i == 2:
print('*-----*-----*-----*')
while True:
print(players_names[die], 'select a square between 1 - 9')
choice = int(input())
(u, k) = b[choice]
if a[u][k] == ' ':
a[u][k] = die
break
else:
print('unable to select that square. choose another')
die = die + 1
breaks = conditions()
if breaks == 0:
for i in range(len(a)):
print('*-----*-----*-----*')
print('| ', a[i][0], ' | ', a[i][1], ' | ', a[i][2], ' |')
if i == 2:
print('*-----*-----*-----*')
break |
#
# PySNMP MIB module MERITAGE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/MERITAGE-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:00:59 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion")
lannet, = mibBuilder.importSymbols("GEN-MIB", "lannet")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibIdentifier, Counter64, IpAddress, iso, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Counter32, ObjectIdentity, ModuleIdentity, NotificationType, Bits, Integer32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "Counter64", "IpAddress", "iso", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Counter32", "ObjectIdentity", "ModuleIdentity", "NotificationType", "Bits", "Integer32", "TimeTicks")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
meritage = MibIdentifier((1, 3, 6, 1, 4, 1, 81, 32))
meritageBase = MibIdentifier((1, 3, 6, 1, 4, 1, 81, 32, 1))
meritageMSPV = MibIdentifier((1, 3, 6, 1, 4, 1, 81, 32, 2))
meritageGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 81, 32, 3))
meritageClock = MibIdentifier((1, 3, 6, 1, 4, 1, 81, 32, 4))
meritageClockSource = MibIdentifier((1, 3, 6, 1, 4, 1, 81, 32, 5))
meritageBaseLEDs = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 1), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseLEDs.setStatus('mandatory')
meritageBaseTemperatureExceed = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 255))).clone(namedValues=NamedValues(("ok", 1), ("exceeded", 2), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseTemperatureExceed.setStatus('mandatory')
meritageBaseXswitchConfiguration = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 255))).clone(namedValues=NamedValues(("connected", 1), ("separated", 2), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseXswitchConfiguration.setStatus('mandatory')
meritageBaseFaultMask = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseFaultMask.setStatus('mandatory')
meritageBaseFanTable = MibTable((1, 3, 6, 1, 4, 1, 81, 32, 1, 5), )
if mibBuilder.loadTexts: meritageBaseFanTable.setStatus('mandatory')
meritageBaseFanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 81, 32, 1, 5, 1), ).setIndexNames((0, "MERITAGE-MIB", "meritageBaseFanId"))
if mibBuilder.loadTexts: meritageBaseFanEntry.setStatus('mandatory')
meritageBaseFanId = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseFanId.setStatus('mandatory')
meritageBaseFanActivityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 5, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("active", 1), ("failed", 2), ("none", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseFanActivityStatus.setStatus('mandatory')
meritageBasePSUTable = MibTable((1, 3, 6, 1, 4, 1, 81, 32, 1, 6), )
if mibBuilder.loadTexts: meritageBasePSUTable.setStatus('mandatory')
meritageBasePSUEntry = MibTableRow((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1), ).setIndexNames((0, "MERITAGE-MIB", "meritageBasePSUId"))
if mibBuilder.loadTexts: meritageBasePSUEntry.setStatus('mandatory')
meritageBasePSUId = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBasePSUId.setStatus('mandatory')
meritageBasePSUType = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 255))).clone(namedValues=NamedValues(("m-ps500", 1), ("m-ps1250", 2), ("m-ps800", 3), ("m-ps800-dc", 4), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBasePSUType.setStatus('mandatory')
meritageBasePSUHWVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(3, 3)).setFixedLength(3)).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBasePSUHWVersion.setStatus('mandatory')
meritageBasePSURatedPower = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBasePSURatedPower.setStatus('mandatory')
meritageBasePSUActivityStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("active", 1), ("failed", 2), ("none", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBasePSUActivityStatus.setStatus('mandatory')
meritageBaseUpBckplnConfiguration = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 255))).clone(namedValues=NamedValues(("singleDomain", 1), ("dualDomain", 2), ("notInstalled", 3), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseUpBckplnConfiguration.setStatus('mandatory')
meritageBaseUpBckplnConfigurationSymbol = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageBaseUpBckplnConfigurationSymbol.setStatus('mandatory')
meritageMSPVBackupStatus = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 255))).clone(namedValues=NamedValues(("dormant", 1), ("failed", 2), ("none", 3), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageMSPVBackupStatus.setStatus('mandatory')
meritageMSPVMainPosition = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 255))).clone(namedValues=NamedValues(("mMSPV1", 1), ("mMSPV2", 2), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageMSPVMainPosition.setStatus('mandatory')
meritageGroupTable = MibTable((1, 3, 6, 1, 4, 1, 81, 32, 3, 1), )
if mibBuilder.loadTexts: meritageGroupTable.setStatus('mandatory')
meritageGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1), ).setIndexNames((0, "MERITAGE-MIB", "meritageGroupIndex"))
if mibBuilder.loadTexts: meritageGroupEntry.setStatus('mandatory')
meritageGroupIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageGroupIndex.setStatus('mandatory')
meritageGroupTempExceed = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 255))).clone(namedValues=NamedValues(("ok", 1), ("exceeded", 2), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageGroupTempExceed.setStatus('mandatory')
meritageGroupLEDsMap = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageGroupLEDsMap.setStatus('mandatory')
meritageClockAdminStatus = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: meritageClockAdminStatus.setStatus('mandatory')
meritageClockReset = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: meritageClockReset.setStatus('mandatory')
meritageClockWTR = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: meritageClockWTR.setStatus('mandatory')
meritageClockStatus = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("locked", 1), ("holdover", 2), ("freeRunning", 3), ("internal", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageClockStatus.setStatus('mandatory')
meritageClockCurrentSource = MibScalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageClockCurrentSource.setStatus('mandatory')
meritageClockSourceTable = MibTable((1, 3, 6, 1, 4, 1, 81, 32, 5, 1), )
if mibBuilder.loadTexts: meritageClockSourceTable.setStatus('mandatory')
meritageClockSourceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1), ).setIndexNames((0, "MERITAGE-MIB", "meritageClockSourceIndex"))
if mibBuilder.loadTexts: meritageClockSourceEntry.setStatus('mandatory')
meritageClockSourceIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageClockSourceIndex.setStatus('mandatory')
meritageClockSourceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 255))).clone(namedValues=NamedValues(("ok", 1), ("los", 2), ("failed", 3), ("notSupported", 255)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: meritageClockSourceStatus.setStatus('mandatory')
meritageClockSourcePriority = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: meritageClockSourcePriority.setStatus('mandatory')
meritageClockSourceConfigPort = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: meritageClockSourceConfigPort.setStatus('mandatory')
meritageClockSourceFraming = MibTableColumn((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 255))).clone(namedValues=NamedValues(("e1-framed", 1), ("e1-unframed", 2), ("ds1-sf", 3), ("ds1-esf", 4), ("notSupported", 255)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: meritageClockSourceFraming.setStatus('mandatory')
mibBuilder.exportSymbols("MERITAGE-MIB", meritageBaseTemperatureExceed=meritageBaseTemperatureExceed, meritageBaseUpBckplnConfigurationSymbol=meritageBaseUpBckplnConfigurationSymbol, meritageGroupTable=meritageGroupTable, meritageGroupIndex=meritageGroupIndex, meritageClock=meritageClock, meritageClockCurrentSource=meritageClockCurrentSource, meritageClockSourceFraming=meritageClockSourceFraming, meritageGroupEntry=meritageGroupEntry, meritageClockStatus=meritageClockStatus, meritageMSPVBackupStatus=meritageMSPVBackupStatus, meritageBasePSUHWVersion=meritageBasePSUHWVersion, meritageBasePSUActivityStatus=meritageBasePSUActivityStatus, meritageBasePSUTable=meritageBasePSUTable, meritageGroupTempExceed=meritageGroupTempExceed, meritageClockAdminStatus=meritageClockAdminStatus, meritageClockSourceTable=meritageClockSourceTable, meritage=meritage, meritageClockWTR=meritageClockWTR, meritageClockSourcePriority=meritageClockSourcePriority, meritageBasePSUEntry=meritageBasePSUEntry, meritageClockSourceIndex=meritageClockSourceIndex, meritageClockSource=meritageClockSource, meritageBaseUpBckplnConfiguration=meritageBaseUpBckplnConfiguration, meritageBasePSUId=meritageBasePSUId, meritageBaseLEDs=meritageBaseLEDs, meritageMSPV=meritageMSPV, meritageBaseFanActivityStatus=meritageBaseFanActivityStatus, meritageBasePSUType=meritageBasePSUType, meritageBase=meritageBase, meritageClockSourceStatus=meritageClockSourceStatus, meritageClockSourceConfigPort=meritageClockSourceConfigPort, meritageBaseFanId=meritageBaseFanId, meritageBaseFanTable=meritageBaseFanTable, meritageClockSourceEntry=meritageClockSourceEntry, meritageBasePSURatedPower=meritageBasePSURatedPower, meritageMSPVMainPosition=meritageMSPVMainPosition, meritageGroup=meritageGroup, meritageClockReset=meritageClockReset, meritageBaseFaultMask=meritageBaseFaultMask, meritageBaseFanEntry=meritageBaseFanEntry, meritageBaseXswitchConfiguration=meritageBaseXswitchConfiguration, meritageGroupLEDsMap=meritageGroupLEDsMap)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_size_constraint, constraints_intersection, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion')
(lannet,) = mibBuilder.importSymbols('GEN-MIB', 'lannet')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_identifier, counter64, ip_address, iso, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, counter32, object_identity, module_identity, notification_type, bits, integer32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'Counter64', 'IpAddress', 'iso', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'Counter32', 'ObjectIdentity', 'ModuleIdentity', 'NotificationType', 'Bits', 'Integer32', 'TimeTicks')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
meritage = mib_identifier((1, 3, 6, 1, 4, 1, 81, 32))
meritage_base = mib_identifier((1, 3, 6, 1, 4, 1, 81, 32, 1))
meritage_mspv = mib_identifier((1, 3, 6, 1, 4, 1, 81, 32, 2))
meritage_group = mib_identifier((1, 3, 6, 1, 4, 1, 81, 32, 3))
meritage_clock = mib_identifier((1, 3, 6, 1, 4, 1, 81, 32, 4))
meritage_clock_source = mib_identifier((1, 3, 6, 1, 4, 1, 81, 32, 5))
meritage_base_le_ds = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 1), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseLEDs.setStatus('mandatory')
meritage_base_temperature_exceed = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 255))).clone(namedValues=named_values(('ok', 1), ('exceeded', 2), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseTemperatureExceed.setStatus('mandatory')
meritage_base_xswitch_configuration = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 255))).clone(namedValues=named_values(('connected', 1), ('separated', 2), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseXswitchConfiguration.setStatus('mandatory')
meritage_base_fault_mask = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseFaultMask.setStatus('mandatory')
meritage_base_fan_table = mib_table((1, 3, 6, 1, 4, 1, 81, 32, 1, 5))
if mibBuilder.loadTexts:
meritageBaseFanTable.setStatus('mandatory')
meritage_base_fan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 81, 32, 1, 5, 1)).setIndexNames((0, 'MERITAGE-MIB', 'meritageBaseFanId'))
if mibBuilder.loadTexts:
meritageBaseFanEntry.setStatus('mandatory')
meritage_base_fan_id = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseFanId.setStatus('mandatory')
meritage_base_fan_activity_status = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 5, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('active', 1), ('failed', 2), ('none', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseFanActivityStatus.setStatus('mandatory')
meritage_base_psu_table = mib_table((1, 3, 6, 1, 4, 1, 81, 32, 1, 6))
if mibBuilder.loadTexts:
meritageBasePSUTable.setStatus('mandatory')
meritage_base_psu_entry = mib_table_row((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1)).setIndexNames((0, 'MERITAGE-MIB', 'meritageBasePSUId'))
if mibBuilder.loadTexts:
meritageBasePSUEntry.setStatus('mandatory')
meritage_base_psu_id = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBasePSUId.setStatus('mandatory')
meritage_base_psu_type = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 255))).clone(namedValues=named_values(('m-ps500', 1), ('m-ps1250', 2), ('m-ps800', 3), ('m-ps800-dc', 4), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBasePSUType.setStatus('mandatory')
meritage_base_psuhw_version = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(3, 3)).setFixedLength(3)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBasePSUHWVersion.setStatus('mandatory')
meritage_base_psu_rated_power = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBasePSURatedPower.setStatus('mandatory')
meritage_base_psu_activity_status = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 1, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('active', 1), ('failed', 2), ('none', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBasePSUActivityStatus.setStatus('mandatory')
meritage_base_up_bckpln_configuration = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 255))).clone(namedValues=named_values(('singleDomain', 1), ('dualDomain', 2), ('notInstalled', 3), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseUpBckplnConfiguration.setStatus('mandatory')
meritage_base_up_bckpln_configuration_symbol = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageBaseUpBckplnConfigurationSymbol.setStatus('mandatory')
meritage_mspv_backup_status = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 255))).clone(namedValues=named_values(('dormant', 1), ('failed', 2), ('none', 3), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageMSPVBackupStatus.setStatus('mandatory')
meritage_mspv_main_position = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 255))).clone(namedValues=named_values(('mMSPV1', 1), ('mMSPV2', 2), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageMSPVMainPosition.setStatus('mandatory')
meritage_group_table = mib_table((1, 3, 6, 1, 4, 1, 81, 32, 3, 1))
if mibBuilder.loadTexts:
meritageGroupTable.setStatus('mandatory')
meritage_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1)).setIndexNames((0, 'MERITAGE-MIB', 'meritageGroupIndex'))
if mibBuilder.loadTexts:
meritageGroupEntry.setStatus('mandatory')
meritage_group_index = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageGroupIndex.setStatus('mandatory')
meritage_group_temp_exceed = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 255))).clone(namedValues=named_values(('ok', 1), ('exceeded', 2), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageGroupTempExceed.setStatus('mandatory')
meritage_group_le_ds_map = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 3, 1, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageGroupLEDsMap.setStatus('mandatory')
meritage_clock_admin_status = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
meritageClockAdminStatus.setStatus('mandatory')
meritage_clock_reset = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
meritageClockReset.setStatus('mandatory')
meritage_clock_wtr = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
meritageClockWTR.setStatus('mandatory')
meritage_clock_status = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('locked', 1), ('holdover', 2), ('freeRunning', 3), ('internal', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageClockStatus.setStatus('mandatory')
meritage_clock_current_source = mib_scalar((1, 3, 6, 1, 4, 1, 81, 32, 4, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageClockCurrentSource.setStatus('mandatory')
meritage_clock_source_table = mib_table((1, 3, 6, 1, 4, 1, 81, 32, 5, 1))
if mibBuilder.loadTexts:
meritageClockSourceTable.setStatus('mandatory')
meritage_clock_source_entry = mib_table_row((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1)).setIndexNames((0, 'MERITAGE-MIB', 'meritageClockSourceIndex'))
if mibBuilder.loadTexts:
meritageClockSourceEntry.setStatus('mandatory')
meritage_clock_source_index = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageClockSourceIndex.setStatus('mandatory')
meritage_clock_source_status = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 255))).clone(namedValues=named_values(('ok', 1), ('los', 2), ('failed', 3), ('notSupported', 255)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
meritageClockSourceStatus.setStatus('mandatory')
meritage_clock_source_priority = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
meritageClockSourcePriority.setStatus('mandatory')
meritage_clock_source_config_port = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
meritageClockSourceConfigPort.setStatus('mandatory')
meritage_clock_source_framing = mib_table_column((1, 3, 6, 1, 4, 1, 81, 32, 5, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 255))).clone(namedValues=named_values(('e1-framed', 1), ('e1-unframed', 2), ('ds1-sf', 3), ('ds1-esf', 4), ('notSupported', 255)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
meritageClockSourceFraming.setStatus('mandatory')
mibBuilder.exportSymbols('MERITAGE-MIB', meritageBaseTemperatureExceed=meritageBaseTemperatureExceed, meritageBaseUpBckplnConfigurationSymbol=meritageBaseUpBckplnConfigurationSymbol, meritageGroupTable=meritageGroupTable, meritageGroupIndex=meritageGroupIndex, meritageClock=meritageClock, meritageClockCurrentSource=meritageClockCurrentSource, meritageClockSourceFraming=meritageClockSourceFraming, meritageGroupEntry=meritageGroupEntry, meritageClockStatus=meritageClockStatus, meritageMSPVBackupStatus=meritageMSPVBackupStatus, meritageBasePSUHWVersion=meritageBasePSUHWVersion, meritageBasePSUActivityStatus=meritageBasePSUActivityStatus, meritageBasePSUTable=meritageBasePSUTable, meritageGroupTempExceed=meritageGroupTempExceed, meritageClockAdminStatus=meritageClockAdminStatus, meritageClockSourceTable=meritageClockSourceTable, meritage=meritage, meritageClockWTR=meritageClockWTR, meritageClockSourcePriority=meritageClockSourcePriority, meritageBasePSUEntry=meritageBasePSUEntry, meritageClockSourceIndex=meritageClockSourceIndex, meritageClockSource=meritageClockSource, meritageBaseUpBckplnConfiguration=meritageBaseUpBckplnConfiguration, meritageBasePSUId=meritageBasePSUId, meritageBaseLEDs=meritageBaseLEDs, meritageMSPV=meritageMSPV, meritageBaseFanActivityStatus=meritageBaseFanActivityStatus, meritageBasePSUType=meritageBasePSUType, meritageBase=meritageBase, meritageClockSourceStatus=meritageClockSourceStatus, meritageClockSourceConfigPort=meritageClockSourceConfigPort, meritageBaseFanId=meritageBaseFanId, meritageBaseFanTable=meritageBaseFanTable, meritageClockSourceEntry=meritageClockSourceEntry, meritageBasePSURatedPower=meritageBasePSURatedPower, meritageMSPVMainPosition=meritageMSPVMainPosition, meritageGroup=meritageGroup, meritageClockReset=meritageClockReset, meritageBaseFaultMask=meritageBaseFaultMask, meritageBaseFanEntry=meritageBaseFanEntry, meritageBaseXswitchConfiguration=meritageBaseXswitchConfiguration, meritageGroupLEDsMap=meritageGroupLEDsMap) |
#these are used to prevent acces and to private methods and variables to be modified or used
#encapsulation is that which can prevent modification of some methods and variables
class Speed:
def __init__(self):
self.speed = 80
self.__speed_2 = 100#private varible that can be accesed only inside the class
def __get_speed(self):
return self.__speed_2
sp1 = Speed()
print(sp1.speed)
print(sp1.__get_speed())
| class Speed:
def __init__(self):
self.speed = 80
self.__speed_2 = 100
def __get_speed(self):
return self.__speed_2
sp1 = speed()
print(sp1.speed)
print(sp1.__get_speed()) |
def main():
balance = 484
annualInterestRate = 0.2
monthlyPaymentRate = 0.04
for i in range(12):
balance = round(balance - round(balance*monthlyPaymentRate,2),2)
balance = round(balance + round(balance*annualInterestRate/12,2),2)
print("Remaining balance: ", balance)
main()
| def main():
balance = 484
annual_interest_rate = 0.2
monthly_payment_rate = 0.04
for i in range(12):
balance = round(balance - round(balance * monthlyPaymentRate, 2), 2)
balance = round(balance + round(balance * annualInterestRate / 12, 2), 2)
print('Remaining balance: ', balance)
main() |
a = ()
b = {}
f()
f(b)
f(b=c)
f(*a)
f(c, *a)
f(c=1, *b)
f(*a, c=1)
f(**b)
f(c, *a, **b)
f(c, *a, x, **b)
f(c, a=1, **b)
f(a := 1)
f(**b, a=1)
f(i for i in range(10))
| a = ()
b = {}
f()
f(b)
f(b=c)
f(*a)
f(c, *a)
f(*b, c=1)
f(*a, c=1)
f(**b)
f(c, *a, **b)
f(c, *a, x, **b)
f(c, a=1, **b)
f((a := 1))
f(**b, a=1)
f((i for i in range(10))) |
class SubHandler(object):
def __init__(self):
self.var = None
self.change = False
def hasChanged(self):
if self.change:
change = True
else:
change = False
self.change = False
return change
def getVar(self):
return self.var
def datachange_notification(self, node, val, data):
# callback on a data change
self.var = val
if val is not None:
self.change = True
| class Subhandler(object):
def __init__(self):
self.var = None
self.change = False
def has_changed(self):
if self.change:
change = True
else:
change = False
self.change = False
return change
def get_var(self):
return self.var
def datachange_notification(self, node, val, data):
self.var = val
if val is not None:
self.change = True |
class Solution:
def colorBorder(self, grid, r0, c0, color):
def border(x, y, grid):
row = len(grid)
col = len(grid[0])
if x == 0 or x == row-1or y == 0 or y == col-1:
return True
if grid[x][y] == grid[x][y-1] and grid[x][y] == grid[x][y+1] and grid[x][y] == grid[x-1][y] and grid[x][y] == grid[x+1][y]:
return False
return True
def findconnected(x, y, grid, connected, visited=[]):
row = len(grid)
col = len(grid[0])
if visited == []:
visited = [[False for i in range(col)] for j in range(row)]
visited[x][y] = True
connected.add((x, y))
if x > 0 and not visited[x-1][y] and grid[x-1][y] == grid[x][y]:
findconnected(x-1, y, grid, connected, visited)
if x < row-1 and not visited[x+1][y] and grid[x+1][y] == grid[x][y]:
findconnected(x+1, y, grid, connected, visited)
if y>0 and not visited[x][y-1] and grid[x][y-1] == grid[x][y]:
findconnected(x, y-1, grid, connected, visited)
if y <col-1 and not visited[x][y+1] and grid[x][y+1] == grid[x][y]:
findconnected(x, y+1, grid, connected, visited)
if not grid or not grid[0]:
return grid
connected = set()
findconnected(r0, c0, grid, connected, [])
borderconnected = [ele for ele in connected if border(ele[0], ele[1], grid)]
for x, y in borderconnected:
grid[x][y] = color
return grid
if __name__ == '__main__':
grid = [[2,1,2,2],[2,2,1,2],[1,1,2,1]]
print(Solution().colorBorder(grid, 2, 2, 2))
| class Solution:
def color_border(self, grid, r0, c0, color):
def border(x, y, grid):
row = len(grid)
col = len(grid[0])
if x == 0 or x == row - 1 or y == 0 or (y == col - 1):
return True
if grid[x][y] == grid[x][y - 1] and grid[x][y] == grid[x][y + 1] and (grid[x][y] == grid[x - 1][y]) and (grid[x][y] == grid[x + 1][y]):
return False
return True
def findconnected(x, y, grid, connected, visited=[]):
row = len(grid)
col = len(grid[0])
if visited == []:
visited = [[False for i in range(col)] for j in range(row)]
visited[x][y] = True
connected.add((x, y))
if x > 0 and (not visited[x - 1][y]) and (grid[x - 1][y] == grid[x][y]):
findconnected(x - 1, y, grid, connected, visited)
if x < row - 1 and (not visited[x + 1][y]) and (grid[x + 1][y] == grid[x][y]):
findconnected(x + 1, y, grid, connected, visited)
if y > 0 and (not visited[x][y - 1]) and (grid[x][y - 1] == grid[x][y]):
findconnected(x, y - 1, grid, connected, visited)
if y < col - 1 and (not visited[x][y + 1]) and (grid[x][y + 1] == grid[x][y]):
findconnected(x, y + 1, grid, connected, visited)
if not grid or not grid[0]:
return grid
connected = set()
findconnected(r0, c0, grid, connected, [])
borderconnected = [ele for ele in connected if border(ele[0], ele[1], grid)]
for (x, y) in borderconnected:
grid[x][y] = color
return grid
if __name__ == '__main__':
grid = [[2, 1, 2, 2], [2, 2, 1, 2], [1, 1, 2, 1]]
print(solution().colorBorder(grid, 2, 2, 2)) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.