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,2468 @@
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 GSMP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/GSMP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "GSMP-MIB",
11
+
12
+ "GSMP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """General Switch Management Protocol (gsmp)
17
+ Working Group, IETF""",
18
+ "contact" :
19
+ """WG Charter:
20
+ http://www.ietf.org/html.charters/gsmp-charter.html
21
+
22
+ WG-email: gsmp@ietf.org
23
+ Subscribe: gsmp-request@ietf.org
24
+ Email Archive:
25
+ ftp://ftp.ietf.org/ietf-mail-archive/gsmp/
26
+
27
+ WG Chair: Avri Doria
28
+ Email: avri@acm.org
29
+
30
+ WG Chair: Kenneth Sundell
31
+ Email: ksundell@nortelnetworks.com
32
+
33
+ Editor: Hans Sjostrand
34
+ Email: hans@ipunplugged.com
35
+
36
+
37
+
38
+
39
+ Editor: Joachim Buerkle
40
+ Email: joachim.buerkle@nortelnetworks.com
41
+
42
+ Editor: Balaji Srinivasan
43
+ Email: balaji@cplane.com""",
44
+ "description" :
45
+ """This MIB contains managed object definitions for the
46
+ General Switch Management Protocol, GSMP, version 3""",
47
+ "revisions" : (
48
+ {
49
+ "date" : "2002-05-31 00:00",
50
+ "description" :
51
+ """Initial Version, published as RFC 3295""",
52
+ },
53
+ ),
54
+ "identity node" : "gsmpMIB",
55
+ },
56
+
57
+ "imports" : (
58
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
59
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
60
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
61
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
63
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
64
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
65
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
66
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
67
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
68
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
69
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
70
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
71
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
72
+ {"module" : "RMON2-MIB", "name" : "ZeroBasedCounter32"},
73
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
74
+ {"module" : "ATM-TC-MIB", "name" : "AtmVcIdentifier"},
75
+ {"module" : "ATM-TC-MIB", "name" : "AtmVpIdentifier"},
76
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
77
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
78
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
79
+ ),
80
+
81
+ "typedefs" : {
82
+ "GsmpNameType" : {
83
+ "basetype" : "OctetString",
84
+ "status" : "current",
85
+ "ranges" : [
86
+ {
87
+ "min" : "6",
88
+ "max" : "6"
89
+ },
90
+ ],
91
+ "range" : {
92
+ "min" : "6",
93
+ "max" : "6"
94
+ },
95
+ "description" :
96
+ """The Name is a 48-bit quantity.
97
+ A 48-bit IEEE 802 MAC address, if
98
+ available, may be used.""",
99
+ },
100
+ "GsmpPartitionType" : {
101
+ "basetype" : "Enumeration",
102
+ "status" : "current",
103
+ "noPartition" : {
104
+ "nodetype" : "namednumber",
105
+ "number" : "1"
106
+ },
107
+ "fixedPartitionRequest" : {
108
+ "nodetype" : "namednumber",
109
+ "number" : "2"
110
+ },
111
+ "fixedPartitionAssigned" : {
112
+ "nodetype" : "namednumber",
113
+ "number" : "3"
114
+ },
115
+ "description" :
116
+ """Defining if partitions are used and how the partition id
117
+ is negotiated. """,
118
+ },
119
+ "GsmpPartitionIdType" : {
120
+ "basetype" : "OctetString",
121
+ "status" : "current",
122
+ "ranges" : [
123
+ {
124
+ "min" : "1",
125
+ "max" : "1"
126
+ },
127
+ ],
128
+ "range" : {
129
+ "min" : "1",
130
+ "max" : "1"
131
+ },
132
+ "description" :
133
+ """A 8-bit quantity. The format of the Partition ID is not
134
+ defined in GSMP. If desired, the Partition ID can be
135
+ divided into multiple sub-identifiers within a single
136
+
137
+
138
+
139
+ partition. For example: the Partition ID could be
140
+ subdivided into a 6-bit partition number and a 2-bit
141
+ sub-identifier which would allow a switch to support 64
142
+ partitions with 4 available IDs per partition.""",
143
+ },
144
+ "GsmpVersion" : {
145
+ "basetype" : "Unsigned32",
146
+ "status" : "current",
147
+ "description" :
148
+ """The version numbers defined for the GSMP protocol.
149
+ The version numbers used are defined in the
150
+ specifications of the respective protocol,
151
+ 1 - GSMPv1.1 [RFC1987]
152
+ 2 - GSMPv2.0 [RFC2397]
153
+ 3 - GSMPv3 [RFC3292]
154
+ Other numbers may be defined for other versions
155
+ of the GSMP protocol.""",
156
+ },
157
+ "GsmpLabelType" : {
158
+ "basetype" : "OctetString",
159
+ "status" : "current",
160
+ "description" :
161
+ """The label is structured as a TLV, a tuple, consisting of
162
+ a Type, a Length, and a Value. The structure is defined
163
+ in [RFC 3292]. The label TLV is encoded as a 2 octet type
164
+ field, followed by a 2 octet Length field, followed by a
165
+ variable length Value field.
166
+ Additionally, a label field can be composed of many stacked
167
+ labels that together constitute the label.""",
168
+ },
169
+ }, # typedefs
170
+
171
+ "nodes" : {
172
+ "gsmpMIB" : {
173
+ "nodetype" : "node",
174
+ "moduleName" : "GSMP-MIB",
175
+ "oid" : "1.3.6.1.2.1.98",
176
+ "status" : "current",
177
+ }, # node
178
+ "gsmpNotifications" : {
179
+ "nodetype" : "node",
180
+ "moduleName" : "GSMP-MIB",
181
+ "oid" : "1.3.6.1.2.1.98.0",
182
+ }, # node
183
+ "gsmpObjects" : {
184
+ "nodetype" : "node",
185
+ "moduleName" : "GSMP-MIB",
186
+ "oid" : "1.3.6.1.2.1.98.1",
187
+ }, # node
188
+ "gsmpControllerTable" : {
189
+ "nodetype" : "table",
190
+ "moduleName" : "GSMP-MIB",
191
+ "oid" : "1.3.6.1.2.1.98.1.1",
192
+ "status" : "current",
193
+ "description" :
194
+ """This table represents the Switch Controller
195
+ Entities. An entry in this table needs to be configured
196
+ (created) before a GSMP session might be started.""",
197
+ }, # table
198
+ "gsmpControllerEntry" : {
199
+ "nodetype" : "row",
200
+ "moduleName" : "GSMP-MIB",
201
+ "oid" : "1.3.6.1.2.1.98.1.1.1",
202
+ "create" : "true",
203
+ "status" : "current",
204
+ "linkage" : [
205
+ "gsmpControllerEntityId",
206
+ ],
207
+ "description" :
208
+ """An entry in the table showing
209
+ the data for a specific Switch Controller
210
+ Entity. If partitions are used, one entity
211
+ corresponds to one specific switch partition.
212
+ Depending of the encapsulation used,
213
+ a corresponding row in the gsmpAtmEncapTable or the
214
+ gsmpTcpIpEncapTable may have been created.""",
215
+ }, # row
216
+ "gsmpControllerEntityId" : {
217
+ "nodetype" : "column",
218
+ "moduleName" : "GSMP-MIB",
219
+ "oid" : "1.3.6.1.2.1.98.1.1.1.1",
220
+ "status" : "current",
221
+ "syntax" : {
222
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
223
+ },
224
+ "access" : "noaccess",
225
+ "description" :
226
+ """The Switch Controller Entity Id is unique
227
+ within the operational context of the device.""",
228
+ }, # column
229
+ "gsmpControllerMaxVersion" : {
230
+ "nodetype" : "column",
231
+ "moduleName" : "GSMP-MIB",
232
+ "oid" : "1.3.6.1.2.1.98.1.1.1.2",
233
+ "status" : "current",
234
+ "syntax" : {
235
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpVersion"},
236
+ },
237
+ "access" : "readwrite",
238
+ "default" : "3",
239
+ "description" :
240
+ """The max version number of the GSMP protocol being used
241
+ in this session. The version is negotiated by the
242
+ adjacency protocol.""",
243
+ }, # column
244
+ "gsmpControllerTimer" : {
245
+ "nodetype" : "column",
246
+ "moduleName" : "GSMP-MIB",
247
+ "oid" : "1.3.6.1.2.1.98.1.1.1.3",
248
+ "status" : "current",
249
+ "syntax" : {
250
+ "type" : {
251
+ "basetype" : "Unsigned32",
252
+ "ranges" : [
253
+ {
254
+ "min" : "1",
255
+ "max" : "255"
256
+ },
257
+ ],
258
+ "range" : {
259
+ "min" : "1",
260
+ "max" : "255"
261
+ },
262
+ },
263
+ },
264
+ "access" : "readwrite",
265
+ "default" : "10",
266
+ "units" : "100ms",
267
+ "description" :
268
+ """The timer specifies the nominal time between
269
+ periodic adjacency protocol messages. It is a constant
270
+ for the duration of a GSMP session. The timer is
271
+ specified in units of 100ms.""",
272
+ }, # column
273
+ "gsmpControllerPort" : {
274
+ "nodetype" : "column",
275
+ "moduleName" : "GSMP-MIB",
276
+ "oid" : "1.3.6.1.2.1.98.1.1.1.4",
277
+ "status" : "current",
278
+ "syntax" : {
279
+ "type" : { "module" :"", "name" : "Unsigned32"},
280
+ },
281
+ "access" : "readwrite",
282
+ "description" :
283
+ """The local port number for the Switch Controller
284
+ Entity.""",
285
+ "reference" :
286
+ """General Switch Management Protocol V3: Section 3.1.2""",
287
+ }, # column
288
+ "gsmpControllerInstance" : {
289
+ "nodetype" : "column",
290
+ "moduleName" : "GSMP-MIB",
291
+ "oid" : "1.3.6.1.2.1.98.1.1.1.5",
292
+ "status" : "current",
293
+ "syntax" : {
294
+ "type" : {
295
+ "basetype" : "Unsigned32",
296
+ "ranges" : [
297
+ {
298
+ "min" : "1",
299
+ "max" : "16777215"
300
+ },
301
+ ],
302
+ "range" : {
303
+ "min" : "1",
304
+ "max" : "16777215"
305
+ },
306
+ },
307
+ },
308
+ "access" : "readonly",
309
+ "description" :
310
+ """The instance number for the Switch Controller
311
+ Entity. The Instance number is a 24-bit number
312
+ that should be guaranteed to be unique within
313
+ the recent past and to change when the link
314
+ or node comes back up after going down. Zero is
315
+ not a valid instance number. """,
316
+ }, # column
317
+ "gsmpControllerPartitionType" : {
318
+ "nodetype" : "column",
319
+ "moduleName" : "GSMP-MIB",
320
+ "oid" : "1.3.6.1.2.1.98.1.1.1.6",
321
+ "status" : "current",
322
+ "syntax" : {
323
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpPartitionType"},
324
+ },
325
+ "access" : "readwrite",
326
+ "description" :
327
+ """A controller can request the specific partition identifier
328
+ to the session by setting the Partition Type to
329
+ fixedPartitionRequest(2). A controller can let the switch
330
+ decide whether it wants to assign a fixed partition ID or
331
+
332
+
333
+
334
+ not, by setting the Partition Type to noPartition(1).""",
335
+ }, # column
336
+ "gsmpControllerPartitionId" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "GSMP-MIB",
339
+ "oid" : "1.3.6.1.2.1.98.1.1.1.7",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpPartitionIdType"},
343
+ },
344
+ "access" : "readwrite",
345
+ "description" :
346
+ """The Id for the specific switch partition that this
347
+ Switch Controller is concerned with.
348
+ If partitions are not used or if the controller lets the
349
+ switch assigns Partition ID, i.e Partition Type =
350
+ noPartition(1), then this object is undefined.""",
351
+ }, # column
352
+ "gsmpControllerDoResync" : {
353
+ "nodetype" : "column",
354
+ "moduleName" : "GSMP-MIB",
355
+ "oid" : "1.3.6.1.2.1.98.1.1.1.8",
356
+ "status" : "current",
357
+ "syntax" : {
358
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
359
+ },
360
+ "access" : "readwrite",
361
+ "default" : "true",
362
+ "description" :
363
+ """This object specifies whether the controller should
364
+ resynchronise or reset in case of loss of synchronisation.
365
+ If this object is set to true then the Controller should
366
+ resync with PFLAG=2 (recovered adjacency).""",
367
+ }, # column
368
+ "gsmpControllerNotificationMap" : {
369
+ "nodetype" : "column",
370
+ "moduleName" : "GSMP-MIB",
371
+ "oid" : "1.3.6.1.2.1.98.1.1.1.9",
372
+ "status" : "current",
373
+ "syntax" : {
374
+ "type" : {
375
+ "basetype" : "Bits",
376
+ "sessionDown" : {
377
+ "nodetype" : "namednumber",
378
+ "number" : "0"
379
+ },
380
+ "sessionUp" : {
381
+ "nodetype" : "namednumber",
382
+ "number" : "1"
383
+ },
384
+ "sendFailureIndication" : {
385
+ "nodetype" : "namednumber",
386
+ "number" : "2"
387
+ },
388
+ "receivedFailureIndication" : {
389
+ "nodetype" : "namednumber",
390
+ "number" : "3"
391
+ },
392
+ "portUpEvent" : {
393
+ "nodetype" : "namednumber",
394
+ "number" : "4"
395
+ },
396
+ "portDownEvent" : {
397
+ "nodetype" : "namednumber",
398
+ "number" : "5"
399
+ },
400
+ "invalidLabelEvent" : {
401
+ "nodetype" : "namednumber",
402
+ "number" : "6"
403
+ },
404
+ "newPortEvent" : {
405
+ "nodetype" : "namednumber",
406
+ "number" : "7"
407
+ },
408
+ "deadPortEvent" : {
409
+ "nodetype" : "namednumber",
410
+ "number" : "8"
411
+ },
412
+ "adjacencyUpdateEvent" : {
413
+ "nodetype" : "namednumber",
414
+ "number" : "9"
415
+ },
416
+ },
417
+ },
418
+ "access" : "readwrite",
419
+ "default" : "(sessionDown, sessionUp, sendFailureIndication, receivedFailureIndication)",
420
+ "description" :
421
+ """This bitmap defines whether a corresponding SNMP
422
+ notification should be sent if a GSMP event is received
423
+ by the Switch Controller. If the bit is set to 1 a
424
+ notification should be sent. The handling and filtering of
425
+ the SNMP notifications are then further specified in the
426
+
427
+
428
+
429
+ SNMP notification originator application. """,
430
+ }, # column
431
+ "gsmpControllerSessionState" : {
432
+ "nodetype" : "column",
433
+ "moduleName" : "GSMP-MIB",
434
+ "oid" : "1.3.6.1.2.1.98.1.1.1.10",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : {
438
+ "basetype" : "Enumeration",
439
+ "null" : {
440
+ "nodetype" : "namednumber",
441
+ "number" : "1"
442
+ },
443
+ "synsent" : {
444
+ "nodetype" : "namednumber",
445
+ "number" : "2"
446
+ },
447
+ "synrcvd" : {
448
+ "nodetype" : "namednumber",
449
+ "number" : "3"
450
+ },
451
+ "estab" : {
452
+ "nodetype" : "namednumber",
453
+ "number" : "4"
454
+ },
455
+ },
456
+ },
457
+ "access" : "readonly",
458
+ "description" :
459
+ """The state for the existing or potential session that
460
+ this entity is concerned with.
461
+ The NULL state is returned if the proper encapsulation
462
+ data is not yet configured, if the row is not in active
463
+ status or if the session is in NULL state as defined in
464
+ the GSMP specification.""",
465
+ }, # column
466
+ "gsmpControllerStorageType" : {
467
+ "nodetype" : "column",
468
+ "moduleName" : "GSMP-MIB",
469
+ "oid" : "1.3.6.1.2.1.98.1.1.1.11",
470
+ "status" : "current",
471
+ "syntax" : {
472
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
473
+ },
474
+ "access" : "readwrite",
475
+ "default" : "nonVolatile",
476
+ "description" :
477
+ """The storage type for this controller entity.
478
+ Conceptual rows having the value 'permanent' need not allow
479
+ write-access to any columnar objects in the row.""",
480
+ }, # column
481
+ "gsmpControllerRowStatus" : {
482
+ "nodetype" : "column",
483
+ "moduleName" : "GSMP-MIB",
484
+ "oid" : "1.3.6.1.2.1.98.1.1.1.12",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
488
+ },
489
+ "access" : "readwrite",
490
+ "description" :
491
+ """An object that allows entries in this table to
492
+ be created and deleted using the
493
+ RowStatus convention.
494
+ While the row is in active state it's not
495
+ possible to modify the value of any object
496
+ for that row except the gsmpControllerNotificationMap
497
+ and the gsmpControllerRowStatus objects.""",
498
+ }, # column
499
+ "gsmpSwitchTable" : {
500
+ "nodetype" : "table",
501
+ "moduleName" : "GSMP-MIB",
502
+ "oid" : "1.3.6.1.2.1.98.1.2",
503
+ "status" : "current",
504
+ "description" :
505
+ """This table represents the Switch
506
+ Entities. An entry in this table needs to be configured
507
+ (created) before a GSMP session might be started.""",
508
+ }, # table
509
+ "gsmpSwitchEntry" : {
510
+ "nodetype" : "row",
511
+ "moduleName" : "GSMP-MIB",
512
+ "oid" : "1.3.6.1.2.1.98.1.2.1",
513
+ "create" : "true",
514
+ "status" : "current",
515
+ "linkage" : [
516
+ "gsmpSwitchEntityId",
517
+ ],
518
+ "description" :
519
+ """An entry in the table showing
520
+ the data for a specific Switch
521
+ Entity. If partitions are used, one entity
522
+ corresponds to one specific switch partition.
523
+ Depending of the encapsulation used,
524
+ a corresponding row in the gsmpAtmEncapTable or the
525
+ gsmpTcpIpEncapTable may have been created.""",
526
+ }, # row
527
+ "gsmpSwitchEntityId" : {
528
+ "nodetype" : "column",
529
+ "moduleName" : "GSMP-MIB",
530
+ "oid" : "1.3.6.1.2.1.98.1.2.1.1",
531
+ "status" : "current",
532
+ "syntax" : {
533
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
534
+ },
535
+ "access" : "noaccess",
536
+ "description" :
537
+ """The Switch Entity Id is unique
538
+ within the operational context of the device. """,
539
+ }, # column
540
+ "gsmpSwitchMaxVersion" : {
541
+ "nodetype" : "column",
542
+ "moduleName" : "GSMP-MIB",
543
+ "oid" : "1.3.6.1.2.1.98.1.2.1.2",
544
+ "status" : "current",
545
+ "syntax" : {
546
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpVersion"},
547
+ },
548
+ "access" : "readwrite",
549
+ "default" : "3",
550
+ "description" :
551
+ """The max version number of the GSMP protocol being
552
+ supported by this Switch. The version is negotiated by
553
+ the adjacency protocol.""",
554
+ }, # column
555
+ "gsmpSwitchTimer" : {
556
+ "nodetype" : "column",
557
+ "moduleName" : "GSMP-MIB",
558
+ "oid" : "1.3.6.1.2.1.98.1.2.1.3",
559
+ "status" : "current",
560
+ "syntax" : {
561
+ "type" : {
562
+ "basetype" : "Unsigned32",
563
+ "ranges" : [
564
+ {
565
+ "min" : "1",
566
+ "max" : "255"
567
+ },
568
+ ],
569
+ "range" : {
570
+ "min" : "1",
571
+ "max" : "255"
572
+ },
573
+ },
574
+ },
575
+ "access" : "readwrite",
576
+ "default" : "10",
577
+ "units" : "100ms",
578
+ "description" :
579
+ """The timer specifies the nominal time between
580
+ periodic adjacency protocol messages. It is a constant
581
+ for the duration of a GSMP session. The timer is
582
+ specified in units of 100ms.""",
583
+ }, # column
584
+ "gsmpSwitchName" : {
585
+ "nodetype" : "column",
586
+ "moduleName" : "GSMP-MIB",
587
+ "oid" : "1.3.6.1.2.1.98.1.2.1.4",
588
+ "status" : "current",
589
+ "syntax" : {
590
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
591
+ },
592
+ "access" : "readwrite",
593
+ "description" :
594
+ """The name of the Switch. The first three octets must be an
595
+ Organisationally Unique Identifier (OUI) that identifies
596
+ the manufacturer of the Switch. This is by default set to
597
+ the same value as the gsmpSwitchId object if not
598
+ separately specified. """,
599
+ }, # column
600
+ "gsmpSwitchPort" : {
601
+ "nodetype" : "column",
602
+ "moduleName" : "GSMP-MIB",
603
+ "oid" : "1.3.6.1.2.1.98.1.2.1.5",
604
+ "status" : "current",
605
+ "syntax" : {
606
+ "type" : { "module" :"", "name" : "Unsigned32"},
607
+ },
608
+ "access" : "readwrite",
609
+ "description" :
610
+ """The local port number for this Switch Entity.""",
611
+ "reference" :
612
+ """General Switch Management Protocol V3: Section 3.1.2""",
613
+ }, # column
614
+ "gsmpSwitchInstance" : {
615
+ "nodetype" : "column",
616
+ "moduleName" : "GSMP-MIB",
617
+ "oid" : "1.3.6.1.2.1.98.1.2.1.6",
618
+ "status" : "current",
619
+ "syntax" : {
620
+ "type" : {
621
+ "basetype" : "Unsigned32",
622
+ "ranges" : [
623
+ {
624
+ "min" : "1",
625
+ "max" : "16777215"
626
+ },
627
+ ],
628
+ "range" : {
629
+ "min" : "1",
630
+ "max" : "16777215"
631
+ },
632
+ },
633
+ },
634
+ "access" : "readonly",
635
+ "description" :
636
+ """The instance number for the Switch Entity.
637
+ The Instance number is a 24-bit number
638
+ that should be guaranteed to be unique within
639
+ the recent past and to change when the link
640
+ or node comes back up after going down. Zero is
641
+ not a valid instance number.""",
642
+ }, # column
643
+ "gsmpSwitchPartitionType" : {
644
+ "nodetype" : "column",
645
+ "moduleName" : "GSMP-MIB",
646
+ "oid" : "1.3.6.1.2.1.98.1.2.1.7",
647
+ "status" : "current",
648
+ "syntax" : {
649
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpPartitionType"},
650
+ },
651
+ "access" : "readwrite",
652
+ "description" :
653
+ """A switch can assign the specific partition identifier to
654
+ the session by setting the Partition Type to
655
+ fixedPartitionAssigned(3). A switch can specify
656
+ that no partitions are handled in the session by setting
657
+ the Partition Type to noPartition(1).""",
658
+ }, # column
659
+ "gsmpSwitchPartitionId" : {
660
+ "nodetype" : "column",
661
+ "moduleName" : "GSMP-MIB",
662
+ "oid" : "1.3.6.1.2.1.98.1.2.1.8",
663
+ "status" : "current",
664
+ "syntax" : {
665
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpPartitionIdType"},
666
+ },
667
+ "access" : "readwrite",
668
+ "description" :
669
+ """The Id for this specific switch partition that the switch
670
+ entity represents. If partitions are not used, i.e.
671
+ Partition Type = noPartition(1), then this object is
672
+ undefined.""",
673
+ }, # column
674
+ "gsmpSwitchNotificationMap" : {
675
+ "nodetype" : "column",
676
+ "moduleName" : "GSMP-MIB",
677
+ "oid" : "1.3.6.1.2.1.98.1.2.1.9",
678
+ "status" : "current",
679
+ "syntax" : {
680
+ "type" : {
681
+ "basetype" : "Bits",
682
+ "sessionDown" : {
683
+ "nodetype" : "namednumber",
684
+ "number" : "0"
685
+ },
686
+ "sessionUp" : {
687
+ "nodetype" : "namednumber",
688
+ "number" : "1"
689
+ },
690
+ "sendFailureIndication" : {
691
+ "nodetype" : "namednumber",
692
+ "number" : "2"
693
+ },
694
+ "receivedFailureIndication" : {
695
+ "nodetype" : "namednumber",
696
+ "number" : "3"
697
+ },
698
+ "portUpEvent" : {
699
+ "nodetype" : "namednumber",
700
+ "number" : "4"
701
+ },
702
+ "portDownEvent" : {
703
+ "nodetype" : "namednumber",
704
+ "number" : "5"
705
+ },
706
+ "invalidLabelEvent" : {
707
+ "nodetype" : "namednumber",
708
+ "number" : "6"
709
+ },
710
+ "newPortEvent" : {
711
+ "nodetype" : "namednumber",
712
+ "number" : "7"
713
+ },
714
+ "deadPortEvent" : {
715
+ "nodetype" : "namednumber",
716
+ "number" : "8"
717
+ },
718
+ "adjacencyUpdateEvent" : {
719
+ "nodetype" : "namednumber",
720
+ "number" : "9"
721
+ },
722
+ },
723
+ },
724
+ "access" : "readwrite",
725
+ "default" : "(sessionDown, sessionUp, sendFailureIndication, receivedFailureIndication)",
726
+ "description" :
727
+ """This bitmap defines whether a corresponding SNMP
728
+ notification should be sent if an GSMP event is sent
729
+ by the Switch Entity. If the bit is set to 1 a
730
+ notification should be sent. The handling and filtering of
731
+ the SNMP notifications are then further specified in the
732
+ SNMP notification originator application. """,
733
+ }, # column
734
+ "gsmpSwitchSwitchType" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "GSMP-MIB",
737
+ "oid" : "1.3.6.1.2.1.98.1.2.1.10",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : {
741
+ "basetype" : "OctetString",
742
+ "ranges" : [
743
+ {
744
+ "min" : "2",
745
+ "max" : "2"
746
+ },
747
+ ],
748
+ "range" : {
749
+ "min" : "2",
750
+ "max" : "2"
751
+ },
752
+ },
753
+ },
754
+ "access" : "readwrite",
755
+ "description" :
756
+ """A 16-bit field allocated by the manufacturer
757
+ of the switch. The Switch Type
758
+ identifies the product. When the Switch Type is combined
759
+ with the OUI from the Switch Name the product is
760
+ uniquely identified. """,
761
+ }, # column
762
+ "gsmpSwitchWindowSize" : {
763
+ "nodetype" : "column",
764
+ "moduleName" : "GSMP-MIB",
765
+ "oid" : "1.3.6.1.2.1.98.1.2.1.11",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : {
769
+ "basetype" : "Unsigned32",
770
+ "ranges" : [
771
+ {
772
+ "min" : "1",
773
+ "max" : "65535"
774
+ },
775
+ ],
776
+ "range" : {
777
+ "min" : "1",
778
+ "max" : "65535"
779
+ },
780
+ },
781
+ },
782
+ "access" : "readwrite",
783
+ "description" :
784
+ """The maximum number of unacknowledged request messages
785
+ that may be transmitted by the controller without the
786
+ possibility of loss. This field is used to prevent
787
+ request messages from being lost in the switch because of
788
+ overflow in the receive buffer. The field is a hint to
789
+ the controller.""",
790
+ }, # column
791
+ "gsmpSwitchSessionState" : {
792
+ "nodetype" : "column",
793
+ "moduleName" : "GSMP-MIB",
794
+ "oid" : "1.3.6.1.2.1.98.1.2.1.12",
795
+ "status" : "current",
796
+ "syntax" : {
797
+ "type" : {
798
+ "basetype" : "Enumeration",
799
+ "null" : {
800
+ "nodetype" : "namednumber",
801
+ "number" : "1"
802
+ },
803
+ "synsent" : {
804
+ "nodetype" : "namednumber",
805
+ "number" : "2"
806
+ },
807
+ "synrcvd" : {
808
+ "nodetype" : "namednumber",
809
+ "number" : "3"
810
+ },
811
+ "estab" : {
812
+ "nodetype" : "namednumber",
813
+ "number" : "4"
814
+ },
815
+ },
816
+ },
817
+ "access" : "readonly",
818
+ "description" :
819
+ """The state for the existing or potential session that
820
+ this entity is concerned with.
821
+ The NULL state is returned if the proper encapsulation
822
+ data is not yet configured, if the row is not in active
823
+ status or if the session is in NULL state as defined in
824
+ the GSMP specification.""",
825
+ }, # column
826
+ "gsmpSwitchStorageType" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "GSMP-MIB",
829
+ "oid" : "1.3.6.1.2.1.98.1.2.1.13",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
833
+ },
834
+ "access" : "readwrite",
835
+ "default" : "nonVolatile",
836
+ "description" :
837
+ """The storage type for this switch entity.
838
+ Conceptual rows having the value 'permanent' need not allow
839
+ write-access to any columnar objects in the row.""",
840
+ }, # column
841
+ "gsmpSwitchRowStatus" : {
842
+ "nodetype" : "column",
843
+ "moduleName" : "GSMP-MIB",
844
+ "oid" : "1.3.6.1.2.1.98.1.2.1.14",
845
+ "status" : "current",
846
+ "syntax" : {
847
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
848
+ },
849
+ "access" : "readwrite",
850
+ "description" :
851
+ """An object that allows entries in this table to
852
+ be created and deleted using the
853
+ RowStatus convention.
854
+ While the row is in active state it's not
855
+ possible to modify the value of any object
856
+ for that row except the gsmpSwitchNotificationMap
857
+ and the gsmpSwitchRowStatus objects.""",
858
+ }, # column
859
+ "gsmpAtmEncapTable" : {
860
+ "nodetype" : "table",
861
+ "moduleName" : "GSMP-MIB",
862
+ "oid" : "1.3.6.1.2.1.98.1.3",
863
+ "status" : "current",
864
+ "description" :
865
+ """This table contains the atm encapsulation data
866
+ for the Controller or Switch that uses atm aal5 as
867
+ encapsulation. """,
868
+ }, # table
869
+ "gsmpAtmEncapEntry" : {
870
+ "nodetype" : "row",
871
+ "moduleName" : "GSMP-MIB",
872
+ "oid" : "1.3.6.1.2.1.98.1.3.1",
873
+ "create" : "true",
874
+ "status" : "current",
875
+ "linkage" : [
876
+ "gsmpAtmEncapEntityId",
877
+ ],
878
+ "description" :
879
+ """An entry in the table showing
880
+ the encapsulation data for a specific
881
+ Switch Controller entity or Switch entity.""",
882
+ }, # row
883
+ "gsmpAtmEncapEntityId" : {
884
+ "nodetype" : "column",
885
+ "moduleName" : "GSMP-MIB",
886
+ "oid" : "1.3.6.1.2.1.98.1.3.1.1",
887
+ "status" : "current",
888
+ "syntax" : {
889
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
890
+ },
891
+ "access" : "noaccess",
892
+ "description" :
893
+ """The Controller Id or Switch Id that is unique
894
+ within the operational context of the device. """,
895
+ }, # column
896
+ "gsmpAtmEncapIfIndex" : {
897
+ "nodetype" : "column",
898
+ "moduleName" : "GSMP-MIB",
899
+ "oid" : "1.3.6.1.2.1.98.1.3.1.2",
900
+ "status" : "current",
901
+ "syntax" : {
902
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
903
+ },
904
+ "access" : "readwrite",
905
+ "description" :
906
+ """The interface index for the virtual channel over which
907
+ the GSMP session is established, i.e., the GSMP control
908
+ channel for LLC/SNAP encapsulated GSMP messages on an
909
+ ATM data link layer.""",
910
+ }, # column
911
+ "gsmpAtmEncapVpi" : {
912
+ "nodetype" : "column",
913
+ "moduleName" : "GSMP-MIB",
914
+ "oid" : "1.3.6.1.2.1.98.1.3.1.3",
915
+ "status" : "current",
916
+ "syntax" : {
917
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVpIdentifier"},
918
+ },
919
+ "access" : "readwrite",
920
+ "default" : "0",
921
+ "description" :
922
+ """ The VPI value for the virtual channel over which the
923
+ GSMP session is established, i.e., the GSMP control
924
+ channel for LLC/SNAP encapsulated GSMP messages on an
925
+ ATM data link layer.""",
926
+ }, # column
927
+ "gsmpAtmEncapVci" : {
928
+ "nodetype" : "column",
929
+ "moduleName" : "GSMP-MIB",
930
+ "oid" : "1.3.6.1.2.1.98.1.3.1.4",
931
+ "status" : "current",
932
+ "syntax" : {
933
+ "type" : { "module" :"ATM-TC-MIB", "name" : "AtmVcIdentifier"},
934
+ },
935
+ "access" : "readwrite",
936
+ "default" : "15",
937
+ "description" :
938
+ """ The VCI value for the virtual channel over which the
939
+ GSMP session is established, i.e., the GSMP control
940
+ channel for LLC/SNAP encapsulated GSMP messages on an
941
+ ATM data link layer.""",
942
+ }, # column
943
+ "gsmpAtmEncapStorageType" : {
944
+ "nodetype" : "column",
945
+ "moduleName" : "GSMP-MIB",
946
+ "oid" : "1.3.6.1.2.1.98.1.3.1.5",
947
+ "status" : "current",
948
+ "syntax" : {
949
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
950
+ },
951
+ "access" : "readwrite",
952
+ "default" : "nonVolatile",
953
+ "description" :
954
+ """The storage type for this entry. It should have the same
955
+ value as the StorageType in the referring Switch
956
+ Controller entity or Switch entity.""",
957
+ }, # column
958
+ "gsmpAtmEncapRowStatus" : {
959
+ "nodetype" : "column",
960
+ "moduleName" : "GSMP-MIB",
961
+ "oid" : "1.3.6.1.2.1.98.1.3.1.6",
962
+ "status" : "current",
963
+ "syntax" : {
964
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
965
+ },
966
+ "access" : "readwrite",
967
+ "description" :
968
+ """An object that allows entries in this table to
969
+ be created and deleted using the
970
+ RowStatus convention.
971
+ While the row is in active state it's not
972
+ possible to modify the value of any object
973
+ for that row except the gsmpAtmEncapRowStatus object.""",
974
+ }, # column
975
+ "gsmpTcpIpEncapTable" : {
976
+ "nodetype" : "table",
977
+ "moduleName" : "GSMP-MIB",
978
+ "oid" : "1.3.6.1.2.1.98.1.4",
979
+ "status" : "current",
980
+ "description" :
981
+ """This table contains the encapsulation data
982
+ for the Controller or Switch that uses TCP/IP as
983
+ encapsulation.""",
984
+ }, # table
985
+ "gsmpTcpIpEncapEntry" : {
986
+ "nodetype" : "row",
987
+ "moduleName" : "GSMP-MIB",
988
+ "oid" : "1.3.6.1.2.1.98.1.4.1",
989
+ "create" : "true",
990
+ "status" : "current",
991
+ "linkage" : [
992
+ "gsmpTcpIpEncapEntityId",
993
+ ],
994
+ "description" :
995
+ """An entry in the table showing
996
+ the encapsulation data for a specific
997
+ Switch Controller entity or Switch entity.""",
998
+ }, # row
999
+ "gsmpTcpIpEncapEntityId" : {
1000
+ "nodetype" : "column",
1001
+ "moduleName" : "GSMP-MIB",
1002
+ "oid" : "1.3.6.1.2.1.98.1.4.1.1",
1003
+ "status" : "current",
1004
+ "syntax" : {
1005
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
1006
+ },
1007
+ "access" : "noaccess",
1008
+ "description" :
1009
+ """The Controller or Switch Id is unique
1010
+ within the operational context of the device. """,
1011
+ }, # column
1012
+ "gsmpTcpIpEncapAddressType" : {
1013
+ "nodetype" : "column",
1014
+ "moduleName" : "GSMP-MIB",
1015
+ "oid" : "1.3.6.1.2.1.98.1.4.1.2",
1016
+ "status" : "current",
1017
+ "syntax" : {
1018
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1019
+ },
1020
+ "access" : "readwrite",
1021
+ "description" :
1022
+ """The type of address in gsmpTcpIpEncapAddress.""",
1023
+ }, # column
1024
+ "gsmpTcpIpEncapAddress" : {
1025
+ "nodetype" : "column",
1026
+ "moduleName" : "GSMP-MIB",
1027
+ "oid" : "1.3.6.1.2.1.98.1.4.1.3",
1028
+ "status" : "current",
1029
+ "syntax" : {
1030
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1031
+ },
1032
+ "access" : "readwrite",
1033
+ "description" :
1034
+ """The IPv4 or IPv6 address used for
1035
+ the GSMP session peer.""",
1036
+ }, # column
1037
+ "gsmpTcpIpEncapPortNumber" : {
1038
+ "nodetype" : "column",
1039
+ "moduleName" : "GSMP-MIB",
1040
+ "oid" : "1.3.6.1.2.1.98.1.4.1.4",
1041
+ "status" : "current",
1042
+ "syntax" : {
1043
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
1044
+ },
1045
+ "access" : "readwrite",
1046
+ "default" : "6068",
1047
+ "description" :
1048
+ """The TCP port number used for the TCP session
1049
+ establishment to the GSMP peer.""",
1050
+ }, # column
1051
+ "gsmpTcpIpEncapStorageType" : {
1052
+ "nodetype" : "column",
1053
+ "moduleName" : "GSMP-MIB",
1054
+ "oid" : "1.3.6.1.2.1.98.1.4.1.5",
1055
+ "status" : "current",
1056
+ "syntax" : {
1057
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1058
+ },
1059
+ "access" : "readwrite",
1060
+ "default" : "nonVolatile",
1061
+ "description" :
1062
+ """The storage type for this entry. It should have the same
1063
+ value as the StorageType in the referring Switch
1064
+ Controller entity or Switch entity.""",
1065
+ }, # column
1066
+ "gsmpTcpIpEncapRowStatus" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "GSMP-MIB",
1069
+ "oid" : "1.3.6.1.2.1.98.1.4.1.6",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1073
+ },
1074
+ "access" : "readwrite",
1075
+ "description" :
1076
+ """An object that allows entries in this table to
1077
+ be created and deleted using the
1078
+ RowStatus convention.
1079
+ While the row is in active state it's not
1080
+ possible to modify the value of any object
1081
+ for that row except the gsmpTcpIpEncapRowStatus object.""",
1082
+ }, # column
1083
+ "gsmpSessionTable" : {
1084
+ "nodetype" : "table",
1085
+ "moduleName" : "GSMP-MIB",
1086
+ "oid" : "1.3.6.1.2.1.98.1.5",
1087
+ "status" : "current",
1088
+ "description" :
1089
+ """This table represents the sessions between
1090
+ Controller and Switch pairs. """,
1091
+ }, # table
1092
+ "gsmpSessionEntry" : {
1093
+ "nodetype" : "row",
1094
+ "moduleName" : "GSMP-MIB",
1095
+ "oid" : "1.3.6.1.2.1.98.1.5.1",
1096
+ "status" : "current",
1097
+ "linkage" : [
1098
+ "gsmpSessionThisSideId",
1099
+ "gsmpSessionFarSideId",
1100
+ ],
1101
+ "description" :
1102
+ """An entry in the table showing
1103
+ the session data for a specific Controller and
1104
+ Switch pair. Also, statistics for this specific
1105
+ session is shown.""",
1106
+ }, # row
1107
+ "gsmpSessionThisSideId" : {
1108
+ "nodetype" : "column",
1109
+ "moduleName" : "GSMP-MIB",
1110
+ "oid" : "1.3.6.1.2.1.98.1.5.1.1",
1111
+ "status" : "current",
1112
+ "syntax" : {
1113
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
1114
+ },
1115
+ "access" : "noaccess",
1116
+ "description" :
1117
+ """This side ID uniquely identifies the entity that this
1118
+ session relates to within the operational
1119
+ context of the device. """,
1120
+ }, # column
1121
+ "gsmpSessionFarSideId" : {
1122
+ "nodetype" : "column",
1123
+ "moduleName" : "GSMP-MIB",
1124
+ "oid" : "1.3.6.1.2.1.98.1.5.1.2",
1125
+ "status" : "current",
1126
+ "syntax" : {
1127
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
1128
+ },
1129
+ "access" : "noaccess",
1130
+ "description" :
1131
+ """The Far side ID uniquely identifies the entity that this
1132
+ session is established against. """,
1133
+ }, # column
1134
+ "gsmpSessionVersion" : {
1135
+ "nodetype" : "column",
1136
+ "moduleName" : "GSMP-MIB",
1137
+ "oid" : "1.3.6.1.2.1.98.1.5.1.3",
1138
+ "status" : "current",
1139
+ "syntax" : {
1140
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpVersion"},
1141
+ },
1142
+ "access" : "readonly",
1143
+ "description" :
1144
+ """The version number of the GSMP protocol being used in
1145
+ this session. The version is the result of the
1146
+ negotiation by the adjacency protocol.""",
1147
+ }, # column
1148
+ "gsmpSessionTimer" : {
1149
+ "nodetype" : "column",
1150
+ "moduleName" : "GSMP-MIB",
1151
+ "oid" : "1.3.6.1.2.1.98.1.5.1.4",
1152
+ "status" : "current",
1153
+ "syntax" : {
1154
+ "type" : { "module" :"", "name" : "Integer32"},
1155
+ },
1156
+ "access" : "readonly",
1157
+ "units" : "100ms",
1158
+ "description" :
1159
+ """The timer specifies the time remaining until the
1160
+ adjacency timer expires. The object could take negative
1161
+ values since if no valid GSMP messages are
1162
+ received in any period of time in excess of three times
1163
+ the value of the Timer negotiated by the adjacency
1164
+ protocol loss of synchronisation may be declared. The
1165
+ timer is specified in units of 100ms.""",
1166
+ }, # column
1167
+ "gsmpSessionPartitionId" : {
1168
+ "nodetype" : "column",
1169
+ "moduleName" : "GSMP-MIB",
1170
+ "oid" : "1.3.6.1.2.1.98.1.5.1.5",
1171
+ "status" : "current",
1172
+ "syntax" : {
1173
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpPartitionIdType"},
1174
+ },
1175
+ "access" : "readonly",
1176
+ "description" :
1177
+ """The Partition Id for the specific switch partition that
1178
+ this session is concerned with.""",
1179
+ }, # column
1180
+ "gsmpSessionAdjacencyCount" : {
1181
+ "nodetype" : "column",
1182
+ "moduleName" : "GSMP-MIB",
1183
+ "oid" : "1.3.6.1.2.1.98.1.5.1.6",
1184
+ "status" : "current",
1185
+ "syntax" : {
1186
+ "type" : {
1187
+ "basetype" : "Unsigned32",
1188
+ "ranges" : [
1189
+ {
1190
+ "min" : "1",
1191
+ "max" : "255"
1192
+ },
1193
+ ],
1194
+ "range" : {
1195
+ "min" : "1",
1196
+ "max" : "255"
1197
+ },
1198
+ },
1199
+ },
1200
+ "access" : "readonly",
1201
+ "description" :
1202
+ """This object specifies the current number of adjacencies
1203
+ that are established with controllers and the switch
1204
+ partition that is used for this session. The value
1205
+ includes this session.""",
1206
+ }, # column
1207
+ "gsmpSessionFarSideName" : {
1208
+ "nodetype" : "column",
1209
+ "moduleName" : "GSMP-MIB",
1210
+ "oid" : "1.3.6.1.2.1.98.1.5.1.7",
1211
+ "status" : "current",
1212
+ "syntax" : {
1213
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpNameType"},
1214
+ },
1215
+ "access" : "readonly",
1216
+ "description" :
1217
+ """The name of the far side as advertised in the adjacency
1218
+ message.""",
1219
+ }, # column
1220
+ "gsmpSessionFarSidePort" : {
1221
+ "nodetype" : "column",
1222
+ "moduleName" : "GSMP-MIB",
1223
+ "oid" : "1.3.6.1.2.1.98.1.5.1.8",
1224
+ "status" : "current",
1225
+ "syntax" : {
1226
+ "type" : { "module" :"", "name" : "Unsigned32"},
1227
+ },
1228
+ "access" : "readonly",
1229
+ "description" :
1230
+ """The local port number of the link across which the
1231
+ message is being sent.""",
1232
+ "reference" :
1233
+ """General Switch Management Protocol V3: Section 3.1.2""",
1234
+ }, # column
1235
+ "gsmpSessionFarSideInstance" : {
1236
+ "nodetype" : "column",
1237
+ "moduleName" : "GSMP-MIB",
1238
+ "oid" : "1.3.6.1.2.1.98.1.5.1.9",
1239
+ "status" : "current",
1240
+ "syntax" : {
1241
+ "type" : {
1242
+ "basetype" : "Unsigned32",
1243
+ "ranges" : [
1244
+ {
1245
+ "min" : "1",
1246
+ "max" : "16777215"
1247
+ },
1248
+ ],
1249
+ "range" : {
1250
+ "min" : "1",
1251
+ "max" : "16777215"
1252
+ },
1253
+ },
1254
+ },
1255
+ "access" : "readonly",
1256
+ "description" :
1257
+ """The instance number used for the link during this
1258
+ session. The Instance number is a 24-bit number
1259
+ that should be guaranteed to be unique within
1260
+
1261
+
1262
+
1263
+ the recent past and to change when the link
1264
+ or node comes back up after going down. Zero is not
1265
+ a valid instance number.""",
1266
+ }, # column
1267
+ "gsmpSessionLastFailureCode" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "GSMP-MIB",
1270
+ "oid" : "1.3.6.1.2.1.98.1.5.1.10",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : {
1274
+ "basetype" : "Unsigned32",
1275
+ "ranges" : [
1276
+ {
1277
+ "min" : "0",
1278
+ "max" : "255"
1279
+ },
1280
+ ],
1281
+ "range" : {
1282
+ "min" : "0",
1283
+ "max" : "255"
1284
+ },
1285
+ },
1286
+ },
1287
+ "access" : "readonly",
1288
+ "description" :
1289
+ """This is the last failure code that was received over
1290
+ this session. If no failure code have been received, the
1291
+ value is zero.""",
1292
+ }, # column
1293
+ "gsmpSessionDiscontinuityTime" : {
1294
+ "nodetype" : "column",
1295
+ "moduleName" : "GSMP-MIB",
1296
+ "oid" : "1.3.6.1.2.1.98.1.5.1.11",
1297
+ "status" : "current",
1298
+ "syntax" : {
1299
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1300
+ },
1301
+ "access" : "readonly",
1302
+ "description" :
1303
+ """The value of sysUpTime on the most recent occasion at
1304
+ which one or more of this session's counters
1305
+ suffered a discontinuity. If no such discontinuities have
1306
+ occurred since then, this object contains the same
1307
+ timestamp as gsmpSessionStartUptime .""",
1308
+ }, # column
1309
+ "gsmpSessionStartUptime" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "GSMP-MIB",
1312
+ "oid" : "1.3.6.1.2.1.98.1.5.1.12",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1316
+ },
1317
+ "access" : "readonly",
1318
+ "description" :
1319
+ """ The value of sysUpTime when the session came to
1320
+ established state.""",
1321
+ }, # column
1322
+ "gsmpSessionStatSentMessages" : {
1323
+ "nodetype" : "column",
1324
+ "moduleName" : "GSMP-MIB",
1325
+ "oid" : "1.3.6.1.2.1.98.1.5.1.13",
1326
+ "status" : "current",
1327
+ "syntax" : {
1328
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1329
+ },
1330
+ "access" : "readonly",
1331
+ "description" :
1332
+ """The number of messages that have been sent in this
1333
+ session. All GSMP messages pertaining to this session after
1334
+ the session came to established state SHALL
1335
+ be counted, also including adjacency protocol messages
1336
+ and failure response messages.
1337
+ When the counter suffers any discontinuity, then
1338
+ the gsmpSessionDiscontinuityTime object indicates when it
1339
+
1340
+
1341
+
1342
+ happened.""",
1343
+ }, # column
1344
+ "gsmpSessionStatFailureInds" : {
1345
+ "nodetype" : "column",
1346
+ "moduleName" : "GSMP-MIB",
1347
+ "oid" : "1.3.6.1.2.1.98.1.5.1.14",
1348
+ "status" : "current",
1349
+ "syntax" : {
1350
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1351
+ },
1352
+ "access" : "readonly",
1353
+ "description" :
1354
+ """The number of messages that have been sent with a
1355
+ failure indication in this session. Warning messages
1356
+ SHALL NOT be counted.
1357
+ When the counter suffers any discontinuity, then
1358
+ the gsmpSessionDiscontinuityTime object indicates when it
1359
+ happened.""",
1360
+ "reference" :
1361
+ """General Switch Management Protocol V3: Section 12.1""",
1362
+ }, # column
1363
+ "gsmpSessionStatReceivedMessages" : {
1364
+ "nodetype" : "column",
1365
+ "moduleName" : "GSMP-MIB",
1366
+ "oid" : "1.3.6.1.2.1.98.1.5.1.15",
1367
+ "status" : "current",
1368
+ "syntax" : {
1369
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1370
+ },
1371
+ "access" : "readonly",
1372
+ "description" :
1373
+ """The number of messages that have been received in
1374
+ this session. All legal GSMP messages pertaining to this
1375
+ session after the session came to established state SHALL
1376
+ be counted, also including adjacency protocol messages
1377
+ and failure response messages.
1378
+ When the counter suffers any discontinuity, then
1379
+ the gsmpSessionDiscontinuityTime object indicates when it
1380
+ happened.""",
1381
+ }, # column
1382
+ "gsmpSessionStatReceivedFailures" : {
1383
+ "nodetype" : "column",
1384
+ "moduleName" : "GSMP-MIB",
1385
+ "oid" : "1.3.6.1.2.1.98.1.5.1.16",
1386
+ "status" : "current",
1387
+ "syntax" : {
1388
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1389
+ },
1390
+ "access" : "readonly",
1391
+ "description" :
1392
+ """The number of messages that have been received in
1393
+ this session with a failure indication. Warning messages
1394
+ SHALL NOT be counted.
1395
+ When the counter suffers any discontinuity, then
1396
+ the gsmpSessionDiscontinuityTime object indicates when it
1397
+ happened.""",
1398
+ "reference" :
1399
+ """General Switch Management Protocol V3: Section 12.1""",
1400
+ }, # column
1401
+ "gsmpSessionStatPortUpEvents" : {
1402
+ "nodetype" : "column",
1403
+ "moduleName" : "GSMP-MIB",
1404
+ "oid" : "1.3.6.1.2.1.98.1.5.1.17",
1405
+ "status" : "current",
1406
+ "syntax" : {
1407
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1408
+ },
1409
+ "access" : "readonly",
1410
+ "description" :
1411
+ """The number of Port Up events that have been sent or
1412
+ received on this session.
1413
+ When the counter suffers any discontinuity, then
1414
+ the gsmpSessionDiscontinuityTime object indicates when it
1415
+ happened.""",
1416
+ "reference" :
1417
+ """General Switch Management Protocol V3: Section 9.1""",
1418
+ }, # column
1419
+ "gsmpSessionStatPortDownEvents" : {
1420
+ "nodetype" : "column",
1421
+ "moduleName" : "GSMP-MIB",
1422
+ "oid" : "1.3.6.1.2.1.98.1.5.1.18",
1423
+ "status" : "current",
1424
+ "syntax" : {
1425
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1426
+ },
1427
+ "access" : "readonly",
1428
+ "description" :
1429
+ """The number of Port Down events that have been sent or
1430
+ received on this session.
1431
+ When the counter suffers any discontinuity, then
1432
+ the gsmpSessionDiscontinuityTime object indicates when it
1433
+ happened.""",
1434
+ "reference" :
1435
+ """General Switch Management Protocol V3: Section 9.2""",
1436
+ }, # column
1437
+ "gsmpSessionStatInvLabelEvents" : {
1438
+ "nodetype" : "column",
1439
+ "moduleName" : "GSMP-MIB",
1440
+ "oid" : "1.3.6.1.2.1.98.1.5.1.19",
1441
+ "status" : "current",
1442
+ "syntax" : {
1443
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1444
+ },
1445
+ "access" : "readonly",
1446
+ "description" :
1447
+ """The number of Invalid label events that have been sent
1448
+ or received on this session.
1449
+ When the counter suffers any discontinuity, then
1450
+ the gsmpSessionDiscontinuityTime object indicates when it
1451
+ happened.""",
1452
+ "reference" :
1453
+ """General Switch Management Protocol V3: Section 9.3""",
1454
+ }, # column
1455
+ "gsmpSessionStatNewPortEvents" : {
1456
+ "nodetype" : "column",
1457
+ "moduleName" : "GSMP-MIB",
1458
+ "oid" : "1.3.6.1.2.1.98.1.5.1.20",
1459
+ "status" : "current",
1460
+ "syntax" : {
1461
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1462
+ },
1463
+ "access" : "readonly",
1464
+ "description" :
1465
+ """The number of New Port events that have been sent or
1466
+
1467
+
1468
+
1469
+ received on this session.
1470
+ When the counter suffers any discontinuity, then
1471
+ the gsmpSessionDiscontinuityTime object indicates when it
1472
+ happened.""",
1473
+ "reference" :
1474
+ """General Switch Management Protocol V3: Section 9.4""",
1475
+ }, # column
1476
+ "gsmpSessionStatDeadPortEvents" : {
1477
+ "nodetype" : "column",
1478
+ "moduleName" : "GSMP-MIB",
1479
+ "oid" : "1.3.6.1.2.1.98.1.5.1.21",
1480
+ "status" : "current",
1481
+ "syntax" : {
1482
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1483
+ },
1484
+ "access" : "readonly",
1485
+ "description" :
1486
+ """The number of Dead Port events that have been sent or
1487
+ received on this session.
1488
+ When the counter suffers any discontinuity, then
1489
+ the gsmpSessionDiscontinuityTime object indicates when it
1490
+ happened.""",
1491
+ "reference" :
1492
+ """General Switch Management Protocol V3: Section 9.5""",
1493
+ }, # column
1494
+ "gsmpSessionStatAdjUpdateEvents" : {
1495
+ "nodetype" : "column",
1496
+ "moduleName" : "GSMP-MIB",
1497
+ "oid" : "1.3.6.1.2.1.98.1.5.1.22",
1498
+ "status" : "current",
1499
+ "syntax" : {
1500
+ "type" : { "module" :"RMON2-MIB", "name" : "ZeroBasedCounter32"},
1501
+ },
1502
+ "access" : "readonly",
1503
+ "description" :
1504
+ """The number of Adjacency Update events that have been sent
1505
+ or received on this session.
1506
+ When the counter suffers any discontinuity, then
1507
+ the gsmpSessionDiscontinuityTime object indicates when it
1508
+ happened.""",
1509
+ "reference" :
1510
+ """General Switch Management Protocol V3: Section 9.6""",
1511
+ }, # column
1512
+ "gsmpNotificationsObjects" : {
1513
+ "nodetype" : "node",
1514
+ "moduleName" : "GSMP-MIB",
1515
+ "oid" : "1.3.6.1.2.1.98.2",
1516
+ }, # node
1517
+ "gsmpEventPort" : {
1518
+ "nodetype" : "scalar",
1519
+ "moduleName" : "GSMP-MIB",
1520
+ "oid" : "1.3.6.1.2.1.98.2.1",
1521
+ "status" : "current",
1522
+ "syntax" : {
1523
+ "type" : { "module" :"", "name" : "Unsigned32"},
1524
+ },
1525
+ "access" : "notifyonly",
1526
+ "description" :
1527
+ """This object specifies the Port Number that is
1528
+ carried in this event.""",
1529
+ }, # scalar
1530
+ "gsmpEventPortSessionNumber" : {
1531
+ "nodetype" : "scalar",
1532
+ "moduleName" : "GSMP-MIB",
1533
+ "oid" : "1.3.6.1.2.1.98.2.2",
1534
+ "status" : "current",
1535
+ "syntax" : {
1536
+ "type" : { "module" :"", "name" : "Unsigned32"},
1537
+ },
1538
+ "access" : "notifyonly",
1539
+ "description" :
1540
+ """This object specifies the Port Session Number that is
1541
+ carried in this event.""",
1542
+ }, # scalar
1543
+ "gsmpEventSequenceNumber" : {
1544
+ "nodetype" : "scalar",
1545
+ "moduleName" : "GSMP-MIB",
1546
+ "oid" : "1.3.6.1.2.1.98.2.3",
1547
+ "status" : "current",
1548
+ "syntax" : {
1549
+ "type" : { "module" :"", "name" : "Unsigned32"},
1550
+ },
1551
+ "access" : "notifyonly",
1552
+ "description" :
1553
+ """This object specifies the Event Sequence Number that is
1554
+ carried in this event.""",
1555
+ }, # scalar
1556
+ "gsmpEventLabel" : {
1557
+ "nodetype" : "scalar",
1558
+ "moduleName" : "GSMP-MIB",
1559
+ "oid" : "1.3.6.1.2.1.98.2.4",
1560
+ "status" : "current",
1561
+ "syntax" : {
1562
+ "type" : { "module" :"GSMP-MIB", "name" : "GsmpLabelType"},
1563
+ },
1564
+ "access" : "notifyonly",
1565
+ "description" :
1566
+ """This object specifies the Label that is
1567
+ carried in this event.""",
1568
+ }, # scalar
1569
+ "gsmpConformance" : {
1570
+ "nodetype" : "node",
1571
+ "moduleName" : "GSMP-MIB",
1572
+ "oid" : "1.3.6.1.2.1.98.3",
1573
+ }, # node
1574
+ "gsmpGroups" : {
1575
+ "nodetype" : "node",
1576
+ "moduleName" : "GSMP-MIB",
1577
+ "oid" : "1.3.6.1.2.1.98.3.1",
1578
+ }, # node
1579
+ "gsmpCompliances" : {
1580
+ "nodetype" : "node",
1581
+ "moduleName" : "GSMP-MIB",
1582
+ "oid" : "1.3.6.1.2.1.98.3.2",
1583
+ }, # node
1584
+ }, # nodes
1585
+
1586
+ "notifications" : {
1587
+ "gsmpSessionDown" : {
1588
+ "nodetype" : "notification",
1589
+ "moduleName" : "GSMP-MIB",
1590
+ "oid" : "1.3.6.1.2.1.98.0.1",
1591
+ "status" : "current",
1592
+ "objects" : {
1593
+ "gsmpSessionStartUptime" : {
1594
+ "nodetype" : "object",
1595
+ "module" : "GSMP-MIB"
1596
+ },
1597
+ "gsmpSessionStatSentMessages" : {
1598
+ "nodetype" : "object",
1599
+ "module" : "GSMP-MIB"
1600
+ },
1601
+ "gsmpSessionStatFailureInds" : {
1602
+ "nodetype" : "object",
1603
+ "module" : "GSMP-MIB"
1604
+ },
1605
+ "gsmpSessionStatReceivedMessages" : {
1606
+ "nodetype" : "object",
1607
+ "module" : "GSMP-MIB"
1608
+ },
1609
+ "gsmpSessionStatReceivedFailures" : {
1610
+ "nodetype" : "object",
1611
+ "module" : "GSMP-MIB"
1612
+ },
1613
+ "gsmpSessionStatPortUpEvents" : {
1614
+ "nodetype" : "object",
1615
+ "module" : "GSMP-MIB"
1616
+ },
1617
+ "gsmpSessionStatPortDownEvents" : {
1618
+ "nodetype" : "object",
1619
+ "module" : "GSMP-MIB"
1620
+ },
1621
+ "gsmpSessionStatInvLabelEvents" : {
1622
+ "nodetype" : "object",
1623
+ "module" : "GSMP-MIB"
1624
+ },
1625
+ "gsmpSessionStatNewPortEvents" : {
1626
+ "nodetype" : "object",
1627
+ "module" : "GSMP-MIB"
1628
+ },
1629
+ "gsmpSessionStatDeadPortEvents" : {
1630
+ "nodetype" : "object",
1631
+ "module" : "GSMP-MIB"
1632
+ },
1633
+ "gsmpSessionStatAdjUpdateEvents" : {
1634
+ "nodetype" : "object",
1635
+ "module" : "GSMP-MIB"
1636
+ },
1637
+ },
1638
+ "description" :
1639
+ """When it has been enabled, this notification is
1640
+ generated whenever a session is taken down, regardless
1641
+ of whether the session went down normally or not.
1642
+ Its purpose is to allow a management application
1643
+ (primarily an accounting application) that is
1644
+ monitoring the session statistics to receive the final
1645
+ values of these counters, so that the application can
1646
+ properly account for the amounts the counters were
1647
+ incremented since the last time the application polled
1648
+ them. The gsmpSessionStartUptime object provides the
1649
+ total amount of time that the session was active.
1650
+
1651
+ This notification is not a substitute for polling the
1652
+ session statistic counts. In particular, the count
1653
+ values reported in this notification cannot be assumed
1654
+ to be the complete totals for the life of the session,
1655
+ since they may have wrapped while the
1656
+ session was up.
1657
+
1658
+ The session to which this notification
1659
+ applies is identified by the gsmpSessionThisSideId and
1660
+ gsmpSessionFarSideId which could be inferred from the
1661
+ Object Identifiers of the objects contained in the
1662
+ notification.
1663
+ An instance of this notification will contain exactly
1664
+ one instance of each of its objects, and these objects
1665
+ will all belong to the same conceptual row of the
1666
+ gsmpSessionTable.""",
1667
+ }, # notification
1668
+ "gsmpSessionUp" : {
1669
+ "nodetype" : "notification",
1670
+ "moduleName" : "GSMP-MIB",
1671
+ "oid" : "1.3.6.1.2.1.98.0.2",
1672
+ "status" : "current",
1673
+ "objects" : {
1674
+ "gsmpSessionFarSideInstance" : {
1675
+ "nodetype" : "object",
1676
+ "module" : "GSMP-MIB"
1677
+ },
1678
+ },
1679
+ "description" :
1680
+ """When it has been enabled, this notification is
1681
+ generated when new session is established.
1682
+
1683
+ The new session is identified by the gsmpSessionThisSideId
1684
+ and gsmpSessionFarSideId which could be inferred from the
1685
+ Object Identifier of the gsmpSessionFarSideInstance object
1686
+
1687
+
1688
+
1689
+ contained in the notification.""",
1690
+ }, # notification
1691
+ "gsmpSentFailureInd" : {
1692
+ "nodetype" : "notification",
1693
+ "moduleName" : "GSMP-MIB",
1694
+ "oid" : "1.3.6.1.2.1.98.0.3",
1695
+ "status" : "current",
1696
+ "objects" : {
1697
+ "gsmpSessionLastFailureCode" : {
1698
+ "nodetype" : "object",
1699
+ "module" : "GSMP-MIB"
1700
+ },
1701
+ "gsmpSessionStatFailureInds" : {
1702
+ "nodetype" : "object",
1703
+ "module" : "GSMP-MIB"
1704
+ },
1705
+ },
1706
+ "description" :
1707
+ """When it has been enabled, this notification is
1708
+ generated when a message with a failure indication was
1709
+ sent.
1710
+
1711
+ The notification indicates a change in the value of
1712
+ gsmpSessionStatFailureInds. The
1713
+ gsmpSessionLastFailureCode contains the failure
1714
+ reason.
1715
+
1716
+ The session to which this notification
1717
+ applies is identified by the gsmpSessionThisSideId and
1718
+ gsmpSessionFarSideId which could be inferred from the
1719
+ Object Identifiers of the objects contained in the
1720
+ notification.""",
1721
+ }, # notification
1722
+ "gsmpReceivedFailureInd" : {
1723
+ "nodetype" : "notification",
1724
+ "moduleName" : "GSMP-MIB",
1725
+ "oid" : "1.3.6.1.2.1.98.0.4",
1726
+ "status" : "current",
1727
+ "objects" : {
1728
+ "gsmpSessionLastFailureCode" : {
1729
+ "nodetype" : "object",
1730
+ "module" : "GSMP-MIB"
1731
+ },
1732
+ "gsmpSessionStatReceivedFailures" : {
1733
+ "nodetype" : "object",
1734
+ "module" : "GSMP-MIB"
1735
+ },
1736
+ },
1737
+ "description" :
1738
+ """When it has been enabled, this notification is
1739
+ generate when a message with a failure indication
1740
+ is received.
1741
+
1742
+ The notification indicates a change in the value of
1743
+ gsmpSessionStatReceivedFailures. The
1744
+ gsmpSessionLastFailureCode contains the failure
1745
+ reason.
1746
+
1747
+ The session to which this notification
1748
+ applies is identified by the gsmpSessionThisSideId and
1749
+ gsmpSessionFarSideId which could be inferred from the
1750
+ Object Identifiers of the objects contained in the
1751
+ notification.""",
1752
+ }, # notification
1753
+ "gsmpPortUpEvent" : {
1754
+ "nodetype" : "notification",
1755
+ "moduleName" : "GSMP-MIB",
1756
+ "oid" : "1.3.6.1.2.1.98.0.5",
1757
+ "status" : "current",
1758
+ "objects" : {
1759
+ "gsmpSessionStatPortUpEvents" : {
1760
+ "nodetype" : "object",
1761
+ "module" : "GSMP-MIB"
1762
+ },
1763
+ "gsmpEventPort" : {
1764
+ "nodetype" : "object",
1765
+ "module" : "GSMP-MIB"
1766
+ },
1767
+ "gsmpEventPortSessionNumber" : {
1768
+ "nodetype" : "object",
1769
+ "module" : "GSMP-MIB"
1770
+ },
1771
+ "gsmpEventSequenceNumber" : {
1772
+ "nodetype" : "object",
1773
+ "module" : "GSMP-MIB"
1774
+ },
1775
+ },
1776
+ "description" :
1777
+ """When it has been enabled, this notification is
1778
+ generated when a Port Up Event occurs.
1779
+
1780
+ The notification indicates a change in the value of
1781
+ gsmpSessionStatPortUpEvents.
1782
+
1783
+ The session to which this notification
1784
+ applies is identified by the gsmpSessionThisSideId and
1785
+ gsmpSessionFarSideId which could be inferred from the
1786
+ Object Identifier of the gsmpSessionStatPortUpEvents
1787
+ object contained in the notification.""",
1788
+ }, # notification
1789
+ "gsmpPortDownEvent" : {
1790
+ "nodetype" : "notification",
1791
+ "moduleName" : "GSMP-MIB",
1792
+ "oid" : "1.3.6.1.2.1.98.0.6",
1793
+ "status" : "current",
1794
+ "objects" : {
1795
+ "gsmpSessionStatPortDownEvents" : {
1796
+ "nodetype" : "object",
1797
+ "module" : "GSMP-MIB"
1798
+ },
1799
+ "gsmpEventPort" : {
1800
+ "nodetype" : "object",
1801
+ "module" : "GSMP-MIB"
1802
+ },
1803
+ "gsmpEventPortSessionNumber" : {
1804
+ "nodetype" : "object",
1805
+ "module" : "GSMP-MIB"
1806
+ },
1807
+ "gsmpEventSequenceNumber" : {
1808
+ "nodetype" : "object",
1809
+ "module" : "GSMP-MIB"
1810
+ },
1811
+ },
1812
+ "description" :
1813
+ """When it has been enabled, this notification is
1814
+ generated when a Port Down Event occurs.
1815
+
1816
+ The notification indicates a change in the value of
1817
+ gsmpSessionStatPortDownEvents.
1818
+
1819
+ The session to which this notification
1820
+ applies is identified by the gsmpSessionThisSideId and
1821
+ gsmpSessionFarSideId which could be inferred from the
1822
+ Object Identifier of the gsmpSessionStatPortDownEvents
1823
+ object contained in the notification.""",
1824
+ }, # notification
1825
+ "gsmpInvalidLabelEvent" : {
1826
+ "nodetype" : "notification",
1827
+ "moduleName" : "GSMP-MIB",
1828
+ "oid" : "1.3.6.1.2.1.98.0.7",
1829
+ "status" : "current",
1830
+ "objects" : {
1831
+ "gsmpSessionStatInvLabelEvents" : {
1832
+ "nodetype" : "object",
1833
+ "module" : "GSMP-MIB"
1834
+ },
1835
+ "gsmpEventPort" : {
1836
+ "nodetype" : "object",
1837
+ "module" : "GSMP-MIB"
1838
+ },
1839
+ "gsmpEventLabel" : {
1840
+ "nodetype" : "object",
1841
+ "module" : "GSMP-MIB"
1842
+ },
1843
+ "gsmpEventSequenceNumber" : {
1844
+ "nodetype" : "object",
1845
+ "module" : "GSMP-MIB"
1846
+ },
1847
+ },
1848
+ "description" :
1849
+ """When it has been enabled, this notification is
1850
+ generated when an Invalid Label Event occurs.
1851
+
1852
+ The notification indicates a change in the value of
1853
+ gsmpSessionStatInvLabelEvents.
1854
+
1855
+ The session to which this notification
1856
+ applies is identified by the gsmpSessionThisSideId and
1857
+ gsmpSessionFarSideId which could be inferred from the
1858
+ Object Identifier of the gsmpSessionStatInvLabelEvents
1859
+ object contained in the notification.""",
1860
+ }, # notification
1861
+ "gsmpNewPortEvent" : {
1862
+ "nodetype" : "notification",
1863
+ "moduleName" : "GSMP-MIB",
1864
+ "oid" : "1.3.6.1.2.1.98.0.8",
1865
+ "status" : "current",
1866
+ "objects" : {
1867
+ "gsmpSessionStatNewPortEvents" : {
1868
+ "nodetype" : "object",
1869
+ "module" : "GSMP-MIB"
1870
+ },
1871
+ "gsmpEventPort" : {
1872
+ "nodetype" : "object",
1873
+ "module" : "GSMP-MIB"
1874
+ },
1875
+ "gsmpEventPortSessionNumber" : {
1876
+ "nodetype" : "object",
1877
+ "module" : "GSMP-MIB"
1878
+ },
1879
+ "gsmpEventSequenceNumber" : {
1880
+ "nodetype" : "object",
1881
+ "module" : "GSMP-MIB"
1882
+ },
1883
+ },
1884
+ "description" :
1885
+ """When it has been enabled, this notification is
1886
+ generated when a New Port Event occurs.
1887
+
1888
+ The notification indicates a change in the value of
1889
+ gsmpSessionStatNewPortEvents.
1890
+
1891
+ The session to which this notification
1892
+ applies is identified by the gsmpSessionThisSideId and
1893
+ gsmpSessionFarSideId which could be inferred from the
1894
+ Object Identifier of the gsmpSessionStatNewPortEvents
1895
+ object contained in the notification.""",
1896
+ }, # notification
1897
+ "gsmpDeadPortEvent" : {
1898
+ "nodetype" : "notification",
1899
+ "moduleName" : "GSMP-MIB",
1900
+ "oid" : "1.3.6.1.2.1.98.0.9",
1901
+ "status" : "current",
1902
+ "objects" : {
1903
+ "gsmpSessionStatDeadPortEvents" : {
1904
+ "nodetype" : "object",
1905
+ "module" : "GSMP-MIB"
1906
+ },
1907
+ "gsmpEventPort" : {
1908
+ "nodetype" : "object",
1909
+ "module" : "GSMP-MIB"
1910
+ },
1911
+ "gsmpEventPortSessionNumber" : {
1912
+ "nodetype" : "object",
1913
+ "module" : "GSMP-MIB"
1914
+ },
1915
+ "gsmpEventSequenceNumber" : {
1916
+ "nodetype" : "object",
1917
+ "module" : "GSMP-MIB"
1918
+ },
1919
+ },
1920
+ "description" :
1921
+ """When it has been enabled, this notification is
1922
+ generated when a Dead Port Event occurs.
1923
+
1924
+ The notification indicates a change in the value of
1925
+ gsmpSessionStatDeadPortEvents.
1926
+
1927
+ The session to which this notification
1928
+ applies is identified by the gsmpSessionThisSideId and
1929
+ gsmpSessionFarSideId which could be inferred from the
1930
+ Object Identifier of the gsmpSessionStatDeadPortEvents
1931
+ object contained in the notification.""",
1932
+ }, # notification
1933
+ "gsmpAdjacencyUpdateEvent" : {
1934
+ "nodetype" : "notification",
1935
+ "moduleName" : "GSMP-MIB",
1936
+ "oid" : "1.3.6.1.2.1.98.0.10",
1937
+ "status" : "current",
1938
+ "objects" : {
1939
+ "gsmpSessionAdjacencyCount" : {
1940
+ "nodetype" : "object",
1941
+ "module" : "GSMP-MIB"
1942
+ },
1943
+ "gsmpSessionStatAdjUpdateEvents" : {
1944
+ "nodetype" : "object",
1945
+ "module" : "GSMP-MIB"
1946
+ },
1947
+ "gsmpEventSequenceNumber" : {
1948
+ "nodetype" : "object",
1949
+ "module" : "GSMP-MIB"
1950
+ },
1951
+ },
1952
+ "description" :
1953
+ """When it has been enabled, this notification is
1954
+ generated when an Adjacency Update Event occurs.
1955
+
1956
+ The gsmpSessionAdjacencyCount contains the new value of
1957
+ the number of adjacencies
1958
+ that are established with controllers and the switch
1959
+ partition that is used for this session.
1960
+
1961
+ The notification indicates a change in the value of
1962
+ gsmpSessionStatAdjUpdateEvents.
1963
+
1964
+ The session to which this notification
1965
+ applies is identified by the gsmpSessionThisSideId and
1966
+ gsmpSessionFarSideId which could be inferred from the
1967
+ Object Identifier of the gsmpSessionAdjacencyCount
1968
+ or the gsmpSessionStatAdjUpdateEvents object contained
1969
+ in the notification.""",
1970
+ }, # notification
1971
+ }, # notifications
1972
+
1973
+ "groups" : {
1974
+ "gsmpGeneralGroup" : {
1975
+ "nodetype" : "group",
1976
+ "moduleName" : "GSMP-MIB",
1977
+ "oid" : "1.3.6.1.2.1.98.3.1.1",
1978
+ "status" : "current",
1979
+ "members" : {
1980
+ "gsmpSessionVersion" : {
1981
+ "nodetype" : "member",
1982
+ "module" : "GSMP-MIB"
1983
+ },
1984
+ "gsmpSessionTimer" : {
1985
+ "nodetype" : "member",
1986
+ "module" : "GSMP-MIB"
1987
+ },
1988
+ "gsmpSessionPartitionId" : {
1989
+ "nodetype" : "member",
1990
+ "module" : "GSMP-MIB"
1991
+ },
1992
+ "gsmpSessionAdjacencyCount" : {
1993
+ "nodetype" : "member",
1994
+ "module" : "GSMP-MIB"
1995
+ },
1996
+ "gsmpSessionFarSideName" : {
1997
+ "nodetype" : "member",
1998
+ "module" : "GSMP-MIB"
1999
+ },
2000
+ "gsmpSessionFarSidePort" : {
2001
+ "nodetype" : "member",
2002
+ "module" : "GSMP-MIB"
2003
+ },
2004
+ "gsmpSessionFarSideInstance" : {
2005
+ "nodetype" : "member",
2006
+ "module" : "GSMP-MIB"
2007
+ },
2008
+ "gsmpSessionLastFailureCode" : {
2009
+ "nodetype" : "member",
2010
+ "module" : "GSMP-MIB"
2011
+ },
2012
+ "gsmpSessionDiscontinuityTime" : {
2013
+ "nodetype" : "member",
2014
+ "module" : "GSMP-MIB"
2015
+ },
2016
+ "gsmpSessionStartUptime" : {
2017
+ "nodetype" : "member",
2018
+ "module" : "GSMP-MIB"
2019
+ },
2020
+ "gsmpSessionStatSentMessages" : {
2021
+ "nodetype" : "member",
2022
+ "module" : "GSMP-MIB"
2023
+ },
2024
+ "gsmpSessionStatFailureInds" : {
2025
+ "nodetype" : "member",
2026
+ "module" : "GSMP-MIB"
2027
+ },
2028
+ "gsmpSessionStatReceivedMessages" : {
2029
+ "nodetype" : "member",
2030
+ "module" : "GSMP-MIB"
2031
+ },
2032
+ "gsmpSessionStatReceivedFailures" : {
2033
+ "nodetype" : "member",
2034
+ "module" : "GSMP-MIB"
2035
+ },
2036
+ "gsmpSessionStatPortUpEvents" : {
2037
+ "nodetype" : "member",
2038
+ "module" : "GSMP-MIB"
2039
+ },
2040
+ "gsmpSessionStatPortDownEvents" : {
2041
+ "nodetype" : "member",
2042
+ "module" : "GSMP-MIB"
2043
+ },
2044
+ "gsmpSessionStatInvLabelEvents" : {
2045
+ "nodetype" : "member",
2046
+ "module" : "GSMP-MIB"
2047
+ },
2048
+ "gsmpSessionStatNewPortEvents" : {
2049
+ "nodetype" : "member",
2050
+ "module" : "GSMP-MIB"
2051
+ },
2052
+ "gsmpSessionStatDeadPortEvents" : {
2053
+ "nodetype" : "member",
2054
+ "module" : "GSMP-MIB"
2055
+ },
2056
+ "gsmpSessionStatAdjUpdateEvents" : {
2057
+ "nodetype" : "member",
2058
+ "module" : "GSMP-MIB"
2059
+ },
2060
+ }, # members
2061
+ "description" :
2062
+ """Objects that apply to all GSMP implementations.""",
2063
+ }, # group
2064
+ "gsmpControllerGroup" : {
2065
+ "nodetype" : "group",
2066
+ "moduleName" : "GSMP-MIB",
2067
+ "oid" : "1.3.6.1.2.1.98.3.1.2",
2068
+ "status" : "current",
2069
+ "members" : {
2070
+ "gsmpControllerMaxVersion" : {
2071
+ "nodetype" : "member",
2072
+ "module" : "GSMP-MIB"
2073
+ },
2074
+ "gsmpControllerTimer" : {
2075
+ "nodetype" : "member",
2076
+ "module" : "GSMP-MIB"
2077
+ },
2078
+ "gsmpControllerPort" : {
2079
+ "nodetype" : "member",
2080
+ "module" : "GSMP-MIB"
2081
+ },
2082
+ "gsmpControllerInstance" : {
2083
+ "nodetype" : "member",
2084
+ "module" : "GSMP-MIB"
2085
+ },
2086
+ "gsmpControllerPartitionType" : {
2087
+ "nodetype" : "member",
2088
+ "module" : "GSMP-MIB"
2089
+ },
2090
+ "gsmpControllerPartitionId" : {
2091
+ "nodetype" : "member",
2092
+ "module" : "GSMP-MIB"
2093
+ },
2094
+ "gsmpControllerDoResync" : {
2095
+ "nodetype" : "member",
2096
+ "module" : "GSMP-MIB"
2097
+ },
2098
+ "gsmpControllerNotificationMap" : {
2099
+ "nodetype" : "member",
2100
+ "module" : "GSMP-MIB"
2101
+ },
2102
+ "gsmpControllerSessionState" : {
2103
+ "nodetype" : "member",
2104
+ "module" : "GSMP-MIB"
2105
+ },
2106
+ "gsmpControllerStorageType" : {
2107
+ "nodetype" : "member",
2108
+ "module" : "GSMP-MIB"
2109
+ },
2110
+ "gsmpControllerRowStatus" : {
2111
+ "nodetype" : "member",
2112
+ "module" : "GSMP-MIB"
2113
+ },
2114
+ }, # members
2115
+ "description" :
2116
+ """Objects that apply GSMP implementations of
2117
+ Switch Controllers.""",
2118
+ }, # group
2119
+ "gsmpSwitchGroup" : {
2120
+ "nodetype" : "group",
2121
+ "moduleName" : "GSMP-MIB",
2122
+ "oid" : "1.3.6.1.2.1.98.3.1.3",
2123
+ "status" : "current",
2124
+ "members" : {
2125
+ "gsmpSwitchMaxVersion" : {
2126
+ "nodetype" : "member",
2127
+ "module" : "GSMP-MIB"
2128
+ },
2129
+ "gsmpSwitchTimer" : {
2130
+ "nodetype" : "member",
2131
+ "module" : "GSMP-MIB"
2132
+ },
2133
+ "gsmpSwitchName" : {
2134
+ "nodetype" : "member",
2135
+ "module" : "GSMP-MIB"
2136
+ },
2137
+ "gsmpSwitchPort" : {
2138
+ "nodetype" : "member",
2139
+ "module" : "GSMP-MIB"
2140
+ },
2141
+ "gsmpSwitchInstance" : {
2142
+ "nodetype" : "member",
2143
+ "module" : "GSMP-MIB"
2144
+ },
2145
+ "gsmpSwitchPartitionType" : {
2146
+ "nodetype" : "member",
2147
+ "module" : "GSMP-MIB"
2148
+ },
2149
+ "gsmpSwitchPartitionId" : {
2150
+ "nodetype" : "member",
2151
+ "module" : "GSMP-MIB"
2152
+ },
2153
+ "gsmpSwitchNotificationMap" : {
2154
+ "nodetype" : "member",
2155
+ "module" : "GSMP-MIB"
2156
+ },
2157
+ "gsmpSwitchSwitchType" : {
2158
+ "nodetype" : "member",
2159
+ "module" : "GSMP-MIB"
2160
+ },
2161
+ "gsmpSwitchWindowSize" : {
2162
+ "nodetype" : "member",
2163
+ "module" : "GSMP-MIB"
2164
+ },
2165
+ "gsmpSwitchSessionState" : {
2166
+ "nodetype" : "member",
2167
+ "module" : "GSMP-MIB"
2168
+ },
2169
+ "gsmpSwitchStorageType" : {
2170
+ "nodetype" : "member",
2171
+ "module" : "GSMP-MIB"
2172
+ },
2173
+ "gsmpSwitchRowStatus" : {
2174
+ "nodetype" : "member",
2175
+ "module" : "GSMP-MIB"
2176
+ },
2177
+ }, # members
2178
+ "description" :
2179
+ """Objects that apply GSMP implementations of
2180
+ Switches.""",
2181
+ }, # group
2182
+ "gsmpAtmEncapGroup" : {
2183
+ "nodetype" : "group",
2184
+ "moduleName" : "GSMP-MIB",
2185
+ "oid" : "1.3.6.1.2.1.98.3.1.4",
2186
+ "status" : "current",
2187
+ "members" : {
2188
+ "gsmpAtmEncapIfIndex" : {
2189
+ "nodetype" : "member",
2190
+ "module" : "GSMP-MIB"
2191
+ },
2192
+ "gsmpAtmEncapVpi" : {
2193
+ "nodetype" : "member",
2194
+ "module" : "GSMP-MIB"
2195
+ },
2196
+ "gsmpAtmEncapVci" : {
2197
+ "nodetype" : "member",
2198
+ "module" : "GSMP-MIB"
2199
+ },
2200
+ "gsmpAtmEncapStorageType" : {
2201
+ "nodetype" : "member",
2202
+ "module" : "GSMP-MIB"
2203
+ },
2204
+ "gsmpAtmEncapRowStatus" : {
2205
+ "nodetype" : "member",
2206
+ "module" : "GSMP-MIB"
2207
+ },
2208
+ }, # members
2209
+ "description" :
2210
+ """Objects that apply to GSMP implementations that
2211
+ supports ATM for GSMP encapsulation.""",
2212
+ }, # group
2213
+ "gsmpTcpIpEncapGroup" : {
2214
+ "nodetype" : "group",
2215
+ "moduleName" : "GSMP-MIB",
2216
+ "oid" : "1.3.6.1.2.1.98.3.1.5",
2217
+ "status" : "current",
2218
+ "members" : {
2219
+ "gsmpTcpIpEncapAddressType" : {
2220
+ "nodetype" : "member",
2221
+ "module" : "GSMP-MIB"
2222
+ },
2223
+ "gsmpTcpIpEncapAddress" : {
2224
+ "nodetype" : "member",
2225
+ "module" : "GSMP-MIB"
2226
+ },
2227
+ "gsmpTcpIpEncapPortNumber" : {
2228
+ "nodetype" : "member",
2229
+ "module" : "GSMP-MIB"
2230
+ },
2231
+ "gsmpTcpIpEncapStorageType" : {
2232
+ "nodetype" : "member",
2233
+ "module" : "GSMP-MIB"
2234
+ },
2235
+ "gsmpTcpIpEncapRowStatus" : {
2236
+ "nodetype" : "member",
2237
+ "module" : "GSMP-MIB"
2238
+ },
2239
+ }, # members
2240
+ "description" :
2241
+ """Objects that apply to GSMP implementations that
2242
+ supports TCP/IP for GSMP encapsulation.""",
2243
+ }, # group
2244
+ "gsmpNotificationObjectsGroup" : {
2245
+ "nodetype" : "group",
2246
+ "moduleName" : "GSMP-MIB",
2247
+ "oid" : "1.3.6.1.2.1.98.3.1.6",
2248
+ "status" : "current",
2249
+ "members" : {
2250
+ "gsmpEventPort" : {
2251
+ "nodetype" : "member",
2252
+ "module" : "GSMP-MIB"
2253
+ },
2254
+ "gsmpEventPortSessionNumber" : {
2255
+ "nodetype" : "member",
2256
+ "module" : "GSMP-MIB"
2257
+ },
2258
+ "gsmpEventSequenceNumber" : {
2259
+ "nodetype" : "member",
2260
+ "module" : "GSMP-MIB"
2261
+ },
2262
+ "gsmpEventLabel" : {
2263
+ "nodetype" : "member",
2264
+ "module" : "GSMP-MIB"
2265
+ },
2266
+ }, # members
2267
+ "description" :
2268
+ """Objects that are contained in the notifications.""",
2269
+ }, # group
2270
+ "gsmpNotificationsGroup" : {
2271
+ "nodetype" : "group",
2272
+ "moduleName" : "GSMP-MIB",
2273
+ "oid" : "1.3.6.1.2.1.98.3.1.7",
2274
+ "status" : "current",
2275
+ "members" : {
2276
+ "gsmpSessionDown" : {
2277
+ "nodetype" : "member",
2278
+ "module" : "GSMP-MIB"
2279
+ },
2280
+ "gsmpSessionUp" : {
2281
+ "nodetype" : "member",
2282
+ "module" : "GSMP-MIB"
2283
+ },
2284
+ "gsmpSentFailureInd" : {
2285
+ "nodetype" : "member",
2286
+ "module" : "GSMP-MIB"
2287
+ },
2288
+ "gsmpReceivedFailureInd" : {
2289
+ "nodetype" : "member",
2290
+ "module" : "GSMP-MIB"
2291
+ },
2292
+ "gsmpPortUpEvent" : {
2293
+ "nodetype" : "member",
2294
+ "module" : "GSMP-MIB"
2295
+ },
2296
+ "gsmpPortDownEvent" : {
2297
+ "nodetype" : "member",
2298
+ "module" : "GSMP-MIB"
2299
+ },
2300
+ "gsmpInvalidLabelEvent" : {
2301
+ "nodetype" : "member",
2302
+ "module" : "GSMP-MIB"
2303
+ },
2304
+ "gsmpNewPortEvent" : {
2305
+ "nodetype" : "member",
2306
+ "module" : "GSMP-MIB"
2307
+ },
2308
+ "gsmpDeadPortEvent" : {
2309
+ "nodetype" : "member",
2310
+ "module" : "GSMP-MIB"
2311
+ },
2312
+ "gsmpAdjacencyUpdateEvent" : {
2313
+ "nodetype" : "member",
2314
+ "module" : "GSMP-MIB"
2315
+ },
2316
+ }, # members
2317
+ "description" :
2318
+ """The notifications which indicate specific changes
2319
+ in the value of objects gsmpSessionTable""",
2320
+ }, # group
2321
+ }, # groups
2322
+
2323
+ "compliances" : {
2324
+ "gsmpModuleCompliance" : {
2325
+ "nodetype" : "compliance",
2326
+ "moduleName" : "GSMP-MIB",
2327
+ "oid" : "1.3.6.1.2.1.98.3.2.1",
2328
+ "status" : "current",
2329
+ "description" :
2330
+ """The compliance statement for agents that support
2331
+ the GSMP MIB.""",
2332
+ "requires" : {
2333
+ "gsmpGeneralGroup" : {
2334
+ "nodetype" : "mandatory",
2335
+ "module" : "GSMP-MIB"
2336
+ },
2337
+ "gsmpControllerGroup" : {
2338
+ "nodetype" : "optional",
2339
+ "module" : "GSMP-MIB",
2340
+ "description" :
2341
+ """This group is mandatory for all Switch
2342
+ Controllers""",
2343
+ },
2344
+ "gsmpSwitchGroup" : {
2345
+ "nodetype" : "optional",
2346
+ "module" : "GSMP-MIB",
2347
+ "description" :
2348
+ """This group is mandatory for all Switches""",
2349
+ },
2350
+ "gsmpAtmEncapGroup" : {
2351
+ "nodetype" : "optional",
2352
+ "module" : "GSMP-MIB",
2353
+ "description" :
2354
+ """This group must be supported if ATM is used for GSMP
2355
+ encapsulation. """,
2356
+ },
2357
+ "gsmpTcpIpEncapGroup" : {
2358
+ "nodetype" : "optional",
2359
+ "module" : "GSMP-MIB",
2360
+ "description" :
2361
+ """This group must be supported if TCP/IP is used for GSMP
2362
+ encapsulation. """,
2363
+ },
2364
+ "gsmpNotificationObjectsGroup" : {
2365
+ "nodetype" : "optional",
2366
+ "module" : "GSMP-MIB",
2367
+ "description" :
2368
+ """This group must be supported if notifications
2369
+ are supported. """,
2370
+ },
2371
+ "gsmpNotificationsGroup" : {
2372
+ "nodetype" : "optional",
2373
+ "module" : "GSMP-MIB",
2374
+ "description" :
2375
+ """This group must be supported if notifications
2376
+ are supported. """,
2377
+ },
2378
+ }, # requires
2379
+ "refinements" : {
2380
+ "gsmpTcpIpEncapAddressType" : {
2381
+ "module" : "GSMP-MIB",
2382
+ "syntax" : {
2383
+ "type" : {
2384
+ "basetype" : "Enumeration",
2385
+ "parent module" : {
2386
+ "name" : "INET-ADDRESS-MIB",
2387
+ "type" : "InetAddressType",
2388
+ },
2389
+ "unknown" : {
2390
+ "nodetype" : "namednumber",
2391
+ "number" : "0"
2392
+ },
2393
+ "ipv4" : {
2394
+ "nodetype" : "namednumber",
2395
+ "number" : "1"
2396
+ },
2397
+ "ipv6" : {
2398
+ "nodetype" : "namednumber",
2399
+ "number" : "2"
2400
+ },
2401
+ "ipv4z" : {
2402
+ "nodetype" : "namednumber",
2403
+ "number" : "3"
2404
+ },
2405
+ "ipv6z" : {
2406
+ "nodetype" : "namednumber",
2407
+ "number" : "4"
2408
+ },
2409
+ },
2410
+ }, # syntax
2411
+ "description" :
2412
+ """An implementation is only required to support
2413
+ 'unknown(0)', and IPv4 addresses. Supporting addresses with
2414
+ zone index or IPv6 addresses are optional. Defining
2415
+ Internet addresses by using DNS domain names are not
2416
+ allowed.""",
2417
+ },
2418
+ "gsmpTcpIpEncapAddress" : {
2419
+ "module" : "GSMP-MIB",
2420
+ "syntax" : {
2421
+ "type" : {
2422
+ "basetype" : "OctetString",
2423
+ "parent module" : {
2424
+ "name" : "INET-ADDRESS-MIB",
2425
+ "type" : "InetAddress",
2426
+ },
2427
+ "ranges" : [
2428
+ {
2429
+ "min" : "0",
2430
+ "max" : "0"
2431
+ },
2432
+ {
2433
+ "min" : "4",
2434
+ "max" : "4"
2435
+ },
2436
+ {
2437
+ "min" : "8",
2438
+ "max" : "8"
2439
+ },
2440
+ {
2441
+ "min" : "16",
2442
+ "max" : "16"
2443
+ },
2444
+ {
2445
+ "min" : "20",
2446
+ "max" : "20"
2447
+ },
2448
+ ],
2449
+ "range" : {
2450
+ "min" : "0",
2451
+ "max" : "20"
2452
+ },
2453
+ },
2454
+ }, # syntax
2455
+ "description" :
2456
+ """An implementation is only required to support
2457
+
2458
+
2459
+
2460
+ IPv4 addresses. Supporting addresses with zone index or IPv6
2461
+ addresses are optional.""",
2462
+ },
2463
+ }, # refinements
2464
+
2465
+ }, # compliance
2466
+ }, # compliances
2467
+
2468
+ }