logstash-integration-snmp 4.0.0-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (324) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +23 -0
  3. data/CONTRIBUTORS +20 -0
  4. data/Gemfile +11 -0
  5. data/LICENSE +202 -0
  6. data/README.md +89 -0
  7. data/VERSION +1 -0
  8. data/docs/index.asciidoc +202 -0
  9. data/docs/input-snmp.asciidoc +524 -0
  10. data/docs/input-snmptrap.asciidoc +392 -0
  11. data/lib/logstash/inputs/snmp.rb +369 -0
  12. data/lib/logstash/inputs/snmptrap.rb +190 -0
  13. data/lib/logstash/plugin_mixins/snmp/common.rb +197 -0
  14. data/lib/logstash-integration-snmp_jars.rb +6 -0
  15. data/lib/mibs/ietf/ACCOUNTING-CONTROL-MIB.dic +1316 -0
  16. data/lib/mibs/ietf/ADSL-LINE-EXT-MIB.dic +1724 -0
  17. data/lib/mibs/ietf/ADSL-LINE-MIB.dic +7297 -0
  18. data/lib/mibs/ietf/ADSL-TC-MIB.dic +160 -0
  19. data/lib/mibs/ietf/ADSL2-LINE-MIB.dic +8663 -0
  20. data/lib/mibs/ietf/ADSL2-LINE-TC-MIB.dic +1462 -0
  21. data/lib/mibs/ietf/AGENTX-MIB.dic +817 -0
  22. data/lib/mibs/ietf/AGGREGATE-MIB.dic +708 -0
  23. data/lib/mibs/ietf/ALARM-MIB.dic +1734 -0
  24. data/lib/mibs/ietf/APM-MIB.dic +2870 -0
  25. data/lib/mibs/ietf/APPC-MIB.dic +8687 -0
  26. data/lib/mibs/ietf/APPLETALK-MIB.dic +4399 -0
  27. data/lib/mibs/ietf/APPLICATION-MIB.dic +3750 -0
  28. data/lib/mibs/ietf/APPN-DLUR-MIB.dic +972 -0
  29. data/lib/mibs/ietf/APPN-MIB.dic +9364 -0
  30. data/lib/mibs/ietf/APPN-TRAP-MIB.dic +664 -0
  31. data/lib/mibs/ietf/APS-MIB.dic +2430 -0
  32. data/lib/mibs/ietf/ARC-MIB.dic +552 -0
  33. data/lib/mibs/ietf/ATM-ACCOUNTING-INFORMATION-MIB.dic +816 -0
  34. data/lib/mibs/ietf/ATM-MIB.dic +4104 -0
  35. data/lib/mibs/ietf/ATM-TC-MIB.dic +914 -0
  36. data/lib/mibs/ietf/ATM2-MIB.dic +4715 -0
  37. data/lib/mibs/ietf/BFD-STD-MIB.dic +2367 -0
  38. data/lib/mibs/ietf/BFD-TC-STD-MIB.dic +202 -0
  39. data/lib/mibs/ietf/BGP4-MIB.dic +1931 -0
  40. data/lib/mibs/ietf/BLDG-HVAC-MIB.dic +812 -0
  41. data/lib/mibs/ietf/BRIDGE-MIB.dic +2257 -0
  42. data/lib/mibs/ietf/CAPWAP-BASE-MIB.dic +4128 -0
  43. data/lib/mibs/ietf/CAPWAP-DOT11-MIB.dic +482 -0
  44. data/lib/mibs/ietf/CHARACTER-MIB.dic +1140 -0
  45. data/lib/mibs/ietf/CIRCUIT-IF-MIB.dic +493 -0
  46. data/lib/mibs/ietf/CLNS-MIB.dic +1702 -0
  47. data/lib/mibs/ietf/COFFEE-POT-MIB.dic +282 -0
  48. data/lib/mibs/ietf/COPS-CLIENT-MIB.dic +1270 -0
  49. data/lib/mibs/ietf/DECNET-PHIV-MIB.dic +5837 -0
  50. data/lib/mibs/ietf/DIAL-CONTROL-MIB.dic +2139 -0
  51. data/lib/mibs/ietf/DIFFSERV-CONFIG-MIB.dic +378 -0
  52. data/lib/mibs/ietf/DIFFSERV-MIB.dic +5073 -0
  53. data/lib/mibs/ietf/DIRECTORY-SERVER-MIB.dic +1041 -0
  54. data/lib/mibs/ietf/DISMAN-EVENT-MIB.dic +3151 -0
  55. data/lib/mibs/ietf/DISMAN-EXPRESSION-MIB.dic +1716 -0
  56. data/lib/mibs/ietf/DISMAN-NSLOOKUP-MIB.dic +698 -0
  57. data/lib/mibs/ietf/DISMAN-PING-MIB.dic +2635 -0
  58. data/lib/mibs/ietf/DISMAN-SCHEDULE-MIB.dic +1744 -0
  59. data/lib/mibs/ietf/DISMAN-SCRIPT-MIB.dic +2820 -0
  60. data/lib/mibs/ietf/DISMAN-TRACEROUTE-MIB.dic +3239 -0
  61. data/lib/mibs/ietf/DLSW-MIB.dic +5635 -0
  62. data/lib/mibs/ietf/DNS-RESOLVER-MIB.dic +1765 -0
  63. data/lib/mibs/ietf/DNS-SERVER-MIB.dic +1593 -0
  64. data/lib/mibs/ietf/DOCS-BPI-MIB.dic +2634 -0
  65. data/lib/mibs/ietf/DOCS-CABLE-DEVICE-MIB.dic +5042 -0
  66. data/lib/mibs/ietf/DOCS-IETF-BPI2-MIB.dic +5478 -0
  67. data/lib/mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB.dic +2447 -0
  68. data/lib/mibs/ietf/DOCS-IETF-QOS-MIB.dic +4886 -0
  69. data/lib/mibs/ietf/DOCS-IETF-SUBMGT-MIB.dic +1331 -0
  70. data/lib/mibs/ietf/DOCS-IF-MIB.dic +7980 -0
  71. data/lib/mibs/ietf/DOT12-IF-MIB.dic +1066 -0
  72. data/lib/mibs/ietf/DOT12-RPTR-MIB.dic +2669 -0
  73. data/lib/mibs/ietf/DOT3-EPON-MIB.dic +3297 -0
  74. data/lib/mibs/ietf/DOT3-OAM-MIB.dic +2830 -0
  75. data/lib/mibs/ietf/DS0-MIB.dic +466 -0
  76. data/lib/mibs/ietf/DS0BUNDLE-MIB.dic +468 -0
  77. data/lib/mibs/ietf/DS1-MIB.dic +4890 -0
  78. data/lib/mibs/ietf/DS3-MIB.dic +2719 -0
  79. data/lib/mibs/ietf/DSA-MIB.dic +888 -0
  80. data/lib/mibs/ietf/DSMON-MIB.dic +6177 -0
  81. data/lib/mibs/ietf/DVB-RCS-MIB.dic +5764 -0
  82. data/lib/mibs/ietf/EBN-MIB.dic +1026 -0
  83. data/lib/mibs/ietf/EFM-CU-MIB.dic +4335 -0
  84. data/lib/mibs/ietf/ENTITY-MIB.dic +2235 -0
  85. data/lib/mibs/ietf/ENTITY-SENSOR-MIB.dic +653 -0
  86. data/lib/mibs/ietf/ENTITY-STATE-MIB.dic +457 -0
  87. data/lib/mibs/ietf/ENTITY-STATE-TC-MIB.dic +260 -0
  88. data/lib/mibs/ietf/ETHER-CHIPSET-MIB.dic +787 -0
  89. data/lib/mibs/ietf/EtherLike-MIB.dic +2548 -0
  90. data/lib/mibs/ietf/FC-MGMT-MIB.dic +3465 -0
  91. data/lib/mibs/ietf/FCIP-MGMT-MIB.dic +1596 -0
  92. data/lib/mibs/ietf/FDDI-SMT73-MIB.dic +3378 -0
  93. data/lib/mibs/ietf/FIBRE-CHANNEL-FE-MIB.dic +2504 -0
  94. data/lib/mibs/ietf/FLOAT-TC-MIB.dic +128 -0
  95. data/lib/mibs/ietf/FLOW-METER-MIB.dic +3201 -0
  96. data/lib/mibs/ietf/FORCES-MIB.dic +598 -0
  97. data/lib/mibs/ietf/FR-ATM-PVC-SERVICE-IWF-MIB.dic +1601 -0
  98. data/lib/mibs/ietf/FR-MFR-MIB.dic +1351 -0
  99. data/lib/mibs/ietf/FRAME-RELAY-DTE-MIB.dic +1688 -0
  100. data/lib/mibs/ietf/FRNETSERV-MIB.dic +3940 -0
  101. data/lib/mibs/ietf/FRSLD-MIB.dic +2580 -0
  102. data/lib/mibs/ietf/Finisher-MIB.dic +1416 -0
  103. data/lib/mibs/ietf/GMPLS-LABEL-STD-MIB.dic +965 -0
  104. data/lib/mibs/ietf/GMPLS-LSR-STD-MIB.dic +693 -0
  105. data/lib/mibs/ietf/GMPLS-TC-STD-MIB.dic +180 -0
  106. data/lib/mibs/ietf/GMPLS-TE-STD-MIB.dic +2542 -0
  107. data/lib/mibs/ietf/GSMP-MIB.dic +2468 -0
  108. data/lib/mibs/ietf/HC-ALARM-MIB.dic +1050 -0
  109. data/lib/mibs/ietf/HC-PerfHist-TC-MIB.dic +310 -0
  110. data/lib/mibs/ietf/HC-RMON-MIB.dic +4456 -0
  111. data/lib/mibs/ietf/HDSL2-SHDSL-LINE-MIB.dic +3955 -0
  112. data/lib/mibs/ietf/HOST-RESOURCES-MIB.dic +2453 -0
  113. data/lib/mibs/ietf/HPR-IP-MIB.dic +640 -0
  114. data/lib/mibs/ietf/HPR-MIB.dic +1959 -0
  115. data/lib/mibs/ietf/IANA-ITU-ALARM-TC-MIB.dic +936 -0
  116. data/lib/mibs/ietf/IF-CAP-STACK-MIB.dic +356 -0
  117. data/lib/mibs/ietf/IF-INVERTED-STACK-MIB.dic +220 -0
  118. data/lib/mibs/ietf/IF-MIB.dic +2753 -0
  119. data/lib/mibs/ietf/IFCP-MGMT-MIB.dic +1717 -0
  120. data/lib/mibs/ietf/IGMP-STD-MIB.dic +809 -0
  121. data/lib/mibs/ietf/INET-ADDRESS-MIB.dic +570 -0
  122. data/lib/mibs/ietf/INTEGRATED-SERVICES-GUARANTEED-MIB.dic +319 -0
  123. data/lib/mibs/ietf/INTEGRATED-SERVICES-MIB.dic +1196 -0
  124. data/lib/mibs/ietf/INTERFACETOPN-MIB.dic +1705 -0
  125. data/lib/mibs/ietf/IP-FORWARD-MIB.dic +1853 -0
  126. data/lib/mibs/ietf/IP-MIB.dic +7064 -0
  127. data/lib/mibs/ietf/IPATM-IPMC-MIB.dic +4830 -0
  128. data/lib/mibs/ietf/IPFIX-MIB.dic +2334 -0
  129. data/lib/mibs/ietf/IPFIX-SELECTOR-MIB.dic +215 -0
  130. data/lib/mibs/ietf/IPMCAST-MIB.dic +3390 -0
  131. data/lib/mibs/ietf/IPMROUTE-STD-MIB.dic +1246 -0
  132. data/lib/mibs/ietf/IPOA-MIB.dic +2372 -0
  133. data/lib/mibs/ietf/IPS-AUTH-MIB.dic +1609 -0
  134. data/lib/mibs/ietf/IPSEC-SPD-MIB.dic +3989 -0
  135. data/lib/mibs/ietf/IPV6-FLOW-LABEL-MIB.dic +110 -0
  136. data/lib/mibs/ietf/IPV6-ICMP-MIB.dic +748 -0
  137. data/lib/mibs/ietf/IPV6-MIB.dic +2028 -0
  138. data/lib/mibs/ietf/IPV6-MLD-MIB.dic +659 -0
  139. data/lib/mibs/ietf/IPV6-TCP-MIB.dic +332 -0
  140. data/lib/mibs/ietf/IPV6-UDP-MIB.dic +209 -0
  141. data/lib/mibs/ietf/ISCSI-MIB.dic +4613 -0
  142. data/lib/mibs/ietf/ISDN-MIB.dic +1796 -0
  143. data/lib/mibs/ietf/ISIS-MIB.dic +6215 -0
  144. data/lib/mibs/ietf/ISNS-MIB.dic +6578 -0
  145. data/lib/mibs/ietf/ITU-ALARM-MIB.dic +665 -0
  146. data/lib/mibs/ietf/ITU-ALARM-TC-MIB.dic +137 -0
  147. data/lib/mibs/ietf/Job-Monitoring-MIB.dic +2519 -0
  148. data/lib/mibs/ietf/L2TP-MIB.dic +4050 -0
  149. data/lib/mibs/ietf/LANGTAG-TC-MIB.dic +104 -0
  150. data/lib/mibs/ietf/LISP-MIB.dic +4067 -0
  151. data/lib/mibs/ietf/LMP-MIB.dic +5166 -0
  152. data/lib/mibs/ietf/MALLOC-MIB.dic +2156 -0
  153. data/lib/mibs/ietf/MAU-MIB.dic +2619 -0
  154. data/lib/mibs/ietf/MIDCOM-MIB.dic +2856 -0
  155. data/lib/mibs/ietf/MIOX25-MIB.dic +828 -0
  156. data/lib/mibs/ietf/MIP-MIB.dic +3473 -0
  157. data/lib/mibs/ietf/MOBILEIPV6-MIB.dic +5228 -0
  158. data/lib/mibs/ietf/MPLS-FTN-STD-MIB.dic +1594 -0
  159. data/lib/mibs/ietf/MPLS-L3VPN-STD-MIB.dic +2548 -0
  160. data/lib/mibs/ietf/MPLS-LC-ATM-STD-MIB.dic +491 -0
  161. data/lib/mibs/ietf/MPLS-LC-FR-STD-MIB.dic +395 -0
  162. data/lib/mibs/ietf/MPLS-LDP-ATM-STD-MIB.dic +1019 -0
  163. data/lib/mibs/ietf/MPLS-LDP-FRAME-RELAY-STD-MIB.dic +862 -0
  164. data/lib/mibs/ietf/MPLS-LDP-GENERIC-STD-MIB.dic +445 -0
  165. data/lib/mibs/ietf/MPLS-LDP-STD-MIB.dic +3657 -0
  166. data/lib/mibs/ietf/MPLS-LSR-STD-MIB.dic +3103 -0
  167. data/lib/mibs/ietf/MPLS-TC-STD-MIB.dic +911 -0
  168. data/lib/mibs/ietf/MPLS-TE-STD-MIB.dic +3673 -0
  169. data/lib/mibs/ietf/MSDP-MIB.dic +1893 -0
  170. data/lib/mibs/ietf/MTA-MIB.dic +1898 -0
  171. data/lib/mibs/ietf/Modem-MIB.dic +2054 -0
  172. data/lib/mibs/ietf/NAT-MIB.dic +3866 -0
  173. data/lib/mibs/ietf/NETWORK-SERVICES-MIB.dic +1034 -0
  174. data/lib/mibs/ietf/NHDP-MIB.dic +3005 -0
  175. data/lib/mibs/ietf/NHRP-MIB.dic +3660 -0
  176. data/lib/mibs/ietf/NOTIFICATION-LOG-MIB.dic +1156 -0
  177. data/lib/mibs/ietf/NTPv4-MIB.dic +1535 -0
  178. data/lib/mibs/ietf/OPT-IF-MIB.dic +8972 -0
  179. data/lib/mibs/ietf/OSPF-MIB.dic +5963 -0
  180. data/lib/mibs/ietf/OSPF-TRAP-MIB.dic +1190 -0
  181. data/lib/mibs/ietf/OSPFV3-MIB.dic +5708 -0
  182. data/lib/mibs/ietf/P-BRIDGE-MIB.dic +1499 -0
  183. data/lib/mibs/ietf/PARALLEL-MIB.dic +476 -0
  184. data/lib/mibs/ietf/PIM-MIB.dic +1393 -0
  185. data/lib/mibs/ietf/PIM-STD-MIB.dic +6819 -0
  186. data/lib/mibs/ietf/PINT-MIB.dic +830 -0
  187. data/lib/mibs/ietf/PKTC-IETF-MTA-MIB.dic +3191 -0
  188. data/lib/mibs/ietf/PKTC-IETF-SIG-MIB.dic +4713 -0
  189. data/lib/mibs/ietf/PMIPV6-MIB.dic +3010 -0
  190. data/lib/mibs/ietf/PMIPV6-TC-MIB.dic +293 -0
  191. data/lib/mibs/ietf/POLICY-BASED-MANAGEMENT-MIB.dic +3316 -0
  192. data/lib/mibs/ietf/POWER-ETHERNET-MIB.dic +959 -0
  193. data/lib/mibs/ietf/PPP-BRIDGE-NCP-MIB.dic +587 -0
  194. data/lib/mibs/ietf/PPP-IP-NCP-MIB.dic +269 -0
  195. data/lib/mibs/ietf/PPP-LCP-MIB.dic +994 -0
  196. data/lib/mibs/ietf/PPP-SEC-MIB.dic +411 -0
  197. data/lib/mibs/ietf/PSAMP-MIB.dic +998 -0
  198. data/lib/mibs/ietf/PTOPO-MIB.dic +1135 -0
  199. data/lib/mibs/ietf/PW-ATM-MIB.dic +1642 -0
  200. data/lib/mibs/ietf/PW-CEP-STD-MIB.dic +3661 -0
  201. data/lib/mibs/ietf/PW-STD-MIB.dic +3592 -0
  202. data/lib/mibs/ietf/PW-TC-STD-MIB.dic +437 -0
  203. data/lib/mibs/ietf/PW-TDM-MIB.dic +1896 -0
  204. data/lib/mibs/ietf/PerfHist-TC-MIB.dic +152 -0
  205. data/lib/mibs/ietf/Printer-MIB.dic +6665 -0
  206. data/lib/mibs/ietf/Q-BRIDGE-MIB.dic +3115 -0
  207. data/lib/mibs/ietf/RADIUS-ACC-CLIENT-MIB.dic +991 -0
  208. data/lib/mibs/ietf/RADIUS-ACC-SERVER-MIB.dic +1183 -0
  209. data/lib/mibs/ietf/RADIUS-AUTH-CLIENT-MIB.dic +1073 -0
  210. data/lib/mibs/ietf/RADIUS-AUTH-SERVER-MIB.dic +1251 -0
  211. data/lib/mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB.dic +1116 -0
  212. data/lib/mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB.dic +1003 -0
  213. data/lib/mibs/ietf/RAQMON-MIB.dic +2695 -0
  214. data/lib/mibs/ietf/RBRIDGE-MIB.dic +2981 -0
  215. data/lib/mibs/ietf/RDBMS-MIB.dic +1935 -0
  216. data/lib/mibs/ietf/RFC1065-SMI.dic +108 -0
  217. data/lib/mibs/ietf/RFC1155-SMI.dic +118 -0
  218. data/lib/mibs/ietf/RFC1158-MIB.dic +2440 -0
  219. data/lib/mibs/ietf/RFC1213-MIB.dic +3434 -0
  220. data/lib/mibs/ietf/RFC1269-MIB.dic +557 -0
  221. data/lib/mibs/ietf/RFC1271-MIB.dic +4135 -0
  222. data/lib/mibs/ietf/RFC1285-MIB.dic +2842 -0
  223. data/lib/mibs/ietf/RFC1316-MIB.dic +800 -0
  224. data/lib/mibs/ietf/RFC1381-MIB.dic +1347 -0
  225. data/lib/mibs/ietf/RFC1382-MIB.dic +3820 -0
  226. data/lib/mibs/ietf/RFC1414-MIB.dic +214 -0
  227. data/lib/mibs/ietf/RIPv2-MIB.dic +773 -0
  228. data/lib/mibs/ietf/RMON-MIB.dic +5551 -0
  229. data/lib/mibs/ietf/RMON2-MIB.dic +8224 -0
  230. data/lib/mibs/ietf/ROHC-MIB.dic +1613 -0
  231. data/lib/mibs/ietf/ROHC-RTP-MIB.dic +859 -0
  232. data/lib/mibs/ietf/ROHC-UNCOMPRESSED-MIB.dic +267 -0
  233. data/lib/mibs/ietf/RPKI-ROUTER-MIB.dic +1363 -0
  234. data/lib/mibs/ietf/RS-232-MIB.dic +1335 -0
  235. data/lib/mibs/ietf/RSERPOOL-MIB.dic +2501 -0
  236. data/lib/mibs/ietf/RSTP-MIB.dic +427 -0
  237. data/lib/mibs/ietf/RSVP-MIB.dic +4135 -0
  238. data/lib/mibs/ietf/RTP-MIB.dic +1376 -0
  239. data/lib/mibs/ietf/SCSI-MIB.dic +3804 -0
  240. data/lib/mibs/ietf/SCTP-MIB.dic +1924 -0
  241. data/lib/mibs/ietf/SFLOW-MIB.dic +568 -0
  242. data/lib/mibs/ietf/SIP-COMMON-MIB.dic +2769 -0
  243. data/lib/mibs/ietf/SIP-MIB.dic +1438 -0
  244. data/lib/mibs/ietf/SIP-SERVER-MIB.dic +1150 -0
  245. data/lib/mibs/ietf/SIP-TC-MIB.dic +257 -0
  246. data/lib/mibs/ietf/SIP-UA-MIB.dic +268 -0
  247. data/lib/mibs/ietf/SLAPM-MIB.dic +4527 -0
  248. data/lib/mibs/ietf/SMON-MIB.dic +1758 -0
  249. data/lib/mibs/ietf/SNA-NAU-MIB.dic +4042 -0
  250. data/lib/mibs/ietf/SNA-SDLC-MIB.dic +3858 -0
  251. data/lib/mibs/ietf/SNMP-COMMUNITY-MIB.dic +715 -0
  252. data/lib/mibs/ietf/SNMP-FRAMEWORK-MIB.dic +709 -0
  253. data/lib/mibs/ietf/SNMP-MPD-MIB.dic +230 -0
  254. data/lib/mibs/ietf/SNMP-NOTIFICATION-MIB.dic +859 -0
  255. data/lib/mibs/ietf/SNMP-PROXY-MIB.dic +414 -0
  256. data/lib/mibs/ietf/SNMP-REPEATER-MIB.dic +4335 -0
  257. data/lib/mibs/ietf/SNMP-SSH-TM-MIB.dic +447 -0
  258. data/lib/mibs/ietf/SNMP-TARGET-MIB.dic +924 -0
  259. data/lib/mibs/ietf/SNMP-TLS-TM-MIB.dic +1449 -0
  260. data/lib/mibs/ietf/SNMP-TSM-MIB.dic +315 -0
  261. data/lib/mibs/ietf/SNMP-USER-BASED-SM-MIB.dic +1164 -0
  262. data/lib/mibs/ietf/SNMP-USM-AES-MIB.dic +95 -0
  263. data/lib/mibs/ietf/SNMP-USM-DH-OBJECTS-MIB.dic +653 -0
  264. data/lib/mibs/ietf/SNMP-VIEW-BASED-ACM-MIB.dic +1202 -0
  265. data/lib/mibs/ietf/SNMPv2-MIB.dic +1382 -0
  266. data/lib/mibs/ietf/SNMPv2-SMI.dic +223 -0
  267. data/lib/mibs/ietf/SNMPv2-USEC-MIB.dic +405 -0
  268. data/lib/mibs/ietf/SONET-MIB.dic +3308 -0
  269. data/lib/mibs/ietf/SOURCE-ROUTING-MIB.dic +542 -0
  270. data/lib/mibs/ietf/SSPM-MIB.dic +1530 -0
  271. data/lib/mibs/ietf/SYSAPPL-MIB.dic +2092 -0
  272. data/lib/mibs/ietf/T11-FC-FABRIC-ADDR-MGR-MIB.dic +1779 -0
  273. data/lib/mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB.dic +2822 -0
  274. data/lib/mibs/ietf/T11-FC-FABRIC-LOCK-MIB.dic +700 -0
  275. data/lib/mibs/ietf/T11-FC-FSPF-MIB.dic +1889 -0
  276. data/lib/mibs/ietf/T11-FC-NAME-SERVER-MIB.dic +1775 -0
  277. data/lib/mibs/ietf/T11-FC-ROUTE-MIB.dic +655 -0
  278. data/lib/mibs/ietf/T11-FC-RSCN-MIB.dic +1110 -0
  279. data/lib/mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB.dic +770 -0
  280. data/lib/mibs/ietf/T11-FC-ZONE-SERVER-MIB.dic +3886 -0
  281. data/lib/mibs/ietf/T11-TC-MIB.dic +110 -0
  282. data/lib/mibs/ietf/TCP-ESTATS-MIB.dic +3926 -0
  283. data/lib/mibs/ietf/TCP-MIB.dic +1319 -0
  284. data/lib/mibs/ietf/TCPIPX-MIB.dic +457 -0
  285. data/lib/mibs/ietf/TE-LINK-STD-MIB.dic +2876 -0
  286. data/lib/mibs/ietf/TE-MIB.dic +2924 -0
  287. data/lib/mibs/ietf/TED-MIB.dic +1749 -0
  288. data/lib/mibs/ietf/TIME-AGGREGATE-MIB.dic +550 -0
  289. data/lib/mibs/ietf/TN3270E-MIB.dic +2785 -0
  290. data/lib/mibs/ietf/TN3270E-RT-MIB.dic +1317 -0
  291. data/lib/mibs/ietf/TOKEN-RING-RMON-MIB.dic +2820 -0
  292. data/lib/mibs/ietf/TOKENRING-MIB.dic +1184 -0
  293. data/lib/mibs/ietf/TOKENRING-STATION-SR-MIB.dic +292 -0
  294. data/lib/mibs/ietf/TRANSPORT-ADDRESS-MIB.dic +610 -0
  295. data/lib/mibs/ietf/TRIP-MIB.dic +3159 -0
  296. data/lib/mibs/ietf/TRIP-TC-MIB.dic +241 -0
  297. data/lib/mibs/ietf/TUNNEL-MIB.dic +1095 -0
  298. data/lib/mibs/ietf/UDP-MIB.dic +751 -0
  299. data/lib/mibs/ietf/UDPLITE-MIB.dic +704 -0
  300. data/lib/mibs/ietf/UPS-MIB.dic +3088 -0
  301. data/lib/mibs/ietf/URI-TC-MIB.dic +193 -0
  302. data/lib/mibs/ietf/UUID-TC-MIB.dic +135 -0
  303. data/lib/mibs/ietf/VDSL-LINE-EXT-MCM-MIB.dic +989 -0
  304. data/lib/mibs/ietf/VDSL-LINE-EXT-SCM-MIB.dic +605 -0
  305. data/lib/mibs/ietf/VDSL-LINE-MIB.dic +4518 -0
  306. data/lib/mibs/ietf/VDSL2-LINE-MIB.dic +11029 -0
  307. data/lib/mibs/ietf/VDSL2-LINE-TC-MIB.dic +3152 -0
  308. data/lib/mibs/ietf/VPN-TC-STD-MIB.dic +121 -0
  309. data/lib/mibs/ietf/VRRP-MIB.dic +1163 -0
  310. data/lib/mibs/ietf/VRRPV3-MIB.dic +1403 -0
  311. data/lib/mibs/ietf/WWW-MIB.dic +1810 -0
  312. data/lib/mibs/logstash/iso.dic +18 -0
  313. data/logstash-integration-snmp.gemspec +40 -0
  314. data/spec/fixtures/RFC1213-MIB.dic +3445 -0
  315. data/spec/fixtures/collision.dic +25 -0
  316. data/spec/integration/inputs/snmp_spec.rb +443 -0
  317. data/spec/integration/inputs/snmptrap_spec.rb +383 -0
  318. data/spec/unit/inputs/common_spec.rb +264 -0
  319. data/spec/unit/inputs/snmp_spec.rb +510 -0
  320. data/spec/unit/inputs/snmptrap_spec.rb +141 -0
  321. data/vendor/jar-dependencies/org/logstash/integrations/plugin/4.0.0/plugin-4.0.0.jar +0 -0
  322. data/vendor/jar-dependencies/org/snakeyaml/snakeyaml-engine/2.7/snakeyaml-engine-2.7.jar +0 -0
  323. data/vendor/jar-dependencies/org/snmp4j/snmp4j/3.8.0/snmp4j-3.8.0.jar +0 -0
  324. metadata +523 -0
@@ -0,0 +1,3434 @@
1
+ # python version 1.0 DO NOT EDIT
2
+ #
3
+ # This python file has been generated by smidump version 0.5.0:
4
+ #
5
+ # smidump -f python RFC1213-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RFC1213-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RFC1213-MIB",
11
+
12
+ "RFC1213-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "mgmt"},
19
+ {"module" : "RFC1155-SMI", "name" : "NetworkAddress"},
20
+ {"module" : "RFC1155-SMI", "name" : "IpAddress"},
21
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
22
+ {"module" : "RFC1155-SMI", "name" : "Gauge"},
23
+ {"module" : "RFC1155-SMI", "name" : "TimeTicks"},
24
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
25
+ ),
26
+
27
+ "typedefs" : {
28
+ "DisplayString" : {
29
+ "basetype" : "OctetString",
30
+ },
31
+ "PhysAddress" : {
32
+ "basetype" : "OctetString",
33
+ },
34
+ }, # typedefs
35
+
36
+ "nodes" : {
37
+ "mib-2" : {
38
+ "nodetype" : "node",
39
+ "moduleName" : "RFC1213-MIB",
40
+ "oid" : "1.3.6.1.2.1",
41
+ }, # node
42
+ "system" : {
43
+ "nodetype" : "node",
44
+ "moduleName" : "RFC1213-MIB",
45
+ "oid" : "1.3.6.1.2.1.1",
46
+ }, # node
47
+ "sysDescr" : {
48
+ "nodetype" : "scalar",
49
+ "moduleName" : "RFC1213-MIB",
50
+ "oid" : "1.3.6.1.2.1.1.1",
51
+ "status" : "current",
52
+ "syntax" : {
53
+ "type" : {
54
+ "basetype" : "OctetString",
55
+ "parent module" : {
56
+ "name" : "RFC1213-MIB",
57
+ "type" : "DisplayString",
58
+ },
59
+ "ranges" : [
60
+ {
61
+ "min" : "0",
62
+ "max" : "255"
63
+ },
64
+ ],
65
+ "range" : {
66
+ "min" : "0",
67
+ "max" : "255"
68
+ },
69
+ },
70
+ },
71
+ "access" : "readonly",
72
+ "description" :
73
+ """A textual description of the entity. This value
74
+ should include the full name and version
75
+ identification of the system's hardware type,
76
+ software operating-system, and networking
77
+ software. It is mandatory that this only contain
78
+ printable ASCII characters.""",
79
+ }, # scalar
80
+ "sysObjectID" : {
81
+ "nodetype" : "scalar",
82
+ "moduleName" : "RFC1213-MIB",
83
+ "oid" : "1.3.6.1.2.1.1.2",
84
+ "status" : "current",
85
+ "syntax" : {
86
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
87
+ },
88
+ "access" : "readonly",
89
+ "description" :
90
+ """The vendor's authoritative identification of the
91
+ network management subsystem contained in the
92
+ entity. This value is allocated within the SMI
93
+ enterprises subtree (1.3.6.1.4.1) and provides an
94
+ easy and unambiguous means for determining `what
95
+ kind of box' is being managed. For example, if
96
+ vendor `Flintstones, Inc.' was assigned the
97
+ subtree 1.3.6.1.4.1.4242, it could assign the
98
+ identifier 1.3.6.1.4.1.4242.1.1 to its `Fred
99
+ Router'.""",
100
+ }, # scalar
101
+ "sysUpTime" : {
102
+ "nodetype" : "scalar",
103
+ "moduleName" : "RFC1213-MIB",
104
+ "oid" : "1.3.6.1.2.1.1.3",
105
+ "status" : "current",
106
+ "syntax" : {
107
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
108
+ },
109
+ "access" : "readonly",
110
+ "description" :
111
+ """The time (in hundredths of a second) since the
112
+ network management portion of the system was last
113
+ re-initialized.""",
114
+ }, # scalar
115
+ "sysContact" : {
116
+ "nodetype" : "scalar",
117
+ "moduleName" : "RFC1213-MIB",
118
+ "oid" : "1.3.6.1.2.1.1.4",
119
+ "status" : "current",
120
+ "syntax" : {
121
+ "type" : {
122
+ "basetype" : "OctetString",
123
+ "parent module" : {
124
+ "name" : "RFC1213-MIB",
125
+ "type" : "DisplayString",
126
+ },
127
+ "ranges" : [
128
+ {
129
+ "min" : "0",
130
+ "max" : "255"
131
+ },
132
+ ],
133
+ "range" : {
134
+ "min" : "0",
135
+ "max" : "255"
136
+ },
137
+ },
138
+ },
139
+ "access" : "readwrite",
140
+ "description" :
141
+ """The textual identification of the contact person
142
+ for this managed node, together with information
143
+ on how to contact this person.""",
144
+ }, # scalar
145
+ "sysName" : {
146
+ "nodetype" : "scalar",
147
+ "moduleName" : "RFC1213-MIB",
148
+ "oid" : "1.3.6.1.2.1.1.5",
149
+ "status" : "current",
150
+ "syntax" : {
151
+ "type" : {
152
+ "basetype" : "OctetString",
153
+ "parent module" : {
154
+ "name" : "RFC1213-MIB",
155
+ "type" : "DisplayString",
156
+ },
157
+ "ranges" : [
158
+ {
159
+ "min" : "0",
160
+ "max" : "255"
161
+ },
162
+ ],
163
+ "range" : {
164
+ "min" : "0",
165
+ "max" : "255"
166
+ },
167
+ },
168
+ },
169
+ "access" : "readwrite",
170
+ "description" :
171
+ """An administratively-assigned name for this
172
+ managed node. By convention, this is the node's
173
+ fully-qualified domain name.""",
174
+ }, # scalar
175
+ "sysLocation" : {
176
+ "nodetype" : "scalar",
177
+ "moduleName" : "RFC1213-MIB",
178
+ "oid" : "1.3.6.1.2.1.1.6",
179
+ "status" : "current",
180
+ "syntax" : {
181
+ "type" : {
182
+ "basetype" : "OctetString",
183
+ "parent module" : {
184
+ "name" : "RFC1213-MIB",
185
+ "type" : "DisplayString",
186
+ },
187
+ "ranges" : [
188
+ {
189
+ "min" : "0",
190
+ "max" : "255"
191
+ },
192
+ ],
193
+ "range" : {
194
+ "min" : "0",
195
+ "max" : "255"
196
+ },
197
+ },
198
+ },
199
+ "access" : "readwrite",
200
+ "description" :
201
+ """The physical location of this node (e.g.,
202
+ `telephone closet, 3rd floor').""",
203
+ }, # scalar
204
+ "sysServices" : {
205
+ "nodetype" : "scalar",
206
+ "moduleName" : "RFC1213-MIB",
207
+ "oid" : "1.3.6.1.2.1.1.7",
208
+ "status" : "current",
209
+ "syntax" : {
210
+ "type" : {
211
+ "basetype" : "Integer32",
212
+ "ranges" : [
213
+ {
214
+ "min" : "0",
215
+ "max" : "127"
216
+ },
217
+ ],
218
+ "range" : {
219
+ "min" : "0",
220
+ "max" : "127"
221
+ },
222
+ },
223
+ },
224
+ "access" : "readonly",
225
+ "description" :
226
+ """A value which indicates the set of services that
227
+ this entity primarily offers.
228
+
229
+ The value is a sum. This sum initially takes the
230
+ value zero, Then, for each layer, L, in the range
231
+ 1 through 7, that this node performs transactions
232
+ for, 2 raised to (L - 1) is added to the sum. For
233
+ example, a node which performs primarily routing
234
+ functions would have a value of 4 (2^(3-1)). In
235
+ contrast, a node which is a host offering
236
+ application services would have a value of 72
237
+ (2^(4-1) + 2^(7-1)). Note that in the context of
238
+ the Internet suite of protocols, values should be
239
+ calculated accordingly:
240
+
241
+ layer functionality
242
+ 1 physical (e.g., repeaters)
243
+ 2 datalink/subnetwork (e.g., bridges)
244
+ 3 internet (e.g., IP gateways)
245
+ 4 end-to-end (e.g., IP hosts)
246
+ 7 applications (e.g., mail relays)
247
+
248
+ For systems including OSI protocols, layers 5 and
249
+ 6 may also be counted.""",
250
+ }, # scalar
251
+ "interfaces" : {
252
+ "nodetype" : "node",
253
+ "moduleName" : "RFC1213-MIB",
254
+ "oid" : "1.3.6.1.2.1.2",
255
+ }, # node
256
+ "ifNumber" : {
257
+ "nodetype" : "scalar",
258
+ "moduleName" : "RFC1213-MIB",
259
+ "oid" : "1.3.6.1.2.1.2.1",
260
+ "status" : "current",
261
+ "syntax" : {
262
+ "type" : { "module" :"", "name" : "Integer32"},
263
+ },
264
+ "access" : "readonly",
265
+ "description" :
266
+ """The number of network interfaces (regardless of
267
+ their current state) present on this system.""",
268
+ }, # scalar
269
+ "ifTable" : {
270
+ "nodetype" : "table",
271
+ "moduleName" : "RFC1213-MIB",
272
+ "oid" : "1.3.6.1.2.1.2.2",
273
+ "status" : "current",
274
+ "description" :
275
+ """A list of interface entries. The number of
276
+ entries is given by the value of ifNumber.""",
277
+ }, # table
278
+ "ifEntry" : {
279
+ "nodetype" : "row",
280
+ "moduleName" : "RFC1213-MIB",
281
+ "oid" : "1.3.6.1.2.1.2.2.1",
282
+ "status" : "current",
283
+ "linkage" : [
284
+ "ifIndex",
285
+ ],
286
+ "description" :
287
+ """An interface entry containing objects at the
288
+ subnetwork layer and below for a particular
289
+ interface.""",
290
+ }, # row
291
+ "ifIndex" : {
292
+ "nodetype" : "column",
293
+ "moduleName" : "RFC1213-MIB",
294
+ "oid" : "1.3.6.1.2.1.2.2.1.1",
295
+ "status" : "current",
296
+ "syntax" : {
297
+ "type" : { "module" :"", "name" : "Integer32"},
298
+ },
299
+ "access" : "readonly",
300
+ "description" :
301
+ """A unique value for each interface. Its value
302
+ ranges between 1 and the value of ifNumber. The
303
+ value for each interface must remain constant at
304
+ least from one re-initialization of the entity's
305
+ network management system to the next re-
306
+ initialization.""",
307
+ }, # column
308
+ "ifDescr" : {
309
+ "nodetype" : "column",
310
+ "moduleName" : "RFC1213-MIB",
311
+ "oid" : "1.3.6.1.2.1.2.2.1.2",
312
+ "status" : "current",
313
+ "syntax" : {
314
+ "type" : {
315
+ "basetype" : "OctetString",
316
+ "parent module" : {
317
+ "name" : "RFC1213-MIB",
318
+ "type" : "DisplayString",
319
+ },
320
+ "ranges" : [
321
+ {
322
+ "min" : "0",
323
+ "max" : "255"
324
+ },
325
+ ],
326
+ "range" : {
327
+ "min" : "0",
328
+ "max" : "255"
329
+ },
330
+ },
331
+ },
332
+ "access" : "readonly",
333
+ "description" :
334
+ """A textual string containing information about the
335
+ interface. This string should include the name of
336
+ the manufacturer, the product name and the version
337
+ of the hardware interface.""",
338
+ }, # column
339
+ "ifType" : {
340
+ "nodetype" : "column",
341
+ "moduleName" : "RFC1213-MIB",
342
+ "oid" : "1.3.6.1.2.1.2.2.1.3",
343
+ "status" : "current",
344
+ "syntax" : {
345
+ "type" : {
346
+ "basetype" : "Enumeration",
347
+ "other" : {
348
+ "nodetype" : "namednumber",
349
+ "number" : "1"
350
+ },
351
+ "regular1822" : {
352
+ "nodetype" : "namednumber",
353
+ "number" : "2"
354
+ },
355
+ "hdh1822" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "3"
358
+ },
359
+ "ddn-x25" : {
360
+ "nodetype" : "namednumber",
361
+ "number" : "4"
362
+ },
363
+ "rfc877-x25" : {
364
+ "nodetype" : "namednumber",
365
+ "number" : "5"
366
+ },
367
+ "ethernet-csmacd" : {
368
+ "nodetype" : "namednumber",
369
+ "number" : "6"
370
+ },
371
+ "iso88023-csmacd" : {
372
+ "nodetype" : "namednumber",
373
+ "number" : "7"
374
+ },
375
+ "iso88024-tokenBus" : {
376
+ "nodetype" : "namednumber",
377
+ "number" : "8"
378
+ },
379
+ "iso88025-tokenRing" : {
380
+ "nodetype" : "namednumber",
381
+ "number" : "9"
382
+ },
383
+ "iso88026-man" : {
384
+ "nodetype" : "namednumber",
385
+ "number" : "10"
386
+ },
387
+ "starLan" : {
388
+ "nodetype" : "namednumber",
389
+ "number" : "11"
390
+ },
391
+ "proteon-10Mbit" : {
392
+ "nodetype" : "namednumber",
393
+ "number" : "12"
394
+ },
395
+ "proteon-80Mbit" : {
396
+ "nodetype" : "namednumber",
397
+ "number" : "13"
398
+ },
399
+ "hyperchannel" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "14"
402
+ },
403
+ "fddi" : {
404
+ "nodetype" : "namednumber",
405
+ "number" : "15"
406
+ },
407
+ "lapb" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "16"
410
+ },
411
+ "sdlc" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "17"
414
+ },
415
+ "ds1" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "18"
418
+ },
419
+ "e1" : {
420
+ "nodetype" : "namednumber",
421
+ "number" : "19"
422
+ },
423
+ "basicISDN" : {
424
+ "nodetype" : "namednumber",
425
+ "number" : "20"
426
+ },
427
+ "primaryISDN" : {
428
+ "nodetype" : "namednumber",
429
+ "number" : "21"
430
+ },
431
+ "propPointToPointSerial" : {
432
+ "nodetype" : "namednumber",
433
+ "number" : "22"
434
+ },
435
+ "ppp" : {
436
+ "nodetype" : "namednumber",
437
+ "number" : "23"
438
+ },
439
+ "softwareLoopback" : {
440
+ "nodetype" : "namednumber",
441
+ "number" : "24"
442
+ },
443
+ "eon" : {
444
+ "nodetype" : "namednumber",
445
+ "number" : "25"
446
+ },
447
+ "ethernet-3Mbit" : {
448
+ "nodetype" : "namednumber",
449
+ "number" : "26"
450
+ },
451
+ "nsip" : {
452
+ "nodetype" : "namednumber",
453
+ "number" : "27"
454
+ },
455
+ "slip" : {
456
+ "nodetype" : "namednumber",
457
+ "number" : "28"
458
+ },
459
+ "ultra" : {
460
+ "nodetype" : "namednumber",
461
+ "number" : "29"
462
+ },
463
+ "ds3" : {
464
+ "nodetype" : "namednumber",
465
+ "number" : "30"
466
+ },
467
+ "sip" : {
468
+ "nodetype" : "namednumber",
469
+ "number" : "31"
470
+ },
471
+ "frame-relay" : {
472
+ "nodetype" : "namednumber",
473
+ "number" : "32"
474
+ },
475
+ },
476
+ },
477
+ "access" : "readonly",
478
+ "description" :
479
+ """The type of interface, distinguished according to
480
+ the physical/link protocol(s) immediately `below'
481
+ the network layer in the protocol stack.""",
482
+ }, # column
483
+ "ifMtu" : {
484
+ "nodetype" : "column",
485
+ "moduleName" : "RFC1213-MIB",
486
+ "oid" : "1.3.6.1.2.1.2.2.1.4",
487
+ "status" : "current",
488
+ "syntax" : {
489
+ "type" : { "module" :"", "name" : "Integer32"},
490
+ },
491
+ "access" : "readonly",
492
+ "description" :
493
+ """The size of the largest datagram which can be
494
+ sent/received on the interface, specified in
495
+ octets. For interfaces that are used for
496
+ transmitting network datagrams, this is the size
497
+ of the largest network datagram that can be sent
498
+ on the interface.""",
499
+ }, # column
500
+ "ifSpeed" : {
501
+ "nodetype" : "column",
502
+ "moduleName" : "RFC1213-MIB",
503
+ "oid" : "1.3.6.1.2.1.2.2.1.5",
504
+ "status" : "current",
505
+ "syntax" : {
506
+ "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
507
+ },
508
+ "access" : "readonly",
509
+ "description" :
510
+ """An estimate of the interface's current bandwidth
511
+ in bits per second. For interfaces which do not
512
+ vary in bandwidth or for those where no accurate
513
+ estimation can be made, this object should contain
514
+ the nominal bandwidth.""",
515
+ }, # column
516
+ "ifPhysAddress" : {
517
+ "nodetype" : "column",
518
+ "moduleName" : "RFC1213-MIB",
519
+ "oid" : "1.3.6.1.2.1.2.2.1.6",
520
+ "status" : "current",
521
+ "syntax" : {
522
+ "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
523
+ },
524
+ "access" : "readonly",
525
+ "description" :
526
+ """The interface's address at the protocol layer
527
+ immediately `below' the network layer in the
528
+ protocol stack. For interfaces which do not have
529
+ such an address (e.g., a serial line), this object
530
+ should contain an octet string of zero length.""",
531
+ }, # column
532
+ "ifAdminStatus" : {
533
+ "nodetype" : "column",
534
+ "moduleName" : "RFC1213-MIB",
535
+ "oid" : "1.3.6.1.2.1.2.2.1.7",
536
+ "status" : "current",
537
+ "syntax" : {
538
+ "type" : {
539
+ "basetype" : "Enumeration",
540
+ "up" : {
541
+ "nodetype" : "namednumber",
542
+ "number" : "1"
543
+ },
544
+ "down" : {
545
+ "nodetype" : "namednumber",
546
+ "number" : "2"
547
+ },
548
+ "testing" : {
549
+ "nodetype" : "namednumber",
550
+ "number" : "3"
551
+ },
552
+ },
553
+ },
554
+ "access" : "readwrite",
555
+ "description" :
556
+ """The desired state of the interface. The
557
+ testing(3) state indicates that no operational
558
+ packets can be passed.""",
559
+ }, # column
560
+ "ifOperStatus" : {
561
+ "nodetype" : "column",
562
+ "moduleName" : "RFC1213-MIB",
563
+ "oid" : "1.3.6.1.2.1.2.2.1.8",
564
+ "status" : "current",
565
+ "syntax" : {
566
+ "type" : {
567
+ "basetype" : "Enumeration",
568
+ "up" : {
569
+ "nodetype" : "namednumber",
570
+ "number" : "1"
571
+ },
572
+ "down" : {
573
+ "nodetype" : "namednumber",
574
+ "number" : "2"
575
+ },
576
+ "testing" : {
577
+ "nodetype" : "namednumber",
578
+ "number" : "3"
579
+ },
580
+ },
581
+ },
582
+ "access" : "readonly",
583
+ "description" :
584
+ """The current operational state of the interface.
585
+ The testing(3) state indicates that no operational
586
+ packets can be passed.""",
587
+ }, # column
588
+ "ifLastChange" : {
589
+ "nodetype" : "column",
590
+ "moduleName" : "RFC1213-MIB",
591
+ "oid" : "1.3.6.1.2.1.2.2.1.9",
592
+ "status" : "current",
593
+ "syntax" : {
594
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
595
+ },
596
+ "access" : "readonly",
597
+ "description" :
598
+ """The value of sysUpTime at the time the interface
599
+ entered its current operational state. If the
600
+ current state was entered prior to the last re-
601
+ initialization of the local network management
602
+ subsystem, then this object contains a zero
603
+ value.""",
604
+ }, # column
605
+ "ifInOctets" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "RFC1213-MIB",
608
+ "oid" : "1.3.6.1.2.1.2.2.1.10",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
612
+ },
613
+ "access" : "readonly",
614
+ "description" :
615
+ """The total number of octets received on the
616
+ interface, including framing characters.""",
617
+ }, # column
618
+ "ifInUcastPkts" : {
619
+ "nodetype" : "column",
620
+ "moduleName" : "RFC1213-MIB",
621
+ "oid" : "1.3.6.1.2.1.2.2.1.11",
622
+ "status" : "current",
623
+ "syntax" : {
624
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
625
+ },
626
+ "access" : "readonly",
627
+ "description" :
628
+ """The number of subnetwork-unicast packets
629
+ delivered to a higher-layer protocol.""",
630
+ }, # column
631
+ "ifInNUcastPkts" : {
632
+ "nodetype" : "column",
633
+ "moduleName" : "RFC1213-MIB",
634
+ "oid" : "1.3.6.1.2.1.2.2.1.12",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
638
+ },
639
+ "access" : "readonly",
640
+ "description" :
641
+ """The number of non-unicast (i.e., subnetwork-
642
+ broadcast or subnetwork-multicast) packets
643
+ delivered to a higher-layer protocol.""",
644
+ }, # column
645
+ "ifInDiscards" : {
646
+ "nodetype" : "column",
647
+ "moduleName" : "RFC1213-MIB",
648
+ "oid" : "1.3.6.1.2.1.2.2.1.13",
649
+ "status" : "current",
650
+ "syntax" : {
651
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
652
+ },
653
+ "access" : "readonly",
654
+ "description" :
655
+ """The number of inbound packets which were chosen
656
+ to be discarded even though no errors had been
657
+ detected to prevent their being deliverable to a
658
+ higher-layer protocol. One possible reason for
659
+ discarding such a packet could be to free up
660
+ buffer space.""",
661
+ }, # column
662
+ "ifInErrors" : {
663
+ "nodetype" : "column",
664
+ "moduleName" : "RFC1213-MIB",
665
+ "oid" : "1.3.6.1.2.1.2.2.1.14",
666
+ "status" : "current",
667
+ "syntax" : {
668
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
669
+ },
670
+ "access" : "readonly",
671
+ "description" :
672
+ """The number of inbound packets that contained
673
+ errors preventing them from being deliverable to a
674
+ higher-layer protocol.""",
675
+ }, # column
676
+ "ifInUnknownProtos" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "RFC1213-MIB",
679
+ "oid" : "1.3.6.1.2.1.2.2.1.15",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
683
+ },
684
+ "access" : "readonly",
685
+ "description" :
686
+ """The number of packets received via the interface
687
+ which were discarded because of an unknown or
688
+ unsupported protocol.""",
689
+ }, # column
690
+ "ifOutOctets" : {
691
+ "nodetype" : "column",
692
+ "moduleName" : "RFC1213-MIB",
693
+ "oid" : "1.3.6.1.2.1.2.2.1.16",
694
+ "status" : "current",
695
+ "syntax" : {
696
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
697
+ },
698
+ "access" : "readonly",
699
+ "description" :
700
+ """The total number of octets transmitted out of the
701
+ interface, including framing characters.""",
702
+ }, # column
703
+ "ifOutUcastPkts" : {
704
+ "nodetype" : "column",
705
+ "moduleName" : "RFC1213-MIB",
706
+ "oid" : "1.3.6.1.2.1.2.2.1.17",
707
+ "status" : "current",
708
+ "syntax" : {
709
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
710
+ },
711
+ "access" : "readonly",
712
+ "description" :
713
+ """The total number of packets that higher-level
714
+ protocols requested be transmitted to a
715
+ subnetwork-unicast address, including those that
716
+ were discarded or not sent.""",
717
+ }, # column
718
+ "ifOutNUcastPkts" : {
719
+ "nodetype" : "column",
720
+ "moduleName" : "RFC1213-MIB",
721
+ "oid" : "1.3.6.1.2.1.2.2.1.18",
722
+ "status" : "current",
723
+ "syntax" : {
724
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
725
+ },
726
+ "access" : "readonly",
727
+ "description" :
728
+ """The total number of packets that higher-level
729
+ protocols requested be transmitted to a non-
730
+ unicast (i.e., a subnetwork-broadcast or
731
+ subnetwork-multicast) address, including those
732
+ that were discarded or not sent.""",
733
+ }, # column
734
+ "ifOutDiscards" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "RFC1213-MIB",
737
+ "oid" : "1.3.6.1.2.1.2.2.1.19",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
741
+ },
742
+ "access" : "readonly",
743
+ "description" :
744
+ """The number of outbound packets which were chosen
745
+ to be discarded even though no errors had been
746
+ detected to prevent their being transmitted. One
747
+ possible reason for discarding such a packet could
748
+ be to free up buffer space.""",
749
+ }, # column
750
+ "ifOutErrors" : {
751
+ "nodetype" : "column",
752
+ "moduleName" : "RFC1213-MIB",
753
+ "oid" : "1.3.6.1.2.1.2.2.1.20",
754
+ "status" : "current",
755
+ "syntax" : {
756
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
757
+ },
758
+ "access" : "readonly",
759
+ "description" :
760
+ """The number of outbound packets that could not be
761
+ transmitted because of errors.""",
762
+ }, # column
763
+ "ifOutQLen" : {
764
+ "nodetype" : "column",
765
+ "moduleName" : "RFC1213-MIB",
766
+ "oid" : "1.3.6.1.2.1.2.2.1.21",
767
+ "status" : "current",
768
+ "syntax" : {
769
+ "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
770
+ },
771
+ "access" : "readonly",
772
+ "description" :
773
+ """The length of the output packet queue (in
774
+ packets).""",
775
+ }, # column
776
+ "ifSpecific" : {
777
+ "nodetype" : "column",
778
+ "moduleName" : "RFC1213-MIB",
779
+ "oid" : "1.3.6.1.2.1.2.2.1.22",
780
+ "status" : "current",
781
+ "syntax" : {
782
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
783
+ },
784
+ "access" : "readonly",
785
+ "description" :
786
+ """A reference to MIB definitions specific to the
787
+ particular media being used to realize the
788
+ interface. For example, if the interface is
789
+ realized by an ethernet, then the value of this
790
+ object refers to a document defining objects
791
+ specific to ethernet. If this information is not
792
+ present, its value should be set to the OBJECT
793
+ IDENTIFIER { 0 0 }, which is a syntatically valid
794
+ object identifier, and any conformant
795
+ implementation of ASN.1 and BER must be able to
796
+ generate and recognize this value.""",
797
+ }, # column
798
+ "at" : {
799
+ "nodetype" : "node",
800
+ "moduleName" : "RFC1213-MIB",
801
+ "oid" : "1.3.6.1.2.1.3",
802
+ }, # node
803
+ "atTable" : {
804
+ "nodetype" : "table",
805
+ "moduleName" : "RFC1213-MIB",
806
+ "oid" : "1.3.6.1.2.1.3.1",
807
+ "status" : "obsolete",
808
+ "description" :
809
+ """The Address Translation tables contain the
810
+ NetworkAddress to `physical' address equivalences.
811
+ Some interfaces do not use translation tables for
812
+ determining address equivalences (e.g., DDN-X.25
813
+ has an algorithmic method); if all interfaces are
814
+ of this type, then the Address Translation table
815
+ is empty, i.e., has zero entries.""",
816
+ }, # table
817
+ "atEntry" : {
818
+ "nodetype" : "row",
819
+ "moduleName" : "RFC1213-MIB",
820
+ "oid" : "1.3.6.1.2.1.3.1.1",
821
+ "status" : "obsolete",
822
+ "linkage" : [
823
+ "atIfIndex",
824
+ "atNetAddress",
825
+ ],
826
+ "description" :
827
+ """Each entry contains one NetworkAddress to
828
+ `physical' address equivalence.""",
829
+ }, # row
830
+ "atIfIndex" : {
831
+ "nodetype" : "column",
832
+ "moduleName" : "RFC1213-MIB",
833
+ "oid" : "1.3.6.1.2.1.3.1.1.1",
834
+ "status" : "obsolete",
835
+ "syntax" : {
836
+ "type" : { "module" :"", "name" : "Integer32"},
837
+ },
838
+ "access" : "readwrite",
839
+ "description" :
840
+ """The interface on which this entry's equivalence
841
+ is effective. The interface identified by a
842
+ particular value of this index is the same
843
+ interface as identified by the same value of
844
+ ifIndex.""",
845
+ }, # column
846
+ "atPhysAddress" : {
847
+ "nodetype" : "column",
848
+ "moduleName" : "RFC1213-MIB",
849
+ "oid" : "1.3.6.1.2.1.3.1.1.2",
850
+ "status" : "obsolete",
851
+ "syntax" : {
852
+ "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
853
+ },
854
+ "access" : "readwrite",
855
+ "description" :
856
+ """The media-dependent `physical' address.
857
+
858
+ Setting this object to a null string (one of zero
859
+ length) has the effect of invaliding the
860
+ corresponding entry in the atTable object. That
861
+ is, it effectively dissasociates the interface
862
+ identified with said entry from the mapping
863
+ identified with said entry. It is an
864
+ implementation-specific matter as to whether the
865
+ agent removes an invalidated entry from the table.
866
+ Accordingly, management stations must be prepared
867
+ to receive tabular information from agents that
868
+ corresponds to entries not currently in use.
869
+ Proper interpretation of such entries requires
870
+ examination of the relevant atPhysAddress object.""",
871
+ }, # column
872
+ "atNetAddress" : {
873
+ "nodetype" : "column",
874
+ "moduleName" : "RFC1213-MIB",
875
+ "oid" : "1.3.6.1.2.1.3.1.1.3",
876
+ "status" : "obsolete",
877
+ "syntax" : {
878
+ "type" : { "module" :"RFC1155-SMI", "name" : "NetworkAddress"},
879
+ },
880
+ "access" : "readwrite",
881
+ "description" :
882
+ """The NetworkAddress (e.g., the IP address)
883
+ corresponding to the media-dependent `physical'
884
+ address.""",
885
+ }, # column
886
+ "ip" : {
887
+ "nodetype" : "node",
888
+ "moduleName" : "RFC1213-MIB",
889
+ "oid" : "1.3.6.1.2.1.4",
890
+ }, # node
891
+ "ipForwarding" : {
892
+ "nodetype" : "scalar",
893
+ "moduleName" : "RFC1213-MIB",
894
+ "oid" : "1.3.6.1.2.1.4.1",
895
+ "status" : "current",
896
+ "syntax" : {
897
+ "type" : {
898
+ "basetype" : "Enumeration",
899
+ "forwarding" : {
900
+ "nodetype" : "namednumber",
901
+ "number" : "1"
902
+ },
903
+ "not-forwarding" : {
904
+ "nodetype" : "namednumber",
905
+ "number" : "2"
906
+ },
907
+ },
908
+ },
909
+ "access" : "readwrite",
910
+ "description" :
911
+ """The indication of whether this entity is acting
912
+ as an IP gateway in respect to the forwarding of
913
+ datagrams received by, but not addressed to, this
914
+ entity. IP gateways forward datagrams. IP hosts
915
+ do not (except those source-routed via the host).
916
+
917
+ Note that for some managed nodes, this object may
918
+ take on only a subset of the values possible.
919
+ Accordingly, it is appropriate for an agent to
920
+ return a `badValue' response if a management
921
+ station attempts to change this object to an
922
+ inappropriate value.""",
923
+ }, # scalar
924
+ "ipDefaultTTL" : {
925
+ "nodetype" : "scalar",
926
+ "moduleName" : "RFC1213-MIB",
927
+ "oid" : "1.3.6.1.2.1.4.2",
928
+ "status" : "current",
929
+ "syntax" : {
930
+ "type" : { "module" :"", "name" : "Integer32"},
931
+ },
932
+ "access" : "readwrite",
933
+ "description" :
934
+ """The default value inserted into the Time-To-Live
935
+ field of the IP header of datagrams originated at
936
+ this entity, whenever a TTL value is not supplied
937
+ by the transport layer protocol.""",
938
+ }, # scalar
939
+ "ipInReceives" : {
940
+ "nodetype" : "scalar",
941
+ "moduleName" : "RFC1213-MIB",
942
+ "oid" : "1.3.6.1.2.1.4.3",
943
+ "status" : "current",
944
+ "syntax" : {
945
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
946
+ },
947
+ "access" : "readonly",
948
+ "description" :
949
+ """The total number of input datagrams received from
950
+ interfaces, including those received in error.""",
951
+ }, # scalar
952
+ "ipInHdrErrors" : {
953
+ "nodetype" : "scalar",
954
+ "moduleName" : "RFC1213-MIB",
955
+ "oid" : "1.3.6.1.2.1.4.4",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
959
+ },
960
+ "access" : "readonly",
961
+ "description" :
962
+ """The number of input datagrams discarded due to
963
+ errors in their IP headers, including bad
964
+ checksums, version number mismatch, other format
965
+ errors, time-to-live exceeded, errors discovered
966
+ in processing their IP options, etc.""",
967
+ }, # scalar
968
+ "ipInAddrErrors" : {
969
+ "nodetype" : "scalar",
970
+ "moduleName" : "RFC1213-MIB",
971
+ "oid" : "1.3.6.1.2.1.4.5",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
975
+ },
976
+ "access" : "readonly",
977
+ "description" :
978
+ """The number of input datagrams discarded because
979
+ the IP address in their IP header's destination
980
+ field was not a valid address to be received at
981
+ this entity. This count includes invalid
982
+ addresses (e.g., 0.0.0.0) and addresses of
983
+ unsupported Classes (e.g., Class E). For entities
984
+ which are not IP Gateways and therefore do not
985
+ forward datagrams, this counter includes datagrams
986
+ discarded because the destination address was not
987
+ a local address.""",
988
+ }, # scalar
989
+ "ipForwDatagrams" : {
990
+ "nodetype" : "scalar",
991
+ "moduleName" : "RFC1213-MIB",
992
+ "oid" : "1.3.6.1.2.1.4.6",
993
+ "status" : "current",
994
+ "syntax" : {
995
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
996
+ },
997
+ "access" : "readonly",
998
+ "description" :
999
+ """The number of input datagrams for which this
1000
+ entity was not their final IP destination, as a
1001
+ result of which an attempt was made to find a
1002
+ route to forward them to that final destination.
1003
+ In entities which do not act as IP Gateways, this
1004
+ counter will include only those packets which were
1005
+ Source-Routed via this entity, and the Source-
1006
+ Route option processing was successful.""",
1007
+ }, # scalar
1008
+ "ipInUnknownProtos" : {
1009
+ "nodetype" : "scalar",
1010
+ "moduleName" : "RFC1213-MIB",
1011
+ "oid" : "1.3.6.1.2.1.4.7",
1012
+ "status" : "current",
1013
+ "syntax" : {
1014
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1015
+ },
1016
+ "access" : "readonly",
1017
+ "description" :
1018
+ """The number of locally-addressed datagrams
1019
+ received successfully but discarded because of an
1020
+ unknown or unsupported protocol.""",
1021
+ }, # scalar
1022
+ "ipInDiscards" : {
1023
+ "nodetype" : "scalar",
1024
+ "moduleName" : "RFC1213-MIB",
1025
+ "oid" : "1.3.6.1.2.1.4.8",
1026
+ "status" : "current",
1027
+ "syntax" : {
1028
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1029
+ },
1030
+ "access" : "readonly",
1031
+ "description" :
1032
+ """The number of input IP datagrams for which no
1033
+ problems were encountered to prevent their
1034
+ continued processing, but which were discarded
1035
+ (e.g., for lack of buffer space). Note that this
1036
+ counter does not include any datagrams discarded
1037
+ while awaiting re-assembly.""",
1038
+ }, # scalar
1039
+ "ipInDelivers" : {
1040
+ "nodetype" : "scalar",
1041
+ "moduleName" : "RFC1213-MIB",
1042
+ "oid" : "1.3.6.1.2.1.4.9",
1043
+ "status" : "current",
1044
+ "syntax" : {
1045
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1046
+ },
1047
+ "access" : "readonly",
1048
+ "description" :
1049
+ """The total number of input datagrams successfully
1050
+ delivered to IP user-protocols (including ICMP).""",
1051
+ }, # scalar
1052
+ "ipOutRequests" : {
1053
+ "nodetype" : "scalar",
1054
+ "moduleName" : "RFC1213-MIB",
1055
+ "oid" : "1.3.6.1.2.1.4.10",
1056
+ "status" : "current",
1057
+ "syntax" : {
1058
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1059
+ },
1060
+ "access" : "readonly",
1061
+ "description" :
1062
+ """The total number of IP datagrams which local IP
1063
+ user-protocols (including ICMP) supplied to IP in
1064
+ requests for transmission. Note that this counter
1065
+ does not include any datagrams counted in
1066
+ ipForwDatagrams.""",
1067
+ }, # scalar
1068
+ "ipOutDiscards" : {
1069
+ "nodetype" : "scalar",
1070
+ "moduleName" : "RFC1213-MIB",
1071
+ "oid" : "1.3.6.1.2.1.4.11",
1072
+ "status" : "current",
1073
+ "syntax" : {
1074
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1075
+ },
1076
+ "access" : "readonly",
1077
+ "description" :
1078
+ """The number of output IP datagrams for which no
1079
+ problem was encountered to prevent their
1080
+ transmission to their destination, but which were
1081
+ discarded (e.g., for lack of buffer space). Note
1082
+ that this counter would include datagrams counted
1083
+ in ipForwDatagrams if any such packets met this
1084
+ (discretionary) discard criterion.""",
1085
+ }, # scalar
1086
+ "ipOutNoRoutes" : {
1087
+ "nodetype" : "scalar",
1088
+ "moduleName" : "RFC1213-MIB",
1089
+ "oid" : "1.3.6.1.2.1.4.12",
1090
+ "status" : "current",
1091
+ "syntax" : {
1092
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1093
+ },
1094
+ "access" : "readonly",
1095
+ "description" :
1096
+ """The number of IP datagrams discarded because no
1097
+ route could be found to transmit them to their
1098
+ destination. Note that this counter includes any
1099
+ packets counted in ipForwDatagrams which meet this
1100
+ `no-route' criterion. Note that this includes any
1101
+ datagarms which a host cannot route because all of
1102
+ its default gateways are down.""",
1103
+ }, # scalar
1104
+ "ipReasmTimeout" : {
1105
+ "nodetype" : "scalar",
1106
+ "moduleName" : "RFC1213-MIB",
1107
+ "oid" : "1.3.6.1.2.1.4.13",
1108
+ "status" : "current",
1109
+ "syntax" : {
1110
+ "type" : { "module" :"", "name" : "Integer32"},
1111
+ },
1112
+ "access" : "readonly",
1113
+ "description" :
1114
+ """The maximum number of seconds which received
1115
+ fragments are held while they are awaiting
1116
+ reassembly at this entity.""",
1117
+ }, # scalar
1118
+ "ipReasmReqds" : {
1119
+ "nodetype" : "scalar",
1120
+ "moduleName" : "RFC1213-MIB",
1121
+ "oid" : "1.3.6.1.2.1.4.14",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1125
+ },
1126
+ "access" : "readonly",
1127
+ "description" :
1128
+ """The number of IP fragments received which needed
1129
+ to be reassembled at this entity.""",
1130
+ }, # scalar
1131
+ "ipReasmOKs" : {
1132
+ "nodetype" : "scalar",
1133
+ "moduleName" : "RFC1213-MIB",
1134
+ "oid" : "1.3.6.1.2.1.4.15",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1138
+ },
1139
+ "access" : "readonly",
1140
+ "description" :
1141
+ """The number of IP datagrams successfully re-
1142
+ assembled.""",
1143
+ }, # scalar
1144
+ "ipReasmFails" : {
1145
+ "nodetype" : "scalar",
1146
+ "moduleName" : "RFC1213-MIB",
1147
+ "oid" : "1.3.6.1.2.1.4.16",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1151
+ },
1152
+ "access" : "readonly",
1153
+ "description" :
1154
+ """The number of failures detected by the IP re-
1155
+ assembly algorithm (for whatever reason: timed
1156
+ out, errors, etc). Note that this is not
1157
+ necessarily a count of discarded IP fragments
1158
+ since some algorithms (notably the algorithm in
1159
+ RFC 815) can lose track of the number of fragments
1160
+ by combining them as they are received.""",
1161
+ }, # scalar
1162
+ "ipFragOKs" : {
1163
+ "nodetype" : "scalar",
1164
+ "moduleName" : "RFC1213-MIB",
1165
+ "oid" : "1.3.6.1.2.1.4.17",
1166
+ "status" : "current",
1167
+ "syntax" : {
1168
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1169
+ },
1170
+ "access" : "readonly",
1171
+ "description" :
1172
+ """The number of IP datagrams that have been
1173
+ successfully fragmented at this entity.""",
1174
+ }, # scalar
1175
+ "ipFragFails" : {
1176
+ "nodetype" : "scalar",
1177
+ "moduleName" : "RFC1213-MIB",
1178
+ "oid" : "1.3.6.1.2.1.4.18",
1179
+ "status" : "current",
1180
+ "syntax" : {
1181
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1182
+ },
1183
+ "access" : "readonly",
1184
+ "description" :
1185
+ """The number of IP datagrams that have been
1186
+ discarded because they needed to be fragmented at
1187
+ this entity but could not be, e.g., because their
1188
+ Don't Fragment flag was set.""",
1189
+ }, # scalar
1190
+ "ipFragCreates" : {
1191
+ "nodetype" : "scalar",
1192
+ "moduleName" : "RFC1213-MIB",
1193
+ "oid" : "1.3.6.1.2.1.4.19",
1194
+ "status" : "current",
1195
+ "syntax" : {
1196
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1197
+ },
1198
+ "access" : "readonly",
1199
+ "description" :
1200
+ """The number of IP datagram fragments that have
1201
+ been generated as a result of fragmentation at
1202
+ this entity.""",
1203
+ }, # scalar
1204
+ "ipAddrTable" : {
1205
+ "nodetype" : "table",
1206
+ "moduleName" : "RFC1213-MIB",
1207
+ "oid" : "1.3.6.1.2.1.4.20",
1208
+ "status" : "current",
1209
+ "description" :
1210
+ """The table of addressing information relevant to
1211
+ this entity's IP addresses.""",
1212
+ }, # table
1213
+ "ipAddrEntry" : {
1214
+ "nodetype" : "row",
1215
+ "moduleName" : "RFC1213-MIB",
1216
+ "oid" : "1.3.6.1.2.1.4.20.1",
1217
+ "status" : "current",
1218
+ "linkage" : [
1219
+ "ipAdEntAddr",
1220
+ ],
1221
+ "description" :
1222
+ """The addressing information for one of this
1223
+ entity's IP addresses.""",
1224
+ }, # row
1225
+ "ipAdEntAddr" : {
1226
+ "nodetype" : "column",
1227
+ "moduleName" : "RFC1213-MIB",
1228
+ "oid" : "1.3.6.1.2.1.4.20.1.1",
1229
+ "status" : "current",
1230
+ "syntax" : {
1231
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1232
+ },
1233
+ "access" : "readonly",
1234
+ "description" :
1235
+ """The IP address to which this entry's addressing
1236
+ information pertains.""",
1237
+ }, # column
1238
+ "ipAdEntIfIndex" : {
1239
+ "nodetype" : "column",
1240
+ "moduleName" : "RFC1213-MIB",
1241
+ "oid" : "1.3.6.1.2.1.4.20.1.2",
1242
+ "status" : "current",
1243
+ "syntax" : {
1244
+ "type" : { "module" :"", "name" : "Integer32"},
1245
+ },
1246
+ "access" : "readonly",
1247
+ "description" :
1248
+ """The index value which uniquely identifies the
1249
+ interface to which this entry is applicable. The
1250
+ interface identified by a particular value of this
1251
+ index is the same interface as identified by the
1252
+ same value of ifIndex.""",
1253
+ }, # column
1254
+ "ipAdEntNetMask" : {
1255
+ "nodetype" : "column",
1256
+ "moduleName" : "RFC1213-MIB",
1257
+ "oid" : "1.3.6.1.2.1.4.20.1.3",
1258
+ "status" : "current",
1259
+ "syntax" : {
1260
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1261
+ },
1262
+ "access" : "readonly",
1263
+ "description" :
1264
+ """The subnet mask associated with the IP address of
1265
+ this entry. The value of the mask is an IP
1266
+ address with all the network bits set to 1 and all
1267
+ the hosts bits set to 0.""",
1268
+ }, # column
1269
+ "ipAdEntBcastAddr" : {
1270
+ "nodetype" : "column",
1271
+ "moduleName" : "RFC1213-MIB",
1272
+ "oid" : "1.3.6.1.2.1.4.20.1.4",
1273
+ "status" : "current",
1274
+ "syntax" : {
1275
+ "type" : { "module" :"", "name" : "Integer32"},
1276
+ },
1277
+ "access" : "readonly",
1278
+ "description" :
1279
+ """The value of the least-significant bit in the IP
1280
+ broadcast address used for sending datagrams on
1281
+ the (logical) interface associated with the IP
1282
+ address of this entry. For example, when the
1283
+ Internet standard all-ones broadcast address is
1284
+ used, the value will be 1. This value applies to
1285
+ both the subnet and network broadcasts addresses
1286
+ used by the entity on this (logical) interface.""",
1287
+ }, # column
1288
+ "ipAdEntReasmMaxSize" : {
1289
+ "nodetype" : "column",
1290
+ "moduleName" : "RFC1213-MIB",
1291
+ "oid" : "1.3.6.1.2.1.4.20.1.5",
1292
+ "status" : "current",
1293
+ "syntax" : {
1294
+ "type" : {
1295
+ "basetype" : "Integer32",
1296
+ "ranges" : [
1297
+ {
1298
+ "min" : "0",
1299
+ "max" : "65535"
1300
+ },
1301
+ ],
1302
+ "range" : {
1303
+ "min" : "0",
1304
+ "max" : "65535"
1305
+ },
1306
+ },
1307
+ },
1308
+ "access" : "readonly",
1309
+ "description" :
1310
+ """The size of the largest IP datagram which this
1311
+ entity can re-assemble from incoming IP fragmented
1312
+ datagrams received on this interface.""",
1313
+ }, # column
1314
+ "ipRouteTable" : {
1315
+ "nodetype" : "table",
1316
+ "moduleName" : "RFC1213-MIB",
1317
+ "oid" : "1.3.6.1.2.1.4.21",
1318
+ "status" : "current",
1319
+ "description" :
1320
+ """This entity's IP Routing table.""",
1321
+ }, # table
1322
+ "ipRouteEntry" : {
1323
+ "nodetype" : "row",
1324
+ "moduleName" : "RFC1213-MIB",
1325
+ "oid" : "1.3.6.1.2.1.4.21.1",
1326
+ "status" : "current",
1327
+ "linkage" : [
1328
+ "ipRouteDest",
1329
+ ],
1330
+ "description" :
1331
+ """A route to a particular destination.""",
1332
+ }, # row
1333
+ "ipRouteDest" : {
1334
+ "nodetype" : "column",
1335
+ "moduleName" : "RFC1213-MIB",
1336
+ "oid" : "1.3.6.1.2.1.4.21.1.1",
1337
+ "status" : "current",
1338
+ "syntax" : {
1339
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1340
+ },
1341
+ "access" : "readwrite",
1342
+ "description" :
1343
+ """The destination IP address of this route. An
1344
+ entry with a value of 0.0.0.0 is considered a
1345
+ default route. Multiple routes to a single
1346
+ destination can appear in the table, but access to
1347
+ such multiple entries is dependent on the table-
1348
+ access mechanisms defined by the network
1349
+ management protocol in use.""",
1350
+ }, # column
1351
+ "ipRouteIfIndex" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "RFC1213-MIB",
1354
+ "oid" : "1.3.6.1.2.1.4.21.1.2",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"", "name" : "Integer32"},
1358
+ },
1359
+ "access" : "readwrite",
1360
+ "description" :
1361
+ """The index value which uniquely identifies the
1362
+ local interface through which the next hop of this
1363
+ route should be reached. The interface identified
1364
+ by a particular value of this index is the same
1365
+ interface as identified by the same value of
1366
+ ifIndex.""",
1367
+ }, # column
1368
+ "ipRouteMetric1" : {
1369
+ "nodetype" : "column",
1370
+ "moduleName" : "RFC1213-MIB",
1371
+ "oid" : "1.3.6.1.2.1.4.21.1.3",
1372
+ "status" : "current",
1373
+ "syntax" : {
1374
+ "type" : { "module" :"", "name" : "Integer32"},
1375
+ },
1376
+ "access" : "readwrite",
1377
+ "description" :
1378
+ """The primary routing metric for this route. The
1379
+ semantics of this metric are determined by the
1380
+ routing-protocol specified in the route's
1381
+ ipRouteProto value. If this metric is not used,
1382
+ its value should be set to -1.""",
1383
+ }, # column
1384
+ "ipRouteMetric2" : {
1385
+ "nodetype" : "column",
1386
+ "moduleName" : "RFC1213-MIB",
1387
+ "oid" : "1.3.6.1.2.1.4.21.1.4",
1388
+ "status" : "current",
1389
+ "syntax" : {
1390
+ "type" : { "module" :"", "name" : "Integer32"},
1391
+ },
1392
+ "access" : "readwrite",
1393
+ "description" :
1394
+ """An alternate routing metric for this route. The
1395
+ semantics of this metric are determined by the
1396
+ routing-protocol specified in the route's
1397
+ ipRouteProto value. If this metric is not used,
1398
+ its value should be set to -1.""",
1399
+ }, # column
1400
+ "ipRouteMetric3" : {
1401
+ "nodetype" : "column",
1402
+ "moduleName" : "RFC1213-MIB",
1403
+ "oid" : "1.3.6.1.2.1.4.21.1.5",
1404
+ "status" : "current",
1405
+ "syntax" : {
1406
+ "type" : { "module" :"", "name" : "Integer32"},
1407
+ },
1408
+ "access" : "readwrite",
1409
+ "description" :
1410
+ """An alternate routing metric for this route. The
1411
+ semantics of this metric are determined by the
1412
+ routing-protocol specified in the route's
1413
+ ipRouteProto value. If this metric is not used,
1414
+ its value should be set to -1.""",
1415
+ }, # column
1416
+ "ipRouteMetric4" : {
1417
+ "nodetype" : "column",
1418
+ "moduleName" : "RFC1213-MIB",
1419
+ "oid" : "1.3.6.1.2.1.4.21.1.6",
1420
+ "status" : "current",
1421
+ "syntax" : {
1422
+ "type" : { "module" :"", "name" : "Integer32"},
1423
+ },
1424
+ "access" : "readwrite",
1425
+ "description" :
1426
+ """An alternate routing metric for this route. The
1427
+ semantics of this metric are determined by the
1428
+ routing-protocol specified in the route's
1429
+ ipRouteProto value. If this metric is not used,
1430
+ its value should be set to -1.""",
1431
+ }, # column
1432
+ "ipRouteNextHop" : {
1433
+ "nodetype" : "column",
1434
+ "moduleName" : "RFC1213-MIB",
1435
+ "oid" : "1.3.6.1.2.1.4.21.1.7",
1436
+ "status" : "current",
1437
+ "syntax" : {
1438
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1439
+ },
1440
+ "access" : "readwrite",
1441
+ "description" :
1442
+ """The IP address of the next hop of this route.
1443
+ (In the case of a route bound to an interface
1444
+ which is realized via a broadcast media, the value
1445
+ of this field is the agent's IP address on that
1446
+ interface.)""",
1447
+ }, # column
1448
+ "ipRouteType" : {
1449
+ "nodetype" : "column",
1450
+ "moduleName" : "RFC1213-MIB",
1451
+ "oid" : "1.3.6.1.2.1.4.21.1.8",
1452
+ "status" : "current",
1453
+ "syntax" : {
1454
+ "type" : {
1455
+ "basetype" : "Enumeration",
1456
+ "other" : {
1457
+ "nodetype" : "namednumber",
1458
+ "number" : "1"
1459
+ },
1460
+ "invalid" : {
1461
+ "nodetype" : "namednumber",
1462
+ "number" : "2"
1463
+ },
1464
+ "direct" : {
1465
+ "nodetype" : "namednumber",
1466
+ "number" : "3"
1467
+ },
1468
+ "indirect" : {
1469
+ "nodetype" : "namednumber",
1470
+ "number" : "4"
1471
+ },
1472
+ },
1473
+ },
1474
+ "access" : "readwrite",
1475
+ "description" :
1476
+ """The type of route. Note that the values
1477
+ direct(3) and indirect(4) refer to the notion of
1478
+ direct and indirect routing in the IP
1479
+ architecture.
1480
+
1481
+ Setting this object to the value invalid(2) has
1482
+ the effect of invalidating the corresponding entry
1483
+ in the ipRouteTable object. That is, it
1484
+ effectively dissasociates the destination
1485
+ identified with said entry from the route
1486
+ identified with said entry. It is an
1487
+ implementation-specific matter as to whether the
1488
+ agent removes an invalidated entry from the table.
1489
+ Accordingly, management stations must be prepared
1490
+ to receive tabular information from agents that
1491
+ corresponds to entries not currently in use.
1492
+ Proper interpretation of such entries requires
1493
+ examination of the relevant ipRouteType object.""",
1494
+ }, # column
1495
+ "ipRouteProto" : {
1496
+ "nodetype" : "column",
1497
+ "moduleName" : "RFC1213-MIB",
1498
+ "oid" : "1.3.6.1.2.1.4.21.1.9",
1499
+ "status" : "current",
1500
+ "syntax" : {
1501
+ "type" : {
1502
+ "basetype" : "Enumeration",
1503
+ "other" : {
1504
+ "nodetype" : "namednumber",
1505
+ "number" : "1"
1506
+ },
1507
+ "local" : {
1508
+ "nodetype" : "namednumber",
1509
+ "number" : "2"
1510
+ },
1511
+ "netmgmt" : {
1512
+ "nodetype" : "namednumber",
1513
+ "number" : "3"
1514
+ },
1515
+ "icmp" : {
1516
+ "nodetype" : "namednumber",
1517
+ "number" : "4"
1518
+ },
1519
+ "egp" : {
1520
+ "nodetype" : "namednumber",
1521
+ "number" : "5"
1522
+ },
1523
+ "ggp" : {
1524
+ "nodetype" : "namednumber",
1525
+ "number" : "6"
1526
+ },
1527
+ "hello" : {
1528
+ "nodetype" : "namednumber",
1529
+ "number" : "7"
1530
+ },
1531
+ "rip" : {
1532
+ "nodetype" : "namednumber",
1533
+ "number" : "8"
1534
+ },
1535
+ "is-is" : {
1536
+ "nodetype" : "namednumber",
1537
+ "number" : "9"
1538
+ },
1539
+ "es-is" : {
1540
+ "nodetype" : "namednumber",
1541
+ "number" : "10"
1542
+ },
1543
+ "ciscoIgrp" : {
1544
+ "nodetype" : "namednumber",
1545
+ "number" : "11"
1546
+ },
1547
+ "bbnSpfIgp" : {
1548
+ "nodetype" : "namednumber",
1549
+ "number" : "12"
1550
+ },
1551
+ "ospf" : {
1552
+ "nodetype" : "namednumber",
1553
+ "number" : "13"
1554
+ },
1555
+ "bgp" : {
1556
+ "nodetype" : "namednumber",
1557
+ "number" : "14"
1558
+ },
1559
+ },
1560
+ },
1561
+ "access" : "readonly",
1562
+ "description" :
1563
+ """The routing mechanism via which this route was
1564
+ learned. Inclusion of values for gateway routing
1565
+ protocols is not intended to imply that hosts
1566
+ should support those protocols.""",
1567
+ }, # column
1568
+ "ipRouteAge" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "RFC1213-MIB",
1571
+ "oid" : "1.3.6.1.2.1.4.21.1.10",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : { "module" :"", "name" : "Integer32"},
1575
+ },
1576
+ "access" : "readwrite",
1577
+ "description" :
1578
+ """The number of seconds since this route was last
1579
+ updated or otherwise determined to be correct.
1580
+ Note that no semantics of `too old' can be implied
1581
+ except through knowledge of the routing protocol
1582
+ by which the route was learned.""",
1583
+ }, # column
1584
+ "ipRouteMask" : {
1585
+ "nodetype" : "column",
1586
+ "moduleName" : "RFC1213-MIB",
1587
+ "oid" : "1.3.6.1.2.1.4.21.1.11",
1588
+ "status" : "current",
1589
+ "syntax" : {
1590
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1591
+ },
1592
+ "access" : "readwrite",
1593
+ "description" :
1594
+ """Indicate the mask to be logical-ANDed with the
1595
+ destination address before being compared to the
1596
+ value in the ipRouteDest field. For those systems
1597
+ that do not support arbitrary subnet masks, an
1598
+ agent constructs the value of the ipRouteMask by
1599
+ determining whether the value of the correspondent
1600
+ ipRouteDest field belong to a class-A, B, or C
1601
+ network, and then using one of:
1602
+
1603
+ mask network
1604
+ 255.0.0.0 class-A
1605
+ 255.255.0.0 class-B
1606
+ 255.255.255.0 class-C
1607
+ If the value of the ipRouteDest is 0.0.0.0 (a
1608
+ default route), then the mask value is also
1609
+ 0.0.0.0. It should be noted that all IP routing
1610
+ subsystems implicitly use this mechanism.""",
1611
+ }, # column
1612
+ "ipRouteMetric5" : {
1613
+ "nodetype" : "column",
1614
+ "moduleName" : "RFC1213-MIB",
1615
+ "oid" : "1.3.6.1.2.1.4.21.1.12",
1616
+ "status" : "current",
1617
+ "syntax" : {
1618
+ "type" : { "module" :"", "name" : "Integer32"},
1619
+ },
1620
+ "access" : "readwrite",
1621
+ "description" :
1622
+ """An alternate routing metric for this route. The
1623
+ semantics of this metric are determined by the
1624
+ routing-protocol specified in the route's
1625
+ ipRouteProto value. If this metric is not used,
1626
+ its value should be set to -1.""",
1627
+ }, # column
1628
+ "ipRouteInfo" : {
1629
+ "nodetype" : "column",
1630
+ "moduleName" : "RFC1213-MIB",
1631
+ "oid" : "1.3.6.1.2.1.4.21.1.13",
1632
+ "status" : "current",
1633
+ "syntax" : {
1634
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1635
+ },
1636
+ "access" : "readonly",
1637
+ "description" :
1638
+ """A reference to MIB definitions specific to the
1639
+ particular routing protocol which is responsible
1640
+ for this route, as determined by the value
1641
+ specified in the route's ipRouteProto value. If
1642
+ this information is not present, its value should
1643
+ be set to the OBJECT IDENTIFIER { 0 0 }, which is
1644
+ a syntatically valid object identifier, and any
1645
+ conformant implementation of ASN.1 and BER must be
1646
+ able to generate and recognize this value.""",
1647
+ }, # column
1648
+ "ipNetToMediaTable" : {
1649
+ "nodetype" : "table",
1650
+ "moduleName" : "RFC1213-MIB",
1651
+ "oid" : "1.3.6.1.2.1.4.22",
1652
+ "status" : "current",
1653
+ "description" :
1654
+ """The IP Address Translation table used for mapping
1655
+ from IP addresses to physical addresses.""",
1656
+ }, # table
1657
+ "ipNetToMediaEntry" : {
1658
+ "nodetype" : "row",
1659
+ "moduleName" : "RFC1213-MIB",
1660
+ "oid" : "1.3.6.1.2.1.4.22.1",
1661
+ "status" : "current",
1662
+ "linkage" : [
1663
+ "ipNetToMediaIfIndex",
1664
+ "ipNetToMediaNetAddress",
1665
+ ],
1666
+ "description" :
1667
+ """Each entry contains one IpAddress to `physical'
1668
+ address equivalence.""",
1669
+ }, # row
1670
+ "ipNetToMediaIfIndex" : {
1671
+ "nodetype" : "column",
1672
+ "moduleName" : "RFC1213-MIB",
1673
+ "oid" : "1.3.6.1.2.1.4.22.1.1",
1674
+ "status" : "current",
1675
+ "syntax" : {
1676
+ "type" : { "module" :"", "name" : "Integer32"},
1677
+ },
1678
+ "access" : "readwrite",
1679
+ "description" :
1680
+ """The interface on which this entry's equivalence
1681
+ is effective. The interface identified by a
1682
+ particular value of this index is the same
1683
+ interface as identified by the same value of
1684
+ ifIndex.""",
1685
+ }, # column
1686
+ "ipNetToMediaPhysAddress" : {
1687
+ "nodetype" : "column",
1688
+ "moduleName" : "RFC1213-MIB",
1689
+ "oid" : "1.3.6.1.2.1.4.22.1.2",
1690
+ "status" : "current",
1691
+ "syntax" : {
1692
+ "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
1693
+ },
1694
+ "access" : "readwrite",
1695
+ "description" :
1696
+ """The media-dependent `physical' address.""",
1697
+ }, # column
1698
+ "ipNetToMediaNetAddress" : {
1699
+ "nodetype" : "column",
1700
+ "moduleName" : "RFC1213-MIB",
1701
+ "oid" : "1.3.6.1.2.1.4.22.1.3",
1702
+ "status" : "current",
1703
+ "syntax" : {
1704
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1705
+ },
1706
+ "access" : "readwrite",
1707
+ "description" :
1708
+ """The IpAddress corresponding to the media-
1709
+ dependent `physical' address.""",
1710
+ }, # column
1711
+ "ipNetToMediaType" : {
1712
+ "nodetype" : "column",
1713
+ "moduleName" : "RFC1213-MIB",
1714
+ "oid" : "1.3.6.1.2.1.4.22.1.4",
1715
+ "status" : "current",
1716
+ "syntax" : {
1717
+ "type" : {
1718
+ "basetype" : "Enumeration",
1719
+ "other" : {
1720
+ "nodetype" : "namednumber",
1721
+ "number" : "1"
1722
+ },
1723
+ "invalid" : {
1724
+ "nodetype" : "namednumber",
1725
+ "number" : "2"
1726
+ },
1727
+ "dynamic" : {
1728
+ "nodetype" : "namednumber",
1729
+ "number" : "3"
1730
+ },
1731
+ "static" : {
1732
+ "nodetype" : "namednumber",
1733
+ "number" : "4"
1734
+ },
1735
+ },
1736
+ },
1737
+ "access" : "readwrite",
1738
+ "description" :
1739
+ """The type of mapping.
1740
+
1741
+ Setting this object to the value invalid(2) has
1742
+ the effect of invalidating the corresponding entry
1743
+ in the ipNetToMediaTable. That is, it effectively
1744
+ dissasociates the interface identified with said
1745
+ entry from the mapping identified with said entry.
1746
+ It is an implementation-specific matter as to
1747
+ whether the agent removes an invalidated entry
1748
+ from the table. Accordingly, management stations
1749
+ must be prepared to receive tabular information
1750
+ from agents that corresponds to entries not
1751
+ currently in use. Proper interpretation of such
1752
+ entries requires examination of the relevant
1753
+ ipNetToMediaType object.""",
1754
+ }, # column
1755
+ "ipRoutingDiscards" : {
1756
+ "nodetype" : "scalar",
1757
+ "moduleName" : "RFC1213-MIB",
1758
+ "oid" : "1.3.6.1.2.1.4.23",
1759
+ "status" : "current",
1760
+ "syntax" : {
1761
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1762
+ },
1763
+ "access" : "readonly",
1764
+ "description" :
1765
+ """The number of routing entries which were chosen
1766
+ to be discarded even though they are valid. One
1767
+ possible reason for discarding such an entry could
1768
+ be to free-up buffer space for other routing
1769
+ entries.""",
1770
+ }, # scalar
1771
+ "icmp" : {
1772
+ "nodetype" : "node",
1773
+ "moduleName" : "RFC1213-MIB",
1774
+ "oid" : "1.3.6.1.2.1.5",
1775
+ }, # node
1776
+ "icmpInMsgs" : {
1777
+ "nodetype" : "scalar",
1778
+ "moduleName" : "RFC1213-MIB",
1779
+ "oid" : "1.3.6.1.2.1.5.1",
1780
+ "status" : "current",
1781
+ "syntax" : {
1782
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1783
+ },
1784
+ "access" : "readonly",
1785
+ "description" :
1786
+ """The total number of ICMP messages which the
1787
+ entity received. Note that this counter includes
1788
+ all those counted by icmpInErrors.""",
1789
+ }, # scalar
1790
+ "icmpInErrors" : {
1791
+ "nodetype" : "scalar",
1792
+ "moduleName" : "RFC1213-MIB",
1793
+ "oid" : "1.3.6.1.2.1.5.2",
1794
+ "status" : "current",
1795
+ "syntax" : {
1796
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1797
+ },
1798
+ "access" : "readonly",
1799
+ "description" :
1800
+ """The number of ICMP messages which the entity
1801
+ received but determined as having ICMP-specific
1802
+ errors (bad ICMP checksums, bad length, etc.).""",
1803
+ }, # scalar
1804
+ "icmpInDestUnreachs" : {
1805
+ "nodetype" : "scalar",
1806
+ "moduleName" : "RFC1213-MIB",
1807
+ "oid" : "1.3.6.1.2.1.5.3",
1808
+ "status" : "current",
1809
+ "syntax" : {
1810
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1811
+ },
1812
+ "access" : "readonly",
1813
+ "description" :
1814
+ """The number of ICMP Destination Unreachable
1815
+ messages received.""",
1816
+ }, # scalar
1817
+ "icmpInTimeExcds" : {
1818
+ "nodetype" : "scalar",
1819
+ "moduleName" : "RFC1213-MIB",
1820
+ "oid" : "1.3.6.1.2.1.5.4",
1821
+ "status" : "current",
1822
+ "syntax" : {
1823
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1824
+ },
1825
+ "access" : "readonly",
1826
+ "description" :
1827
+ """The number of ICMP Time Exceeded messages
1828
+ received.""",
1829
+ }, # scalar
1830
+ "icmpInParmProbs" : {
1831
+ "nodetype" : "scalar",
1832
+ "moduleName" : "RFC1213-MIB",
1833
+ "oid" : "1.3.6.1.2.1.5.5",
1834
+ "status" : "current",
1835
+ "syntax" : {
1836
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1837
+ },
1838
+ "access" : "readonly",
1839
+ "description" :
1840
+ """The number of ICMP Parameter Problem messages
1841
+ received.""",
1842
+ }, # scalar
1843
+ "icmpInSrcQuenchs" : {
1844
+ "nodetype" : "scalar",
1845
+ "moduleName" : "RFC1213-MIB",
1846
+ "oid" : "1.3.6.1.2.1.5.6",
1847
+ "status" : "current",
1848
+ "syntax" : {
1849
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1850
+ },
1851
+ "access" : "readonly",
1852
+ "description" :
1853
+ """The number of ICMP Source Quench messages
1854
+ received.""",
1855
+ }, # scalar
1856
+ "icmpInRedirects" : {
1857
+ "nodetype" : "scalar",
1858
+ "moduleName" : "RFC1213-MIB",
1859
+ "oid" : "1.3.6.1.2.1.5.7",
1860
+ "status" : "current",
1861
+ "syntax" : {
1862
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1863
+ },
1864
+ "access" : "readonly",
1865
+ "description" :
1866
+ """The number of ICMP Redirect messages received.""",
1867
+ }, # scalar
1868
+ "icmpInEchos" : {
1869
+ "nodetype" : "scalar",
1870
+ "moduleName" : "RFC1213-MIB",
1871
+ "oid" : "1.3.6.1.2.1.5.8",
1872
+ "status" : "current",
1873
+ "syntax" : {
1874
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1875
+ },
1876
+ "access" : "readonly",
1877
+ "description" :
1878
+ """The number of ICMP Echo (request) messages
1879
+ received.""",
1880
+ }, # scalar
1881
+ "icmpInEchoReps" : {
1882
+ "nodetype" : "scalar",
1883
+ "moduleName" : "RFC1213-MIB",
1884
+ "oid" : "1.3.6.1.2.1.5.9",
1885
+ "status" : "current",
1886
+ "syntax" : {
1887
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1888
+ },
1889
+ "access" : "readonly",
1890
+ "description" :
1891
+ """The number of ICMP Echo Reply messages received.""",
1892
+ }, # scalar
1893
+ "icmpInTimestamps" : {
1894
+ "nodetype" : "scalar",
1895
+ "moduleName" : "RFC1213-MIB",
1896
+ "oid" : "1.3.6.1.2.1.5.10",
1897
+ "status" : "current",
1898
+ "syntax" : {
1899
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1900
+ },
1901
+ "access" : "readonly",
1902
+ "description" :
1903
+ """The number of ICMP Timestamp (request) messages
1904
+ received.""",
1905
+ }, # scalar
1906
+ "icmpInTimestampReps" : {
1907
+ "nodetype" : "scalar",
1908
+ "moduleName" : "RFC1213-MIB",
1909
+ "oid" : "1.3.6.1.2.1.5.11",
1910
+ "status" : "current",
1911
+ "syntax" : {
1912
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1913
+ },
1914
+ "access" : "readonly",
1915
+ "description" :
1916
+ """The number of ICMP Timestamp Reply messages
1917
+ received.""",
1918
+ }, # scalar
1919
+ "icmpInAddrMasks" : {
1920
+ "nodetype" : "scalar",
1921
+ "moduleName" : "RFC1213-MIB",
1922
+ "oid" : "1.3.6.1.2.1.5.12",
1923
+ "status" : "current",
1924
+ "syntax" : {
1925
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1926
+ },
1927
+ "access" : "readonly",
1928
+ "description" :
1929
+ """The number of ICMP Address Mask Request messages
1930
+ received.""",
1931
+ }, # scalar
1932
+ "icmpInAddrMaskReps" : {
1933
+ "nodetype" : "scalar",
1934
+ "moduleName" : "RFC1213-MIB",
1935
+ "oid" : "1.3.6.1.2.1.5.13",
1936
+ "status" : "current",
1937
+ "syntax" : {
1938
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1939
+ },
1940
+ "access" : "readonly",
1941
+ "description" :
1942
+ """The number of ICMP Address Mask Reply messages
1943
+ received.""",
1944
+ }, # scalar
1945
+ "icmpOutMsgs" : {
1946
+ "nodetype" : "scalar",
1947
+ "moduleName" : "RFC1213-MIB",
1948
+ "oid" : "1.3.6.1.2.1.5.14",
1949
+ "status" : "current",
1950
+ "syntax" : {
1951
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1952
+ },
1953
+ "access" : "readonly",
1954
+ "description" :
1955
+ """The total number of ICMP messages which this
1956
+ entity attempted to send. Note that this counter
1957
+ includes all those counted by icmpOutErrors.""",
1958
+ }, # scalar
1959
+ "icmpOutErrors" : {
1960
+ "nodetype" : "scalar",
1961
+ "moduleName" : "RFC1213-MIB",
1962
+ "oid" : "1.3.6.1.2.1.5.15",
1963
+ "status" : "current",
1964
+ "syntax" : {
1965
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1966
+ },
1967
+ "access" : "readonly",
1968
+ "description" :
1969
+ """The number of ICMP messages which this entity did
1970
+ not send due to problems discovered within ICMP
1971
+ such as a lack of buffers. This value should not
1972
+ include errors discovered outside the ICMP layer
1973
+ such as the inability of IP to route the resultant
1974
+ datagram. In some implementations there may be no
1975
+ types of error which contribute to this counter's
1976
+ value.""",
1977
+ }, # scalar
1978
+ "icmpOutDestUnreachs" : {
1979
+ "nodetype" : "scalar",
1980
+ "moduleName" : "RFC1213-MIB",
1981
+ "oid" : "1.3.6.1.2.1.5.16",
1982
+ "status" : "current",
1983
+ "syntax" : {
1984
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1985
+ },
1986
+ "access" : "readonly",
1987
+ "description" :
1988
+ """The number of ICMP Destination Unreachable
1989
+ messages sent.""",
1990
+ }, # scalar
1991
+ "icmpOutTimeExcds" : {
1992
+ "nodetype" : "scalar",
1993
+ "moduleName" : "RFC1213-MIB",
1994
+ "oid" : "1.3.6.1.2.1.5.17",
1995
+ "status" : "current",
1996
+ "syntax" : {
1997
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1998
+ },
1999
+ "access" : "readonly",
2000
+ "description" :
2001
+ """The number of ICMP Time Exceeded messages sent.""",
2002
+ }, # scalar
2003
+ "icmpOutParmProbs" : {
2004
+ "nodetype" : "scalar",
2005
+ "moduleName" : "RFC1213-MIB",
2006
+ "oid" : "1.3.6.1.2.1.5.18",
2007
+ "status" : "current",
2008
+ "syntax" : {
2009
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2010
+ },
2011
+ "access" : "readonly",
2012
+ "description" :
2013
+ """The number of ICMP Parameter Problem messages
2014
+ sent.""",
2015
+ }, # scalar
2016
+ "icmpOutSrcQuenchs" : {
2017
+ "nodetype" : "scalar",
2018
+ "moduleName" : "RFC1213-MIB",
2019
+ "oid" : "1.3.6.1.2.1.5.19",
2020
+ "status" : "current",
2021
+ "syntax" : {
2022
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2023
+ },
2024
+ "access" : "readonly",
2025
+ "description" :
2026
+ """The number of ICMP Source Quench messages sent.""",
2027
+ }, # scalar
2028
+ "icmpOutRedirects" : {
2029
+ "nodetype" : "scalar",
2030
+ "moduleName" : "RFC1213-MIB",
2031
+ "oid" : "1.3.6.1.2.1.5.20",
2032
+ "status" : "current",
2033
+ "syntax" : {
2034
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2035
+ },
2036
+ "access" : "readonly",
2037
+ "description" :
2038
+ """The number of ICMP Redirect messages sent. For a
2039
+ host, this object will always be zero, since hosts
2040
+ do not send redirects.""",
2041
+ }, # scalar
2042
+ "icmpOutEchos" : {
2043
+ "nodetype" : "scalar",
2044
+ "moduleName" : "RFC1213-MIB",
2045
+ "oid" : "1.3.6.1.2.1.5.21",
2046
+ "status" : "current",
2047
+ "syntax" : {
2048
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2049
+ },
2050
+ "access" : "readonly",
2051
+ "description" :
2052
+ """The number of ICMP Echo (request) messages sent.""",
2053
+ }, # scalar
2054
+ "icmpOutEchoReps" : {
2055
+ "nodetype" : "scalar",
2056
+ "moduleName" : "RFC1213-MIB",
2057
+ "oid" : "1.3.6.1.2.1.5.22",
2058
+ "status" : "current",
2059
+ "syntax" : {
2060
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2061
+ },
2062
+ "access" : "readonly",
2063
+ "description" :
2064
+ """The number of ICMP Echo Reply messages sent.""",
2065
+ }, # scalar
2066
+ "icmpOutTimestamps" : {
2067
+ "nodetype" : "scalar",
2068
+ "moduleName" : "RFC1213-MIB",
2069
+ "oid" : "1.3.6.1.2.1.5.23",
2070
+ "status" : "current",
2071
+ "syntax" : {
2072
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2073
+ },
2074
+ "access" : "readonly",
2075
+ "description" :
2076
+ """The number of ICMP Timestamp (request) messages
2077
+ sent.""",
2078
+ }, # scalar
2079
+ "icmpOutTimestampReps" : {
2080
+ "nodetype" : "scalar",
2081
+ "moduleName" : "RFC1213-MIB",
2082
+ "oid" : "1.3.6.1.2.1.5.24",
2083
+ "status" : "current",
2084
+ "syntax" : {
2085
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2086
+ },
2087
+ "access" : "readonly",
2088
+ "description" :
2089
+ """The number of ICMP Timestamp Reply messages
2090
+ sent.""",
2091
+ }, # scalar
2092
+ "icmpOutAddrMasks" : {
2093
+ "nodetype" : "scalar",
2094
+ "moduleName" : "RFC1213-MIB",
2095
+ "oid" : "1.3.6.1.2.1.5.25",
2096
+ "status" : "current",
2097
+ "syntax" : {
2098
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2099
+ },
2100
+ "access" : "readonly",
2101
+ "description" :
2102
+ """The number of ICMP Address Mask Request messages
2103
+ sent.""",
2104
+ }, # scalar
2105
+ "icmpOutAddrMaskReps" : {
2106
+ "nodetype" : "scalar",
2107
+ "moduleName" : "RFC1213-MIB",
2108
+ "oid" : "1.3.6.1.2.1.5.26",
2109
+ "status" : "current",
2110
+ "syntax" : {
2111
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2112
+ },
2113
+ "access" : "readonly",
2114
+ "description" :
2115
+ """The number of ICMP Address Mask Reply messages
2116
+ sent.""",
2117
+ }, # scalar
2118
+ "tcp" : {
2119
+ "nodetype" : "node",
2120
+ "moduleName" : "RFC1213-MIB",
2121
+ "oid" : "1.3.6.1.2.1.6",
2122
+ }, # node
2123
+ "tcpRtoAlgorithm" : {
2124
+ "nodetype" : "scalar",
2125
+ "moduleName" : "RFC1213-MIB",
2126
+ "oid" : "1.3.6.1.2.1.6.1",
2127
+ "status" : "current",
2128
+ "syntax" : {
2129
+ "type" : {
2130
+ "basetype" : "Enumeration",
2131
+ "other" : {
2132
+ "nodetype" : "namednumber",
2133
+ "number" : "1"
2134
+ },
2135
+ "constant" : {
2136
+ "nodetype" : "namednumber",
2137
+ "number" : "2"
2138
+ },
2139
+ "rsre" : {
2140
+ "nodetype" : "namednumber",
2141
+ "number" : "3"
2142
+ },
2143
+ "vanj" : {
2144
+ "nodetype" : "namednumber",
2145
+ "number" : "4"
2146
+ },
2147
+ },
2148
+ },
2149
+ "access" : "readonly",
2150
+ "description" :
2151
+ """The algorithm used to determine the timeout value
2152
+ used for retransmitting unacknowledged octets.""",
2153
+ }, # scalar
2154
+ "tcpRtoMin" : {
2155
+ "nodetype" : "scalar",
2156
+ "moduleName" : "RFC1213-MIB",
2157
+ "oid" : "1.3.6.1.2.1.6.2",
2158
+ "status" : "current",
2159
+ "syntax" : {
2160
+ "type" : { "module" :"", "name" : "Integer32"},
2161
+ },
2162
+ "access" : "readonly",
2163
+ "description" :
2164
+ """The minimum value permitted by a TCP
2165
+ implementation for the retransmission timeout,
2166
+ measured in milliseconds. More refined semantics
2167
+ for objects of this type depend upon the algorithm
2168
+ used to determine the retransmission timeout. In
2169
+ particular, when the timeout algorithm is rsre(3),
2170
+ an object of this type has the semantics of the
2171
+ LBOUND quantity described in RFC 793.""",
2172
+ }, # scalar
2173
+ "tcpRtoMax" : {
2174
+ "nodetype" : "scalar",
2175
+ "moduleName" : "RFC1213-MIB",
2176
+ "oid" : "1.3.6.1.2.1.6.3",
2177
+ "status" : "current",
2178
+ "syntax" : {
2179
+ "type" : { "module" :"", "name" : "Integer32"},
2180
+ },
2181
+ "access" : "readonly",
2182
+ "description" :
2183
+ """The maximum value permitted by a TCP
2184
+ implementation for the retransmission timeout,
2185
+ measured in milliseconds. More refined semantics
2186
+ for objects of this type depend upon the algorithm
2187
+ used to determine the retransmission timeout. In
2188
+ particular, when the timeout algorithm is rsre(3),
2189
+ an object of this type has the semantics of the
2190
+ UBOUND quantity described in RFC 793.""",
2191
+ }, # scalar
2192
+ "tcpMaxConn" : {
2193
+ "nodetype" : "scalar",
2194
+ "moduleName" : "RFC1213-MIB",
2195
+ "oid" : "1.3.6.1.2.1.6.4",
2196
+ "status" : "current",
2197
+ "syntax" : {
2198
+ "type" : { "module" :"", "name" : "Integer32"},
2199
+ },
2200
+ "access" : "readonly",
2201
+ "description" :
2202
+ """The limit on the total number of TCP connections
2203
+ the entity can support. In entities where the
2204
+ maximum number of connections is dynamic, this
2205
+ object should contain the value -1.""",
2206
+ }, # scalar
2207
+ "tcpActiveOpens" : {
2208
+ "nodetype" : "scalar",
2209
+ "moduleName" : "RFC1213-MIB",
2210
+ "oid" : "1.3.6.1.2.1.6.5",
2211
+ "status" : "current",
2212
+ "syntax" : {
2213
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2214
+ },
2215
+ "access" : "readonly",
2216
+ "description" :
2217
+ """The number of times TCP connections have made a
2218
+ direct transition to the SYN-SENT state from the
2219
+ CLOSED state.""",
2220
+ }, # scalar
2221
+ "tcpPassiveOpens" : {
2222
+ "nodetype" : "scalar",
2223
+ "moduleName" : "RFC1213-MIB",
2224
+ "oid" : "1.3.6.1.2.1.6.6",
2225
+ "status" : "current",
2226
+ "syntax" : {
2227
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2228
+ },
2229
+ "access" : "readonly",
2230
+ "description" :
2231
+ """The number of times TCP connections have made a
2232
+ direct transition to the SYN-RCVD state from the
2233
+ LISTEN state.""",
2234
+ }, # scalar
2235
+ "tcpAttemptFails" : {
2236
+ "nodetype" : "scalar",
2237
+ "moduleName" : "RFC1213-MIB",
2238
+ "oid" : "1.3.6.1.2.1.6.7",
2239
+ "status" : "current",
2240
+ "syntax" : {
2241
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2242
+ },
2243
+ "access" : "readonly",
2244
+ "description" :
2245
+ """The number of times TCP connections have made a
2246
+ direct transition to the CLOSED state from either
2247
+ the SYN-SENT state or the SYN-RCVD state, plus the
2248
+ number of times TCP connections have made a direct
2249
+ transition to the LISTEN state from the SYN-RCVD
2250
+ state.""",
2251
+ }, # scalar
2252
+ "tcpEstabResets" : {
2253
+ "nodetype" : "scalar",
2254
+ "moduleName" : "RFC1213-MIB",
2255
+ "oid" : "1.3.6.1.2.1.6.8",
2256
+ "status" : "current",
2257
+ "syntax" : {
2258
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2259
+ },
2260
+ "access" : "readonly",
2261
+ "description" :
2262
+ """The number of times TCP connections have made a
2263
+ direct transition to the CLOSED state from either
2264
+ the ESTABLISHED state or the CLOSE-WAIT state.""",
2265
+ }, # scalar
2266
+ "tcpCurrEstab" : {
2267
+ "nodetype" : "scalar",
2268
+ "moduleName" : "RFC1213-MIB",
2269
+ "oid" : "1.3.6.1.2.1.6.9",
2270
+ "status" : "current",
2271
+ "syntax" : {
2272
+ "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
2273
+ },
2274
+ "access" : "readonly",
2275
+ "description" :
2276
+ """The number of TCP connections for which the
2277
+ current state is either ESTABLISHED or CLOSE-
2278
+ WAIT.""",
2279
+ }, # scalar
2280
+ "tcpInSegs" : {
2281
+ "nodetype" : "scalar",
2282
+ "moduleName" : "RFC1213-MIB",
2283
+ "oid" : "1.3.6.1.2.1.6.10",
2284
+ "status" : "current",
2285
+ "syntax" : {
2286
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2287
+ },
2288
+ "access" : "readonly",
2289
+ "description" :
2290
+ """The total number of segments received, including
2291
+ those received in error. This count includes
2292
+ segments received on currently established
2293
+ connections.""",
2294
+ }, # scalar
2295
+ "tcpOutSegs" : {
2296
+ "nodetype" : "scalar",
2297
+ "moduleName" : "RFC1213-MIB",
2298
+ "oid" : "1.3.6.1.2.1.6.11",
2299
+ "status" : "current",
2300
+ "syntax" : {
2301
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2302
+ },
2303
+ "access" : "readonly",
2304
+ "description" :
2305
+ """The total number of segments sent, including
2306
+ those on current connections but excluding those
2307
+ containing only retransmitted octets.""",
2308
+ }, # scalar
2309
+ "tcpRetransSegs" : {
2310
+ "nodetype" : "scalar",
2311
+ "moduleName" : "RFC1213-MIB",
2312
+ "oid" : "1.3.6.1.2.1.6.12",
2313
+ "status" : "current",
2314
+ "syntax" : {
2315
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2316
+ },
2317
+ "access" : "readonly",
2318
+ "description" :
2319
+ """The total number of segments retransmitted - that
2320
+ is, the number of TCP segments transmitted
2321
+ containing one or more previously transmitted
2322
+ octets.""",
2323
+ }, # scalar
2324
+ "tcpConnTable" : {
2325
+ "nodetype" : "table",
2326
+ "moduleName" : "RFC1213-MIB",
2327
+ "oid" : "1.3.6.1.2.1.6.13",
2328
+ "status" : "current",
2329
+ "description" :
2330
+ """A table containing TCP connection-specific
2331
+ information.""",
2332
+ }, # table
2333
+ "tcpConnEntry" : {
2334
+ "nodetype" : "row",
2335
+ "moduleName" : "RFC1213-MIB",
2336
+ "oid" : "1.3.6.1.2.1.6.13.1",
2337
+ "status" : "current",
2338
+ "linkage" : [
2339
+ "tcpConnLocalAddress",
2340
+ "tcpConnLocalPort",
2341
+ "tcpConnRemAddress",
2342
+ "tcpConnRemPort",
2343
+ ],
2344
+ "description" :
2345
+ """Information about a particular current TCP
2346
+ connection. An object of this type is transient,
2347
+ in that it ceases to exist when (or soon after)
2348
+ the connection makes the transition to the CLOSED
2349
+ state.""",
2350
+ }, # row
2351
+ "tcpConnState" : {
2352
+ "nodetype" : "column",
2353
+ "moduleName" : "RFC1213-MIB",
2354
+ "oid" : "1.3.6.1.2.1.6.13.1.1",
2355
+ "status" : "current",
2356
+ "syntax" : {
2357
+ "type" : {
2358
+ "basetype" : "Enumeration",
2359
+ "closed" : {
2360
+ "nodetype" : "namednumber",
2361
+ "number" : "1"
2362
+ },
2363
+ "listen" : {
2364
+ "nodetype" : "namednumber",
2365
+ "number" : "2"
2366
+ },
2367
+ "synSent" : {
2368
+ "nodetype" : "namednumber",
2369
+ "number" : "3"
2370
+ },
2371
+ "synReceived" : {
2372
+ "nodetype" : "namednumber",
2373
+ "number" : "4"
2374
+ },
2375
+ "established" : {
2376
+ "nodetype" : "namednumber",
2377
+ "number" : "5"
2378
+ },
2379
+ "finWait1" : {
2380
+ "nodetype" : "namednumber",
2381
+ "number" : "6"
2382
+ },
2383
+ "finWait2" : {
2384
+ "nodetype" : "namednumber",
2385
+ "number" : "7"
2386
+ },
2387
+ "closeWait" : {
2388
+ "nodetype" : "namednumber",
2389
+ "number" : "8"
2390
+ },
2391
+ "lastAck" : {
2392
+ "nodetype" : "namednumber",
2393
+ "number" : "9"
2394
+ },
2395
+ "closing" : {
2396
+ "nodetype" : "namednumber",
2397
+ "number" : "10"
2398
+ },
2399
+ "timeWait" : {
2400
+ "nodetype" : "namednumber",
2401
+ "number" : "11"
2402
+ },
2403
+ "deleteTCB" : {
2404
+ "nodetype" : "namednumber",
2405
+ "number" : "12"
2406
+ },
2407
+ },
2408
+ },
2409
+ "access" : "readwrite",
2410
+ "description" :
2411
+ """The state of this TCP connection.
2412
+
2413
+ The only value which may be set by a management
2414
+ station is deleteTCB(12). Accordingly, it is
2415
+ appropriate for an agent to return a `badValue'
2416
+ response if a management station attempts to set
2417
+ this object to any other value.
2418
+
2419
+ If a management station sets this object to the
2420
+ value deleteTCB(12), then this has the effect of
2421
+ deleting the TCB (as defined in RFC 793) of the
2422
+ corresponding connection on the managed node,
2423
+ resulting in immediate termination of the
2424
+ connection.
2425
+
2426
+ As an implementation-specific option, a RST
2427
+ segment may be sent from the managed node to the
2428
+ other TCP endpoint (note however that RST segments
2429
+ are not sent reliably).""",
2430
+ }, # column
2431
+ "tcpConnLocalAddress" : {
2432
+ "nodetype" : "column",
2433
+ "moduleName" : "RFC1213-MIB",
2434
+ "oid" : "1.3.6.1.2.1.6.13.1.2",
2435
+ "status" : "current",
2436
+ "syntax" : {
2437
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
2438
+ },
2439
+ "access" : "readonly",
2440
+ "description" :
2441
+ """The local IP address for this TCP connection. In
2442
+ the case of a connection in the listen state which
2443
+ is willing to accept connections for any IP
2444
+ interface associated with the node, the value
2445
+ 0.0.0.0 is used.""",
2446
+ }, # column
2447
+ "tcpConnLocalPort" : {
2448
+ "nodetype" : "column",
2449
+ "moduleName" : "RFC1213-MIB",
2450
+ "oid" : "1.3.6.1.2.1.6.13.1.3",
2451
+ "status" : "current",
2452
+ "syntax" : {
2453
+ "type" : {
2454
+ "basetype" : "Integer32",
2455
+ "ranges" : [
2456
+ {
2457
+ "min" : "0",
2458
+ "max" : "65535"
2459
+ },
2460
+ ],
2461
+ "range" : {
2462
+ "min" : "0",
2463
+ "max" : "65535"
2464
+ },
2465
+ },
2466
+ },
2467
+ "access" : "readonly",
2468
+ "description" :
2469
+ """The local port number for this TCP connection.""",
2470
+ }, # column
2471
+ "tcpConnRemAddress" : {
2472
+ "nodetype" : "column",
2473
+ "moduleName" : "RFC1213-MIB",
2474
+ "oid" : "1.3.6.1.2.1.6.13.1.4",
2475
+ "status" : "current",
2476
+ "syntax" : {
2477
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
2478
+ },
2479
+ "access" : "readonly",
2480
+ "description" :
2481
+ """The remote IP address for this TCP connection.""",
2482
+ }, # column
2483
+ "tcpConnRemPort" : {
2484
+ "nodetype" : "column",
2485
+ "moduleName" : "RFC1213-MIB",
2486
+ "oid" : "1.3.6.1.2.1.6.13.1.5",
2487
+ "status" : "current",
2488
+ "syntax" : {
2489
+ "type" : {
2490
+ "basetype" : "Integer32",
2491
+ "ranges" : [
2492
+ {
2493
+ "min" : "0",
2494
+ "max" : "65535"
2495
+ },
2496
+ ],
2497
+ "range" : {
2498
+ "min" : "0",
2499
+ "max" : "65535"
2500
+ },
2501
+ },
2502
+ },
2503
+ "access" : "readonly",
2504
+ "description" :
2505
+ """The remote port number for this TCP connection.""",
2506
+ }, # column
2507
+ "tcpInErrs" : {
2508
+ "nodetype" : "scalar",
2509
+ "moduleName" : "RFC1213-MIB",
2510
+ "oid" : "1.3.6.1.2.1.6.14",
2511
+ "status" : "current",
2512
+ "syntax" : {
2513
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2514
+ },
2515
+ "access" : "readonly",
2516
+ "description" :
2517
+ """The total number of segments received in error
2518
+ (e.g., bad TCP checksums).""",
2519
+ }, # scalar
2520
+ "tcpOutRsts" : {
2521
+ "nodetype" : "scalar",
2522
+ "moduleName" : "RFC1213-MIB",
2523
+ "oid" : "1.3.6.1.2.1.6.15",
2524
+ "status" : "current",
2525
+ "syntax" : {
2526
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2527
+ },
2528
+ "access" : "readonly",
2529
+ "description" :
2530
+ """The number of TCP segments sent containing the
2531
+ RST flag.""",
2532
+ }, # scalar
2533
+ "udp" : {
2534
+ "nodetype" : "node",
2535
+ "moduleName" : "RFC1213-MIB",
2536
+ "oid" : "1.3.6.1.2.1.7",
2537
+ }, # node
2538
+ "udpInDatagrams" : {
2539
+ "nodetype" : "scalar",
2540
+ "moduleName" : "RFC1213-MIB",
2541
+ "oid" : "1.3.6.1.2.1.7.1",
2542
+ "status" : "current",
2543
+ "syntax" : {
2544
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2545
+ },
2546
+ "access" : "readonly",
2547
+ "description" :
2548
+ """The total number of UDP datagrams delivered to
2549
+ UDP users.""",
2550
+ }, # scalar
2551
+ "udpNoPorts" : {
2552
+ "nodetype" : "scalar",
2553
+ "moduleName" : "RFC1213-MIB",
2554
+ "oid" : "1.3.6.1.2.1.7.2",
2555
+ "status" : "current",
2556
+ "syntax" : {
2557
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2558
+ },
2559
+ "access" : "readonly",
2560
+ "description" :
2561
+ """The total number of received UDP datagrams for
2562
+ which there was no application at the destination
2563
+ port.""",
2564
+ }, # scalar
2565
+ "udpInErrors" : {
2566
+ "nodetype" : "scalar",
2567
+ "moduleName" : "RFC1213-MIB",
2568
+ "oid" : "1.3.6.1.2.1.7.3",
2569
+ "status" : "current",
2570
+ "syntax" : {
2571
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2572
+ },
2573
+ "access" : "readonly",
2574
+ "description" :
2575
+ """The number of received UDP datagrams that could
2576
+ not be delivered for reasons other than the lack
2577
+ of an application at the destination port.""",
2578
+ }, # scalar
2579
+ "udpOutDatagrams" : {
2580
+ "nodetype" : "scalar",
2581
+ "moduleName" : "RFC1213-MIB",
2582
+ "oid" : "1.3.6.1.2.1.7.4",
2583
+ "status" : "current",
2584
+ "syntax" : {
2585
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2586
+ },
2587
+ "access" : "readonly",
2588
+ "description" :
2589
+ """The total number of UDP datagrams sent from this
2590
+ entity.""",
2591
+ }, # scalar
2592
+ "udpTable" : {
2593
+ "nodetype" : "table",
2594
+ "moduleName" : "RFC1213-MIB",
2595
+ "oid" : "1.3.6.1.2.1.7.5",
2596
+ "status" : "current",
2597
+ "description" :
2598
+ """A table containing UDP listener information.""",
2599
+ }, # table
2600
+ "udpEntry" : {
2601
+ "nodetype" : "row",
2602
+ "moduleName" : "RFC1213-MIB",
2603
+ "oid" : "1.3.6.1.2.1.7.5.1",
2604
+ "status" : "current",
2605
+ "linkage" : [
2606
+ "udpLocalAddress",
2607
+ "udpLocalPort",
2608
+ ],
2609
+ "description" :
2610
+ """Information about a particular current UDP
2611
+ listener.""",
2612
+ }, # row
2613
+ "udpLocalAddress" : {
2614
+ "nodetype" : "column",
2615
+ "moduleName" : "RFC1213-MIB",
2616
+ "oid" : "1.3.6.1.2.1.7.5.1.1",
2617
+ "status" : "current",
2618
+ "syntax" : {
2619
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
2620
+ },
2621
+ "access" : "readonly",
2622
+ "description" :
2623
+ """The local IP address for this UDP listener. In
2624
+ the case of a UDP listener which is willing to
2625
+ accept datagrams for any IP interface associated
2626
+ with the node, the value 0.0.0.0 is used.""",
2627
+ }, # column
2628
+ "udpLocalPort" : {
2629
+ "nodetype" : "column",
2630
+ "moduleName" : "RFC1213-MIB",
2631
+ "oid" : "1.3.6.1.2.1.7.5.1.2",
2632
+ "status" : "current",
2633
+ "syntax" : {
2634
+ "type" : {
2635
+ "basetype" : "Integer32",
2636
+ "ranges" : [
2637
+ {
2638
+ "min" : "0",
2639
+ "max" : "65535"
2640
+ },
2641
+ ],
2642
+ "range" : {
2643
+ "min" : "0",
2644
+ "max" : "65535"
2645
+ },
2646
+ },
2647
+ },
2648
+ "access" : "readonly",
2649
+ "description" :
2650
+ """The local port number for this UDP listener.""",
2651
+ }, # column
2652
+ "egp" : {
2653
+ "nodetype" : "node",
2654
+ "moduleName" : "RFC1213-MIB",
2655
+ "oid" : "1.3.6.1.2.1.8",
2656
+ }, # node
2657
+ "egpInMsgs" : {
2658
+ "nodetype" : "scalar",
2659
+ "moduleName" : "RFC1213-MIB",
2660
+ "oid" : "1.3.6.1.2.1.8.1",
2661
+ "status" : "current",
2662
+ "syntax" : {
2663
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2664
+ },
2665
+ "access" : "readonly",
2666
+ "description" :
2667
+ """The number of EGP messages received without
2668
+ error.""",
2669
+ }, # scalar
2670
+ "egpInErrors" : {
2671
+ "nodetype" : "scalar",
2672
+ "moduleName" : "RFC1213-MIB",
2673
+ "oid" : "1.3.6.1.2.1.8.2",
2674
+ "status" : "current",
2675
+ "syntax" : {
2676
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2677
+ },
2678
+ "access" : "readonly",
2679
+ "description" :
2680
+ """The number of EGP messages received that proved
2681
+ to be in error.""",
2682
+ }, # scalar
2683
+ "egpOutMsgs" : {
2684
+ "nodetype" : "scalar",
2685
+ "moduleName" : "RFC1213-MIB",
2686
+ "oid" : "1.3.6.1.2.1.8.3",
2687
+ "status" : "current",
2688
+ "syntax" : {
2689
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2690
+ },
2691
+ "access" : "readonly",
2692
+ "description" :
2693
+ """The total number of locally generated EGP
2694
+ messages.""",
2695
+ }, # scalar
2696
+ "egpOutErrors" : {
2697
+ "nodetype" : "scalar",
2698
+ "moduleName" : "RFC1213-MIB",
2699
+ "oid" : "1.3.6.1.2.1.8.4",
2700
+ "status" : "current",
2701
+ "syntax" : {
2702
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2703
+ },
2704
+ "access" : "readonly",
2705
+ "description" :
2706
+ """The number of locally generated EGP messages not
2707
+ sent due to resource limitations within an EGP
2708
+ entity.""",
2709
+ }, # scalar
2710
+ "egpNeighTable" : {
2711
+ "nodetype" : "table",
2712
+ "moduleName" : "RFC1213-MIB",
2713
+ "oid" : "1.3.6.1.2.1.8.5",
2714
+ "status" : "current",
2715
+ "description" :
2716
+ """The EGP neighbor table.""",
2717
+ }, # table
2718
+ "egpNeighEntry" : {
2719
+ "nodetype" : "row",
2720
+ "moduleName" : "RFC1213-MIB",
2721
+ "oid" : "1.3.6.1.2.1.8.5.1",
2722
+ "status" : "current",
2723
+ "linkage" : [
2724
+ "egpNeighAddr",
2725
+ ],
2726
+ "description" :
2727
+ """Information about this entity's relationship with
2728
+ a particular EGP neighbor.""",
2729
+ }, # row
2730
+ "egpNeighState" : {
2731
+ "nodetype" : "column",
2732
+ "moduleName" : "RFC1213-MIB",
2733
+ "oid" : "1.3.6.1.2.1.8.5.1.1",
2734
+ "status" : "current",
2735
+ "syntax" : {
2736
+ "type" : {
2737
+ "basetype" : "Enumeration",
2738
+ "idle" : {
2739
+ "nodetype" : "namednumber",
2740
+ "number" : "1"
2741
+ },
2742
+ "acquisition" : {
2743
+ "nodetype" : "namednumber",
2744
+ "number" : "2"
2745
+ },
2746
+ "down" : {
2747
+ "nodetype" : "namednumber",
2748
+ "number" : "3"
2749
+ },
2750
+ "up" : {
2751
+ "nodetype" : "namednumber",
2752
+ "number" : "4"
2753
+ },
2754
+ "cease" : {
2755
+ "nodetype" : "namednumber",
2756
+ "number" : "5"
2757
+ },
2758
+ },
2759
+ },
2760
+ "access" : "readonly",
2761
+ "description" :
2762
+ """The EGP state of the local system with respect to
2763
+ this entry's EGP neighbor. Each EGP state is
2764
+ represented by a value that is one greater than
2765
+ the numerical value associated with said state in
2766
+ RFC 904.""",
2767
+ }, # column
2768
+ "egpNeighAddr" : {
2769
+ "nodetype" : "column",
2770
+ "moduleName" : "RFC1213-MIB",
2771
+ "oid" : "1.3.6.1.2.1.8.5.1.2",
2772
+ "status" : "current",
2773
+ "syntax" : {
2774
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
2775
+ },
2776
+ "access" : "readonly",
2777
+ "description" :
2778
+ """The IP address of this entry's EGP neighbor.""",
2779
+ }, # column
2780
+ "egpNeighAs" : {
2781
+ "nodetype" : "column",
2782
+ "moduleName" : "RFC1213-MIB",
2783
+ "oid" : "1.3.6.1.2.1.8.5.1.3",
2784
+ "status" : "current",
2785
+ "syntax" : {
2786
+ "type" : { "module" :"", "name" : "Integer32"},
2787
+ },
2788
+ "access" : "readonly",
2789
+ "description" :
2790
+ """The autonomous system of this EGP peer. Zero
2791
+ should be specified if the autonomous system
2792
+ number of the neighbor is not yet known.""",
2793
+ }, # column
2794
+ "egpNeighInMsgs" : {
2795
+ "nodetype" : "column",
2796
+ "moduleName" : "RFC1213-MIB",
2797
+ "oid" : "1.3.6.1.2.1.8.5.1.4",
2798
+ "status" : "current",
2799
+ "syntax" : {
2800
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2801
+ },
2802
+ "access" : "readonly",
2803
+ "description" :
2804
+ """The number of EGP messages received without error
2805
+ from this EGP peer.""",
2806
+ }, # column
2807
+ "egpNeighInErrs" : {
2808
+ "nodetype" : "column",
2809
+ "moduleName" : "RFC1213-MIB",
2810
+ "oid" : "1.3.6.1.2.1.8.5.1.5",
2811
+ "status" : "current",
2812
+ "syntax" : {
2813
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2814
+ },
2815
+ "access" : "readonly",
2816
+ "description" :
2817
+ """The number of EGP messages received from this EGP
2818
+ peer that proved to be in error (e.g., bad EGP
2819
+ checksum).""",
2820
+ }, # column
2821
+ "egpNeighOutMsgs" : {
2822
+ "nodetype" : "column",
2823
+ "moduleName" : "RFC1213-MIB",
2824
+ "oid" : "1.3.6.1.2.1.8.5.1.6",
2825
+ "status" : "current",
2826
+ "syntax" : {
2827
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2828
+ },
2829
+ "access" : "readonly",
2830
+ "description" :
2831
+ """The number of locally generated EGP messages to
2832
+ this EGP peer.""",
2833
+ }, # column
2834
+ "egpNeighOutErrs" : {
2835
+ "nodetype" : "column",
2836
+ "moduleName" : "RFC1213-MIB",
2837
+ "oid" : "1.3.6.1.2.1.8.5.1.7",
2838
+ "status" : "current",
2839
+ "syntax" : {
2840
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2841
+ },
2842
+ "access" : "readonly",
2843
+ "description" :
2844
+ """The number of locally generated EGP messages not
2845
+ sent to this EGP peer due to resource limitations
2846
+ within an EGP entity.""",
2847
+ }, # column
2848
+ "egpNeighInErrMsgs" : {
2849
+ "nodetype" : "column",
2850
+ "moduleName" : "RFC1213-MIB",
2851
+ "oid" : "1.3.6.1.2.1.8.5.1.8",
2852
+ "status" : "current",
2853
+ "syntax" : {
2854
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2855
+ },
2856
+ "access" : "readonly",
2857
+ "description" :
2858
+ """The number of EGP-defined error messages received
2859
+ from this EGP peer.""",
2860
+ }, # column
2861
+ "egpNeighOutErrMsgs" : {
2862
+ "nodetype" : "column",
2863
+ "moduleName" : "RFC1213-MIB",
2864
+ "oid" : "1.3.6.1.2.1.8.5.1.9",
2865
+ "status" : "current",
2866
+ "syntax" : {
2867
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2868
+ },
2869
+ "access" : "readonly",
2870
+ "description" :
2871
+ """The number of EGP-defined error messages sent to
2872
+ this EGP peer.""",
2873
+ }, # column
2874
+ "egpNeighStateUps" : {
2875
+ "nodetype" : "column",
2876
+ "moduleName" : "RFC1213-MIB",
2877
+ "oid" : "1.3.6.1.2.1.8.5.1.10",
2878
+ "status" : "current",
2879
+ "syntax" : {
2880
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2881
+ },
2882
+ "access" : "readonly",
2883
+ "description" :
2884
+ """The number of EGP state transitions to the UP
2885
+ state with this EGP peer.""",
2886
+ }, # column
2887
+ "egpNeighStateDowns" : {
2888
+ "nodetype" : "column",
2889
+ "moduleName" : "RFC1213-MIB",
2890
+ "oid" : "1.3.6.1.2.1.8.5.1.11",
2891
+ "status" : "current",
2892
+ "syntax" : {
2893
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2894
+ },
2895
+ "access" : "readonly",
2896
+ "description" :
2897
+ """The number of EGP state transitions from the UP
2898
+ state to any other state with this EGP peer.""",
2899
+ }, # column
2900
+ "egpNeighIntervalHello" : {
2901
+ "nodetype" : "column",
2902
+ "moduleName" : "RFC1213-MIB",
2903
+ "oid" : "1.3.6.1.2.1.8.5.1.12",
2904
+ "status" : "current",
2905
+ "syntax" : {
2906
+ "type" : { "module" :"", "name" : "Integer32"},
2907
+ },
2908
+ "access" : "readonly",
2909
+ "description" :
2910
+ """The interval between EGP Hello command
2911
+ retransmissions (in hundredths of a second). This
2912
+ represents the t1 timer as defined in RFC 904.""",
2913
+ }, # column
2914
+ "egpNeighIntervalPoll" : {
2915
+ "nodetype" : "column",
2916
+ "moduleName" : "RFC1213-MIB",
2917
+ "oid" : "1.3.6.1.2.1.8.5.1.13",
2918
+ "status" : "current",
2919
+ "syntax" : {
2920
+ "type" : { "module" :"", "name" : "Integer32"},
2921
+ },
2922
+ "access" : "readonly",
2923
+ "description" :
2924
+ """The interval between EGP poll command
2925
+ retransmissions (in hundredths of a second). This
2926
+ represents the t3 timer as defined in RFC 904.""",
2927
+ }, # column
2928
+ "egpNeighMode" : {
2929
+ "nodetype" : "column",
2930
+ "moduleName" : "RFC1213-MIB",
2931
+ "oid" : "1.3.6.1.2.1.8.5.1.14",
2932
+ "status" : "current",
2933
+ "syntax" : {
2934
+ "type" : {
2935
+ "basetype" : "Enumeration",
2936
+ "active" : {
2937
+ "nodetype" : "namednumber",
2938
+ "number" : "1"
2939
+ },
2940
+ "passive" : {
2941
+ "nodetype" : "namednumber",
2942
+ "number" : "2"
2943
+ },
2944
+ },
2945
+ },
2946
+ "access" : "readonly",
2947
+ "description" :
2948
+ """The polling mode of this EGP entity, either
2949
+ passive or active.""",
2950
+ }, # column
2951
+ "egpNeighEventTrigger" : {
2952
+ "nodetype" : "column",
2953
+ "moduleName" : "RFC1213-MIB",
2954
+ "oid" : "1.3.6.1.2.1.8.5.1.15",
2955
+ "status" : "current",
2956
+ "syntax" : {
2957
+ "type" : {
2958
+ "basetype" : "Enumeration",
2959
+ "start" : {
2960
+ "nodetype" : "namednumber",
2961
+ "number" : "1"
2962
+ },
2963
+ "stop" : {
2964
+ "nodetype" : "namednumber",
2965
+ "number" : "2"
2966
+ },
2967
+ },
2968
+ },
2969
+ "access" : "readwrite",
2970
+ "description" :
2971
+ """A control variable used to trigger operator-
2972
+ initiated Start and Stop events. When read, this
2973
+ variable always returns the most recent value that
2974
+ egpNeighEventTrigger was set to. If it has not
2975
+ been set since the last initialization of the
2976
+ network management subsystem on the node, it
2977
+ returns a value of `stop'.
2978
+
2979
+ When set, this variable causes a Start or Stop
2980
+ event on the specified neighbor, as specified on
2981
+ pages 8-10 of RFC 904. Briefly, a Start event
2982
+ causes an Idle peer to begin neighbor acquisition
2983
+ and a non-Idle peer to reinitiate neighbor
2984
+ acquisition. A stop event causes a non-Idle peer
2985
+ to return to the Idle state until a Start event
2986
+ occurs, either via egpNeighEventTrigger or
2987
+ otherwise.""",
2988
+ }, # column
2989
+ "egpAs" : {
2990
+ "nodetype" : "scalar",
2991
+ "moduleName" : "RFC1213-MIB",
2992
+ "oid" : "1.3.6.1.2.1.8.6",
2993
+ "status" : "current",
2994
+ "syntax" : {
2995
+ "type" : { "module" :"", "name" : "Integer32"},
2996
+ },
2997
+ "access" : "readonly",
2998
+ "description" :
2999
+ """The autonomous system number of this EGP entity.""",
3000
+ }, # scalar
3001
+ "transmission" : {
3002
+ "nodetype" : "node",
3003
+ "moduleName" : "RFC1213-MIB",
3004
+ "oid" : "1.3.6.1.2.1.10",
3005
+ }, # node
3006
+ "snmp" : {
3007
+ "nodetype" : "node",
3008
+ "moduleName" : "RFC1213-MIB",
3009
+ "oid" : "1.3.6.1.2.1.11",
3010
+ }, # node
3011
+ "snmpInPkts" : {
3012
+ "nodetype" : "scalar",
3013
+ "moduleName" : "RFC1213-MIB",
3014
+ "oid" : "1.3.6.1.2.1.11.1",
3015
+ "status" : "current",
3016
+ "syntax" : {
3017
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3018
+ },
3019
+ "access" : "readonly",
3020
+ "description" :
3021
+ """The total number of Messages delivered to the
3022
+ SNMP entity from the transport service.""",
3023
+ }, # scalar
3024
+ "snmpOutPkts" : {
3025
+ "nodetype" : "scalar",
3026
+ "moduleName" : "RFC1213-MIB",
3027
+ "oid" : "1.3.6.1.2.1.11.2",
3028
+ "status" : "current",
3029
+ "syntax" : {
3030
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3031
+ },
3032
+ "access" : "readonly",
3033
+ "description" :
3034
+ """The total number of SNMP Messages which were
3035
+ passed from the SNMP protocol entity to the
3036
+ transport service.""",
3037
+ }, # scalar
3038
+ "snmpInBadVersions" : {
3039
+ "nodetype" : "scalar",
3040
+ "moduleName" : "RFC1213-MIB",
3041
+ "oid" : "1.3.6.1.2.1.11.3",
3042
+ "status" : "current",
3043
+ "syntax" : {
3044
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3045
+ },
3046
+ "access" : "readonly",
3047
+ "description" :
3048
+ """The total number of SNMP Messages which were
3049
+ delivered to the SNMP protocol entity and were for
3050
+ an unsupported SNMP version.""",
3051
+ }, # scalar
3052
+ "snmpInBadCommunityNames" : {
3053
+ "nodetype" : "scalar",
3054
+ "moduleName" : "RFC1213-MIB",
3055
+ "oid" : "1.3.6.1.2.1.11.4",
3056
+ "status" : "current",
3057
+ "syntax" : {
3058
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3059
+ },
3060
+ "access" : "readonly",
3061
+ "description" :
3062
+ """The total number of SNMP Messages delivered to
3063
+ the SNMP protocol entity which used a SNMP
3064
+ community name not known to said entity.""",
3065
+ }, # scalar
3066
+ "snmpInBadCommunityUses" : {
3067
+ "nodetype" : "scalar",
3068
+ "moduleName" : "RFC1213-MIB",
3069
+ "oid" : "1.3.6.1.2.1.11.5",
3070
+ "status" : "current",
3071
+ "syntax" : {
3072
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3073
+ },
3074
+ "access" : "readonly",
3075
+ "description" :
3076
+ """The total number of SNMP Messages delivered to
3077
+ the SNMP protocol entity which represented an SNMP
3078
+ operation which was not allowed by the SNMP
3079
+ community named in the Message.""",
3080
+ }, # scalar
3081
+ "snmpInASNParseErrs" : {
3082
+ "nodetype" : "scalar",
3083
+ "moduleName" : "RFC1213-MIB",
3084
+ "oid" : "1.3.6.1.2.1.11.6",
3085
+ "status" : "current",
3086
+ "syntax" : {
3087
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3088
+ },
3089
+ "access" : "readonly",
3090
+ "description" :
3091
+ """The total number of ASN.1 or BER errors
3092
+ encountered by the SNMP protocol entity when
3093
+ decoding received SNMP Messages.""",
3094
+ }, # scalar
3095
+ "snmpInTooBigs" : {
3096
+ "nodetype" : "scalar",
3097
+ "moduleName" : "RFC1213-MIB",
3098
+ "oid" : "1.3.6.1.2.1.11.8",
3099
+ "status" : "current",
3100
+ "syntax" : {
3101
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3102
+ },
3103
+ "access" : "readonly",
3104
+ "description" :
3105
+ """The total number of SNMP PDUs which were
3106
+ delivered to the SNMP protocol entity and for
3107
+ which the value of the error-status field is
3108
+ `tooBig'.""",
3109
+ }, # scalar
3110
+ "snmpInNoSuchNames" : {
3111
+ "nodetype" : "scalar",
3112
+ "moduleName" : "RFC1213-MIB",
3113
+ "oid" : "1.3.6.1.2.1.11.9",
3114
+ "status" : "current",
3115
+ "syntax" : {
3116
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3117
+ },
3118
+ "access" : "readonly",
3119
+ "description" :
3120
+ """The total number of SNMP PDUs which were
3121
+ delivered to the SNMP protocol entity and for
3122
+ which the value of the error-status field is
3123
+ `noSuchName'.""",
3124
+ }, # scalar
3125
+ "snmpInBadValues" : {
3126
+ "nodetype" : "scalar",
3127
+ "moduleName" : "RFC1213-MIB",
3128
+ "oid" : "1.3.6.1.2.1.11.10",
3129
+ "status" : "current",
3130
+ "syntax" : {
3131
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3132
+ },
3133
+ "access" : "readonly",
3134
+ "description" :
3135
+ """The total number of SNMP PDUs which were
3136
+ delivered to the SNMP protocol entity and for
3137
+ which the value of the error-status field is
3138
+ `badValue'.""",
3139
+ }, # scalar
3140
+ "snmpInReadOnlys" : {
3141
+ "nodetype" : "scalar",
3142
+ "moduleName" : "RFC1213-MIB",
3143
+ "oid" : "1.3.6.1.2.1.11.11",
3144
+ "status" : "current",
3145
+ "syntax" : {
3146
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3147
+ },
3148
+ "access" : "readonly",
3149
+ "description" :
3150
+ """The total number valid SNMP PDUs which were
3151
+ delivered to the SNMP protocol entity and for
3152
+ which the value of the error-status field is
3153
+ `readOnly'. It should be noted that it is a
3154
+ protocol error to generate an SNMP PDU which
3155
+ contains the value `readOnly' in the error-status
3156
+ field, as such this object is provided as a means
3157
+ of detecting incorrect implementations of the
3158
+ SNMP.""",
3159
+ }, # scalar
3160
+ "snmpInGenErrs" : {
3161
+ "nodetype" : "scalar",
3162
+ "moduleName" : "RFC1213-MIB",
3163
+ "oid" : "1.3.6.1.2.1.11.12",
3164
+ "status" : "current",
3165
+ "syntax" : {
3166
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3167
+ },
3168
+ "access" : "readonly",
3169
+ "description" :
3170
+ """The total number of SNMP PDUs which were
3171
+ delivered to the SNMP protocol entity and for
3172
+ which the value of the error-status field is
3173
+ `genErr'.""",
3174
+ }, # scalar
3175
+ "snmpInTotalReqVars" : {
3176
+ "nodetype" : "scalar",
3177
+ "moduleName" : "RFC1213-MIB",
3178
+ "oid" : "1.3.6.1.2.1.11.13",
3179
+ "status" : "current",
3180
+ "syntax" : {
3181
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3182
+ },
3183
+ "access" : "readonly",
3184
+ "description" :
3185
+ """The total number of MIB objects which have been
3186
+ retrieved successfully by the SNMP protocol entity
3187
+ as the result of receiving valid SNMP Get-Request
3188
+ and Get-Next PDUs.""",
3189
+ }, # scalar
3190
+ "snmpInTotalSetVars" : {
3191
+ "nodetype" : "scalar",
3192
+ "moduleName" : "RFC1213-MIB",
3193
+ "oid" : "1.3.6.1.2.1.11.14",
3194
+ "status" : "current",
3195
+ "syntax" : {
3196
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3197
+ },
3198
+ "access" : "readonly",
3199
+ "description" :
3200
+ """The total number of MIB objects which have been
3201
+ altered successfully by the SNMP protocol entity
3202
+ as the result of receiving valid SNMP Set-Request
3203
+ PDUs.""",
3204
+ }, # scalar
3205
+ "snmpInGetRequests" : {
3206
+ "nodetype" : "scalar",
3207
+ "moduleName" : "RFC1213-MIB",
3208
+ "oid" : "1.3.6.1.2.1.11.15",
3209
+ "status" : "current",
3210
+ "syntax" : {
3211
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3212
+ },
3213
+ "access" : "readonly",
3214
+ "description" :
3215
+ """The total number of SNMP Get-Request PDUs which
3216
+ have been accepted and processed by the SNMP
3217
+ protocol entity.""",
3218
+ }, # scalar
3219
+ "snmpInGetNexts" : {
3220
+ "nodetype" : "scalar",
3221
+ "moduleName" : "RFC1213-MIB",
3222
+ "oid" : "1.3.6.1.2.1.11.16",
3223
+ "status" : "current",
3224
+ "syntax" : {
3225
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3226
+ },
3227
+ "access" : "readonly",
3228
+ "description" :
3229
+ """The total number of SNMP Get-Next PDUs which have
3230
+ been accepted and processed by the SNMP protocol
3231
+ entity.""",
3232
+ }, # scalar
3233
+ "snmpInSetRequests" : {
3234
+ "nodetype" : "scalar",
3235
+ "moduleName" : "RFC1213-MIB",
3236
+ "oid" : "1.3.6.1.2.1.11.17",
3237
+ "status" : "current",
3238
+ "syntax" : {
3239
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3240
+ },
3241
+ "access" : "readonly",
3242
+ "description" :
3243
+ """The total number of SNMP Set-Request PDUs which
3244
+ have been accepted and processed by the SNMP
3245
+ protocol entity.""",
3246
+ }, # scalar
3247
+ "snmpInGetResponses" : {
3248
+ "nodetype" : "scalar",
3249
+ "moduleName" : "RFC1213-MIB",
3250
+ "oid" : "1.3.6.1.2.1.11.18",
3251
+ "status" : "current",
3252
+ "syntax" : {
3253
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3254
+ },
3255
+ "access" : "readonly",
3256
+ "description" :
3257
+ """The total number of SNMP Get-Response PDUs which
3258
+ have been accepted and processed by the SNMP
3259
+ protocol entity.""",
3260
+ }, # scalar
3261
+ "snmpInTraps" : {
3262
+ "nodetype" : "scalar",
3263
+ "moduleName" : "RFC1213-MIB",
3264
+ "oid" : "1.3.6.1.2.1.11.19",
3265
+ "status" : "current",
3266
+ "syntax" : {
3267
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3268
+ },
3269
+ "access" : "readonly",
3270
+ "description" :
3271
+ """The total number of SNMP Trap PDUs which have
3272
+ been accepted and processed by the SNMP protocol
3273
+ entity.""",
3274
+ }, # scalar
3275
+ "snmpOutTooBigs" : {
3276
+ "nodetype" : "scalar",
3277
+ "moduleName" : "RFC1213-MIB",
3278
+ "oid" : "1.3.6.1.2.1.11.20",
3279
+ "status" : "current",
3280
+ "syntax" : {
3281
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3282
+ },
3283
+ "access" : "readonly",
3284
+ "description" :
3285
+ """The total number of SNMP PDUs which were
3286
+ generated by the SNMP protocol entity and for
3287
+ which the value of the error-status field is
3288
+ `tooBig.'""",
3289
+ }, # scalar
3290
+ "snmpOutNoSuchNames" : {
3291
+ "nodetype" : "scalar",
3292
+ "moduleName" : "RFC1213-MIB",
3293
+ "oid" : "1.3.6.1.2.1.11.21",
3294
+ "status" : "current",
3295
+ "syntax" : {
3296
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3297
+ },
3298
+ "access" : "readonly",
3299
+ "description" :
3300
+ """The total number of SNMP PDUs which were
3301
+ generated by the SNMP protocol entity and for
3302
+ which the value of the error-status is
3303
+ `noSuchName'.""",
3304
+ }, # scalar
3305
+ "snmpOutBadValues" : {
3306
+ "nodetype" : "scalar",
3307
+ "moduleName" : "RFC1213-MIB",
3308
+ "oid" : "1.3.6.1.2.1.11.22",
3309
+ "status" : "current",
3310
+ "syntax" : {
3311
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3312
+ },
3313
+ "access" : "readonly",
3314
+ "description" :
3315
+ """The total number of SNMP PDUs which were
3316
+ generated by the SNMP protocol entity and for
3317
+ which the value of the error-status field is
3318
+ `badValue'.""",
3319
+ }, # scalar
3320
+ "snmpOutGenErrs" : {
3321
+ "nodetype" : "scalar",
3322
+ "moduleName" : "RFC1213-MIB",
3323
+ "oid" : "1.3.6.1.2.1.11.24",
3324
+ "status" : "current",
3325
+ "syntax" : {
3326
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3327
+ },
3328
+ "access" : "readonly",
3329
+ "description" :
3330
+ """The total number of SNMP PDUs which were
3331
+ generated by the SNMP protocol entity and for
3332
+ which the value of the error-status field is
3333
+ `genErr'.""",
3334
+ }, # scalar
3335
+ "snmpOutGetRequests" : {
3336
+ "nodetype" : "scalar",
3337
+ "moduleName" : "RFC1213-MIB",
3338
+ "oid" : "1.3.6.1.2.1.11.25",
3339
+ "status" : "current",
3340
+ "syntax" : {
3341
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3342
+ },
3343
+ "access" : "readonly",
3344
+ "description" :
3345
+ """The total number of SNMP Get-Request PDUs which
3346
+ have been generated by the SNMP protocol entity.""",
3347
+ }, # scalar
3348
+ "snmpOutGetNexts" : {
3349
+ "nodetype" : "scalar",
3350
+ "moduleName" : "RFC1213-MIB",
3351
+ "oid" : "1.3.6.1.2.1.11.26",
3352
+ "status" : "current",
3353
+ "syntax" : {
3354
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3355
+ },
3356
+ "access" : "readonly",
3357
+ "description" :
3358
+ """The total number of SNMP Get-Next PDUs which have
3359
+ been generated by the SNMP protocol entity.""",
3360
+ }, # scalar
3361
+ "snmpOutSetRequests" : {
3362
+ "nodetype" : "scalar",
3363
+ "moduleName" : "RFC1213-MIB",
3364
+ "oid" : "1.3.6.1.2.1.11.27",
3365
+ "status" : "current",
3366
+ "syntax" : {
3367
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3368
+ },
3369
+ "access" : "readonly",
3370
+ "description" :
3371
+ """The total number of SNMP Set-Request PDUs which
3372
+ have been generated by the SNMP protocol entity.""",
3373
+ }, # scalar
3374
+ "snmpOutGetResponses" : {
3375
+ "nodetype" : "scalar",
3376
+ "moduleName" : "RFC1213-MIB",
3377
+ "oid" : "1.3.6.1.2.1.11.28",
3378
+ "status" : "current",
3379
+ "syntax" : {
3380
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3381
+ },
3382
+ "access" : "readonly",
3383
+ "description" :
3384
+ """The total number of SNMP Get-Response PDUs which
3385
+ have been generated by the SNMP protocol entity.""",
3386
+ }, # scalar
3387
+ "snmpOutTraps" : {
3388
+ "nodetype" : "scalar",
3389
+ "moduleName" : "RFC1213-MIB",
3390
+ "oid" : "1.3.6.1.2.1.11.29",
3391
+ "status" : "current",
3392
+ "syntax" : {
3393
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3394
+ },
3395
+ "access" : "readonly",
3396
+ "description" :
3397
+ """The total number of SNMP Trap PDUs which have
3398
+ been generated by the SNMP protocol entity.""",
3399
+ }, # scalar
3400
+ "snmpEnableAuthenTraps" : {
3401
+ "nodetype" : "scalar",
3402
+ "moduleName" : "RFC1213-MIB",
3403
+ "oid" : "1.3.6.1.2.1.11.30",
3404
+ "status" : "current",
3405
+ "syntax" : {
3406
+ "type" : {
3407
+ "basetype" : "Enumeration",
3408
+ "enabled" : {
3409
+ "nodetype" : "namednumber",
3410
+ "number" : "1"
3411
+ },
3412
+ "disabled" : {
3413
+ "nodetype" : "namednumber",
3414
+ "number" : "2"
3415
+ },
3416
+ },
3417
+ },
3418
+ "access" : "readwrite",
3419
+ "description" :
3420
+ """Indicates whether the SNMP agent process is
3421
+ permitted to generate authentication-failure
3422
+ traps. The value of this object overrides any
3423
+ configuration information; as such, it provides a
3424
+ means whereby all authentication-failure traps may
3425
+ be disabled.
3426
+
3427
+ Note that it is strongly recommended that this
3428
+ object be stored in non-volatile memory so that it
3429
+ remains constant between re-initializations of the
3430
+ network management system.""",
3431
+ }, # scalar
3432
+ }, # nodes
3433
+
3434
+ }