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,2235 @@
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 ENTITY-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/ENTITY-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "ENTITY-MIB",
11
+
12
+ "ENTITY-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Energy Management Working Group""",
17
+ "contact" :
18
+ """WG Email: eman@ietf.org
19
+ Mailing list subscription info:
20
+ http://www.ietf.org/mailman/listinfo/eman
21
+
22
+
23
+
24
+
25
+
26
+
27
+
28
+ Andy Bierman
29
+ YumaWorks, Inc.
30
+ 274 Redwood Shores Parkway, #133
31
+ Redwood City, CA 94065
32
+ USA
33
+ Phone: +1 408-716-0466
34
+ Email: andy@yumaworks.com
35
+
36
+ Dan Romascanu
37
+ Avaya
38
+ Park Atidim, Bldg. #3
39
+ Tel Aviv, 61581
40
+ Israel
41
+ Phone: +972-3-6458414
42
+ Email: dromasca@avaya.com
43
+
44
+ Juergen Quittek
45
+ NEC Europe Ltd.
46
+ Network Research Division
47
+ Kurfuersten-Anlage 36
48
+ Heidelberg 69115
49
+ Germany
50
+ Phone: +49 6221 4342-115
51
+ Email: quittek@neclab.eu
52
+
53
+ Mouli Chandramouli
54
+ Cisco Systems, Inc.
55
+ Sarjapur Outer Ring Road
56
+ Bangalore 560103
57
+ India
58
+ Phone: +91 80 4429 2409
59
+ Email: moulchan@cisco.com""",
60
+ "description" :
61
+ """The MIB module for representing multiple logical
62
+ entities supported by a single SNMP agent.
63
+
64
+ Copyright (c) 2013 IETF Trust and the persons identified
65
+ as authors of the code. All rights reserved.
66
+
67
+ Redistribution and use in source and binary forms, with
68
+ or without modification, is permitted pursuant to, and
69
+ subject to the license terms contained in, the Simplified
70
+ BSD License set forth in Section 4.c of the IETF Trust's
71
+ Legal Provisions Relating to IETF Documents
72
+ (http://trustee.ietf.org/license-info).""",
73
+ "revisions" : (
74
+ {
75
+ "date" : "2013-04-05 00:00",
76
+ "description" :
77
+ """Entity MIB (Version 4).
78
+ This revision obsoletes RFC 4133.
79
+ - Creation of a new MIB module, IANA-ENTITY-MIB, which
80
+ makes the PhysicalIndex TC an IANA-maintained TEXTUAL-
81
+ CONVENTION. IANAPhysicalClass is now imported
82
+ from the IANA-ENTITY-MIB.
83
+ - Addition of a new MIB object to the entPhysicalTable,
84
+ entPhysicalUUID. UUIDorZero is imported from the
85
+ UUID-TC-MIB.
86
+ - Addition of two new MODULE-COMPLIANCE modules-
87
+ entity4Compliance and entity4CRCompliance.
88
+ This version is published as RFC 6933.""",
89
+ },
90
+ {
91
+ "date" : "2005-08-10 00:00",
92
+ "description" :
93
+ """Initial Version of Entity MIB (Version 3).
94
+ This revision obsoletes RFC 2737.
95
+ Additions:
96
+ - cpu(12) enumeration added to IANAPhysicalClass TC
97
+ - DISPLAY-HINT clause to PhysicalIndex TC
98
+ - PhysicalIndexOrZero TC
99
+ - entPhysicalMfgDate object
100
+ - entPhysicalUris object
101
+ Changes:
102
+ - entPhysicalContainedIn SYNTAX changed from
103
+ INTEGER to PhysicalIndexOrZero
104
+
105
+ This version was published as RFC 4133.""",
106
+ },
107
+ {
108
+ "date" : "1999-12-07 00:00",
109
+ "description" :
110
+ """Initial Version of Entity MIB (Version 2).
111
+ This revision obsoletes RFC 2037.
112
+ This version was published as RFC 2737.""",
113
+ },
114
+ {
115
+ "date" : "1996-10-31 00:00",
116
+ "description" :
117
+ """Initial version (version 1), published as
118
+ RFC 2037.""",
119
+ },
120
+ ),
121
+ "identity node" : "entityMIB",
122
+ },
123
+
124
+ "imports" : (
125
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
126
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
127
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
128
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
129
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
130
+ {"module" : "SNMPv2-TC", "name" : "TDomain"},
131
+ {"module" : "SNMPv2-TC", "name" : "TAddress"},
132
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
133
+ {"module" : "SNMPv2-TC", "name" : "AutonomousType"},
134
+ {"module" : "SNMPv2-TC", "name" : "RowPointer"},
135
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
136
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
137
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
138
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
139
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
140
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
141
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
142
+ {"module" : "UUID-TC-MIB", "name" : "UUIDorZero"},
143
+ {"module" : "IANA-ENTITY-MIB", "name" : "IANAPhysicalClass"},
144
+ ),
145
+
146
+ "typedefs" : {
147
+ "PhysicalIndex" : {
148
+ "basetype" : "Integer32",
149
+ "status" : "current",
150
+ "ranges" : [
151
+ {
152
+ "min" : "1",
153
+ "max" : "2147483647"
154
+ },
155
+ ],
156
+ "range" : {
157
+ "min" : "1",
158
+ "max" : "2147483647"
159
+ },
160
+ "format" : "d",
161
+ "description" :
162
+ """An arbitrary value that uniquely identifies the physical
163
+ entity. The value should be a small positive integer.
164
+ Index values for different physical entities are not
165
+ necessarily contiguous.""",
166
+ },
167
+ "PhysicalIndexOrZero" : {
168
+ "basetype" : "Integer32",
169
+ "status" : "current",
170
+ "ranges" : [
171
+ {
172
+ "min" : "0",
173
+ "max" : "2147483647"
174
+ },
175
+ ],
176
+ "range" : {
177
+ "min" : "0",
178
+ "max" : "2147483647"
179
+ },
180
+ "format" : "d",
181
+ "description" :
182
+ """This TEXTUAL-CONVENTION is an extension of the
183
+ PhysicalIndex convention, which defines a greater than zero
184
+ value used to identify a physical entity. This extension
185
+ permits the additional value of zero. The semantics of the
186
+ value zero are object-specific and must, therefore, be
187
+ defined as part of the description of any object that uses
188
+ this syntax. Examples of the usage of this extension are
189
+ situations where none or all physical entities need to be
190
+ referenced.""",
191
+ },
192
+ "SnmpEngineIdOrNone" : {
193
+ "basetype" : "OctetString",
194
+ "status" : "current",
195
+ "ranges" : [
196
+ {
197
+ "min" : "0",
198
+ "max" : "32"
199
+ },
200
+ ],
201
+ "range" : {
202
+ "min" : "0",
203
+ "max" : "32"
204
+ },
205
+ "description" :
206
+ """A specially formatted SnmpEngineID string for use with the
207
+ Entity MIB.
208
+
209
+ If an instance of an object of SYNTAX SnmpEngineIdOrNone has
210
+ a non-zero length, then the object encoding and semantics
211
+ are defined by the SnmpEngineID TEXTUAL-CONVENTION (see STD
212
+ 62, RFC 3411).
213
+
214
+
215
+
216
+
217
+
218
+
219
+
220
+
221
+ If an instance of an object of SYNTAX SnmpEngineIdOrNone
222
+ contains a zero-length string, then no appropriate
223
+ SnmpEngineID is associated with the logical entity (i.e.,
224
+ SNMPv3 is not supported).""",
225
+ },
226
+ "PhysicalClass" : {
227
+ "basetype" : "Enumeration",
228
+ "status" : "deprecated",
229
+ "other" : {
230
+ "nodetype" : "namednumber",
231
+ "number" : "1"
232
+ },
233
+ "unknown" : {
234
+ "nodetype" : "namednumber",
235
+ "number" : "2"
236
+ },
237
+ "chassis" : {
238
+ "nodetype" : "namednumber",
239
+ "number" : "3"
240
+ },
241
+ "backplane" : {
242
+ "nodetype" : "namednumber",
243
+ "number" : "4"
244
+ },
245
+ "container" : {
246
+ "nodetype" : "namednumber",
247
+ "number" : "5"
248
+ },
249
+ "powerSupply" : {
250
+ "nodetype" : "namednumber",
251
+ "number" : "6"
252
+ },
253
+ "fan" : {
254
+ "nodetype" : "namednumber",
255
+ "number" : "7"
256
+ },
257
+ "sensor" : {
258
+ "nodetype" : "namednumber",
259
+ "number" : "8"
260
+ },
261
+ "module" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "9"
264
+ },
265
+ "port" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "10"
268
+ },
269
+ "stack" : {
270
+ "nodetype" : "namednumber",
271
+ "number" : "11"
272
+ },
273
+ "cpu" : {
274
+ "nodetype" : "namednumber",
275
+ "number" : "12"
276
+ },
277
+ "description" :
278
+ """Starting with version 4 of the ENTITY-MIB, this TC is
279
+ deprecated, and the usage of the IANAPhysicalClass TC from
280
+ the IANA-ENTITY-MIB is recommended instead.
281
+
282
+ An enumerated value that provides an indication of the
283
+ general hardware type of a particular physical entity.
284
+ There are no restrictions as to the number of
285
+ entPhysicalEntries of each entPhysicalClass, which must be
286
+ instantiated by an agent.
287
+
288
+ The enumeration 'other' is applicable if the physical entity
289
+ class is known but does not match any of the supported
290
+ values.
291
+
292
+ The enumeration 'unknown' is applicable if the physical
293
+ entity class is unknown to the agent.
294
+
295
+ The enumeration 'chassis' is applicable if the physical
296
+ entity class is an overall container for networking
297
+ equipment. Any class of physical entity, except a stack,
298
+ may be contained within a chassis; a chassis may only
299
+ be contained within a stack.
300
+
301
+ The enumeration 'backplane' is applicable if the physical
302
+ entity class is some sort of device for aggregating and
303
+ forwarding networking traffic, such as a shared backplane in
304
+ a modular ethernet switch. Note that an agent may model a
305
+ backplane as a single physical entity, which is actually
306
+ implemented as multiple discrete physical components (within
307
+ a chassis or stack).
308
+
309
+ The enumeration 'container' is applicable if the physical
310
+ entity class is capable of containing one or more removable
311
+ physical entities, possibly of different types. For
312
+ example, each (empty or full) slot in a chassis will be
313
+ modeled as a container. Note that all removable physical
314
+ entities should be modeled within a container entity, such
315
+
316
+
317
+
318
+
319
+
320
+ as field-replaceable modules, fans, or power supplies. Note
321
+ that all known containers should be modeled by the agent,
322
+ including empty containers.
323
+
324
+ The enumeration 'powerSupply' is applicable if the physical
325
+ entity class is a power-supplying component.
326
+
327
+ The enumeration 'fan' is applicable if the physical entity
328
+ class is a fan or other heat-reduction component.
329
+
330
+ The enumeration 'sensor' is applicable if the physical
331
+ entity class is some sort of sensor, such as a temperature
332
+ sensor within a router chassis.
333
+
334
+ The enumeration 'module' is applicable if the physical
335
+ entity class is some sort of self-contained sub-system. If
336
+ the enumeration 'module' is removable, then it should be
337
+ modeled within a container entity; otherwise, it should be
338
+ modeled directly within another physical entity (e.g., a
339
+ chassis or another module).
340
+
341
+ The enumeration 'port' is applicable if the physical entity
342
+ class is some sort of networking port capable of receiving
343
+ and/or transmitting networking traffic.
344
+
345
+ The enumeration 'stack' is applicable if the physical entity
346
+ class is some sort of super-container (possibly virtual)
347
+ intended to group together multiple chassis entities. A
348
+ stack may be realized by a 'virtual' cable, a real
349
+ interconnect cable, attached to multiple chassis, or may in
350
+ fact be comprised of multiple interconnect cables. A stack
351
+ should not be modeled within any other physical entities,
352
+ but a stack may be contained within another stack. Only
353
+ chassis entities should be contained within a stack.
354
+
355
+ The enumeration 'cpu' is applicable if the physical entity
356
+ class is some sort of central processing unit.""",
357
+ },
358
+ }, # typedefs
359
+
360
+ "nodes" : {
361
+ "entityMIB" : {
362
+ "nodetype" : "node",
363
+ "moduleName" : "ENTITY-MIB",
364
+ "oid" : "1.3.6.1.2.1.47",
365
+ "status" : "current",
366
+ }, # node
367
+ "entityMIBObjects" : {
368
+ "nodetype" : "node",
369
+ "moduleName" : "ENTITY-MIB",
370
+ "oid" : "1.3.6.1.2.1.47.1",
371
+ }, # node
372
+ "entityPhysical" : {
373
+ "nodetype" : "node",
374
+ "moduleName" : "ENTITY-MIB",
375
+ "oid" : "1.3.6.1.2.1.47.1.1",
376
+ }, # node
377
+ "entPhysicalTable" : {
378
+ "nodetype" : "table",
379
+ "moduleName" : "ENTITY-MIB",
380
+ "oid" : "1.3.6.1.2.1.47.1.1.1",
381
+ "status" : "current",
382
+ "description" :
383
+ """This table contains one row per physical entity. There is
384
+ always at least one row for an 'overall' physical entity.""",
385
+ }, # table
386
+ "entPhysicalEntry" : {
387
+ "nodetype" : "row",
388
+ "moduleName" : "ENTITY-MIB",
389
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1",
390
+ "status" : "current",
391
+ "linkage" : [
392
+ "entPhysicalIndex",
393
+ ],
394
+ "description" :
395
+ """Information about a particular physical entity.
396
+
397
+ Each entry provides objects (entPhysicalDescr,
398
+ entPhysicalVendorType, and entPhysicalClass) to help an NMS
399
+ identify and characterize the entry and objects
400
+ (entPhysicalContainedIn and entPhysicalParentRelPos) to help
401
+ an NMS relate the particular entry to other entries in this
402
+ table.""",
403
+ }, # row
404
+ "entPhysicalIndex" : {
405
+ "nodetype" : "column",
406
+ "moduleName" : "ENTITY-MIB",
407
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.1",
408
+ "status" : "current",
409
+ "syntax" : {
410
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndex"},
411
+ },
412
+ "access" : "noaccess",
413
+ "description" :
414
+ """The index for this entry.""",
415
+ }, # column
416
+ "entPhysicalDescr" : {
417
+ "nodetype" : "column",
418
+ "moduleName" : "ENTITY-MIB",
419
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.2",
420
+ "status" : "current",
421
+ "syntax" : {
422
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
423
+ },
424
+ "access" : "readonly",
425
+ "description" :
426
+ """A textual description of physical entity. This object
427
+ should contain a string that identifies the manufacturer's
428
+ name for the physical entity and should be set to a
429
+ distinct value for each version or model of the physical
430
+ entity.""",
431
+ }, # column
432
+ "entPhysicalVendorType" : {
433
+ "nodetype" : "column",
434
+ "moduleName" : "ENTITY-MIB",
435
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.3",
436
+ "status" : "current",
437
+ "syntax" : {
438
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
439
+ },
440
+ "access" : "readonly",
441
+ "description" :
442
+ """An indication of the vendor-specific hardware type of the
443
+ physical entity. Note that this is different from the
444
+ definition of MIB-II's sysObjectID.
445
+
446
+ An agent should set this object to an enterprise-specific
447
+ registration identifier value indicating the specific
448
+ equipment type in detail. The associated instance of
449
+ entPhysicalClass is used to indicate the general type of
450
+ hardware device.
451
+
452
+ If no vendor-specific registration identifier exists for
453
+ this physical entity, or the value is unknown by this agent,
454
+ then the value { 0 0 } is returned.""",
455
+ }, # column
456
+ "entPhysicalContainedIn" : {
457
+ "nodetype" : "column",
458
+ "moduleName" : "ENTITY-MIB",
459
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.4",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndexOrZero"},
463
+ },
464
+ "access" : "readonly",
465
+ "description" :
466
+ """The value of entPhysicalIndex for the physical entity that
467
+ 'contains' this physical entity. A value of zero indicates
468
+ this physical entity is not contained in any other physical
469
+ entity. Note that the set of 'containment' relationships
470
+ define a strict hierarchy; that is, recursion is not
471
+ allowed.
472
+
473
+ In the event that a physical entity is contained by more
474
+ than one physical entity (e.g., double-wide modules), this
475
+ object should identify the containing entity with the lowest
476
+ value of entPhysicalIndex.""",
477
+ }, # column
478
+ "entPhysicalClass" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "ENTITY-MIB",
481
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.5",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : { "module" :"IANA-ENTITY-MIB", "name" : "IANAPhysicalClass"},
485
+ },
486
+ "access" : "readonly",
487
+ "description" :
488
+ """An indication of the general hardware type of the physical
489
+ entity.
490
+
491
+ An agent should set this object to the standard enumeration
492
+ value that most accurately indicates the general class of
493
+ the physical entity, or the primary class if there is more
494
+ than one entity.
495
+
496
+ If no appropriate standard registration identifier exists
497
+ for this physical entity, then the value 'other(1)' is
498
+ returned. If the value is unknown by this agent, then the
499
+ value 'unknown(2)' is returned.""",
500
+ }, # column
501
+ "entPhysicalParentRelPos" : {
502
+ "nodetype" : "column",
503
+ "moduleName" : "ENTITY-MIB",
504
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.6",
505
+ "status" : "current",
506
+ "syntax" : {
507
+ "type" : {
508
+ "basetype" : "Integer32",
509
+ "ranges" : [
510
+ {
511
+ "min" : "-1",
512
+ "max" : "2147483647"
513
+ },
514
+ ],
515
+ "range" : {
516
+ "min" : "-1",
517
+ "max" : "2147483647"
518
+ },
519
+ },
520
+ },
521
+ "access" : "readonly",
522
+ "description" :
523
+ """An indication of the relative position of this 'child'
524
+ component among all its 'sibling' components. Sibling
525
+ components are defined as entPhysicalEntries that share the
526
+ same instance values of each of the entPhysicalContainedIn
527
+ and entPhysicalClass objects.
528
+
529
+
530
+
531
+
532
+ An NMS can use this object to identify the relative ordering
533
+ for all sibling components of a particular parent
534
+ (identified by the entPhysicalContainedIn instance in each
535
+ sibling entry).
536
+
537
+ If possible, this value should match any external labeling
538
+ of the physical component. For example, for a container
539
+ (e.g., card slot) labeled as 'slot #3',
540
+ entPhysicalParentRelPos should have the value '3'. Note
541
+ that the entPhysicalEntry for the module plugged in slot 3
542
+ should have an entPhysicalParentRelPos value of '1'.
543
+
544
+ If the physical position of this component does not match
545
+ any external numbering or clearly visible ordering, then
546
+ user documentation or other external reference material
547
+ should be used to determine the parent-relative position.
548
+ If this is not possible, then the agent should assign a
549
+ consistent (but possibly arbitrary) ordering to a given set
550
+ of 'sibling' components, perhaps based on internal
551
+ representation of the components.
552
+
553
+ If the agent cannot determine the parent-relative position
554
+ for some reason, or if the associated value of
555
+ entPhysicalContainedIn is '0', then the value '-1' is
556
+ returned. Otherwise, a non-negative integer is returned,
557
+ indicating the parent-relative position of this physical
558
+ entity.
559
+
560
+ Parent-relative ordering normally starts from '1' and
561
+ continues to 'N', where 'N' represents the highest
562
+ positioned child entity. However, if the physical entities
563
+ (e.g., slots) are labeled from a starting position of zero,
564
+ then the first sibling should be associated with an
565
+ entPhysicalParentRelPos value of '0'. Note that this
566
+ ordering may be sparse or dense, depending on agent
567
+ implementation.
568
+
569
+ The actual values returned are not globally meaningful, as
570
+ each 'parent' component may use different numbering
571
+ algorithms. The ordering is only meaningful among siblings
572
+ of the same parent component.
573
+
574
+ The agent should retain parent-relative position values
575
+ across reboots, either through algorithmic assignment or use
576
+ of non-volatile storage.""",
577
+ }, # column
578
+ "entPhysicalName" : {
579
+ "nodetype" : "column",
580
+ "moduleName" : "ENTITY-MIB",
581
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.7",
582
+ "status" : "current",
583
+ "syntax" : {
584
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
585
+ },
586
+ "access" : "readonly",
587
+ "description" :
588
+ """The textual name of the physical entity. The value of this
589
+ object should be the name of the component as assigned by
590
+ the local device and should be suitable for use in commands
591
+ entered at the device's 'console'. This might be a text
592
+ name (e.g., 'console') or a simple component number (e.g.,
593
+ port or module number, such as '1'), depending on the
594
+ physical component naming syntax of the device.
595
+
596
+ If there is no local name, or if this object is otherwise
597
+ not applicable, then this object contains a zero-length
598
+ string.
599
+
600
+ Note that the value of entPhysicalName for two physical
601
+ entities will be the same in the event that the console
602
+ interface does not distinguish between them, e.g., slot-1
603
+ and the card in slot-1.""",
604
+ }, # column
605
+ "entPhysicalHardwareRev" : {
606
+ "nodetype" : "column",
607
+ "moduleName" : "ENTITY-MIB",
608
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.8",
609
+ "status" : "current",
610
+ "syntax" : {
611
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
612
+ },
613
+ "access" : "readonly",
614
+ "description" :
615
+ """The vendor-specific hardware revision string for the
616
+ physical entity. The preferred value is the hardware
617
+ revision identifier actually printed on the component itself
618
+ (if present).
619
+
620
+ Note that if revision information is stored internally in a
621
+ non-printable (e.g., binary) format, then the agent must
622
+ convert such information to a printable format in an
623
+ implementation-specific manner.
624
+
625
+ If no specific hardware revision string is associated with
626
+ the physical component, or if this information is unknown to
627
+ the agent, then this object will contain a zero-length
628
+ string.""",
629
+ }, # column
630
+ "entPhysicalFirmwareRev" : {
631
+ "nodetype" : "column",
632
+ "moduleName" : "ENTITY-MIB",
633
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.9",
634
+ "status" : "current",
635
+ "syntax" : {
636
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
637
+ },
638
+ "access" : "readonly",
639
+ "description" :
640
+ """The vendor-specific firmware revision string for the
641
+ physical entity.
642
+
643
+ Note that if revision information is stored internally in a
644
+ non-printable (e.g., binary) format, then the agent must
645
+ convert such information to a printable format in an
646
+ implementation-specific manner.
647
+
648
+ If no specific firmware programs are associated with the
649
+ physical component, or if this information is unknown to the
650
+ agent, then this object will contain a zero-length string.""",
651
+ }, # column
652
+ "entPhysicalSoftwareRev" : {
653
+ "nodetype" : "column",
654
+ "moduleName" : "ENTITY-MIB",
655
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.10",
656
+ "status" : "current",
657
+ "syntax" : {
658
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
659
+ },
660
+ "access" : "readonly",
661
+ "description" :
662
+ """The vendor-specific software revision string for the
663
+ physical entity.
664
+
665
+ Note that if revision information is stored internally in a
666
+ non-printable (e.g., binary) format, then the agent must
667
+ convert such information to a printable format in an
668
+ implementation-specific manner.
669
+
670
+ If no specific software programs are associated with the
671
+ physical component, or if this information is unknown to the
672
+ agent, then this object will contain a zero-length string.""",
673
+ }, # column
674
+ "entPhysicalSerialNum" : {
675
+ "nodetype" : "column",
676
+ "moduleName" : "ENTITY-MIB",
677
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.11",
678
+ "status" : "current",
679
+ "syntax" : {
680
+ "type" : {
681
+ "basetype" : "OctetString",
682
+ "parent module" : {
683
+ "name" : "SNMP-FRAMEWORK-MIB",
684
+ "type" : "SnmpAdminString",
685
+ },
686
+ "ranges" : [
687
+ {
688
+ "min" : "0",
689
+ "max" : "32"
690
+ },
691
+ ],
692
+ "range" : {
693
+ "min" : "0",
694
+ "max" : "32"
695
+ },
696
+ },
697
+ },
698
+ "access" : "readwrite",
699
+ "description" :
700
+ """The vendor-specific serial number string for the physical
701
+ entity. The preferred value is the serial number string
702
+ actually printed on the component itself (if present).
703
+
704
+ On the first instantiation of a physical entity, the value
705
+ of entPhysicalSerialNum associated with that entity is set
706
+ to the correct vendor-assigned serial number, if this
707
+ information is available to the agent. If a serial number
708
+ is unknown or non-existent, the entPhysicalSerialNum will be
709
+ set to a zero-length string instead.
710
+
711
+
712
+
713
+
714
+ Note that implementations that can correctly identify the
715
+ serial numbers of all installed physical entities do not
716
+ need to provide write access to the entPhysicalSerialNum
717
+ object. Agents that cannot provide non-volatile storage
718
+ for the entPhysicalSerialNum strings are not required to
719
+ implement write access for this object.
720
+
721
+ Not every physical component will have a serial number, or
722
+ even need one. Physical entities for which the associated
723
+ value of the entPhysicalIsFRU object is equal to 'false(2)'
724
+ (e.g., the repeater ports within a repeater module) do not
725
+ need their own unique serial numbers. An agent does not
726
+ have to provide write access for such entities and may
727
+ return a zero-length string.
728
+
729
+ If write access is implemented for an instance of
730
+ entPhysicalSerialNum and a value is written into the
731
+ instance, the agent must retain the supplied value in the
732
+ entPhysicalSerialNum instance (associated with the same
733
+ physical entity) for as long as that entity remains
734
+ instantiated. This includes instantiations across all
735
+ re-initializations/reboots of the network management system,
736
+ including those resulting in a change of the physical
737
+ entity's entPhysicalIndex value.""",
738
+ }, # column
739
+ "entPhysicalMfgName" : {
740
+ "nodetype" : "column",
741
+ "moduleName" : "ENTITY-MIB",
742
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.12",
743
+ "status" : "current",
744
+ "syntax" : {
745
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
746
+ },
747
+ "access" : "readonly",
748
+ "description" :
749
+ """The name of the manufacturer of this physical component.
750
+ The preferred value is the manufacturer name string actually
751
+ printed on the component itself (if present).
752
+
753
+ Note that comparisons between instances of the
754
+ entPhysicalModelName, entPhysicalFirmwareRev,
755
+ entPhysicalSoftwareRev, and the entPhysicalSerialNum
756
+ objects are only meaningful amongst entPhysicalEntries with
757
+ the same value of entPhysicalMfgName.
758
+
759
+ If the manufacturer name string associated with the physical
760
+ component is unknown to the agent, then this object will
761
+ contain a zero-length string.""",
762
+ }, # column
763
+ "entPhysicalModelName" : {
764
+ "nodetype" : "column",
765
+ "moduleName" : "ENTITY-MIB",
766
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.13",
767
+ "status" : "current",
768
+ "syntax" : {
769
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
770
+ },
771
+ "access" : "readonly",
772
+ "description" :
773
+ """The vendor-specific model name identifier string associated
774
+ with this physical component. The preferred value is the
775
+ customer-visible part number, which may be printed on the
776
+ component itself.
777
+
778
+ If the model name string associated with the physical
779
+ component is unknown to the agent, then this object will
780
+ contain a zero-length string.""",
781
+ }, # column
782
+ "entPhysicalAlias" : {
783
+ "nodetype" : "column",
784
+ "moduleName" : "ENTITY-MIB",
785
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.14",
786
+ "status" : "current",
787
+ "syntax" : {
788
+ "type" : {
789
+ "basetype" : "OctetString",
790
+ "parent module" : {
791
+ "name" : "SNMP-FRAMEWORK-MIB",
792
+ "type" : "SnmpAdminString",
793
+ },
794
+ "ranges" : [
795
+ {
796
+ "min" : "0",
797
+ "max" : "32"
798
+ },
799
+ ],
800
+ "range" : {
801
+ "min" : "0",
802
+ "max" : "32"
803
+ },
804
+ },
805
+ },
806
+ "access" : "readwrite",
807
+ "description" :
808
+ """This object is an 'alias' name for the physical entity, as
809
+ specified by a network manager, and provides a non-volatile
810
+ 'handle' for the physical entity.
811
+
812
+ On the first instantiation of a physical entity, the value
813
+ of entPhysicalAlias associated with that entity is set to
814
+ the zero-length string. However, the agent may set the
815
+ value to a locally unique default value, instead of a
816
+ zero-length string.
817
+
818
+ If write access is implemented for an instance of
819
+ entPhysicalAlias and a value is written into the instance,
820
+ the agent must retain the supplied value in the
821
+ entPhysicalAlias instance (associated with the same physical
822
+ entity) for as long as that entity remains instantiated.
823
+ This includes instantiations across all
824
+ re-initializations/reboots of the network management system,
825
+ including those resulting in a change of the physical
826
+ entity's entPhysicalIndex value.""",
827
+ }, # column
828
+ "entPhysicalAssetID" : {
829
+ "nodetype" : "column",
830
+ "moduleName" : "ENTITY-MIB",
831
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.15",
832
+ "status" : "current",
833
+ "syntax" : {
834
+ "type" : {
835
+ "basetype" : "OctetString",
836
+ "parent module" : {
837
+ "name" : "SNMP-FRAMEWORK-MIB",
838
+ "type" : "SnmpAdminString",
839
+ },
840
+ "ranges" : [
841
+ {
842
+ "min" : "0",
843
+ "max" : "32"
844
+ },
845
+ ],
846
+ "range" : {
847
+ "min" : "0",
848
+ "max" : "32"
849
+ },
850
+ },
851
+ },
852
+ "access" : "readwrite",
853
+ "description" :
854
+ """This object is a user-assigned asset tracking identifier
855
+ (as specified by a network manager) for the physical entity
856
+ and provides non-volatile storage of this information.
857
+
858
+ On the first instantiation of a physical entity, the value
859
+ of entPhysicalAssetID associated with that entity is set to
860
+ the zero-length string.
861
+
862
+ Not every physical component will have an asset tracking
863
+ identifier or even need one. Physical entities for which
864
+ the associated value of the entPhysicalIsFRU object is equal
865
+ to 'false(2)' (e.g., the repeater ports within a repeater
866
+ module) do not need their own unique asset tracking
867
+ identifier. An agent does not have to provide write access
868
+ for such entities and may instead return a zero-length
869
+ string.
870
+
871
+ If write access is implemented for an instance of
872
+ entPhysicalAssetID and a value is written into the
873
+ instance, the agent must retain the supplied value in the
874
+ entPhysicalAssetID instance (associated with the same
875
+ physical entity) for as long as that entity remains
876
+ instantiated. This includes instantiations across all
877
+ re-initializations/reboots of the network management system,
878
+ including those resulting in a change of the physical
879
+ entity's entPhysicalIndex value.
880
+
881
+ If no asset tracking information is associated with the
882
+ physical component, then this object will contain a
883
+ zero-length string.""",
884
+ }, # column
885
+ "entPhysicalIsFRU" : {
886
+ "nodetype" : "column",
887
+ "moduleName" : "ENTITY-MIB",
888
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.16",
889
+ "status" : "current",
890
+ "syntax" : {
891
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
892
+ },
893
+ "access" : "readonly",
894
+ "description" :
895
+ """This object indicates whether or not this physical entity
896
+ is considered a 'field replaceable unit' by the vendor.
897
+ If this object contains the value 'true(1)', then this
898
+ entPhysicalEntry identifies a field replaceable unit. For
899
+ all entPhysicalEntries that represent components
900
+ permanently contained within a field replaceable unit, the
901
+ value 'false(2)' should be returned for this object.""",
902
+ }, # column
903
+ "entPhysicalMfgDate" : {
904
+ "nodetype" : "column",
905
+ "moduleName" : "ENTITY-MIB",
906
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.17",
907
+ "status" : "current",
908
+ "syntax" : {
909
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
910
+ },
911
+ "access" : "readonly",
912
+ "description" :
913
+ """This object contains the date of manufacturing of the
914
+ managed entity. If the manufacturing date is unknown or
915
+ not supported, the object is not instantiated. The special
916
+ value '0000000000000000'H may also be returned in this
917
+ case.""",
918
+ }, # column
919
+ "entPhysicalUris" : {
920
+ "nodetype" : "column",
921
+ "moduleName" : "ENTITY-MIB",
922
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.18",
923
+ "status" : "current",
924
+ "syntax" : {
925
+ "type" : { "module" :"", "name" : "OctetString"},
926
+ },
927
+ "access" : "readwrite",
928
+ "description" :
929
+ """This object contains identification
930
+ information about the physical entity. The object
931
+ contains URIs; therefore, the syntax of this object
932
+ must conform to RFC 3986, Section 3.
933
+
934
+ Multiple URIs may be present and are separated by white
935
+ space characters. Leading and trailing white space
936
+ characters are ignored.
937
+
938
+ If no URI identification information is known
939
+ about the physical entity, the object is not
940
+ instantiated. A zero-length octet string may also be
941
+ returned in this case.""",
942
+ "reference" :
943
+ """RFC 3986, Uniform Resource Identifiers (URI): Generic
944
+ Syntax, Section 2, August 1998.""",
945
+ }, # column
946
+ "entPhysicalUUID" : {
947
+ "nodetype" : "column",
948
+ "moduleName" : "ENTITY-MIB",
949
+ "oid" : "1.3.6.1.2.1.47.1.1.1.1.19",
950
+ "status" : "current",
951
+ "syntax" : {
952
+ "type" : { "module" :"UUID-TC-MIB", "name" : "UUIDorZero"},
953
+ },
954
+ "access" : "readonly",
955
+ "description" :
956
+ """This object contains identification information
957
+ about the physical entity. The object contains a
958
+ Universally Unique Identifier, the syntax of this object
959
+ must conform to RFC 4122, Section 4.1.
960
+
961
+ A zero-length octet string is returned if no UUID
962
+ information is known.""",
963
+ "reference" :
964
+ """RFC 4122, A Universally Unique IDentifier (UUID) URN
965
+ Namespace, Section 4.1, July 2005.""",
966
+ }, # column
967
+ "entityLogical" : {
968
+ "nodetype" : "node",
969
+ "moduleName" : "ENTITY-MIB",
970
+ "oid" : "1.3.6.1.2.1.47.1.2",
971
+ }, # node
972
+ "entLogicalTable" : {
973
+ "nodetype" : "table",
974
+ "moduleName" : "ENTITY-MIB",
975
+ "oid" : "1.3.6.1.2.1.47.1.2.1",
976
+ "status" : "current",
977
+ "description" :
978
+ """This table contains one row per logical entity. For agents
979
+ that implement more than one naming scope, at least one
980
+ entry must exist. Agents that instantiate all MIB objects
981
+ within a single naming scope are not required to implement
982
+ this table.""",
983
+ }, # table
984
+ "entLogicalEntry" : {
985
+ "nodetype" : "row",
986
+ "moduleName" : "ENTITY-MIB",
987
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1",
988
+ "status" : "current",
989
+ "linkage" : [
990
+ "entLogicalIndex",
991
+ ],
992
+ "description" :
993
+ """Information about a particular logical entity. Entities
994
+ may be managed by this agent or other SNMP agents (possibly)
995
+ in the same chassis.""",
996
+ }, # row
997
+ "entLogicalIndex" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "ENTITY-MIB",
1000
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.1",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : {
1004
+ "basetype" : "Integer32",
1005
+ "ranges" : [
1006
+ {
1007
+ "min" : "1",
1008
+ "max" : "2147483647"
1009
+ },
1010
+ ],
1011
+ "range" : {
1012
+ "min" : "1",
1013
+ "max" : "2147483647"
1014
+ },
1015
+ },
1016
+ },
1017
+ "access" : "noaccess",
1018
+ "description" :
1019
+ """The value of this object uniquely identifies the logical
1020
+ entity. The value should be a small positive integer; index
1021
+ values for different logical entities are not necessarily
1022
+ contiguous.""",
1023
+ }, # column
1024
+ "entLogicalDescr" : {
1025
+ "nodetype" : "column",
1026
+ "moduleName" : "ENTITY-MIB",
1027
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.2",
1028
+ "status" : "current",
1029
+ "syntax" : {
1030
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1031
+ },
1032
+ "access" : "readonly",
1033
+ "description" :
1034
+ """A textual description of the logical entity. This object
1035
+ should contain a string that identifies the manufacturer's
1036
+ name for the logical entity and should be set to a distinct
1037
+ value for each version of the logical entity.""",
1038
+ }, # column
1039
+ "entLogicalType" : {
1040
+ "nodetype" : "column",
1041
+ "moduleName" : "ENTITY-MIB",
1042
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.3",
1043
+ "status" : "current",
1044
+ "syntax" : {
1045
+ "type" : { "module" :"SNMPv2-TC", "name" : "AutonomousType"},
1046
+ },
1047
+ "access" : "readonly",
1048
+ "description" :
1049
+ """An indication of the type of logical entity. This will
1050
+ typically be the OBJECT IDENTIFIER name of the node in the
1051
+ SMI's naming hierarchy that represents the major MIB
1052
+ module, or the majority of the MIB modules, supported by the
1053
+ logical entity. For example:
1054
+ a logical entity of a regular host/router -> mib-2
1055
+ a logical entity of a 802.1d bridge -> dot1dBridge
1056
+ a logical entity of a 802.3 repeater -> snmpDot3RptrMgmt
1057
+ If an appropriate node in the SMI's naming hierarchy cannot
1058
+ be identified, the value 'mib-2' should be used.""",
1059
+ }, # column
1060
+ "entLogicalCommunity" : {
1061
+ "nodetype" : "column",
1062
+ "moduleName" : "ENTITY-MIB",
1063
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.4",
1064
+ "status" : "deprecated",
1065
+ "syntax" : {
1066
+ "type" : {
1067
+ "basetype" : "OctetString",
1068
+ "ranges" : [
1069
+ {
1070
+ "min" : "0",
1071
+ "max" : "255"
1072
+ },
1073
+ ],
1074
+ "range" : {
1075
+ "min" : "0",
1076
+ "max" : "255"
1077
+ },
1078
+ },
1079
+ },
1080
+ "access" : "readonly",
1081
+ "description" :
1082
+ """An SNMPv1 or SNMPv2c community string, which can be used to
1083
+ access detailed management information for this logical
1084
+ entity. The agent should allow read access with this
1085
+ community string (to an appropriate subset of all managed
1086
+ objects) and may also return a community string based on the
1087
+ privileges of the request used to read this object. Note
1088
+ that an agent may return a community string with read-only
1089
+ privileges, even if this object is accessed with a
1090
+
1091
+
1092
+
1093
+ read-write community string. However, the agent must take
1094
+ care not to return a community string that allows more
1095
+ privileges than the community string used to access this
1096
+ object.
1097
+
1098
+ A compliant SNMP agent may wish to conserve naming scopes by
1099
+ representing multiple logical entities in a single 'default'
1100
+ naming scope. This is possible when the logical entities,
1101
+ represented by the same value of entLogicalCommunity, have
1102
+ no object instances in common. For example, 'bridge1' and
1103
+ 'repeater1' may be part of the main naming scope, but at
1104
+ least one additional community string is needed to represent
1105
+ 'bridge2' and 'repeater2'.
1106
+
1107
+ Logical entities 'bridge1' and 'repeater1' would be
1108
+ represented by sysOREntries associated with the 'default'
1109
+ naming scope.
1110
+
1111
+ For agents not accessible via SNMPv1 or SNMPv2c, the value
1112
+ of this object is the empty string. This object may also
1113
+ contain an empty string if a community string has not yet
1114
+ been assigned by the agent or if no community string with
1115
+ suitable access rights can be returned for a particular SNMP
1116
+ request.
1117
+
1118
+ Note that this object is deprecated. Agents that implement
1119
+ SNMPv3 access should use the entLogicalContextEngineID and
1120
+ entLogicalContextName objects to identify the context
1121
+ associated with each logical entity. SNMPv3 agents may
1122
+ return a zero-length string for this object or may continue
1123
+ to return a community string (e.g., tri-lingual agent
1124
+ support).""",
1125
+ }, # column
1126
+ "entLogicalTAddress" : {
1127
+ "nodetype" : "column",
1128
+ "moduleName" : "ENTITY-MIB",
1129
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.5",
1130
+ "status" : "current",
1131
+ "syntax" : {
1132
+ "type" : { "module" :"SNMPv2-TC", "name" : "TAddress"},
1133
+ },
1134
+ "access" : "readonly",
1135
+ "description" :
1136
+ """The transport service address by which the logical entity
1137
+ receives network management traffic, formatted according to
1138
+ the corresponding value of entLogicalTDomain.
1139
+
1140
+ For snmpUDPDomain, a TAddress is 6 octets long: the initial
1141
+ 4 octets contain the IP-address in network-byte order, and
1142
+ the last 2 contain the UDP port in network-byte order.
1143
+ Consult RFC 3417 for further information on snmpUDPDomain.""",
1144
+ "reference" :
1145
+ """Transport Mappings for the Simple Network Management
1146
+ Protocol (SNMP), STD 62, RFC 3417.""",
1147
+ }, # column
1148
+ "entLogicalTDomain" : {
1149
+ "nodetype" : "column",
1150
+ "moduleName" : "ENTITY-MIB",
1151
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.6",
1152
+ "status" : "current",
1153
+ "syntax" : {
1154
+ "type" : { "module" :"SNMPv2-TC", "name" : "TDomain"},
1155
+ },
1156
+ "access" : "readonly",
1157
+ "description" :
1158
+ """Indicates the kind of transport service by which the
1159
+ logical entity receives network management traffic.
1160
+ Possible values for this object are presently found in
1161
+ RFC 3417.""",
1162
+ "reference" :
1163
+ """Transport Mappings for the Simple Network Management
1164
+ Protocol (SNMP), STD 62, RFC 3417.""",
1165
+ }, # column
1166
+ "entLogicalContextEngineID" : {
1167
+ "nodetype" : "column",
1168
+ "moduleName" : "ENTITY-MIB",
1169
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.7",
1170
+ "status" : "current",
1171
+ "syntax" : {
1172
+ "type" : { "module" :"ENTITY-MIB", "name" : "SnmpEngineIdOrNone"},
1173
+ },
1174
+ "access" : "readonly",
1175
+ "description" :
1176
+ """The authoritative contextEngineID that can be used to send
1177
+ an SNMP message concerning information held by this logical
1178
+ entity to the address specified by the associated
1179
+ 'entLogicalTAddress/entLogicalTDomain' pair.
1180
+
1181
+ This object, together with the associated
1182
+ entLogicalContextName object, defines the context associated
1183
+ with a particular logical entity and allows access to SNMP
1184
+ engines identified by a contextEngineID and contextName
1185
+ pair.
1186
+
1187
+ If no value has been configured by the agent, a zero-length
1188
+ string is returned, or the agent may choose not to
1189
+ instantiate this object at all.""",
1190
+ }, # column
1191
+ "entLogicalContextName" : {
1192
+ "nodetype" : "column",
1193
+ "moduleName" : "ENTITY-MIB",
1194
+ "oid" : "1.3.6.1.2.1.47.1.2.1.1.8",
1195
+ "status" : "current",
1196
+ "syntax" : {
1197
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1198
+ },
1199
+ "access" : "readonly",
1200
+ "description" :
1201
+ """The contextName that can be used to send an SNMP message
1202
+ concerning information held by this logical entity to the
1203
+ address specified by the associated
1204
+ 'entLogicalTAddress/entLogicalTDomain' pair.
1205
+
1206
+ This object, together with the associated
1207
+ entLogicalContextEngineID object, defines the context
1208
+ associated with a particular logical entity and allows
1209
+ access to SNMP engines identified by a contextEngineID and
1210
+ contextName pair.
1211
+
1212
+ If no value has been configured by the agent, a zero-length
1213
+ string is returned, or the agent may choose not to
1214
+ instantiate this object at all.""",
1215
+ }, # column
1216
+ "entityMapping" : {
1217
+ "nodetype" : "node",
1218
+ "moduleName" : "ENTITY-MIB",
1219
+ "oid" : "1.3.6.1.2.1.47.1.3",
1220
+ }, # node
1221
+ "entLPMappingTable" : {
1222
+ "nodetype" : "table",
1223
+ "moduleName" : "ENTITY-MIB",
1224
+ "oid" : "1.3.6.1.2.1.47.1.3.1",
1225
+ "status" : "current",
1226
+ "description" :
1227
+ """This table contains zero or more rows of logical entity to
1228
+ physical equipment associations. For each logical entity
1229
+ known by this agent, there are zero or more mappings to the
1230
+ physical resources, which are used to realize that logical
1231
+ entity.
1232
+
1233
+ An agent should limit the number and nature of entries in
1234
+ this table such that only meaningful and non-redundant
1235
+ information is returned. For example, in a system that
1236
+ contains a single power supply, mappings between logical
1237
+ entities and the power supply are not useful and should not
1238
+ be included.
1239
+
1240
+ Also, only the most appropriate physical component, which is
1241
+ closest to the root of a particular containment tree, should
1242
+ be identified in an entLPMapping entry.
1243
+
1244
+ For example, suppose a bridge is realized on a particular
1245
+ module, and all ports on that module are ports on this
1246
+ bridge. A mapping between the bridge and the module would
1247
+ be useful, but additional mappings between the bridge and
1248
+ each of the ports on that module would be redundant (because
1249
+ the entPhysicalContainedIn hierarchy can provide the same
1250
+ information). On the other hand, if more than one bridge
1251
+ were utilizing ports on this module, then mappings between
1252
+ each bridge and the ports it used would be appropriate.
1253
+
1254
+
1255
+
1256
+ Also, in the case of a single backplane repeater, a mapping
1257
+ for the backplane to the single repeater entity is not
1258
+ necessary.""",
1259
+ }, # table
1260
+ "entLPMappingEntry" : {
1261
+ "nodetype" : "row",
1262
+ "moduleName" : "ENTITY-MIB",
1263
+ "oid" : "1.3.6.1.2.1.47.1.3.1.1",
1264
+ "status" : "current",
1265
+ "linkage" : [
1266
+ "entLogicalIndex",
1267
+ "entLPPhysicalIndex",
1268
+ ],
1269
+ "description" :
1270
+ """Information about a particular logical-entity-to-physical-
1271
+ equipment association. Note that the nature of the
1272
+ association is not specifically identified in this entry.
1273
+ It is expected that sufficient information exists in the
1274
+ MIB modules used to manage a particular logical entity to
1275
+ infer how physical component information is utilized.""",
1276
+ }, # row
1277
+ "entLPPhysicalIndex" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "ENTITY-MIB",
1280
+ "oid" : "1.3.6.1.2.1.47.1.3.1.1.1",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndex"},
1284
+ },
1285
+ "access" : "readonly",
1286
+ "description" :
1287
+ """The value of this object identifies the index value of a
1288
+ particular entPhysicalEntry associated with the indicated
1289
+ entLogicalEntity.""",
1290
+ }, # column
1291
+ "entAliasMappingTable" : {
1292
+ "nodetype" : "table",
1293
+ "moduleName" : "ENTITY-MIB",
1294
+ "oid" : "1.3.6.1.2.1.47.1.3.2",
1295
+ "status" : "current",
1296
+ "description" :
1297
+ """This table contains zero or more rows, representing
1298
+ mappings of logical entities and physical components to
1299
+ external MIB identifiers. Each physical port in the system
1300
+ may be associated with a mapping to an external identifier,
1301
+ which itself is associated with a particular logical
1302
+
1303
+
1304
+
1305
+
1306
+
1307
+
1308
+ entity's naming scope. A 'wildcard' mechanism is provided
1309
+ to indicate that an identifier is associated with more than
1310
+ one logical entity.""",
1311
+ }, # table
1312
+ "entAliasMappingEntry" : {
1313
+ "nodetype" : "row",
1314
+ "moduleName" : "ENTITY-MIB",
1315
+ "oid" : "1.3.6.1.2.1.47.1.3.2.1",
1316
+ "status" : "current",
1317
+ "linkage" : [
1318
+ "entPhysicalIndex",
1319
+ "entAliasLogicalIndexOrZero",
1320
+ ],
1321
+ "description" :
1322
+ """Information about a particular binding between a
1323
+ logical entity/physical component pair and an external
1324
+ identifier. Each logical entity/physical component pair
1325
+ may be associated with one alias mapping.
1326
+ The logical entity index may also be used as
1327
+ a 'wildcard' (refer to the entAliasLogicalIndexOrZero object
1328
+ DESCRIPTION clause for details.)
1329
+
1330
+ Note that only entPhysicalIndex values that represent
1331
+ physical ports (i.e., associated entPhysicalClass value is
1332
+ 'port(10)') are permitted to exist in this table.""",
1333
+ }, # row
1334
+ "entAliasLogicalIndexOrZero" : {
1335
+ "nodetype" : "column",
1336
+ "moduleName" : "ENTITY-MIB",
1337
+ "oid" : "1.3.6.1.2.1.47.1.3.2.1.1",
1338
+ "status" : "current",
1339
+ "syntax" : {
1340
+ "type" : {
1341
+ "basetype" : "Integer32",
1342
+ "ranges" : [
1343
+ {
1344
+ "min" : "0",
1345
+ "max" : "2147483647"
1346
+ },
1347
+ ],
1348
+ "range" : {
1349
+ "min" : "0",
1350
+ "max" : "2147483647"
1351
+ },
1352
+ },
1353
+ },
1354
+ "access" : "noaccess",
1355
+ "description" :
1356
+ """The value of this object identifies the logical entity
1357
+ that defines the naming scope for the associated instance
1358
+ of the entAliasMappingIdentifier object.
1359
+
1360
+ If this object has a non-zero value, then it identifies the
1361
+ logical entity named by the same value of entLogicalIndex.
1362
+
1363
+ If this object has a value of zero, then the mapping between
1364
+ the physical component and the alias identifier for this
1365
+ entAliasMapping entry is associated with all unspecified
1366
+ logical entities. That is, a value of zero (the default
1367
+ mapping) identifies any logical entity that does not have
1368
+ an explicit entry in this table for a particular
1369
+ entPhysicalIndex/entAliasMappingIdentifier pair.
1370
+
1371
+
1372
+
1373
+ For example, to indicate that a particular interface (e.g.,
1374
+ physical component 33) is identified by the same value of
1375
+ ifIndex for all logical entities, the following instance
1376
+ might exist:
1377
+
1378
+ entAliasMappingIdentifier.33.0 = ifIndex.5
1379
+
1380
+ In the event an entPhysicalEntry is associated differently
1381
+ for some logical entities, additional entAliasMapping
1382
+ entries may exist, e.g.:
1383
+
1384
+ entAliasMappingIdentifier.33.0 = ifIndex.6
1385
+ entAliasMappingIdentifier.33.4 = ifIndex.1
1386
+ entAliasMappingIdentifier.33.5 = ifIndex.1
1387
+ entAliasMappingIdentifier.33.10 = ifIndex.12
1388
+
1389
+ Note that entries with non-zero entAliasLogicalIndexOrZero
1390
+ index values have precedence over zero-indexed entries. In
1391
+ this example, all logical entities except 4, 5, and 10
1392
+ associate physical entity 33 with ifIndex.6.""",
1393
+ }, # column
1394
+ "entAliasMappingIdentifier" : {
1395
+ "nodetype" : "column",
1396
+ "moduleName" : "ENTITY-MIB",
1397
+ "oid" : "1.3.6.1.2.1.47.1.3.2.1.2",
1398
+ "status" : "current",
1399
+ "syntax" : {
1400
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowPointer"},
1401
+ },
1402
+ "access" : "readonly",
1403
+ "description" :
1404
+ """The value of this object identifies a particular conceptual
1405
+ row associated with the indicated entPhysicalIndex and
1406
+ entLogicalIndex pair.
1407
+
1408
+ Because only physical ports are modeled in this table, only
1409
+ entries that represent interfaces or ports are allowed. If
1410
+ an ifEntry exists on behalf of a particular physical port,
1411
+ then this object should identify the associated ifEntry.
1412
+ For repeater ports, the appropriate row in the
1413
+ 'rptrPortGroupTable' should be identified instead.
1414
+
1415
+ For example, suppose a physical port was represented by
1416
+ entPhysicalEntry.3, entLogicalEntry.15 existed for a
1417
+ repeater, and entLogicalEntry.22 existed for a bridge. Then
1418
+ there might be two related instances of
1419
+ entAliasMappingIdentifier:
1420
+
1421
+ entAliasMappingIdentifier.3.15 == rptrPortGroupIndex.5.2
1422
+ entAliasMappingIdentifier.3.22 == ifIndex.17
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+ It is possible that other mappings (besides interfaces and
1429
+ repeater ports) may be defined in the future, as required.
1430
+
1431
+ Bridge ports are identified by examining the Bridge MIB and
1432
+ appropriate ifEntries associated with each 'dot1dBasePort'
1433
+ and are thus not represented in this table.""",
1434
+ }, # column
1435
+ "entPhysicalContainsTable" : {
1436
+ "nodetype" : "table",
1437
+ "moduleName" : "ENTITY-MIB",
1438
+ "oid" : "1.3.6.1.2.1.47.1.3.3",
1439
+ "status" : "current",
1440
+ "description" :
1441
+ """A table that exposes the container/'containee'
1442
+ relationships between physical entities. This table
1443
+ provides all the information found by constructing the
1444
+ virtual containment tree for a given entPhysicalTable, but
1445
+ in a more direct format.
1446
+
1447
+ In the event a physical entity is contained by more than one
1448
+ other physical entity (e.g., double-wide modules), this
1449
+ table should include these additional mappings, which cannot
1450
+ be represented in the entPhysicalTable virtual containment
1451
+ tree.""",
1452
+ }, # table
1453
+ "entPhysicalContainsEntry" : {
1454
+ "nodetype" : "row",
1455
+ "moduleName" : "ENTITY-MIB",
1456
+ "oid" : "1.3.6.1.2.1.47.1.3.3.1",
1457
+ "status" : "current",
1458
+ "linkage" : [
1459
+ "entPhysicalIndex",
1460
+ "entPhysicalChildIndex",
1461
+ ],
1462
+ "description" :
1463
+ """A single container/'containee' relationship.""",
1464
+ }, # row
1465
+ "entPhysicalChildIndex" : {
1466
+ "nodetype" : "column",
1467
+ "moduleName" : "ENTITY-MIB",
1468
+ "oid" : "1.3.6.1.2.1.47.1.3.3.1.1",
1469
+ "status" : "current",
1470
+ "syntax" : {
1471
+ "type" : { "module" :"ENTITY-MIB", "name" : "PhysicalIndex"},
1472
+ },
1473
+ "access" : "readonly",
1474
+ "description" :
1475
+ """The value of entPhysicalIndex for the contained physical
1476
+ entity.""",
1477
+ }, # column
1478
+ "entityGeneral" : {
1479
+ "nodetype" : "node",
1480
+ "moduleName" : "ENTITY-MIB",
1481
+ "oid" : "1.3.6.1.2.1.47.1.4",
1482
+ }, # node
1483
+ "entLastChangeTime" : {
1484
+ "nodetype" : "scalar",
1485
+ "moduleName" : "ENTITY-MIB",
1486
+ "oid" : "1.3.6.1.2.1.47.1.4.1",
1487
+ "status" : "current",
1488
+ "syntax" : {
1489
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1490
+ },
1491
+ "access" : "readonly",
1492
+ "description" :
1493
+ """The value of sysUpTime at the time a conceptual row is
1494
+ created, modified, or deleted in any of these tables:
1495
+ - entPhysicalTable
1496
+ - entLogicalTable
1497
+ - entLPMappingTable
1498
+ - entAliasMappingTable
1499
+ - entPhysicalContainsTable""",
1500
+ }, # scalar
1501
+ "entityMIBTraps" : {
1502
+ "nodetype" : "node",
1503
+ "moduleName" : "ENTITY-MIB",
1504
+ "oid" : "1.3.6.1.2.1.47.2",
1505
+ }, # node
1506
+ "entityMIBTrapPrefix" : {
1507
+ "nodetype" : "node",
1508
+ "moduleName" : "ENTITY-MIB",
1509
+ "oid" : "1.3.6.1.2.1.47.2.0",
1510
+ }, # node
1511
+ "entityConformance" : {
1512
+ "nodetype" : "node",
1513
+ "moduleName" : "ENTITY-MIB",
1514
+ "oid" : "1.3.6.1.2.1.47.3",
1515
+ }, # node
1516
+ "entityCompliances" : {
1517
+ "nodetype" : "node",
1518
+ "moduleName" : "ENTITY-MIB",
1519
+ "oid" : "1.3.6.1.2.1.47.3.1",
1520
+ }, # node
1521
+ "entityGroups" : {
1522
+ "nodetype" : "node",
1523
+ "moduleName" : "ENTITY-MIB",
1524
+ "oid" : "1.3.6.1.2.1.47.3.2",
1525
+ }, # node
1526
+ }, # nodes
1527
+
1528
+ "notifications" : {
1529
+ "entConfigChange" : {
1530
+ "nodetype" : "notification",
1531
+ "moduleName" : "ENTITY-MIB",
1532
+ "oid" : "1.3.6.1.2.1.47.2.0.1",
1533
+ "status" : "current",
1534
+ "objects" : {
1535
+ },
1536
+ "description" :
1537
+ """An entConfigChange notification is generated when the value
1538
+ of entLastChangeTime changes. It can be utilized by an NMS
1539
+ to trigger logical/physical entity table maintenance polls.
1540
+
1541
+ An agent should not generate more than one entConfigChange
1542
+ 'notification-event' in a given time interval (five seconds
1543
+ is the suggested default). A 'notification-event' is the
1544
+ transmission of a single trap or inform PDU to a list of
1545
+ notification destinations.
1546
+
1547
+ If additional configuration changes occur within the
1548
+ throttling period, then notification-events for these
1549
+ changes should be suppressed by the agent until the current
1550
+ throttling period expires. At the end of a throttling
1551
+ period, one notification-event should be generated if any
1552
+ configuration changes occurred since the start of the
1553
+ throttling period. In such a case, another throttling
1554
+ period is started right away.
1555
+
1556
+
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+ An NMS should periodically check the value of
1563
+ entLastChangeTime to detect any missed entConfigChange
1564
+ notification-events, e.g., due to throttling or transmission
1565
+ loss.""",
1566
+ }, # notification
1567
+ }, # notifications
1568
+
1569
+ "groups" : {
1570
+ "entityPhysicalGroup" : {
1571
+ "nodetype" : "group",
1572
+ "moduleName" : "ENTITY-MIB",
1573
+ "oid" : "1.3.6.1.2.1.47.3.2.1",
1574
+ "status" : "current",
1575
+ "members" : {
1576
+ "entPhysicalDescr" : {
1577
+ "nodetype" : "member",
1578
+ "module" : "ENTITY-MIB"
1579
+ },
1580
+ "entPhysicalVendorType" : {
1581
+ "nodetype" : "member",
1582
+ "module" : "ENTITY-MIB"
1583
+ },
1584
+ "entPhysicalContainedIn" : {
1585
+ "nodetype" : "member",
1586
+ "module" : "ENTITY-MIB"
1587
+ },
1588
+ "entPhysicalClass" : {
1589
+ "nodetype" : "member",
1590
+ "module" : "ENTITY-MIB"
1591
+ },
1592
+ "entPhysicalParentRelPos" : {
1593
+ "nodetype" : "member",
1594
+ "module" : "ENTITY-MIB"
1595
+ },
1596
+ "entPhysicalName" : {
1597
+ "nodetype" : "member",
1598
+ "module" : "ENTITY-MIB"
1599
+ },
1600
+ }, # members
1601
+ "description" :
1602
+ """The collection of objects used to represent physical
1603
+ system components for which a single agent provides
1604
+ management information.""",
1605
+ }, # group
1606
+ "entityLogicalGroup" : {
1607
+ "nodetype" : "group",
1608
+ "moduleName" : "ENTITY-MIB",
1609
+ "oid" : "1.3.6.1.2.1.47.3.2.2",
1610
+ "status" : "deprecated",
1611
+ "members" : {
1612
+ "entLogicalDescr" : {
1613
+ "nodetype" : "member",
1614
+ "module" : "ENTITY-MIB"
1615
+ },
1616
+ "entLogicalType" : {
1617
+ "nodetype" : "member",
1618
+ "module" : "ENTITY-MIB"
1619
+ },
1620
+ "entLogicalCommunity" : {
1621
+ "nodetype" : "member",
1622
+ "module" : "ENTITY-MIB"
1623
+ },
1624
+ "entLogicalTAddress" : {
1625
+ "nodetype" : "member",
1626
+ "module" : "ENTITY-MIB"
1627
+ },
1628
+ "entLogicalTDomain" : {
1629
+ "nodetype" : "member",
1630
+ "module" : "ENTITY-MIB"
1631
+ },
1632
+ }, # members
1633
+ "description" :
1634
+ """The collection of objects used to represent the list of
1635
+ logical entities for which a single agent provides
1636
+ management information.""",
1637
+ }, # group
1638
+ "entityMappingGroup" : {
1639
+ "nodetype" : "group",
1640
+ "moduleName" : "ENTITY-MIB",
1641
+ "oid" : "1.3.6.1.2.1.47.3.2.3",
1642
+ "status" : "current",
1643
+ "members" : {
1644
+ "entLPPhysicalIndex" : {
1645
+ "nodetype" : "member",
1646
+ "module" : "ENTITY-MIB"
1647
+ },
1648
+ "entAliasMappingIdentifier" : {
1649
+ "nodetype" : "member",
1650
+ "module" : "ENTITY-MIB"
1651
+ },
1652
+ "entPhysicalChildIndex" : {
1653
+ "nodetype" : "member",
1654
+ "module" : "ENTITY-MIB"
1655
+ },
1656
+ }, # members
1657
+ "description" :
1658
+ """The collection of objects used to represent the
1659
+ associations between multiple logical entities, physical
1660
+ components, interfaces, and port identifiers for which a
1661
+ single agent provides management information.""",
1662
+ }, # group
1663
+ "entityGeneralGroup" : {
1664
+ "nodetype" : "group",
1665
+ "moduleName" : "ENTITY-MIB",
1666
+ "oid" : "1.3.6.1.2.1.47.3.2.4",
1667
+ "status" : "current",
1668
+ "members" : {
1669
+ "entLastChangeTime" : {
1670
+ "nodetype" : "member",
1671
+ "module" : "ENTITY-MIB"
1672
+ },
1673
+ }, # members
1674
+ "description" :
1675
+ """The collection of objects used to represent general entity
1676
+ information for which a single agent provides management
1677
+ information.""",
1678
+ }, # group
1679
+ "entityNotificationsGroup" : {
1680
+ "nodetype" : "group",
1681
+ "moduleName" : "ENTITY-MIB",
1682
+ "oid" : "1.3.6.1.2.1.47.3.2.5",
1683
+ "status" : "current",
1684
+ "members" : {
1685
+ "entConfigChange" : {
1686
+ "nodetype" : "member",
1687
+ "module" : "ENTITY-MIB"
1688
+ },
1689
+ }, # members
1690
+ "description" :
1691
+ """The collection of notifications used to indicate Entity MIB
1692
+ data consistency and general status information.""",
1693
+ }, # group
1694
+ "entityPhysical2Group" : {
1695
+ "nodetype" : "group",
1696
+ "moduleName" : "ENTITY-MIB",
1697
+ "oid" : "1.3.6.1.2.1.47.3.2.6",
1698
+ "status" : "current",
1699
+ "members" : {
1700
+ "entPhysicalHardwareRev" : {
1701
+ "nodetype" : "member",
1702
+ "module" : "ENTITY-MIB"
1703
+ },
1704
+ "entPhysicalFirmwareRev" : {
1705
+ "nodetype" : "member",
1706
+ "module" : "ENTITY-MIB"
1707
+ },
1708
+ "entPhysicalSoftwareRev" : {
1709
+ "nodetype" : "member",
1710
+ "module" : "ENTITY-MIB"
1711
+ },
1712
+ "entPhysicalSerialNum" : {
1713
+ "nodetype" : "member",
1714
+ "module" : "ENTITY-MIB"
1715
+ },
1716
+ "entPhysicalMfgName" : {
1717
+ "nodetype" : "member",
1718
+ "module" : "ENTITY-MIB"
1719
+ },
1720
+ "entPhysicalModelName" : {
1721
+ "nodetype" : "member",
1722
+ "module" : "ENTITY-MIB"
1723
+ },
1724
+ "entPhysicalAlias" : {
1725
+ "nodetype" : "member",
1726
+ "module" : "ENTITY-MIB"
1727
+ },
1728
+ "entPhysicalAssetID" : {
1729
+ "nodetype" : "member",
1730
+ "module" : "ENTITY-MIB"
1731
+ },
1732
+ "entPhysicalIsFRU" : {
1733
+ "nodetype" : "member",
1734
+ "module" : "ENTITY-MIB"
1735
+ },
1736
+ }, # members
1737
+ "description" :
1738
+ """The collection of objects used to represent physical
1739
+ system components for which a single agent provides
1740
+ management information. This group augments the objects
1741
+ contained in the entityPhysicalGroup.""",
1742
+ }, # group
1743
+ "entityLogical2Group" : {
1744
+ "nodetype" : "group",
1745
+ "moduleName" : "ENTITY-MIB",
1746
+ "oid" : "1.3.6.1.2.1.47.3.2.7",
1747
+ "status" : "current",
1748
+ "members" : {
1749
+ "entLogicalDescr" : {
1750
+ "nodetype" : "member",
1751
+ "module" : "ENTITY-MIB"
1752
+ },
1753
+ "entLogicalType" : {
1754
+ "nodetype" : "member",
1755
+ "module" : "ENTITY-MIB"
1756
+ },
1757
+ "entLogicalTAddress" : {
1758
+ "nodetype" : "member",
1759
+ "module" : "ENTITY-MIB"
1760
+ },
1761
+ "entLogicalTDomain" : {
1762
+ "nodetype" : "member",
1763
+ "module" : "ENTITY-MIB"
1764
+ },
1765
+ "entLogicalContextEngineID" : {
1766
+ "nodetype" : "member",
1767
+ "module" : "ENTITY-MIB"
1768
+ },
1769
+ "entLogicalContextName" : {
1770
+ "nodetype" : "member",
1771
+ "module" : "ENTITY-MIB"
1772
+ },
1773
+ }, # members
1774
+ "description" :
1775
+ """The collection of objects used to represent the
1776
+ list of logical entities for which a single SNMP entity
1777
+ provides management information.""",
1778
+ }, # group
1779
+ "entityPhysical3Group" : {
1780
+ "nodetype" : "group",
1781
+ "moduleName" : "ENTITY-MIB",
1782
+ "oid" : "1.3.6.1.2.1.47.3.2.8",
1783
+ "status" : "current",
1784
+ "members" : {
1785
+ "entPhysicalMfgDate" : {
1786
+ "nodetype" : "member",
1787
+ "module" : "ENTITY-MIB"
1788
+ },
1789
+ "entPhysicalUris" : {
1790
+ "nodetype" : "member",
1791
+ "module" : "ENTITY-MIB"
1792
+ },
1793
+ }, # members
1794
+ "description" :
1795
+ """The collection of objects used to represent physical
1796
+ system components for which a single agent provides
1797
+ management information. This group augments the objects
1798
+ contained in the entityPhysicalGroup.""",
1799
+ }, # group
1800
+ "entityPhysical4Group" : {
1801
+ "nodetype" : "group",
1802
+ "moduleName" : "ENTITY-MIB",
1803
+ "oid" : "1.3.6.1.2.1.47.3.2.9",
1804
+ "status" : "current",
1805
+ "members" : {
1806
+ "entPhysicalUUID" : {
1807
+ "nodetype" : "member",
1808
+ "module" : "ENTITY-MIB"
1809
+ },
1810
+ }, # members
1811
+ "description" :
1812
+ """The collection of objects used to represent physical
1813
+ system components for which a single agent provides
1814
+ management information. This group augments the objects
1815
+ contained in the entityPhysicalGroup and
1816
+ entityPhysicalCRGroup.""",
1817
+ }, # group
1818
+ "entityPhysicalCRGroup" : {
1819
+ "nodetype" : "group",
1820
+ "moduleName" : "ENTITY-MIB",
1821
+ "oid" : "1.3.6.1.2.1.47.3.2.10",
1822
+ "status" : "current",
1823
+ "members" : {
1824
+ "entPhysicalClass" : {
1825
+ "nodetype" : "member",
1826
+ "module" : "ENTITY-MIB"
1827
+ },
1828
+ "entPhysicalName" : {
1829
+ "nodetype" : "member",
1830
+ "module" : "ENTITY-MIB"
1831
+ },
1832
+ }, # members
1833
+ "description" :
1834
+ """The collection of objects used to represent physical
1835
+ system components for constrained resourced devices,
1836
+ for which a single agent provides management
1837
+ information.""",
1838
+ }, # group
1839
+ }, # groups
1840
+
1841
+ "compliances" : {
1842
+ "entityCompliance" : {
1843
+ "nodetype" : "compliance",
1844
+ "moduleName" : "ENTITY-MIB",
1845
+ "oid" : "1.3.6.1.2.1.47.3.1.1",
1846
+ "status" : "deprecated",
1847
+ "description" :
1848
+ """The compliance statement for SNMP entities that implement
1849
+ version 1 of the Entity MIB.""",
1850
+ "requires" : {
1851
+ "entityPhysicalGroup" : {
1852
+ "nodetype" : "mandatory",
1853
+ "module" : "ENTITY-MIB"
1854
+ },
1855
+ "entityLogicalGroup" : {
1856
+ "nodetype" : "mandatory",
1857
+ "module" : "ENTITY-MIB"
1858
+ },
1859
+ "entityMappingGroup" : {
1860
+ "nodetype" : "mandatory",
1861
+ "module" : "ENTITY-MIB"
1862
+ },
1863
+ "entityGeneralGroup" : {
1864
+ "nodetype" : "mandatory",
1865
+ "module" : "ENTITY-MIB"
1866
+ },
1867
+ "entityNotificationsGroup" : {
1868
+ "nodetype" : "mandatory",
1869
+ "module" : "ENTITY-MIB"
1870
+ },
1871
+ }, # requires
1872
+ }, # compliance
1873
+ "entity2Compliance" : {
1874
+ "nodetype" : "compliance",
1875
+ "moduleName" : "ENTITY-MIB",
1876
+ "oid" : "1.3.6.1.2.1.47.3.1.2",
1877
+ "status" : "deprecated",
1878
+ "description" :
1879
+ """The compliance statement for SNMP entities that implement
1880
+ version 2 of the Entity MIB.""",
1881
+ "requires" : {
1882
+ "entityPhysicalGroup" : {
1883
+ "nodetype" : "mandatory",
1884
+ "module" : "ENTITY-MIB"
1885
+ },
1886
+ "entityPhysical2Group" : {
1887
+ "nodetype" : "mandatory",
1888
+ "module" : "ENTITY-MIB"
1889
+ },
1890
+ "entityGeneralGroup" : {
1891
+ "nodetype" : "mandatory",
1892
+ "module" : "ENTITY-MIB"
1893
+ },
1894
+ "entityNotificationsGroup" : {
1895
+ "nodetype" : "mandatory",
1896
+ "module" : "ENTITY-MIB"
1897
+ },
1898
+ "entityLogical2Group" : {
1899
+ "nodetype" : "optional",
1900
+ "module" : "ENTITY-MIB",
1901
+ "description" :
1902
+ """Implementation of this group is not mandatory for agents
1903
+ that model all MIB object instances within a single naming
1904
+ scope.""",
1905
+ },
1906
+ "entityMappingGroup" : {
1907
+ "nodetype" : "optional",
1908
+ "module" : "ENTITY-MIB",
1909
+ "description" :
1910
+ """Implementation of the entPhysicalContainsTable is mandatory
1911
+ for all agents. Implementation of the entLPMappingTable and
1912
+ entAliasMappingTables are not mandatory for agents that
1913
+ model all MIB object instances within a single naming scope.
1914
+
1915
+ Note that the entAliasMappingTable may be useful for all
1916
+ agents; however, implementation of the entityLogicalGroup or
1917
+ entityLogical2Group is required to support this table.""",
1918
+ },
1919
+ }, # requires
1920
+ "refinements" : {
1921
+ "entPhysicalSerialNum" : {
1922
+ "module" : "ENTITY-MIB",
1923
+ "access" : "noaccess",
1924
+ "description" :
1925
+ """Read and write access is not required for agents that
1926
+ cannot identify serial number information for physical
1927
+ entities and/or cannot provide non-volatile storage for
1928
+ NMS-assigned serial numbers.
1929
+
1930
+ Write access is not required for agents that can identify
1931
+ serial number information for physical entities but cannot
1932
+ provide non-volatile storage for NMS-assigned serial
1933
+ numbers.
1934
+
1935
+ Write access is not required for physical entities for which
1936
+ the associated value of the entPhysicalIsFRU object is equal
1937
+ to 'false(2)'.""",
1938
+ },
1939
+ "entPhysicalAlias" : {
1940
+ "module" : "ENTITY-MIB",
1941
+ "access" : "readonly",
1942
+ "description" :
1943
+ """Write access is required only if the associated
1944
+ entPhysicalClass value is equal to 'chassis(3)'.""",
1945
+ },
1946
+ "entPhysicalAssetID" : {
1947
+ "module" : "ENTITY-MIB",
1948
+ "access" : "noaccess",
1949
+ "description" :
1950
+ """Read and write access is not required for agents that
1951
+ cannot provide non-volatile storage for NMS-assigned asset
1952
+ identifiers.
1953
+
1954
+ Write access is not required for physical entities for which
1955
+ the associated value of the entPhysicalIsFRU object is equal
1956
+ to 'false(2)'.""",
1957
+ },
1958
+ "entPhysicalClass" : {
1959
+ "module" : "ENTITY-MIB",
1960
+ "syntax" : {
1961
+ "type" : {
1962
+ "basetype" : "Enumeration",
1963
+ "parent module" : {
1964
+ "name" : "IANA-ENTITY-MIB",
1965
+ "type" : "IANAPhysicalClass",
1966
+ },
1967
+ "other" : {
1968
+ "nodetype" : "namednumber",
1969
+ "number" : "1"
1970
+ },
1971
+ "unknown" : {
1972
+ "nodetype" : "namednumber",
1973
+ "number" : "2"
1974
+ },
1975
+ "chassis" : {
1976
+ "nodetype" : "namednumber",
1977
+ "number" : "3"
1978
+ },
1979
+ "backplane" : {
1980
+ "nodetype" : "namednumber",
1981
+ "number" : "4"
1982
+ },
1983
+ "container" : {
1984
+ "nodetype" : "namednumber",
1985
+ "number" : "5"
1986
+ },
1987
+ "powerSupply" : {
1988
+ "nodetype" : "namednumber",
1989
+ "number" : "6"
1990
+ },
1991
+ "fan" : {
1992
+ "nodetype" : "namednumber",
1993
+ "number" : "7"
1994
+ },
1995
+ "sensor" : {
1996
+ "nodetype" : "namednumber",
1997
+ "number" : "8"
1998
+ },
1999
+ "module" : {
2000
+ "nodetype" : "namednumber",
2001
+ "number" : "9"
2002
+ },
2003
+ "port" : {
2004
+ "nodetype" : "namednumber",
2005
+ "number" : "10"
2006
+ },
2007
+ "stack" : {
2008
+ "nodetype" : "namednumber",
2009
+ "number" : "11"
2010
+ },
2011
+ },
2012
+ }, # syntax
2013
+ "description" :
2014
+ """Implementation of the 'cpu(12)' enumeration is not
2015
+ required.""",
2016
+ },
2017
+ }, # refinements
2018
+
2019
+ }, # compliance
2020
+ "entity3Compliance" : {
2021
+ "nodetype" : "compliance",
2022
+ "moduleName" : "ENTITY-MIB",
2023
+ "oid" : "1.3.6.1.2.1.47.3.1.3",
2024
+ "status" : "deprecated",
2025
+ "description" :
2026
+ """The compliance statement for SNMP entities that implement
2027
+ version 3 of the Entity MIB.""",
2028
+ "requires" : {
2029
+ "entityPhysicalGroup" : {
2030
+ "nodetype" : "mandatory",
2031
+ "module" : "ENTITY-MIB"
2032
+ },
2033
+ "entityPhysical2Group" : {
2034
+ "nodetype" : "mandatory",
2035
+ "module" : "ENTITY-MIB"
2036
+ },
2037
+ "entityPhysical3Group" : {
2038
+ "nodetype" : "mandatory",
2039
+ "module" : "ENTITY-MIB"
2040
+ },
2041
+ "entityGeneralGroup" : {
2042
+ "nodetype" : "mandatory",
2043
+ "module" : "ENTITY-MIB"
2044
+ },
2045
+ "entityNotificationsGroup" : {
2046
+ "nodetype" : "mandatory",
2047
+ "module" : "ENTITY-MIB"
2048
+ },
2049
+ "entityLogical2Group" : {
2050
+ "nodetype" : "optional",
2051
+ "module" : "ENTITY-MIB",
2052
+ "description" :
2053
+ """Implementation of this group is not mandatory for agents
2054
+ that model all MIB object instances within a single naming
2055
+ scope.""",
2056
+ },
2057
+ "entityMappingGroup" : {
2058
+ "nodetype" : "optional",
2059
+ "module" : "ENTITY-MIB",
2060
+ "description" :
2061
+ """Implementation of the entPhysicalContainsTable is mandatory
2062
+ for all agents. Implementation of the entLPMappingTable and
2063
+ entAliasMappingTables are not mandatory for agents that
2064
+ model all MIB object instances within a single naming scope.
2065
+
2066
+ Note that the entAliasMappingTable may be useful for all
2067
+ agents; however, implementation of the entityLogicalGroup or
2068
+ entityLogical2Group is required to support this table.""",
2069
+ },
2070
+ }, # requires
2071
+ "refinements" : {
2072
+ "entPhysicalSerialNum" : {
2073
+ "module" : "ENTITY-MIB",
2074
+ "access" : "noaccess",
2075
+ "description" :
2076
+ """Read and write access is not required for agents that
2077
+ cannot identify serial number information for physical
2078
+ entities and/or cannot provide non-volatile storage for
2079
+ NMS-assigned serial numbers.
2080
+
2081
+ Write access is not required for agents that can identify
2082
+ serial number information for physical entities but cannot
2083
+ provide non-volatile storage for NMS-assigned serial
2084
+ numbers.
2085
+
2086
+ Write access is not required for physical entities for
2087
+ which the associated value of the entPhysicalIsFRU object
2088
+ is equal to 'false(2)'.""",
2089
+ },
2090
+ "entPhysicalAlias" : {
2091
+ "module" : "ENTITY-MIB",
2092
+ "access" : "readonly",
2093
+ "description" :
2094
+ """Write access is required only if the associated
2095
+ entPhysicalClass value is equal to 'chassis(3)'.""",
2096
+ },
2097
+ "entPhysicalAssetID" : {
2098
+ "module" : "ENTITY-MIB",
2099
+ "access" : "noaccess",
2100
+ "description" :
2101
+ """Read and write access is not required for agents that
2102
+ cannot provide non-volatile storage for NMS-assigned asset
2103
+ identifiers.
2104
+
2105
+ Write access is not required for physical entities for which
2106
+ the associated value of entPhysicalIsFRU is equal to
2107
+ 'false(2)'.""",
2108
+ },
2109
+ }, # refinements
2110
+
2111
+ }, # compliance
2112
+ "entity4Compliance" : {
2113
+ "nodetype" : "compliance",
2114
+ "moduleName" : "ENTITY-MIB",
2115
+ "oid" : "1.3.6.1.2.1.47.3.1.4",
2116
+ "status" : "current",
2117
+ "description" :
2118
+ """The compliance statement for SNMP entities that implement
2119
+ the full version 4 (full compliance) of the Entity MIB.""",
2120
+ "requires" : {
2121
+ "entityPhysicalGroup" : {
2122
+ "nodetype" : "mandatory",
2123
+ "module" : "ENTITY-MIB"
2124
+ },
2125
+ "entityPhysical2Group" : {
2126
+ "nodetype" : "mandatory",
2127
+ "module" : "ENTITY-MIB"
2128
+ },
2129
+ "entityPhysical3Group" : {
2130
+ "nodetype" : "mandatory",
2131
+ "module" : "ENTITY-MIB"
2132
+ },
2133
+ "entityGeneralGroup" : {
2134
+ "nodetype" : "mandatory",
2135
+ "module" : "ENTITY-MIB"
2136
+ },
2137
+ "entityNotificationsGroup" : {
2138
+ "nodetype" : "mandatory",
2139
+ "module" : "ENTITY-MIB"
2140
+ },
2141
+ "entityPhysical4Group" : {
2142
+ "nodetype" : "mandatory",
2143
+ "module" : "ENTITY-MIB"
2144
+ },
2145
+ "entityLogical2Group" : {
2146
+ "nodetype" : "optional",
2147
+ "module" : "ENTITY-MIB",
2148
+ "description" :
2149
+ """Implementation of this group is not mandatory for agents
2150
+ that model all MIB object instances within a single naming
2151
+ scope.""",
2152
+ },
2153
+ "entityMappingGroup" : {
2154
+ "nodetype" : "optional",
2155
+ "module" : "ENTITY-MIB",
2156
+ "description" :
2157
+ """Implementation of the entPhysicalContainsTable is mandatory
2158
+ for all agents. Implementation of the entLPMappingTable and
2159
+ entAliasMappingTables are not mandatory for agents that
2160
+ model all MIB object instances within a single naming scope.
2161
+
2162
+ Note that the entAliasMappingTable may be useful for all
2163
+ agents; however, implementation of the entityLogicalGroup or
2164
+ entityLogical2Group is required to support this table.""",
2165
+ },
2166
+ }, # requires
2167
+ "refinements" : {
2168
+ "entPhysicalSerialNum" : {
2169
+ "module" : "ENTITY-MIB",
2170
+ "access" : "noaccess",
2171
+ "description" :
2172
+ """Read and write access is not required for agents that
2173
+ cannot identify serial number information for physical
2174
+ entities and/or cannot provide non-volatile storage for
2175
+ NMS-assigned serial numbers.
2176
+
2177
+ Write access is not required for agents that can identify
2178
+ serial number information for physical entities but cannot
2179
+ provide non-volatile storage for NMS-assigned serial
2180
+ numbers.
2181
+
2182
+ Write access is not required for physical entities for
2183
+ which the associated value of the entPhysicalIsFRU object
2184
+ is equal to 'false(2)'.""",
2185
+ },
2186
+ "entPhysicalAlias" : {
2187
+ "module" : "ENTITY-MIB",
2188
+ "access" : "readonly",
2189
+ "description" :
2190
+ """Write access is required only if the associated
2191
+ entPhysicalClass value is equal to 'chassis(3)'.""",
2192
+ },
2193
+ "entPhysicalAssetID" : {
2194
+ "module" : "ENTITY-MIB",
2195
+ "access" : "noaccess",
2196
+ "description" :
2197
+ """Read and write access is not required for agents that
2198
+ cannot provide non-volatile storage for NMS-assigned asset
2199
+ identifiers.
2200
+
2201
+
2202
+
2203
+
2204
+
2205
+
2206
+ Write access is not required for physical entities for which
2207
+ the associated value of entPhysicalIsFRU is equal to
2208
+ 'false(2)'.""",
2209
+ },
2210
+ }, # refinements
2211
+
2212
+ }, # compliance
2213
+ "entity4CRCompliance" : {
2214
+ "nodetype" : "compliance",
2215
+ "moduleName" : "ENTITY-MIB",
2216
+ "oid" : "1.3.6.1.2.1.47.3.1.5",
2217
+ "status" : "current",
2218
+ "description" :
2219
+ """The compliance statement for SNMP entities that implement
2220
+ version 4 of the Entity MIB on devices with constrained
2221
+ resources.""",
2222
+ "requires" : {
2223
+ "entityPhysicalCRGroup" : {
2224
+ "nodetype" : "mandatory",
2225
+ "module" : "ENTITY-MIB"
2226
+ },
2227
+ "entityPhysical4Group" : {
2228
+ "nodetype" : "mandatory",
2229
+ "module" : "ENTITY-MIB"
2230
+ },
2231
+ }, # requires
2232
+ }, # compliance
2233
+ }, # compliances
2234
+
2235
+ }