1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 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 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 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 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 391 392 393 394 395 396 397 398 399 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 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 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 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 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 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
|
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.3:
#
# smidump -f python SNMPv2-MIB
FILENAME = "../../mibs/ietf/SNMPv2-MIB"
MIB = {
"moduleName" : "SNMPv2-MIB",
"SNMPv2-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""IETF SNMPv3 Working Group""",
"contact" :
"""WG-EMail: snmpv3@lists.tislabs.com
Subscribe: snmpv3-request@lists.tislabs.com
Co-Chair: Russ Mundy
Network Associates Laboratories
postal: 15204 Omega Drive, Suite 300
Rockville, MD 20850-4601
USA
EMail: mundy@tislabs.com
phone: +1 301 947-7107
Co-Chair: David Harrington
Enterasys Networks
postal: 35 Industrial Way
P. O. Box 5005
Rochester, NH 03866-5005
USA
EMail: dbh@enterasys.com
phone: +1 603 337-2614
Editor: Randy Presuhn
BMC Software, Inc.
postal: 2141 North First Street
San Jose, CA 95131
USA
EMail: randy_presuhn@bmc.com
phone: +1 408 546-1006""",
"description" :
"""The MIB module for SNMP entities.
Copyright (C) The Internet Society (2002). This
version of this MIB module is part of RFC 3418;
see the RFC itself for full legal notices.""",
"revisions" : (
{
"date" : "2002-10-16 00:00",
"description" :
"""This revision of this MIB module was published as
RFC 3418.""",
},
{
"date" : "1995-11-09 00:00",
"description" :
"""This revision of this MIB module was published as
RFC 1907.""",
},
{
"date" : "1993-04-01 00:00",
"description" :
"""The initial revision of this MIB module was published
as RFC 1450.""",
},
),
"identity node" : "snmpMIB",
},
"imports" : (
{"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
{"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
{"module" : "SNMPv2-SMI", "name" : "Counter32"},
{"module" : "SNMPv2-SMI", "name" : "snmpModules"},
{"module" : "SNMPv2-SMI", "name" : "mib-2"},
{"module" : "SNMPv2-TC", "name" : "DisplayString"},
{"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
{"module" : "SNMPv2-TC", "name" : "TimeStamp"},
{"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
{"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
{"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
),
"nodes" : {
"system" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1",
}, # node
"sysDescr" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""A textual description of the entity. This value should
include the full name and version identification of
the system's hardware type, software operating-system,
and networking software.""",
}, # scalar
"sysObjectID" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readonly",
"description" :
"""The vendor's authoritative identification of the
network management subsystem contained in the entity.
This value is allocated within the SMI enterprises
subtree (1.3.6.1.4.1) and provides an easy and
unambiguous means for determining `what kind of box' is
being managed. For example, if vendor `Flintstones,
Inc.' was assigned the subtree 1.3.6.1.4.1.424242,
it could assign the identifier 1.3.6.1.4.1.424242.1.1
to its `Fred Router'.""",
}, # scalar
"sysUpTime" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""The time (in hundredths of a second) since the
network management portion of the system was last
re-initialized.""",
}, # scalar
"sysContact" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""The textual identification of the contact person for
this managed node, together with information on how
to contact this person. If no contact information is
known, the value is the zero-length string.""",
}, # scalar
"sysName" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""An administratively-assigned name for this managed
node. By convention, this is the node's fully-qualified
domain name. If the name is unknown, the value is
the zero-length string.""",
}, # scalar
"sysLocation" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "SNMPv2-TC",
"type" : "DisplayString",
},
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""The physical location of this node (e.g., 'telephone
closet, 3rd floor'). If the location is unknown, the
value is the zero-length string.""",
}, # scalar
"sysServices" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"range" : {
"min" : "0",
"max" : "127"
},
},
},
"access" : "readonly",
"description" :
"""A value which indicates the set of services that this
entity may potentially offer. The value is a sum.
This sum initially takes the value zero. Then, for
each layer, L, in the range 1 through 7, that this node
performs transactions for, 2 raised to (L - 1) is added
to the sum. For example, a node which performs only
routing functions would have a value of 4 (2^(3-1)).
In contrast, a node which is a host offering application
services would have a value of 72 (2^(4-1) + 2^(7-1)).
Note that in the context of the Internet suite of
protocols, values should be calculated accordingly:
layer functionality
1 physical (e.g., repeaters)
2 datalink/subnetwork (e.g., bridges)
3 internet (e.g., supports the IP)
4 end-to-end (e.g., supports the TCP)
7 applications (e.g., supports the SMTP)
For systems including OSI protocols, layers 5 and 6
may also be counted.""",
}, # scalar
"sysORLastChange" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
},
"access" : "readonly",
"description" :
"""The value of sysUpTime at the time of the most recent
change in state or value of any instance of sysORID.""",
}, # scalar
"sysORTable" : {
"nodetype" : "table",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.9",
"status" : "current",
"description" :
"""The (conceptual) table listing the capabilities of
the local SNMP application acting as a command
responder with respect to various MIB modules.
SNMP entities having dynamically-configurable support
of MIB modules will have a dynamically-varying number
of conceptual rows.""",
}, # table
"sysOREntry" : {
"nodetype" : "row",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.9.1",
"status" : "current",
"linkage" : [
"sysORIndex",
],
"description" :
"""An entry (conceptual row) in the sysORTable.""",
}, # row
"sysORIndex" : {
"nodetype" : "column",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.9.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"range" : {
"min" : "1",
"max" : "2147483647"
},
},
},
"access" : "noaccess",
"description" :
"""The auxiliary variable used for identifying instances
of the columnar objects in the sysORTable.""",
}, # column
"sysORID" : {
"nodetype" : "column",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.9.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "readonly",
"description" :
"""An authoritative identification of a capabilities
statement with respect to various MIB modules supported
by the local SNMP application acting as a command
responder.""",
}, # column
"sysORDescr" : {
"nodetype" : "column",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.9.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""A textual description of the capabilities identified
by the corresponding instance of sysORID.""",
}, # column
"sysORUpTime" : {
"nodetype" : "column",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.1.9.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
},
"access" : "readonly",
"description" :
"""The value of sysUpTime at the time this conceptual
row was last instantiated.""",
}, # column
"snmp" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11",
}, # node
"snmpInPkts" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of messages delivered to the SNMP
entity from the transport service.""",
}, # scalar
"snmpOutPkts" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.2",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Messages which were
passed from the SNMP protocol entity to the
transport service.""",
}, # scalar
"snmpInBadVersions" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP messages which were delivered
to the SNMP entity and were for an unsupported SNMP
version.""",
}, # scalar
"snmpInBadCommunityNames" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of community-based SNMP messages (for
example, SNMPv1) delivered to the SNMP entity which
used an SNMP community name not known to said entity.
Also, implementations which authenticate community-based
SNMP messages using check(s) in addition to matching
the community name (for example, by also checking
whether the message originated from a transport address
allowed to use a specified community name) MAY include
in this value the number of messages which failed the
additional check(s). It is strongly RECOMMENDED that
the documentation for any security model which is used
to authenticate community-based SNMP messages specify
the precise conditions that contribute to this value.""",
}, # scalar
"snmpInBadCommunityUses" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of community-based SNMP messages (for
example, SNMPv1) delivered to the SNMP entity which
represented an SNMP operation that was not allowed for
the SNMP community named in the message. The precise
conditions under which this counter is incremented
(if at all) depend on how the SNMP entity implements
its access control mechanism and how its applications
interact with that access control mechanism. It is
strongly RECOMMENDED that the documentation for any
access control mechanism which is used to control access
to and visibility of MIB instrumentation specify the
precise conditions that contribute to this value.""",
}, # scalar
"snmpInASNParseErrs" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of ASN.1 or BER errors encountered by
the SNMP entity when decoding received SNMP messages.""",
}, # scalar
"snmpInTooBigs" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.8",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were
delivered to the SNMP protocol entity and for
which the value of the error-status field was
`tooBig'.""",
}, # scalar
"snmpInNoSuchNames" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.9",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were
delivered to the SNMP protocol entity and for
which the value of the error-status field was
`noSuchName'.""",
}, # scalar
"snmpInBadValues" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.10",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were
delivered to the SNMP protocol entity and for
which the value of the error-status field was
`badValue'.""",
}, # scalar
"snmpInReadOnlys" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.11",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number valid SNMP PDUs which were delivered
to the SNMP protocol entity and for which the value
of the error-status field was `readOnly'. It should
be noted that it is a protocol error to generate an
SNMP PDU which contains the value `readOnly' in the
error-status field, as such this object is provided
as a means of detecting incorrect implementations of
the SNMP.""",
}, # scalar
"snmpInGenErrs" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.12",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were delivered
to the SNMP protocol entity and for which the value
of the error-status field was `genErr'.""",
}, # scalar
"snmpInTotalReqVars" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.13",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of MIB objects which have been
retrieved successfully by the SNMP protocol entity
as the result of receiving valid SNMP Get-Request
and Get-Next PDUs.""",
}, # scalar
"snmpInTotalSetVars" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.14",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of MIB objects which have been
altered successfully by the SNMP protocol entity as
the result of receiving valid SNMP Set-Request PDUs.""",
}, # scalar
"snmpInGetRequests" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.15",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Get-Request PDUs which
have been accepted and processed by the SNMP
protocol entity.""",
}, # scalar
"snmpInGetNexts" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.16",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Get-Next PDUs which have been
accepted and processed by the SNMP protocol entity.""",
}, # scalar
"snmpInSetRequests" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.17",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Set-Request PDUs which
have been accepted and processed by the SNMP protocol
entity.""",
}, # scalar
"snmpInGetResponses" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.18",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Get-Response PDUs which
have been accepted and processed by the SNMP protocol
entity.""",
}, # scalar
"snmpInTraps" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.19",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Trap PDUs which have been
accepted and processed by the SNMP protocol entity.""",
}, # scalar
"snmpOutTooBigs" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.20",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were generated
by the SNMP protocol entity and for which the value
of the error-status field was `tooBig.'""",
}, # scalar
"snmpOutNoSuchNames" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.21",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were generated
by the SNMP protocol entity and for which the value
of the error-status was `noSuchName'.""",
}, # scalar
"snmpOutBadValues" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.22",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were generated
by the SNMP protocol entity and for which the value
of the error-status field was `badValue'.""",
}, # scalar
"snmpOutGenErrs" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.24",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP PDUs which were generated
by the SNMP protocol entity and for which the value
of the error-status field was `genErr'.""",
}, # scalar
"snmpOutGetRequests" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.25",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Get-Request PDUs which
have been generated by the SNMP protocol entity.""",
}, # scalar
"snmpOutGetNexts" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.26",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Get-Next PDUs which have
been generated by the SNMP protocol entity.""",
}, # scalar
"snmpOutSetRequests" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.27",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Set-Request PDUs which
have been generated by the SNMP protocol entity.""",
}, # scalar
"snmpOutGetResponses" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.28",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Get-Response PDUs which
have been generated by the SNMP protocol entity.""",
}, # scalar
"snmpOutTraps" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.29",
"status" : "obsolete",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of SNMP Trap PDUs which have
been generated by the SNMP protocol entity.""",
}, # scalar
"snmpEnableAuthenTraps" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.30",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Indicates whether the SNMP entity is permitted to
generate authenticationFailure traps. The value of this
object overrides any configuration information; as such,
it provides a means whereby all authenticationFailure
traps may be disabled.
Note that it is strongly recommended that this object
be stored in non-volatile memory so that it remains
constant across re-initializations of the network
management system.""",
}, # scalar
"snmpSilentDrops" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.31",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of Confirmed Class PDUs (such as
GetRequest-PDUs, GetNextRequest-PDUs,
GetBulkRequest-PDUs, SetRequest-PDUs, and
InformRequest-PDUs) delivered to the SNMP entity which
were silently dropped because the size of a reply
containing an alternate Response Class PDU (such as a
Response-PDU) with an empty variable-bindings field
was greater than either a local constraint or the
maximum message size associated with the originator of
the request.""",
}, # scalar
"snmpProxyDrops" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.2.1.11.32",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
"""The total number of Confirmed Class PDUs
(such as GetRequest-PDUs, GetNextRequest-PDUs,
GetBulkRequest-PDUs, SetRequest-PDUs, and
InformRequest-PDUs) delivered to the SNMP entity which
were silently dropped because the transmission of
the (possibly translated) message to a proxy target
failed in a manner (other than a time-out) such that
no Response Class PDU (such as a Response-PDU) could
be returned.""",
}, # scalar
"snmpMIB" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1",
"status" : "current",
}, # node
"snmpMIBObjects" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1",
}, # node
"snmpTrap" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.4",
}, # node
"snmpTrapOID" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "notifyonly",
"description" :
"""The authoritative identification of the notification
currently being sent. This variable occurs as
the second varbind in every SNMPv2-Trap-PDU and
InformRequest-PDU.""",
}, # scalar
"snmpTrapEnterprise" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "ObjectIdentifier"},
},
"access" : "notifyonly",
"description" :
"""The authoritative identification of the enterprise
associated with the trap currently being sent. When an
SNMP proxy agent is mapping an RFC1157 Trap-PDU
into a SNMPv2-Trap-PDU, this variable occurs as the
last varbind.""",
}, # scalar
"snmpTraps" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.5",
}, # node
"snmpSet" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.6",
}, # node
"snmpSetSerialNo" : {
"nodetype" : "scalar",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.6.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
},
"access" : "readwrite",
"description" :
"""An advisory lock used to allow several cooperating
command generator applications to coordinate their
use of the SNMP set operation.
This object is used for coarse-grain coordination.
To achieve fine-grain coordination, one or more similar
objects might be defined within each MIB group, as
appropriate.""",
}, # scalar
"snmpMIBConformance" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2",
}, # node
"snmpMIBCompliances" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.1",
}, # node
"snmpMIBGroups" : {
"nodetype" : "node",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2",
}, # node
}, # nodes
"notifications" : {
"coldStart" : {
"nodetype" : "notification",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.5.1",
"status" : "current",
"objects" : {
},
"description" :
"""A coldStart trap signifies that the SNMP entity,
supporting a notification originator application, is
reinitializing itself and that its configuration may
have been altered.""",
}, # notification
"warmStart" : {
"nodetype" : "notification",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.5.2",
"status" : "current",
"objects" : {
},
"description" :
"""A warmStart trap signifies that the SNMP entity,
supporting a notification originator application,
is reinitializing itself such that its configuration
is unaltered.""",
}, # notification
"authenticationFailure" : {
"nodetype" : "notification",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.1.5.5",
"status" : "current",
"objects" : {
},
"description" :
"""An authenticationFailure trap signifies that the SNMP
entity has received a protocol message that is not
properly authenticated. While all implementations
of SNMP entities MAY be capable of generating this
trap, the snmpEnableAuthenTraps object indicates
whether this trap will be generated.""",
}, # notification
}, # notifications
"groups" : {
"snmpSetGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.5",
"status" : "current",
"members" : {
"snmpSetSerialNo" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""A collection of objects which allow several cooperating
command generator applications to coordinate their
use of the set operation.""",
}, # group
"systemGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.6",
"status" : "current",
"members" : {
"sysDescr" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysObjectID" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysUpTime" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysContact" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysName" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysLocation" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysServices" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysORLastChange" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysORID" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysORUpTime" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"sysORDescr" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""The system group defines objects which are common to all
managed systems.""",
}, # group
"snmpBasicNotificationsGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.7",
"status" : "current",
"members" : {
"coldStart" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"authenticationFailure" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""The basic notifications implemented by an SNMP entity
supporting command responder applications.""",
}, # group
"snmpGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.8",
"status" : "current",
"members" : {
"snmpInPkts" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInBadVersions" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInASNParseErrs" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpSilentDrops" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpProxyDrops" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpEnableAuthenTraps" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""A collection of objects providing basic instrumentation
and control of an SNMP entity.""",
}, # group
"snmpCommunityGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.9",
"status" : "current",
"members" : {
"snmpInBadCommunityNames" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInBadCommunityUses" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""A collection of objects providing basic instrumentation
of a SNMP entity which supports community-based
authentication.""",
}, # group
"snmpObsoleteGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.10",
"status" : "obsolete",
"members" : {
"snmpOutPkts" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInTooBigs" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInNoSuchNames" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInBadValues" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInReadOnlys" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInGenErrs" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInTotalReqVars" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInTotalSetVars" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInGetRequests" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInGetNexts" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInSetRequests" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInGetResponses" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpInTraps" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutTooBigs" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutNoSuchNames" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutBadValues" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutGenErrs" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutGetRequests" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutGetNexts" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutSetRequests" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutGetResponses" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpOutTraps" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""A collection of objects from RFC 1213 made obsolete
by this MIB module.""",
}, # group
"snmpWarmStartNotificationGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.11",
"status" : "current",
"members" : {
"warmStart" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""An additional notification for an SNMP entity supporting
command responder applications, if it is able to reinitialize
itself such that its configuration is unaltered.""",
}, # group
"snmpNotificationGroup" : {
"nodetype" : "group",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.2.12",
"status" : "current",
"members" : {
"snmpTrapOID" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
"snmpTrapEnterprise" : {
"nodetype" : "member",
"module" : "SNMPv2-MIB"
},
}, # members
"description" :
"""These objects are required for entities
which support notification originator applications.""",
}, # group
}, # groups
"compliances" : {
"snmpBasicCompliance" : {
"nodetype" : "compliance",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.1.2",
"status" : "deprecated",
"description" :
"""The compliance statement for SNMPv2 entities which
implement the SNMPv2 MIB.
This compliance statement is replaced by
snmpBasicComplianceRev2.""",
"requires" : {
"snmpGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"snmpSetGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"systemGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"snmpBasicNotificationsGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"snmpCommunityGroup" : {
"nodetype" : "optional",
"module" : "SNMPv2-MIB",
"description" :
"""This group is mandatory for SNMPv2 entities which
support community-based authentication.""",
},
}, # requires
}, # compliance
"snmpBasicComplianceRev2" : {
"nodetype" : "compliance",
"moduleName" : "SNMPv2-MIB",
"oid" : "1.3.6.1.6.3.1.2.1.3",
"status" : "current",
"description" :
"""The compliance statement for SNMP entities which
implement this MIB module.""",
"requires" : {
"snmpGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"snmpSetGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"systemGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"snmpBasicNotificationsGroup" : {
"nodetype" : "mandatory",
"module" : "SNMPv2-MIB"
},
"snmpCommunityGroup" : {
"nodetype" : "optional",
"module" : "SNMPv2-MIB",
"description" :
"""This group is mandatory for SNMP entities which
support community-based authentication.""",
},
"snmpWarmStartNotificationGroup" : {
"nodetype" : "optional",
"module" : "SNMPv2-MIB",
"description" :
"""This group is mandatory for an SNMP entity which
supports command responder applications, and is
able to reinitialize itself such that its
configuration is unaltered.""",
},
}, # requires
}, # compliance
}, # compliances
}
|