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,1889 @@
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 T11-FC-FSPF-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/T11-FC-FSPF-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "T11-FC-FSPF-MIB",
11
+
12
+ "T11-FC-FSPF-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """T11""",
17
+ "contact" :
18
+ """Claudio DeSanti
19
+ Cisco Systems, Inc.
20
+ 170 West Tasman Drive
21
+ San Jose, CA 95134 USA
22
+ EMail: cds@cisco.com
23
+
24
+
25
+
26
+
27
+ Keith McCloghrie
28
+ Cisco Systems, Inc.
29
+ 170 West Tasman Drive
30
+ San Jose, CA USA 95134
31
+ Email: kzm@cisco.com""",
32
+ "description" :
33
+ """The MIB module for managing the Fabric Shortest Path
34
+ First (FSPF) protocol. FSPF is specified in FC-SW-4.
35
+
36
+ Copyright (C) The Internet Society (2006). This version of
37
+ this MIB module is part of RFC 4626; see the RFC itself for
38
+ full legal notices.""",
39
+ "revisions" : (
40
+ {
41
+ "date" : "2006-08-14 00:00",
42
+ "description" :
43
+ """Initial version of this MIB module published as RFC4626.""",
44
+ },
45
+ ),
46
+ "identity node" : "t11FcFspfMIB",
47
+ },
48
+
49
+ "imports" : (
50
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
51
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
52
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
53
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
56
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
57
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
58
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
59
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
60
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
61
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
62
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
63
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
64
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
65
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
66
+ {"module" : "IF-MIB", "name" : "ifIndex"},
67
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
68
+ {"module" : "FC-MGMT-MIB", "name" : "fcmInstanceIndex"},
69
+ {"module" : "FC-MGMT-MIB", "name" : "fcmSwitchIndex"},
70
+ {"module" : "FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
71
+ {"module" : "T11-TC-MIB", "name" : "T11FabricIndex"},
72
+ {"module" : "T11-FC-FABRIC-ADDR-MGR-MIB", "name" : "t11FamConfigDomainId"},
73
+ ),
74
+
75
+ "typedefs" : {
76
+ "T11FspfLsrType" : {
77
+ "basetype" : "Integer32",
78
+ "status" : "current",
79
+ "ranges" : [
80
+ {
81
+ "min" : "0",
82
+ "max" : "255"
83
+ },
84
+ ],
85
+ "range" : {
86
+ "min" : "0",
87
+ "max" : "255"
88
+ },
89
+ "description" :
90
+ """Type of the Link State Record.
91
+
92
+ FC-SW-4 defines two types of LSRs and allows for the
93
+ possibility for more will be defined in the future:
94
+
95
+ 01 - Switch Link Record
96
+ 02 - Obsolete
97
+ 240 - 255 - Vendor Specific
98
+ others - Reserved.""",
99
+ "reference" :
100
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
101
+ ANSI INCITS 418-2006, section 6.1.9.3.""",
102
+ },
103
+ "T11FspfLinkType" : {
104
+ "basetype" : "Integer32",
105
+ "status" : "current",
106
+ "ranges" : [
107
+ {
108
+ "min" : "0",
109
+ "max" : "255"
110
+ },
111
+ ],
112
+ "range" : {
113
+ "min" : "0",
114
+ "max" : "255"
115
+ },
116
+ "description" :
117
+ """Type of an the FSPF Link. Presently defined values:
118
+
119
+ 1 - Point-to-Point
120
+ 240-255 - Vendor Specific
121
+ all others - Reserved.""",
122
+ "reference" :
123
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
124
+ ANSI INCITS 418-2006, section 6.1.9.4.""",
125
+ },
126
+ "T11FspfInterfaceState" : {
127
+ "basetype" : "Enumeration",
128
+ "status" : "current",
129
+ "down" : {
130
+ "nodetype" : "namednumber",
131
+ "number" : "1"
132
+ },
133
+ "init" : {
134
+ "nodetype" : "namednumber",
135
+ "number" : "2"
136
+ },
137
+ "dbExchange" : {
138
+ "nodetype" : "namednumber",
139
+ "number" : "3"
140
+ },
141
+ "dbAckwait" : {
142
+ "nodetype" : "namednumber",
143
+ "number" : "4"
144
+ },
145
+ "dbWait" : {
146
+ "nodetype" : "namednumber",
147
+ "number" : "5"
148
+ },
149
+ "full" : {
150
+ "nodetype" : "namednumber",
151
+ "number" : "6"
152
+ },
153
+ "description" :
154
+ """The state of the FSPF Neighbor Finite State Machine
155
+ for the neighbor (switch) on a particular interface.
156
+ Possible values are :
157
+
158
+ down(1) - Down
159
+ init(2) - Init
160
+ dbExchange(3) - Database Exchange
161
+ dbAckwait(4) - Database AckWait
162
+ dbWait(5) - Database Wait
163
+ full(6) - Full (Connected)""",
164
+ "reference" :
165
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
166
+ ANSI INCITS 418-2006, section 8.7.""",
167
+ },
168
+ "T11FspfLastCreationTime" : {
169
+ "basetype" : "Unsigned32",
170
+ "status" : "current",
171
+ "parent module" : {
172
+ "name" : "SNMPv2-SMI",
173
+ "type" : "TimeTicks",
174
+ },
175
+ "description" :
176
+ """This TC describes an object that stores the last time
177
+ it, and the row containing it, was created.
178
+
179
+ This can be used by management applications to determine
180
+ that a row has been deleted and re-created between reads,
181
+ causing an otherwise undetectable discontinuity in the
182
+ data.""",
183
+ },
184
+ }, # typedefs
185
+
186
+ "nodes" : {
187
+ "t11FcFspfMIB" : {
188
+ "nodetype" : "node",
189
+ "moduleName" : "T11-FC-FSPF-MIB",
190
+ "oid" : "1.3.6.1.2.1.143",
191
+ "status" : "current",
192
+ }, # node
193
+ "t11FspfNotifications" : {
194
+ "nodetype" : "node",
195
+ "moduleName" : "T11-FC-FSPF-MIB",
196
+ "oid" : "1.3.6.1.2.1.143.0",
197
+ }, # node
198
+ "t11FspfObjects" : {
199
+ "nodetype" : "node",
200
+ "moduleName" : "T11-FC-FSPF-MIB",
201
+ "oid" : "1.3.6.1.2.1.143.1",
202
+ }, # node
203
+ "t11FspfConfiguration" : {
204
+ "nodetype" : "node",
205
+ "moduleName" : "T11-FC-FSPF-MIB",
206
+ "oid" : "1.3.6.1.2.1.143.1.1",
207
+ }, # node
208
+ "t11FspfTable" : {
209
+ "nodetype" : "table",
210
+ "moduleName" : "T11-FC-FSPF-MIB",
211
+ "oid" : "1.3.6.1.2.1.143.1.1.1",
212
+ "status" : "current",
213
+ "description" :
214
+ """This table allows the users to configure and monitor FSPF's
215
+ per-Fabric parameters and statistics on all Fabrics known to
216
+ locally managed switches.
217
+
218
+ Entries are created/removed by the agent if and when
219
+ (Virtual) Fabrics are created/deleted.""",
220
+ }, # table
221
+ "t11FspfEntry" : {
222
+ "nodetype" : "row",
223
+ "moduleName" : "T11-FC-FSPF-MIB",
224
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1",
225
+ "status" : "current",
226
+ "linkage" : [
227
+ "fcmInstanceIndex",
228
+ "fcmSwitchIndex",
229
+ "t11FspfFabricIndex",
230
+ ],
231
+ "description" :
232
+ """An entry containing FSPF variables, parameters, and
233
+ statistics on a particular switch (identified by values
234
+ of fcmInstanceIndex and fcmSwitchIndex) for a particular
235
+ Fabric (identified by a t11FspfFabricIndex value).
236
+
237
+ (Note that the local switch's per-fabric Domain-ID is
238
+ available in t11FamConfigDomainId, which is defined in
239
+ T11-FC-FABRIC-ADDR-MGR-MIB.)""",
240
+ }, # row
241
+ "t11FspfFabricIndex" : {
242
+ "nodetype" : "column",
243
+ "moduleName" : "T11-FC-FSPF-MIB",
244
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.1",
245
+ "status" : "current",
246
+ "syntax" : {
247
+ "type" : { "module" :"T11-TC-MIB", "name" : "T11FabricIndex"},
248
+ },
249
+ "access" : "noaccess",
250
+ "description" :
251
+ """A unique index value that uniquely identifies a
252
+ particular Fabric.
253
+
254
+ In a Fabric conformant to FC-SW-4, multiple Virtual Fabrics
255
+ can operate within one (or more) physical infrastructures.
256
+ In such a case, index value is used to uniquely identify a
257
+ particular Fabric within a physical infrastructure.
258
+
259
+ In a Fabric that has (can have) only a single Fabric
260
+ operating within the physical infrastructure, the
261
+ value of this Fabric Index will always be 1.""",
262
+ }, # column
263
+ "t11FspfMinLsArrival" : {
264
+ "nodetype" : "column",
265
+ "moduleName" : "T11-FC-FSPF-MIB",
266
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.2",
267
+ "status" : "current",
268
+ "syntax" : {
269
+ "type" : {
270
+ "basetype" : "Unsigned32",
271
+ "ranges" : [
272
+ {
273
+ "min" : "0",
274
+ "max" : "65535"
275
+ },
276
+ ],
277
+ "range" : {
278
+ "min" : "0",
279
+ "max" : "65535"
280
+ },
281
+ },
282
+ },
283
+ "access" : "readwrite",
284
+ "default" : "1000",
285
+ "units" : "milliSeconds",
286
+ "description" :
287
+ """The minimum time after accepting a Link State Record
288
+ (LSR) on this Fabric before accepting another update of
289
+ the same LSR on the same Fabric.
290
+
291
+ An LSR update that is not accepted because of this time
292
+ interval is discarded.""",
293
+ "reference" :
294
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
295
+ ANSI INCITS 418-2006, sections 8.6.4.5 & 15.1.""",
296
+ }, # column
297
+ "t11FspfMinLsInterval" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "T11-FC-FSPF-MIB",
300
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.3",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : {
304
+ "basetype" : "Unsigned32",
305
+ "ranges" : [
306
+ {
307
+ "min" : "0",
308
+ "max" : "65535"
309
+ },
310
+ ],
311
+ "range" : {
312
+ "min" : "0",
313
+ "max" : "65535"
314
+ },
315
+ },
316
+ },
317
+ "access" : "readwrite",
318
+ "default" : "5000",
319
+ "units" : "milliSeconds",
320
+ "description" :
321
+ """The minimum time after this switch sends an LSR on this
322
+ Fabric before it will send another update of the same LSR
323
+ on the same Fabric.""",
324
+ "reference" :
325
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
326
+ ANSI INCITS 418-2006, section 15.1.""",
327
+ }, # column
328
+ "t11FspfLsRefreshTime" : {
329
+ "nodetype" : "column",
330
+ "moduleName" : "T11-FC-FSPF-MIB",
331
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.4",
332
+ "status" : "current",
333
+ "syntax" : {
334
+ "type" : { "module" :"", "name" : "Unsigned32"},
335
+ },
336
+ "access" : "readonly",
337
+ "default" : "30",
338
+ "units" : "Minutes",
339
+ "description" :
340
+ """The interval between transmission of refresh LSRs on this
341
+ Fabric.""",
342
+ "reference" :
343
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
344
+ ANSI INCITS 418-2006, sections 8.5.1 & 15.1.""",
345
+ }, # column
346
+ "t11FspfMaxAge" : {
347
+ "nodetype" : "column",
348
+ "moduleName" : "T11-FC-FSPF-MIB",
349
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.5",
350
+ "status" : "current",
351
+ "syntax" : {
352
+ "type" : { "module" :"", "name" : "Unsigned32"},
353
+ },
354
+ "access" : "readonly",
355
+ "default" : "60",
356
+ "units" : "Minutes",
357
+ "description" :
358
+ """The maximum age an LSR will be retained in the FSPF
359
+ database on this Fabric. An LSR is removed from the
360
+ database after MaxAge is reached.""",
361
+ "reference" :
362
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
363
+ ANSI INCITS 418-2006, section 15.1.""",
364
+ }, # column
365
+ "t11FspfMaxAgeDiscards" : {
366
+ "nodetype" : "column",
367
+ "moduleName" : "T11-FC-FSPF-MIB",
368
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.6",
369
+ "status" : "current",
370
+ "syntax" : {
371
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
372
+ },
373
+ "access" : "readonly",
374
+ "description" :
375
+ """The number of LSRs discarded due to their age reaching
376
+ t11FspfMaxAge in this Fabric. The last discontinuity of
377
+ this counter is indicated by t11FspfCreateTime.""",
378
+ }, # column
379
+ "t11FspfPathComputations" : {
380
+ "nodetype" : "column",
381
+ "moduleName" : "T11-FC-FSPF-MIB",
382
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.7",
383
+ "status" : "current",
384
+ "syntax" : {
385
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
386
+ },
387
+ "access" : "readonly",
388
+ "description" :
389
+ """The number of times that the path computation algorithm
390
+ has been invoked by this Switch on this Fabric to compute
391
+ a set of minimum cost paths for this Fabric. The last
392
+
393
+
394
+
395
+ discontinuity of this counter is indicated by
396
+ t11FspfCreateTime.""",
397
+ "reference" :
398
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
399
+ ANSI INCITS 418-2006, section 8.1.1.""",
400
+ }, # column
401
+ "t11FspfChecksumErrors" : {
402
+ "nodetype" : "column",
403
+ "moduleName" : "T11-FC-FSPF-MIB",
404
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.8",
405
+ "status" : "current",
406
+ "syntax" : {
407
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
408
+ },
409
+ "access" : "readonly",
410
+ "description" :
411
+ """The number of FSPF checksum errors that were detected
412
+ locally (and therefore discarded) on this Fabric.
413
+ The last discontinuity of this counter is indicated by
414
+ t11FspfCreateTime.""",
415
+ "reference" :
416
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
417
+ ANSI INCITS 418-2006, section 8.5.4.""",
418
+ }, # column
419
+ "t11FspfLsrs" : {
420
+ "nodetype" : "column",
421
+ "moduleName" : "T11-FC-FSPF-MIB",
422
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.9",
423
+ "status" : "current",
424
+ "syntax" : {
425
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
426
+ },
427
+ "access" : "readonly",
428
+ "description" :
429
+ """The current number of entries for this Fabric in the
430
+ t11FspfLsrTable.""",
431
+ }, # column
432
+ "t11FspfCreateTime" : {
433
+ "nodetype" : "column",
434
+ "moduleName" : "T11-FC-FSPF-MIB",
435
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.10",
436
+ "status" : "current",
437
+ "syntax" : {
438
+ "type" : { "module" :"T11-FC-FSPF-MIB", "name" : "T11FspfLastCreationTime"},
439
+ },
440
+ "access" : "readonly",
441
+ "description" :
442
+ """The value of sysUpTime when this entry was last created.""",
443
+ }, # column
444
+ "t11FspfAdminStatus" : {
445
+ "nodetype" : "column",
446
+ "moduleName" : "T11-FC-FSPF-MIB",
447
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.11",
448
+ "status" : "current",
449
+ "syntax" : {
450
+ "type" : {
451
+ "basetype" : "Enumeration",
452
+ "up" : {
453
+ "nodetype" : "namednumber",
454
+ "number" : "1"
455
+ },
456
+ "down" : {
457
+ "nodetype" : "namednumber",
458
+ "number" : "2"
459
+ },
460
+ },
461
+ },
462
+ "access" : "readwrite",
463
+ "default" : "up",
464
+ "description" :
465
+ """The desired state of FSPF in this Fabric. If value of
466
+ this object is set to 'up', then FSPF is enabled in
467
+ this Fabric. If set to 'down', then FSPF is disabled
468
+ in this Fabric -- when FSPF is disabled, FSPF provides
469
+
470
+
471
+
472
+ no routes to be included in the T11-FC-ROUTE-MIB module.
473
+ (see the T11-FC-ROUTE-MIB).""",
474
+ "reference" :
475
+ """T11-FC-ROUTE-MIB, The Fibre Channel Routing
476
+ Information MIB, RFC4625.""",
477
+ }, # column
478
+ "t11FspfOperStatus" : {
479
+ "nodetype" : "column",
480
+ "moduleName" : "T11-FC-FSPF-MIB",
481
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.12",
482
+ "status" : "current",
483
+ "syntax" : {
484
+ "type" : {
485
+ "basetype" : "Enumeration",
486
+ "up" : {
487
+ "nodetype" : "namednumber",
488
+ "number" : "1"
489
+ },
490
+ "down" : {
491
+ "nodetype" : "namednumber",
492
+ "number" : "2"
493
+ },
494
+ },
495
+ },
496
+ "access" : "readonly",
497
+ "description" :
498
+ """State of FSPF in this Fabric. If 't11FspfAdminStatus' is
499
+ 'down', then the 't11FspfOperStatus' should be 'down'.
500
+ If 't11FspfAdminStatus' is changed to 'up', then
501
+ 't11FspfOperStatus' should change to 'up' as and when
502
+ FSPF is active in this Fabric.""",
503
+ }, # column
504
+ "t11FspfNbrStateChangNotifyEnable" : {
505
+ "nodetype" : "column",
506
+ "moduleName" : "T11-FC-FSPF-MIB",
507
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.13",
508
+ "status" : "current",
509
+ "syntax" : {
510
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
511
+ },
512
+ "access" : "readwrite",
513
+ "default" : "false",
514
+ "description" :
515
+ """Specifies whether or not the local agent should
516
+ issue the notification 't11FspfNbrStateChangNotify'
517
+ when the local switch learns of a change of state
518
+ in the FSPF Neighbor Finite State Machine on an
519
+ interface in this Fabric.
520
+ If the value of the object is 'true, then the
521
+ notification is generated. If the value is 'false',
522
+ notification is not generated.""",
523
+ }, # column
524
+ "t11FspfSetToDefault" : {
525
+ "nodetype" : "column",
526
+ "moduleName" : "T11-FC-FSPF-MIB",
527
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.14",
528
+ "status" : "current",
529
+ "syntax" : {
530
+ "type" : {
531
+ "basetype" : "Enumeration",
532
+ "default" : {
533
+ "nodetype" : "namednumber",
534
+ "number" : "1"
535
+ },
536
+ "noOp" : {
537
+ "nodetype" : "namednumber",
538
+ "number" : "2"
539
+ },
540
+ },
541
+ },
542
+ "access" : "readwrite",
543
+ "description" :
544
+ """Setting this value to 'default' changes the value of each
545
+ and every writable object in this row to its default
546
+
547
+
548
+
549
+ value.
550
+
551
+ No action is taken if this object is set to 'noOp'.
552
+ The value of the object, when read, is always 'noOp'.""",
553
+ }, # column
554
+ "t11FspfStorageType" : {
555
+ "nodetype" : "column",
556
+ "moduleName" : "T11-FC-FSPF-MIB",
557
+ "oid" : "1.3.6.1.2.1.143.1.1.1.1.15",
558
+ "status" : "current",
559
+ "syntax" : {
560
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
561
+ },
562
+ "access" : "readwrite",
563
+ "default" : "nonVolatile",
564
+ "description" :
565
+ """The storage type for read-write objects in this
566
+ conceptual row.
567
+
568
+ Conceptual rows having the value 'permanent' need not
569
+ allow write-access to any columnar objects in the row.""",
570
+ }, # column
571
+ "t11FspfIfTable" : {
572
+ "nodetype" : "table",
573
+ "moduleName" : "T11-FC-FSPF-MIB",
574
+ "oid" : "1.3.6.1.2.1.143.1.1.2",
575
+ "status" : "current",
576
+ "description" :
577
+ """This table allows the users to configure and monitor
578
+ the FSPF parameters that are per-interface (identified
579
+ by a t11FspfIfIndex value), per-Fabric (identified by a
580
+ t11FspfFabricIndex value), and per-switch (identified by
581
+ values of fcmInstanceIndex and fcmSwitchIndex).
582
+
583
+ Creating a row in this table via t11FspfIfRowStatus
584
+ provides the means to specify non-default parameter value(s)
585
+ for an interface at a time when the relevant row in this
586
+ table would not otherwise exist because the interface is
587
+ either down or it is not an E_Port, but the corresponding
588
+ row in the t11FspfTable must already exist.
589
+
590
+ After the non-default values have been specified for a
591
+ port's parameters, they need to be retained in this table,
592
+ even when the port becomes 'isolated'. However, having
593
+ unnecessary rows in this table clutters it up and makes
594
+ those rows that are useful harder for an NMS to find.
595
+ Therefore, when an E_Port becomes isolated, its row gets
596
+ deleted if and only if all of its parameter values are the
597
+ default values; also, when an E_Port becomes non-isolated
598
+
599
+
600
+
601
+ in a particular Fabric, a row in this table needs to exist
602
+ and is automatically created, if necessary.
603
+
604
+ The specific conditions for an automated/implicit deletion
605
+ of a row are:
606
+ a) if the corresponding interface is no longer an E_Port
607
+ (e.g., a G_Port which is dynamically determined to be an
608
+ F_Port), and all configurable parameters have default
609
+ values; or
610
+ b) if the interface identified by t11FspfIfIndex no longer
611
+ exists (e.g., because a line-card is physically removed);
612
+ or
613
+ c) if the corresponding row in the t11FspfTable is deleted.""",
614
+ }, # table
615
+ "t11FspfIfEntry" : {
616
+ "nodetype" : "row",
617
+ "moduleName" : "T11-FC-FSPF-MIB",
618
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1",
619
+ "create" : "true",
620
+ "status" : "current",
621
+ "linkage" : [
622
+ "fcmInstanceIndex",
623
+ "fcmSwitchIndex",
624
+ "t11FspfFabricIndex",
625
+ "t11FspfIfIndex",
626
+ ],
627
+ "description" :
628
+ """An entry containing FSPF information for the interface
629
+ identified by t11FspfIfIndex, on the fabric identified
630
+ by t11FspfFabricIndex, on the switch identified by
631
+ fcmSwitchIndex.""",
632
+ }, # row
633
+ "t11FspfIfIndex" : {
634
+ "nodetype" : "column",
635
+ "moduleName" : "T11-FC-FSPF-MIB",
636
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.1",
637
+ "status" : "current",
638
+ "syntax" : {
639
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
640
+ },
641
+ "access" : "noaccess",
642
+ "description" :
643
+ """The value of ifIndex that identifies the local
644
+ Fibre Channel interface for which this entry
645
+ contains FSPF information.""",
646
+ }, # column
647
+ "t11FspfIfHelloInterval" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "T11-FC-FSPF-MIB",
650
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.2",
651
+ "status" : "current",
652
+ "syntax" : {
653
+ "type" : {
654
+ "basetype" : "Unsigned32",
655
+ "ranges" : [
656
+ {
657
+ "min" : "1",
658
+ "max" : "65535"
659
+ },
660
+ ],
661
+ "range" : {
662
+ "min" : "1",
663
+ "max" : "65535"
664
+ },
665
+ },
666
+ },
667
+ "access" : "readwrite",
668
+ "default" : "20",
669
+ "units" : "Seconds",
670
+ "description" :
671
+ """Interval between the periodic HELLO messages sent on this
672
+ interface in this Fabric to verify the link health. Note
673
+ that this value must be same at both ends of a link in
674
+ this Fabric.""",
675
+ }, # column
676
+ "t11FspfIfDeadInterval" : {
677
+ "nodetype" : "column",
678
+ "moduleName" : "T11-FC-FSPF-MIB",
679
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.3",
680
+ "status" : "current",
681
+ "syntax" : {
682
+ "type" : {
683
+ "basetype" : "Unsigned32",
684
+ "ranges" : [
685
+ {
686
+ "min" : "2",
687
+ "max" : "65535"
688
+ },
689
+ ],
690
+ "range" : {
691
+ "min" : "2",
692
+ "max" : "65535"
693
+ },
694
+ },
695
+ },
696
+ "access" : "readwrite",
697
+ "default" : "80",
698
+ "units" : "Seconds",
699
+ "description" :
700
+ """Maximum time for which no HELLO messages can be received
701
+ on this interface in this Fabric. After this time, the
702
+ interface is assumed to be broken and removed from the
703
+ database. Note that this value must be greater than the
704
+ HELLO interval specified on this interface in this Fabric.""",
705
+ }, # column
706
+ "t11FspfIfRetransmitInterval" : {
707
+ "nodetype" : "column",
708
+ "moduleName" : "T11-FC-FSPF-MIB",
709
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.4",
710
+ "status" : "current",
711
+ "syntax" : {
712
+ "type" : {
713
+ "basetype" : "Unsigned32",
714
+ "ranges" : [
715
+ {
716
+ "min" : "1",
717
+ "max" : "65535"
718
+ },
719
+ ],
720
+ "range" : {
721
+ "min" : "1",
722
+ "max" : "65535"
723
+ },
724
+ },
725
+ },
726
+ "access" : "readwrite",
727
+ "default" : "5",
728
+ "units" : "Seconds",
729
+ "description" :
730
+ """The time after which an unacknowledged LSR is
731
+ retransmitted on this interface in this Fabric.""",
732
+ }, # column
733
+ "t11FspfIfInLsuPkts" : {
734
+ "nodetype" : "column",
735
+ "moduleName" : "T11-FC-FSPF-MIB",
736
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.5",
737
+ "status" : "current",
738
+ "syntax" : {
739
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
740
+ },
741
+ "access" : "readonly",
742
+ "description" :
743
+ """Number of Link State Update (LSU) packets received on
744
+ this interface in this Fabric. The last discontinuity
745
+ of this counter is indicated by t11FspfIfCreateTime.""",
746
+ }, # column
747
+ "t11FspfIfInLsaPkts" : {
748
+ "nodetype" : "column",
749
+ "moduleName" : "T11-FC-FSPF-MIB",
750
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.6",
751
+ "status" : "current",
752
+ "syntax" : {
753
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
754
+ },
755
+ "access" : "readonly",
756
+ "description" :
757
+ """Number of Link State Acknowledgement (LSA) packets
758
+ received on this interface in this Fabric. The last
759
+ discontinuity of this counter is indicated by
760
+ t11FspfIfCreateTime.""",
761
+ }, # column
762
+ "t11FspfIfOutLsuPkts" : {
763
+ "nodetype" : "column",
764
+ "moduleName" : "T11-FC-FSPF-MIB",
765
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.7",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
769
+ },
770
+ "access" : "readonly",
771
+ "description" :
772
+ """Number of Link State Update (LSU) packets transmitted
773
+ on this interface in this Fabric. The last
774
+ discontinuity of this counter is indicated by
775
+ t11FspfIfCreateTime.""",
776
+ }, # column
777
+ "t11FspfIfOutLsaPkts" : {
778
+ "nodetype" : "column",
779
+ "moduleName" : "T11-FC-FSPF-MIB",
780
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.8",
781
+ "status" : "current",
782
+ "syntax" : {
783
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
784
+ },
785
+ "access" : "readonly",
786
+ "description" :
787
+ """Number of Link State Acknowledgement (LSA) packets
788
+ transmitted on this interface in this Fabric. The
789
+ last discontinuity of this counter is indicated by
790
+ t11FspfIfCreateTime.""",
791
+ }, # column
792
+ "t11FspfIfOutHelloPkts" : {
793
+ "nodetype" : "column",
794
+ "moduleName" : "T11-FC-FSPF-MIB",
795
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.9",
796
+ "status" : "current",
797
+ "syntax" : {
798
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
799
+ },
800
+ "access" : "readonly",
801
+ "description" :
802
+ """Number of HELLO packets transmitted on this interface in
803
+ this Fabric. The last discontinuity of this counter is
804
+ indicated by t11FspfIfCreateTime.""",
805
+ }, # column
806
+ "t11FspfIfInHelloPkts" : {
807
+ "nodetype" : "column",
808
+ "moduleName" : "T11-FC-FSPF-MIB",
809
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.10",
810
+ "status" : "current",
811
+ "syntax" : {
812
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
813
+ },
814
+ "access" : "readonly",
815
+ "description" :
816
+ """Number of HELLO packets received on this interface in
817
+ this Fabric. The last discontinuity of this counter is
818
+ indicated by t11FspfIfCreateTime.""",
819
+ }, # column
820
+ "t11FspfIfRetransmittedLsuPkts" : {
821
+ "nodetype" : "column",
822
+ "moduleName" : "T11-FC-FSPF-MIB",
823
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.11",
824
+ "status" : "current",
825
+ "syntax" : {
826
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
827
+ },
828
+ "access" : "readonly",
829
+ "description" :
830
+ """The number of LSU packets that contained one or more
831
+ retransmitted LSRs, and that were transmitted on this
832
+ interface in this Fabric. The last discontinuity of
833
+ this counter is indicated by t11FspfIfCreateTime.""",
834
+ }, # column
835
+ "t11FspfIfInErrorPkts" : {
836
+ "nodetype" : "column",
837
+ "moduleName" : "T11-FC-FSPF-MIB",
838
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.12",
839
+ "status" : "current",
840
+ "syntax" : {
841
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
842
+ },
843
+ "access" : "readonly",
844
+ "description" :
845
+ """Number of invalid FSPF control packets received on this
846
+ interface in this Fabric. The last discontinuity of
847
+ this counter is indicated by t11FspfIfCreateTime.""",
848
+ }, # column
849
+ "t11FspfIfNbrState" : {
850
+ "nodetype" : "column",
851
+ "moduleName" : "T11-FC-FSPF-MIB",
852
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.13",
853
+ "status" : "current",
854
+ "syntax" : {
855
+ "type" : { "module" :"T11-FC-FSPF-MIB", "name" : "T11FspfInterfaceState"},
856
+ },
857
+ "access" : "readonly",
858
+ "description" :
859
+ """The state of FSPF's 'neighbor state machine', which is
860
+ the operational state of the interaction with the
861
+
862
+
863
+
864
+ neighbor's interface that is connected to this interface.
865
+
866
+ If the 't11FspfIfAdminStatus' is 'down', then this object
867
+ should be 'down'. If the 't11FspfIfAdminStatus' is 'up',
868
+ then this object's value depends on the state of FSPF's
869
+ 'neighbor state machine' on this interface in this
870
+ Fabric.""",
871
+ "reference" :
872
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
873
+ ANSI INCITS 418-2006, section 8.7""",
874
+ }, # column
875
+ "t11FspfIfNbrDomainId" : {
876
+ "nodetype" : "column",
877
+ "moduleName" : "T11-FC-FSPF-MIB",
878
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.14",
879
+ "status" : "current",
880
+ "syntax" : {
881
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
882
+ },
883
+ "access" : "readonly",
884
+ "description" :
885
+ """The Domain Id of the neighbor in this Fabric.""",
886
+ }, # column
887
+ "t11FspfIfNbrPortIndex" : {
888
+ "nodetype" : "column",
889
+ "moduleName" : "T11-FC-FSPF-MIB",
890
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.15",
891
+ "status" : "current",
892
+ "syntax" : {
893
+ "type" : {
894
+ "basetype" : "Unsigned32",
895
+ "ranges" : [
896
+ {
897
+ "min" : "0",
898
+ "max" : "16777215"
899
+ },
900
+ ],
901
+ "range" : {
902
+ "min" : "0",
903
+ "max" : "16777215"
904
+ },
905
+ },
906
+ },
907
+ "access" : "readonly",
908
+ "description" :
909
+ """The index, as known by the neighbor, of the neighbor's
910
+ interface that is connected to this interface in this
911
+ Fabric.""",
912
+ "reference" :
913
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
914
+ ANSI INCITS 418-2006, section 6.1.9.4.""",
915
+ }, # column
916
+ "t11FspfIfAdminStatus" : {
917
+ "nodetype" : "column",
918
+ "moduleName" : "T11-FC-FSPF-MIB",
919
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.16",
920
+ "status" : "current",
921
+ "syntax" : {
922
+ "type" : {
923
+ "basetype" : "Enumeration",
924
+ "up" : {
925
+ "nodetype" : "namednumber",
926
+ "number" : "1"
927
+ },
928
+ "down" : {
929
+ "nodetype" : "namednumber",
930
+ "number" : "2"
931
+ },
932
+ },
933
+ },
934
+ "access" : "readwrite",
935
+ "default" : "up",
936
+ "description" :
937
+ """The desired state of FSPF on this interface in this
938
+ Fabric, whenever 't11FspfAdminStatus' is 'up'.
939
+ If the value of this object is set to 'up', then FSPF is
940
+ enabled on this interface in this Fabric. If set to
941
+ 'down', then FSPF is disabled on this interface in this
942
+ Fabric. Note that the operational state of FSPF on an
943
+ interface is given by t11FspfIfNbrState.""",
944
+ }, # column
945
+ "t11FspfIfCreateTime" : {
946
+ "nodetype" : "column",
947
+ "moduleName" : "T11-FC-FSPF-MIB",
948
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.17",
949
+ "status" : "current",
950
+ "syntax" : {
951
+ "type" : { "module" :"T11-FC-FSPF-MIB", "name" : "T11FspfLastCreationTime"},
952
+ },
953
+ "access" : "readonly",
954
+ "description" :
955
+ """The value of sysUpTime when this entry was last
956
+ created.""",
957
+ }, # column
958
+ "t11FspfIfSetToDefault" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "T11-FC-FSPF-MIB",
961
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.18",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : {
965
+ "basetype" : "Enumeration",
966
+ "default" : {
967
+ "nodetype" : "namednumber",
968
+ "number" : "1"
969
+ },
970
+ "noOp" : {
971
+ "nodetype" : "namednumber",
972
+ "number" : "2"
973
+ },
974
+ },
975
+ },
976
+ "access" : "readwrite",
977
+ "description" :
978
+ """Setting this value to 'default' changes the value of each
979
+ and every writable object in this row to its default
980
+ value.
981
+
982
+ If all the configuration parameters have their default
983
+ values, and if the interface is down, then the row is
984
+ deleted automatically.
985
+
986
+ No action is taken if this object is set to 'noOp'.
987
+ The value of the object, when read, is always 'noOp'.""",
988
+ }, # column
989
+ "t11FspfIfLinkCostFactor" : {
990
+ "nodetype" : "column",
991
+ "moduleName" : "T11-FC-FSPF-MIB",
992
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.19",
993
+ "status" : "current",
994
+ "syntax" : {
995
+ "type" : {
996
+ "basetype" : "Unsigned32",
997
+ "ranges" : [
998
+ {
999
+ "min" : "1",
1000
+ "max" : "65535"
1001
+ },
1002
+ ],
1003
+ "range" : {
1004
+ "min" : "1",
1005
+ "max" : "65535"
1006
+ },
1007
+ },
1008
+ },
1009
+ "access" : "readwrite",
1010
+ "default" : "100",
1011
+ "description" :
1012
+ """The administrative factor used in calculating the cost
1013
+ of sending a frame on this interface in this Fabric.
1014
+
1015
+ The formula used to calculate the link cost is:
1016
+
1017
+ Link Cost = S * (1.0625e12 / ifSpeed)
1018
+ where:
1019
+ S = (the value of this object / 100)
1020
+ ifSpeed = interface speed (as defined in the IF-MIB).""",
1021
+ "reference" :
1022
+ """Fibre Channel - Switch Fabric - 4 (FC-SW-4),
1023
+ ANSI INCITS 418-2006, section 8.5.5; and
1024
+ IF-MIB, RFC 2863.""",
1025
+ }, # column
1026
+ "t11FspfIfStorageType" : {
1027
+ "nodetype" : "column",
1028
+ "moduleName" : "T11-FC-FSPF-MIB",
1029
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.20",
1030
+ "status" : "current",
1031
+ "syntax" : {
1032
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1033
+ },
1034
+ "access" : "readwrite",
1035
+ "default" : "nonVolatile",
1036
+ "description" :
1037
+ """The storage type for this conceptual row.
1038
+ Conceptual rows having the value 'permanent' need not
1039
+ allow write-access to any columnar objects in the row.""",
1040
+ }, # column
1041
+ "t11FspfIfRowStatus" : {
1042
+ "nodetype" : "column",
1043
+ "moduleName" : "T11-FC-FSPF-MIB",
1044
+ "oid" : "1.3.6.1.2.1.143.1.1.2.1.21",
1045
+ "status" : "current",
1046
+ "syntax" : {
1047
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1048
+ },
1049
+ "access" : "readwrite",
1050
+ "description" :
1051
+ """The status of the conceptual row.
1052
+
1053
+ This object can be used to create an entry only if there
1054
+ is an entry in the t11FspfTable for the corresponding
1055
+ Fabric, and if the interface is either isolated or is a
1056
+ non-E_port.
1057
+
1058
+ Setting this object to 'destroy' will typically fail;
1059
+ to reverse the creation process, set the corresponding
1060
+ instance of t11FspfIfSetToDefault to 'default'.""",
1061
+ }, # column
1062
+ "t11FspfIfPrevNbrState" : {
1063
+ "nodetype" : "scalar",
1064
+ "moduleName" : "T11-FC-FSPF-MIB",
1065
+ "oid" : "1.3.6.1.2.1.143.1.1.3",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"T11-FC-FSPF-MIB", "name" : "T11FspfInterfaceState"},
1069
+ },
1070
+ "access" : "notifyonly",
1071
+ "description" :
1072
+ """The previous state of FSPF's Neighbor Finite State
1073
+ Machine on an interface.
1074
+
1075
+ This object is only used in the
1076
+ 't11FspfNbrStateChangNotify' notification.""",
1077
+ }, # scalar
1078
+ "t11FspfDatabase" : {
1079
+ "nodetype" : "node",
1080
+ "moduleName" : "T11-FC-FSPF-MIB",
1081
+ "oid" : "1.3.6.1.2.1.143.1.2",
1082
+ }, # node
1083
+ "t11FspfLsrTable" : {
1084
+ "nodetype" : "table",
1085
+ "moduleName" : "T11-FC-FSPF-MIB",
1086
+ "oid" : "1.3.6.1.2.1.143.1.2.1",
1087
+ "status" : "current",
1088
+ "description" :
1089
+ """This table is the database of all the latest
1090
+ incarnations of the Link State Records (LSRs) that
1091
+ are currently contained in the topology database,
1092
+ for all interfaces on all Fabrics known to
1093
+ locally managed switches.
1094
+
1095
+ A Fabric's topology database contains the LSRs that
1096
+ have been either issued or received by a local switch on
1097
+ that Fabric, and that have not reached t11FspfMaxAge.""",
1098
+ }, # table
1099
+ "t11FspfLsrEntry" : {
1100
+ "nodetype" : "row",
1101
+ "moduleName" : "T11-FC-FSPF-MIB",
1102
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1",
1103
+ "status" : "current",
1104
+ "linkage" : [
1105
+ "fcmInstanceIndex",
1106
+ "fcmSwitchIndex",
1107
+ "t11FspfFabricIndex",
1108
+ "t11FspfLsrDomainId",
1109
+ "t11FspfLsrType",
1110
+ ],
1111
+ "description" :
1112
+ """This gives information for the most recent update of an
1113
+ LSR. There is one entry for every LSR issued or received
1114
+ by a locally managed switch (identified by
1115
+ fcmInstanceIndex and fcmSwitchIndex) in a Fabric
1116
+ (identified by t11FspfFabricIndex).""",
1117
+ }, # row
1118
+ "t11FspfLsrDomainId" : {
1119
+ "nodetype" : "column",
1120
+ "moduleName" : "T11-FC-FSPF-MIB",
1121
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.1",
1122
+ "status" : "current",
1123
+ "syntax" : {
1124
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
1125
+ },
1126
+ "access" : "noaccess",
1127
+ "description" :
1128
+ """Domain Id of the LSR owner in this Fabric. It is the
1129
+ Link State Id of this LSR.""",
1130
+ }, # column
1131
+ "t11FspfLsrType" : {
1132
+ "nodetype" : "column",
1133
+ "moduleName" : "T11-FC-FSPF-MIB",
1134
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.2",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : { "module" :"T11-FC-FSPF-MIB", "name" : "T11FspfLsrType"},
1138
+ },
1139
+ "access" : "noaccess",
1140
+ "description" :
1141
+ """Type of this LSR.""",
1142
+ }, # column
1143
+ "t11FspfLsrAdvDomainId" : {
1144
+ "nodetype" : "column",
1145
+ "moduleName" : "T11-FC-FSPF-MIB",
1146
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.3",
1147
+ "status" : "current",
1148
+ "syntax" : {
1149
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
1150
+ },
1151
+ "access" : "readonly",
1152
+ "description" :
1153
+ """Domain Id of the switch that is advertising the LSR on
1154
+ the behalf of the switch owning it.""",
1155
+ }, # column
1156
+ "t11FspfLsrAge" : {
1157
+ "nodetype" : "column",
1158
+ "moduleName" : "T11-FC-FSPF-MIB",
1159
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.4",
1160
+ "status" : "current",
1161
+ "syntax" : {
1162
+ "type" : {
1163
+ "basetype" : "Unsigned32",
1164
+ "ranges" : [
1165
+ {
1166
+ "min" : "0",
1167
+ "max" : "65535"
1168
+ },
1169
+ ],
1170
+ "range" : {
1171
+ "min" : "0",
1172
+ "max" : "65535"
1173
+ },
1174
+ },
1175
+ },
1176
+ "access" : "readonly",
1177
+ "units" : "Seconds",
1178
+ "description" :
1179
+ """The time since this LSR was inserted into the database.""",
1180
+ }, # column
1181
+ "t11FspfLsrIncarnationNumber" : {
1182
+ "nodetype" : "column",
1183
+ "moduleName" : "T11-FC-FSPF-MIB",
1184
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.5",
1185
+ "status" : "current",
1186
+ "syntax" : {
1187
+ "type" : {
1188
+ "basetype" : "Unsigned32",
1189
+ "ranges" : [
1190
+ {
1191
+ "min" : "0",
1192
+ "max" : "4294967295"
1193
+ },
1194
+ ],
1195
+ "range" : {
1196
+ "min" : "0",
1197
+ "max" : "4294967295"
1198
+ },
1199
+ },
1200
+ },
1201
+ "access" : "readonly",
1202
+ "description" :
1203
+ """The link state incarnation number of this LSR. This is
1204
+ used to identify most recent instance of an LSR while
1205
+ updating the topology database when an LSR is received.
1206
+ The updating of an LSR includes incrementing its
1207
+ incarnation number prior to transmission of the updated
1208
+ LSR. So, the most recent LSR is the one with the
1209
+ largest incarnation number.""",
1210
+ }, # column
1211
+ "t11FspfLsrCheckSum" : {
1212
+ "nodetype" : "column",
1213
+ "moduleName" : "T11-FC-FSPF-MIB",
1214
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.6",
1215
+ "status" : "current",
1216
+ "syntax" : {
1217
+ "type" : {
1218
+ "basetype" : "Unsigned32",
1219
+ "ranges" : [
1220
+ {
1221
+ "min" : "0",
1222
+ "max" : "65535"
1223
+ },
1224
+ ],
1225
+ "range" : {
1226
+ "min" : "0",
1227
+ "max" : "65535"
1228
+ },
1229
+ },
1230
+ },
1231
+ "access" : "readonly",
1232
+ "description" :
1233
+ """The checksum of the LSR.""",
1234
+ }, # column
1235
+ "t11FspfLsrLinks" : {
1236
+ "nodetype" : "column",
1237
+ "moduleName" : "T11-FC-FSPF-MIB",
1238
+ "oid" : "1.3.6.1.2.1.143.1.2.1.1.7",
1239
+ "status" : "current",
1240
+ "syntax" : {
1241
+ "type" : {
1242
+ "basetype" : "Unsigned32",
1243
+ "ranges" : [
1244
+ {
1245
+ "min" : "0",
1246
+ "max" : "65355"
1247
+ },
1248
+ ],
1249
+ "range" : {
1250
+ "min" : "0",
1251
+ "max" : "65355"
1252
+ },
1253
+ },
1254
+ },
1255
+ "access" : "readonly",
1256
+ "description" :
1257
+ """Number of entries in the t11FspfLinkTable associated with
1258
+ this LSR.""",
1259
+ }, # column
1260
+ "t11FspfLinkNumber" : {
1261
+ "nodetype" : "scalar",
1262
+ "moduleName" : "T11-FC-FSPF-MIB",
1263
+ "oid" : "1.3.6.1.2.1.143.1.2.3",
1264
+ "status" : "current",
1265
+ "syntax" : {
1266
+ "type" : {
1267
+ "basetype" : "Unsigned32",
1268
+ "ranges" : [
1269
+ {
1270
+ "min" : "0",
1271
+ "max" : "2147483647"
1272
+ },
1273
+ ],
1274
+ "range" : {
1275
+ "min" : "0",
1276
+ "max" : "2147483647"
1277
+ },
1278
+ },
1279
+ },
1280
+ "access" : "readonly",
1281
+ "description" :
1282
+ """The number of rows in the t11FspfLinkTable.""",
1283
+ }, # scalar
1284
+ "t11FspfLinkTable" : {
1285
+ "nodetype" : "table",
1286
+ "moduleName" : "T11-FC-FSPF-MIB",
1287
+ "oid" : "1.3.6.1.2.1.143.1.2.4",
1288
+ "status" : "current",
1289
+ "description" :
1290
+ """This table contains the list of Inter-Switch Links and
1291
+ their information that is part of an LSR, either
1292
+ received or transmitted.""",
1293
+ }, # table
1294
+ "t11FspfLinkEntry" : {
1295
+ "nodetype" : "row",
1296
+ "moduleName" : "T11-FC-FSPF-MIB",
1297
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1",
1298
+ "status" : "current",
1299
+ "linkage" : [
1300
+ "fcmInstanceIndex",
1301
+ "fcmSwitchIndex",
1302
+ "t11FspfFabricIndex",
1303
+ "t11FspfLsrDomainId",
1304
+ "t11FspfLsrType",
1305
+ "t11FspfLinkIndex",
1306
+ ],
1307
+ "description" :
1308
+ """An entry that contains information about a link
1309
+ contained in an LSR in this Fabric. An entry is created
1310
+ whenever a new link appears in an (issued or received)
1311
+ LSR. An entry is deleted when a link no longer appears
1312
+ in an (issued or received) LSR.""",
1313
+ }, # row
1314
+ "t11FspfLinkIndex" : {
1315
+ "nodetype" : "column",
1316
+ "moduleName" : "T11-FC-FSPF-MIB",
1317
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1.1",
1318
+ "status" : "current",
1319
+ "syntax" : {
1320
+ "type" : {
1321
+ "basetype" : "Unsigned32",
1322
+ "ranges" : [
1323
+ {
1324
+ "min" : "1",
1325
+ "max" : "4294967295"
1326
+ },
1327
+ ],
1328
+ "range" : {
1329
+ "min" : "1",
1330
+ "max" : "4294967295"
1331
+ },
1332
+ },
1333
+ },
1334
+ "access" : "noaccess",
1335
+ "description" :
1336
+ """An arbitrary index of this link.""",
1337
+ }, # column
1338
+ "t11FspfLinkNbrDomainId" : {
1339
+ "nodetype" : "column",
1340
+ "moduleName" : "T11-FC-FSPF-MIB",
1341
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1.2",
1342
+ "status" : "current",
1343
+ "syntax" : {
1344
+ "type" : { "module" :"FC-MGMT-MIB", "name" : "FcDomainIdOrZero"},
1345
+ },
1346
+ "access" : "readonly",
1347
+ "description" :
1348
+ """The Domain Id of the neighbor on the other end of this
1349
+ link in this Fabric.""",
1350
+ }, # column
1351
+ "t11FspfLinkPortIndex" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "T11-FC-FSPF-MIB",
1354
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1.3",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : {
1358
+ "basetype" : "Unsigned32",
1359
+ "ranges" : [
1360
+ {
1361
+ "min" : "0",
1362
+ "max" : "16777215"
1363
+ },
1364
+ ],
1365
+ "range" : {
1366
+ "min" : "0",
1367
+ "max" : "16777215"
1368
+ },
1369
+ },
1370
+ },
1371
+ "access" : "readonly",
1372
+ "description" :
1373
+ """The source E_port of this link, as indicated by the index
1374
+ value in the LSR received from the switch identified by
1375
+ 't11FspfLsrDomainId'.""",
1376
+ }, # column
1377
+ "t11FspfLinkNbrPortIndex" : {
1378
+ "nodetype" : "column",
1379
+ "moduleName" : "T11-FC-FSPF-MIB",
1380
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1.4",
1381
+ "status" : "current",
1382
+ "syntax" : {
1383
+ "type" : {
1384
+ "basetype" : "Unsigned32",
1385
+ "ranges" : [
1386
+ {
1387
+ "min" : "0",
1388
+ "max" : "16777215"
1389
+ },
1390
+ ],
1391
+ "range" : {
1392
+ "min" : "0",
1393
+ "max" : "16777215"
1394
+ },
1395
+ },
1396
+ },
1397
+ "access" : "readonly",
1398
+ "description" :
1399
+ """The destination E_port of this link, as indicated by the
1400
+ index value in the LSR received from the switch identified
1401
+ by 't11FspfLinkNbrDomainId'.""",
1402
+ }, # column
1403
+ "t11FspfLinkType" : {
1404
+ "nodetype" : "column",
1405
+ "moduleName" : "T11-FC-FSPF-MIB",
1406
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1.5",
1407
+ "status" : "current",
1408
+ "syntax" : {
1409
+ "type" : { "module" :"T11-FC-FSPF-MIB", "name" : "T11FspfLinkType"},
1410
+ },
1411
+ "access" : "readonly",
1412
+ "description" :
1413
+ """The type of this link.""",
1414
+ }, # column
1415
+ "t11FspfLinkCost" : {
1416
+ "nodetype" : "column",
1417
+ "moduleName" : "T11-FC-FSPF-MIB",
1418
+ "oid" : "1.3.6.1.2.1.143.1.2.4.1.6",
1419
+ "status" : "current",
1420
+ "syntax" : {
1421
+ "type" : {
1422
+ "basetype" : "Integer32",
1423
+ "ranges" : [
1424
+ {
1425
+ "min" : "0",
1426
+ "max" : "65535"
1427
+ },
1428
+ ],
1429
+ "range" : {
1430
+ "min" : "0",
1431
+ "max" : "65535"
1432
+ },
1433
+ },
1434
+ },
1435
+ "access" : "readonly",
1436
+ "description" :
1437
+ """The cost of sending a frame on this link in this Fabric.
1438
+ Link cost is calculated using the formula:
1439
+
1440
+ link cost = S * (1.0625e12 / Signalling Rate)
1441
+
1442
+ For issued LSRs, S is determined by the value of
1443
+ t11FspfIfLinkCostFactor for the corresponding interface
1444
+
1445
+
1446
+
1447
+ and Fabric.""",
1448
+ }, # column
1449
+ "t11FspfConformance" : {
1450
+ "nodetype" : "node",
1451
+ "moduleName" : "T11-FC-FSPF-MIB",
1452
+ "oid" : "1.3.6.1.2.1.143.2",
1453
+ }, # node
1454
+ "t11FspfMIBCompliances" : {
1455
+ "nodetype" : "node",
1456
+ "moduleName" : "T11-FC-FSPF-MIB",
1457
+ "oid" : "1.3.6.1.2.1.143.2.1",
1458
+ }, # node
1459
+ "t11FspfMIBGroups" : {
1460
+ "nodetype" : "node",
1461
+ "moduleName" : "T11-FC-FSPF-MIB",
1462
+ "oid" : "1.3.6.1.2.1.143.2.2",
1463
+ }, # node
1464
+ }, # nodes
1465
+
1466
+ "notifications" : {
1467
+ "t11FspfNbrStateChangNotify" : {
1468
+ "nodetype" : "notification",
1469
+ "moduleName" : "T11-FC-FSPF-MIB",
1470
+ "oid" : "1.3.6.1.2.1.143.0.1",
1471
+ "status" : "current",
1472
+ "objects" : {
1473
+ "ifIndex" : {
1474
+ "nodetype" : "object",
1475
+ "module" : "IF-MIB"
1476
+ },
1477
+ "t11FamConfigDomainId" : {
1478
+ "nodetype" : "object",
1479
+ "module" : "T11-FC-FABRIC-ADDR-MGR-MIB"
1480
+ },
1481
+ "t11FspfIfNbrDomainId" : {
1482
+ "nodetype" : "object",
1483
+ "module" : "T11-FC-FSPF-MIB"
1484
+ },
1485
+ "t11FspfIfNbrState" : {
1486
+ "nodetype" : "object",
1487
+ "module" : "T11-FC-FSPF-MIB"
1488
+ },
1489
+ "t11FspfIfPrevNbrState" : {
1490
+ "nodetype" : "object",
1491
+ "module" : "T11-FC-FSPF-MIB"
1492
+ },
1493
+ },
1494
+ "description" :
1495
+ """This notification signifies that there has been a change in
1496
+ the state of an FSPF neighbor. This is generated when the
1497
+ FSPF state changes to a terminal state, through either
1498
+ regression (i.e., goes from Full to Init or Down) or
1499
+ progression (i.e., from any state to Full). The value of
1500
+ 't11FspfIfNbrState' is the state of the neighbor after the
1501
+ change.""",
1502
+ }, # notification
1503
+ }, # notifications
1504
+
1505
+ "groups" : {
1506
+ "t11FspfGeneralGroup" : {
1507
+ "nodetype" : "group",
1508
+ "moduleName" : "T11-FC-FSPF-MIB",
1509
+ "oid" : "1.3.6.1.2.1.143.2.2.1",
1510
+ "status" : "current",
1511
+ "members" : {
1512
+ "t11FspfMinLsArrival" : {
1513
+ "nodetype" : "member",
1514
+ "module" : "T11-FC-FSPF-MIB"
1515
+ },
1516
+ "t11FspfMinLsInterval" : {
1517
+ "nodetype" : "member",
1518
+ "module" : "T11-FC-FSPF-MIB"
1519
+ },
1520
+ "t11FspfLsRefreshTime" : {
1521
+ "nodetype" : "member",
1522
+ "module" : "T11-FC-FSPF-MIB"
1523
+ },
1524
+ "t11FspfMaxAge" : {
1525
+ "nodetype" : "member",
1526
+ "module" : "T11-FC-FSPF-MIB"
1527
+ },
1528
+ "t11FspfMaxAgeDiscards" : {
1529
+ "nodetype" : "member",
1530
+ "module" : "T11-FC-FSPF-MIB"
1531
+ },
1532
+ "t11FspfPathComputations" : {
1533
+ "nodetype" : "member",
1534
+ "module" : "T11-FC-FSPF-MIB"
1535
+ },
1536
+ "t11FspfChecksumErrors" : {
1537
+ "nodetype" : "member",
1538
+ "module" : "T11-FC-FSPF-MIB"
1539
+ },
1540
+ "t11FspfLsrs" : {
1541
+ "nodetype" : "member",
1542
+ "module" : "T11-FC-FSPF-MIB"
1543
+ },
1544
+ "t11FspfCreateTime" : {
1545
+ "nodetype" : "member",
1546
+ "module" : "T11-FC-FSPF-MIB"
1547
+ },
1548
+ "t11FspfAdminStatus" : {
1549
+ "nodetype" : "member",
1550
+ "module" : "T11-FC-FSPF-MIB"
1551
+ },
1552
+ "t11FspfOperStatus" : {
1553
+ "nodetype" : "member",
1554
+ "module" : "T11-FC-FSPF-MIB"
1555
+ },
1556
+ "t11FspfNbrStateChangNotifyEnable" : {
1557
+ "nodetype" : "member",
1558
+ "module" : "T11-FC-FSPF-MIB"
1559
+ },
1560
+ "t11FspfSetToDefault" : {
1561
+ "nodetype" : "member",
1562
+ "module" : "T11-FC-FSPF-MIB"
1563
+ },
1564
+ "t11FspfStorageType" : {
1565
+ "nodetype" : "member",
1566
+ "module" : "T11-FC-FSPF-MIB"
1567
+ },
1568
+ }, # members
1569
+ "description" :
1570
+ """A collection of objects for displaying and
1571
+ configuring FSPF parameters.""",
1572
+ }, # group
1573
+ "t11FspfIfGroup" : {
1574
+ "nodetype" : "group",
1575
+ "moduleName" : "T11-FC-FSPF-MIB",
1576
+ "oid" : "1.3.6.1.2.1.143.2.2.2",
1577
+ "status" : "current",
1578
+ "members" : {
1579
+ "t11FspfIfHelloInterval" : {
1580
+ "nodetype" : "member",
1581
+ "module" : "T11-FC-FSPF-MIB"
1582
+ },
1583
+ "t11FspfIfDeadInterval" : {
1584
+ "nodetype" : "member",
1585
+ "module" : "T11-FC-FSPF-MIB"
1586
+ },
1587
+ "t11FspfIfRetransmitInterval" : {
1588
+ "nodetype" : "member",
1589
+ "module" : "T11-FC-FSPF-MIB"
1590
+ },
1591
+ "t11FspfIfNbrState" : {
1592
+ "nodetype" : "member",
1593
+ "module" : "T11-FC-FSPF-MIB"
1594
+ },
1595
+ "t11FspfIfNbrDomainId" : {
1596
+ "nodetype" : "member",
1597
+ "module" : "T11-FC-FSPF-MIB"
1598
+ },
1599
+ "t11FspfIfNbrPortIndex" : {
1600
+ "nodetype" : "member",
1601
+ "module" : "T11-FC-FSPF-MIB"
1602
+ },
1603
+ "t11FspfIfAdminStatus" : {
1604
+ "nodetype" : "member",
1605
+ "module" : "T11-FC-FSPF-MIB"
1606
+ },
1607
+ "t11FspfIfCreateTime" : {
1608
+ "nodetype" : "member",
1609
+ "module" : "T11-FC-FSPF-MIB"
1610
+ },
1611
+ "t11FspfIfSetToDefault" : {
1612
+ "nodetype" : "member",
1613
+ "module" : "T11-FC-FSPF-MIB"
1614
+ },
1615
+ "t11FspfIfLinkCostFactor" : {
1616
+ "nodetype" : "member",
1617
+ "module" : "T11-FC-FSPF-MIB"
1618
+ },
1619
+ "t11FspfIfRowStatus" : {
1620
+ "nodetype" : "member",
1621
+ "module" : "T11-FC-FSPF-MIB"
1622
+ },
1623
+ "t11FspfIfStorageType" : {
1624
+ "nodetype" : "member",
1625
+ "module" : "T11-FC-FSPF-MIB"
1626
+ },
1627
+ "t11FspfIfPrevNbrState" : {
1628
+ "nodetype" : "member",
1629
+ "module" : "T11-FC-FSPF-MIB"
1630
+ },
1631
+ }, # members
1632
+ "description" :
1633
+ """A collection of objects for displaying the FSPF
1634
+ interface information.""",
1635
+ }, # group
1636
+ "t11FspfIfCounterGroup" : {
1637
+ "nodetype" : "group",
1638
+ "moduleName" : "T11-FC-FSPF-MIB",
1639
+ "oid" : "1.3.6.1.2.1.143.2.2.3",
1640
+ "status" : "current",
1641
+ "members" : {
1642
+ "t11FspfIfInLsuPkts" : {
1643
+ "nodetype" : "member",
1644
+ "module" : "T11-FC-FSPF-MIB"
1645
+ },
1646
+ "t11FspfIfInLsaPkts" : {
1647
+ "nodetype" : "member",
1648
+ "module" : "T11-FC-FSPF-MIB"
1649
+ },
1650
+ "t11FspfIfOutLsuPkts" : {
1651
+ "nodetype" : "member",
1652
+ "module" : "T11-FC-FSPF-MIB"
1653
+ },
1654
+ "t11FspfIfOutLsaPkts" : {
1655
+ "nodetype" : "member",
1656
+ "module" : "T11-FC-FSPF-MIB"
1657
+ },
1658
+ "t11FspfIfOutHelloPkts" : {
1659
+ "nodetype" : "member",
1660
+ "module" : "T11-FC-FSPF-MIB"
1661
+ },
1662
+ "t11FspfIfInHelloPkts" : {
1663
+ "nodetype" : "member",
1664
+ "module" : "T11-FC-FSPF-MIB"
1665
+ },
1666
+ "t11FspfIfRetransmittedLsuPkts" : {
1667
+ "nodetype" : "member",
1668
+ "module" : "T11-FC-FSPF-MIB"
1669
+ },
1670
+ "t11FspfIfInErrorPkts" : {
1671
+ "nodetype" : "member",
1672
+ "module" : "T11-FC-FSPF-MIB"
1673
+ },
1674
+ }, # members
1675
+ "description" :
1676
+ """A collection of objects for counting particular
1677
+ FSPF-packet occurrences on an interface.""",
1678
+ }, # group
1679
+ "t11FspfDatabaseGroup" : {
1680
+ "nodetype" : "group",
1681
+ "moduleName" : "T11-FC-FSPF-MIB",
1682
+ "oid" : "1.3.6.1.2.1.143.2.2.4",
1683
+ "status" : "current",
1684
+ "members" : {
1685
+ "t11FspfLsrAdvDomainId" : {
1686
+ "nodetype" : "member",
1687
+ "module" : "T11-FC-FSPF-MIB"
1688
+ },
1689
+ "t11FspfLsrAge" : {
1690
+ "nodetype" : "member",
1691
+ "module" : "T11-FC-FSPF-MIB"
1692
+ },
1693
+ "t11FspfLsrIncarnationNumber" : {
1694
+ "nodetype" : "member",
1695
+ "module" : "T11-FC-FSPF-MIB"
1696
+ },
1697
+ "t11FspfLsrCheckSum" : {
1698
+ "nodetype" : "member",
1699
+ "module" : "T11-FC-FSPF-MIB"
1700
+ },
1701
+ "t11FspfLsrLinks" : {
1702
+ "nodetype" : "member",
1703
+ "module" : "T11-FC-FSPF-MIB"
1704
+ },
1705
+ "t11FspfLinkNbrDomainId" : {
1706
+ "nodetype" : "member",
1707
+ "module" : "T11-FC-FSPF-MIB"
1708
+ },
1709
+ "t11FspfLinkPortIndex" : {
1710
+ "nodetype" : "member",
1711
+ "module" : "T11-FC-FSPF-MIB"
1712
+ },
1713
+ "t11FspfLinkNbrPortIndex" : {
1714
+ "nodetype" : "member",
1715
+ "module" : "T11-FC-FSPF-MIB"
1716
+ },
1717
+ "t11FspfLinkType" : {
1718
+ "nodetype" : "member",
1719
+ "module" : "T11-FC-FSPF-MIB"
1720
+ },
1721
+ "t11FspfLinkCost" : {
1722
+ "nodetype" : "member",
1723
+ "module" : "T11-FC-FSPF-MIB"
1724
+ },
1725
+ "t11FspfLinkNumber" : {
1726
+ "nodetype" : "member",
1727
+ "module" : "T11-FC-FSPF-MIB"
1728
+ },
1729
+ }, # members
1730
+ "description" :
1731
+ """A collection of objects for displaying the FSPF
1732
+ topology database information.""",
1733
+ }, # group
1734
+ "t11FspfNotificationGroup" : {
1735
+ "nodetype" : "group",
1736
+ "moduleName" : "T11-FC-FSPF-MIB",
1737
+ "oid" : "1.3.6.1.2.1.143.2.2.5",
1738
+ "status" : "current",
1739
+ "members" : {
1740
+ "t11FspfNbrStateChangNotify" : {
1741
+ "nodetype" : "member",
1742
+ "module" : "T11-FC-FSPF-MIB"
1743
+ },
1744
+ }, # members
1745
+ "description" :
1746
+ """A collection of notifications for FSPF.""",
1747
+ }, # group
1748
+ }, # groups
1749
+
1750
+ "compliances" : {
1751
+ "t11FspfMIBCompliance" : {
1752
+ "nodetype" : "compliance",
1753
+ "moduleName" : "T11-FC-FSPF-MIB",
1754
+ "oid" : "1.3.6.1.2.1.143.2.1.1",
1755
+ "status" : "current",
1756
+ "description" :
1757
+ """The compliance statement for entities that
1758
+ implement the FSPF.""",
1759
+ "requires" : {
1760
+ "t11FspfGeneralGroup" : {
1761
+ "nodetype" : "mandatory",
1762
+ "module" : "T11-FC-FSPF-MIB"
1763
+ },
1764
+ "t11FspfIfGroup" : {
1765
+ "nodetype" : "mandatory",
1766
+ "module" : "T11-FC-FSPF-MIB"
1767
+ },
1768
+ "t11FspfDatabaseGroup" : {
1769
+ "nodetype" : "mandatory",
1770
+ "module" : "T11-FC-FSPF-MIB"
1771
+ },
1772
+ "t11FspfNotificationGroup" : {
1773
+ "nodetype" : "mandatory",
1774
+ "module" : "T11-FC-FSPF-MIB"
1775
+ },
1776
+ "t11FspfIfCounterGroup" : {
1777
+ "nodetype" : "optional",
1778
+ "module" : "T11-FC-FSPF-MIB",
1779
+ "description" :
1780
+ """These counters, for particular FSPF-packet
1781
+ occurrences on an interface, are mandatory only
1782
+ for those systems that count such events.""",
1783
+ },
1784
+ }, # requires
1785
+ "refinements" : {
1786
+ "t11FspfIfRowStatus" : {
1787
+ "module" : "T11-FC-FSPF-MIB",
1788
+ "syntax" : {
1789
+ "type" : {
1790
+ "basetype" : "Enumeration",
1791
+ "parent module" : {
1792
+ "name" : "SNMPv2-TC",
1793
+ "type" : "RowStatus",
1794
+ },
1795
+ "active" : {
1796
+ "nodetype" : "namednumber",
1797
+ "number" : "1"
1798
+ },
1799
+ },
1800
+ }, # syntax
1801
+ "access" : "readonly",
1802
+ "description" :
1803
+ """Write access is not required, so only
1804
+ one value needs to be supported.""",
1805
+ },
1806
+ "t11FspfIfStorageType" : {
1807
+ "module" : "T11-FC-FSPF-MIB",
1808
+ "access" : "readonly",
1809
+ "description" :
1810
+ """Write access is not required.""",
1811
+ },
1812
+ "t11FspfNbrStateChangNotifyEnable" : {
1813
+ "module" : "T11-FC-FSPF-MIB",
1814
+ "access" : "readonly",
1815
+ "description" :
1816
+ """Write access is not required.""",
1817
+ },
1818
+ "t11FspfMinLsArrival" : {
1819
+ "module" : "T11-FC-FSPF-MIB",
1820
+ "access" : "readonly",
1821
+ "description" :
1822
+ """Write access is not required.""",
1823
+ },
1824
+ "t11FspfMinLsInterval" : {
1825
+ "module" : "T11-FC-FSPF-MIB",
1826
+ "access" : "readonly",
1827
+ "description" :
1828
+ """Write access is not required.""",
1829
+ },
1830
+ "t11FspfAdminStatus" : {
1831
+ "module" : "T11-FC-FSPF-MIB",
1832
+ "access" : "readonly",
1833
+ "description" :
1834
+ """Write access is not required.""",
1835
+ },
1836
+ "t11FspfSetToDefault" : {
1837
+ "module" : "T11-FC-FSPF-MIB",
1838
+ "access" : "readonly",
1839
+ "description" :
1840
+ """Write access is not required.""",
1841
+ },
1842
+ "t11FspfStorageType" : {
1843
+ "module" : "T11-FC-FSPF-MIB",
1844
+ "access" : "readonly",
1845
+ "description" :
1846
+ """Write access is not required.""",
1847
+ },
1848
+ "t11FspfIfHelloInterval" : {
1849
+ "module" : "T11-FC-FSPF-MIB",
1850
+ "access" : "readonly",
1851
+ "description" :
1852
+ """Write access is not required.""",
1853
+ },
1854
+ "t11FspfIfDeadInterval" : {
1855
+ "module" : "T11-FC-FSPF-MIB",
1856
+ "access" : "readonly",
1857
+ "description" :
1858
+ """Write access is not required.""",
1859
+ },
1860
+ "t11FspfIfRetransmitInterval" : {
1861
+ "module" : "T11-FC-FSPF-MIB",
1862
+ "access" : "readonly",
1863
+ "description" :
1864
+ """Write access is not required.""",
1865
+ },
1866
+ "t11FspfIfAdminStatus" : {
1867
+ "module" : "T11-FC-FSPF-MIB",
1868
+ "access" : "readonly",
1869
+ "description" :
1870
+ """Write access is not required.""",
1871
+ },
1872
+ "t11FspfIfSetToDefault" : {
1873
+ "module" : "T11-FC-FSPF-MIB",
1874
+ "access" : "readonly",
1875
+ "description" :
1876
+ """Write access is not required.""",
1877
+ },
1878
+ "t11FspfIfLinkCostFactor" : {
1879
+ "module" : "T11-FC-FSPF-MIB",
1880
+ "access" : "readonly",
1881
+ "description" :
1882
+ """Write access is not required.""",
1883
+ },
1884
+ }, # refinements
1885
+
1886
+ }, # compliance
1887
+ }, # compliances
1888
+
1889
+ }