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,1150 @@
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 SIP-SERVER-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SIP-SERVER-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SIP-SERVER-MIB",
11
+
12
+ "SIP-SERVER-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Session Initiation Protocol
17
+ Working Group""",
18
+ "contact" :
19
+ """SIP WG email: sip@ietf.org
20
+
21
+ Co-editor: Kevin Lingle
22
+ Cisco Systems, Inc.
23
+ postal: 7025 Kit Creek Road
24
+ P.O. Box 14987
25
+ Research Triangle Park, NC 27709
26
+ USA
27
+ email: klingle@cisco.com
28
+ phone: +1 919 476 2029
29
+
30
+ Co-editor: Joon Maeng
31
+ email: jmaeng@austin.rr.com
32
+
33
+ Co-editor: Jean-Francois Mule
34
+ CableLabs
35
+ postal: 858 Coal Creek Circle
36
+ Louisville, CO 80027
37
+ USA
38
+ email: jf.mule@cablelabs.com
39
+ phone: +1 303 661 9100
40
+
41
+ Co-editor: Dave Walker
42
+ email: drwalker@rogers.com""",
43
+ "description" :
44
+ """Session Initiation Protocol (SIP) Server MIB module. SIP is an
45
+ application-layer signaling protocol for creating, modifying,
46
+ and terminating multimedia sessions with one or more
47
+ participants. These sessions include Internet multimedia
48
+ conferences and Internet telephone calls. SIP is defined in
49
+ RFC 3261 (June 2002).
50
+
51
+ This MIB is defined for the management of SIP Proxy, Redirect,
52
+ and Registrar Servers.
53
+
54
+
55
+
56
+ A Proxy Server acts as both a client and a server. It accepts
57
+ requests from other clients, either responding to them or
58
+ passing them on to other servers, possibly after modification.
59
+
60
+ A Redirect Server accepts requests from clients and returns
61
+ zero or more addresses to that client. Unlike a User Agent
62
+ Server, it does not accept calls.
63
+
64
+ A Registrar is a server that accepts REGISTER requests. A
65
+ Registrar is typically co-located with a Proxy or Redirect
66
+ Server.
67
+
68
+ Copyright (C) The IETF Trust (2007). This version of
69
+ this MIB module is part of RFC 4780; see the RFC itself for
70
+ full legal notices.""",
71
+ "revisions" : (
72
+ {
73
+ "date" : "2007-04-20 00:00",
74
+ "description" :
75
+ """Initial version of the IETF SIP-SERVER-MIB module. This
76
+ version published as part of RFC 4780.""",
77
+ },
78
+ ),
79
+ "identity node" : "sipServerMIB",
80
+ },
81
+
82
+ "imports" : (
83
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
84
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
85
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
86
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
87
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
88
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
89
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
90
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
91
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
92
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
93
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
94
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
95
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applIndex"},
96
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
97
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
98
+ ),
99
+
100
+ "nodes" : {
101
+ "sipServerMIB" : {
102
+ "nodetype" : "node",
103
+ "moduleName" : "SIP-SERVER-MIB",
104
+ "oid" : "1.3.6.1.2.1.151",
105
+ "status" : "current",
106
+ }, # node
107
+ "sipServerMIBObjects" : {
108
+ "nodetype" : "node",
109
+ "moduleName" : "SIP-SERVER-MIB",
110
+ "oid" : "1.3.6.1.2.1.151.1",
111
+ }, # node
112
+ "sipServerCfg" : {
113
+ "nodetype" : "node",
114
+ "moduleName" : "SIP-SERVER-MIB",
115
+ "oid" : "1.3.6.1.2.1.151.1.1",
116
+ }, # node
117
+ "sipServerCfgTable" : {
118
+ "nodetype" : "table",
119
+ "moduleName" : "SIP-SERVER-MIB",
120
+ "oid" : "1.3.6.1.2.1.151.1.1.1",
121
+ "status" : "current",
122
+ "description" :
123
+ """This table contains configuration objects applicable to SIP
124
+ Redirect and Proxy Servers.""",
125
+ }, # table
126
+ "sipServerCfgEntry" : {
127
+ "nodetype" : "row",
128
+ "moduleName" : "SIP-SERVER-MIB",
129
+ "oid" : "1.3.6.1.2.1.151.1.1.1.1",
130
+ "status" : "current",
131
+ "linkage" : [
132
+ "applIndex",
133
+ ],
134
+ "description" :
135
+ """A row of common configuration.
136
+
137
+ Each row represents those objects for a particular SIP server
138
+ present in this system. applIndex is used to uniquely identify
139
+ these instances of SIP servers and correlate them through
140
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).
141
+ The same value of applIndex used in the corresponding
142
+ SIP-COMMON-MIB is used here.""",
143
+ }, # row
144
+ "sipServerCfgHostAddressType" : {
145
+ "nodetype" : "column",
146
+ "moduleName" : "SIP-SERVER-MIB",
147
+ "oid" : "1.3.6.1.2.1.151.1.1.1.1.1",
148
+ "status" : "current",
149
+ "syntax" : {
150
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
151
+ },
152
+ "access" : "readonly",
153
+ "description" :
154
+ """The type of Internet address by which the SIP server is
155
+ reachable.""",
156
+ "reference" :
157
+ """RFC 3261, Section 19.1.1""",
158
+ }, # column
159
+ "sipServerCfgHostAddress" : {
160
+ "nodetype" : "column",
161
+ "moduleName" : "SIP-SERVER-MIB",
162
+ "oid" : "1.3.6.1.2.1.151.1.1.1.1.2",
163
+ "status" : "current",
164
+ "syntax" : {
165
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
166
+ },
167
+ "access" : "readonly",
168
+ "description" :
169
+ """This is the host portion of a SIP URI that is assigned to the
170
+ SIP server. It MAY contain a fully qualified domain name or
171
+ an IP address. The length of the value will depend on the type
172
+ of address specified. The type of address given by this object
173
+ is controlled by sipServerCfgHostAddressType.""",
174
+ "reference" :
175
+ """RFC 3261, Section 19.1.1""",
176
+ }, # column
177
+ "sipServerProxyCfg" : {
178
+ "nodetype" : "node",
179
+ "moduleName" : "SIP-SERVER-MIB",
180
+ "oid" : "1.3.6.1.2.1.151.1.3",
181
+ }, # node
182
+ "sipServerProxyCfgTable" : {
183
+ "nodetype" : "table",
184
+ "moduleName" : "SIP-SERVER-MIB",
185
+ "oid" : "1.3.6.1.2.1.151.1.3.1",
186
+ "status" : "current",
187
+ "description" :
188
+ """This table contains configuration objects applicable to SIP
189
+ Proxy Servers.""",
190
+ }, # table
191
+ "sipServerProxyCfgEntry" : {
192
+ "nodetype" : "row",
193
+ "moduleName" : "SIP-SERVER-MIB",
194
+ "oid" : "1.3.6.1.2.1.151.1.3.1.1",
195
+ "status" : "current",
196
+ "linkage" : [
197
+ "applIndex",
198
+ ],
199
+ "description" :
200
+ """A row of common proxy configuration.
201
+
202
+ Each row represents those objects for a particular SIP server
203
+ present in this system. applIndex is used to uniquely identify
204
+ these instances of SIP servers and correlate them through the
205
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788). The
206
+ same value of applIndex used in the corresponding
207
+ SIP-COMMON-MIB is used here.""",
208
+ }, # row
209
+ "sipServerCfgProxyStatefulness" : {
210
+ "nodetype" : "column",
211
+ "moduleName" : "SIP-SERVER-MIB",
212
+ "oid" : "1.3.6.1.2.1.151.1.3.1.1.1",
213
+ "status" : "current",
214
+ "syntax" : {
215
+ "type" : {
216
+ "basetype" : "Enumeration",
217
+ "stateless" : {
218
+ "nodetype" : "namednumber",
219
+ "number" : "1"
220
+ },
221
+ "transactionStateful" : {
222
+ "nodetype" : "namednumber",
223
+ "number" : "2"
224
+ },
225
+ "callStateful" : {
226
+ "nodetype" : "namednumber",
227
+ "number" : "3"
228
+ },
229
+ },
230
+ },
231
+ "access" : "readonly",
232
+ "description" :
233
+ """This object reflects the default mode of operation for the
234
+ Proxy Server entity.
235
+
236
+ A stateless proxy is a logical entity that does not maintain
237
+ the client or server transaction state machines when it
238
+ processes requests. A stateless proxy forwards every request it
239
+ receives downstream and every response it receives upstream. If
240
+ the value of this object is stateless(1), the proxy defaults to
241
+ stateless operations.
242
+
243
+ A transaction stateful proxy, or simply a 'stateful proxy', is
244
+ a logical entity that maintains the client and server
245
+ transaction state machines during the processing of a request.
246
+ A (transaction) stateful proxy is not the same as a call
247
+ stateful proxy. If the value of this object is
248
+ transactionStateful(2), the proxy is stateful on a transaction
249
+ basis.
250
+
251
+ A call stateful proxy is a logical entity if it retains state
252
+ for a dialog from the initiating INVITE to the terminating BYE
253
+ request. A call stateful proxy is always transaction stateful,
254
+ but the converse is not necessarily true. If the value of this
255
+ object is callStateful(3), the proxy is call stateful.""",
256
+ "reference" :
257
+ """RFC 3261, Section 16""",
258
+ }, # column
259
+ "sipServerCfgProxyRecursion" : {
260
+ "nodetype" : "column",
261
+ "moduleName" : "SIP-SERVER-MIB",
262
+ "oid" : "1.3.6.1.2.1.151.1.3.1.1.2",
263
+ "status" : "current",
264
+ "syntax" : {
265
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
266
+ },
267
+ "access" : "readonly",
268
+ "description" :
269
+ """This object reflects whether or not the Proxy performs a
270
+ recursive search on the Contacts provided in 3xx redirects.
271
+
272
+ If the value of this object is 'true', a recursive search is
273
+ performed. If the value is 'false', no search is performed,
274
+ and the 3xx response is sent upstream towards the source of
275
+ the request.""",
276
+ "reference" :
277
+ """RFC 3261 Sections 16.5 and 16.6""",
278
+ }, # column
279
+ "sipServerCfgProxyRecordRoute" : {
280
+ "nodetype" : "column",
281
+ "moduleName" : "SIP-SERVER-MIB",
282
+ "oid" : "1.3.6.1.2.1.151.1.3.1.1.3",
283
+ "status" : "current",
284
+ "syntax" : {
285
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
286
+ },
287
+ "access" : "readonly",
288
+ "description" :
289
+ """This object reflects whether or not the proxy adds itself to
290
+ the Record-Route header as a default action. This header is
291
+ used to list the proxies that insist on being in the signaling
292
+ path for subsequent requests related to the call leg.
293
+
294
+ If the value of this object is 'true', the proxy adds itself to
295
+ the end of the Record-Route header, creating the header if
296
+ required. If the value is 'false', the proxy does not add
297
+ itself to the Record-Route header.""",
298
+ "reference" :
299
+ """RFC 3261, Section 20.30""",
300
+ }, # column
301
+ "sipServerCfgProxyAuthMethod" : {
302
+ "nodetype" : "column",
303
+ "moduleName" : "SIP-SERVER-MIB",
304
+ "oid" : "1.3.6.1.2.1.151.1.3.1.1.4",
305
+ "status" : "current",
306
+ "syntax" : {
307
+ "type" : {
308
+ "basetype" : "Bits",
309
+ "none" : {
310
+ "nodetype" : "namednumber",
311
+ "number" : "0"
312
+ },
313
+ "tls" : {
314
+ "nodetype" : "namednumber",
315
+ "number" : "1"
316
+ },
317
+ "digest" : {
318
+ "nodetype" : "namednumber",
319
+ "number" : "2"
320
+ },
321
+ },
322
+ },
323
+ "access" : "readonly",
324
+ "description" :
325
+ """This object reflects the authentication methods that MAY be
326
+ used to authenticate request originators.
327
+
328
+ bit 0 no authentication is performed
329
+ bit 1 TLS is used
330
+ bit 2 HTTP Digest is used.""",
331
+ "reference" :
332
+ """RFC 3261 Sections 22, 23, 26, 26.2.3""",
333
+ }, # column
334
+ "sipServerCfgProxyAuthDefaultRealm" : {
335
+ "nodetype" : "column",
336
+ "moduleName" : "SIP-SERVER-MIB",
337
+ "oid" : "1.3.6.1.2.1.151.1.3.1.1.5",
338
+ "status" : "current",
339
+ "syntax" : {
340
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
341
+ },
342
+ "access" : "readonly",
343
+ "description" :
344
+ """This object reflects the default realm value used in
345
+ Proxy-Authenticate headers. Note that this MAY need to be
346
+ stored per user, in which case, this default value is ignored.""",
347
+ "reference" :
348
+ """RFC 3261, Section 22.1""",
349
+ }, # column
350
+ "sipServerProxyStats" : {
351
+ "nodetype" : "node",
352
+ "moduleName" : "SIP-SERVER-MIB",
353
+ "oid" : "1.3.6.1.2.1.151.1.4",
354
+ }, # node
355
+ "sipServerProxyStatsTable" : {
356
+ "nodetype" : "table",
357
+ "moduleName" : "SIP-SERVER-MIB",
358
+ "oid" : "1.3.6.1.2.1.151.1.4.1",
359
+ "status" : "current",
360
+ "description" :
361
+ """This table contains the statistics objects applicable to all
362
+ SIP Proxy Servers in this system.""",
363
+ }, # table
364
+ "sipServerProxyStatsEntry" : {
365
+ "nodetype" : "row",
366
+ "moduleName" : "SIP-SERVER-MIB",
367
+ "oid" : "1.3.6.1.2.1.151.1.4.1.1",
368
+ "status" : "current",
369
+ "linkage" : [
370
+ "applIndex",
371
+ ],
372
+ "description" :
373
+ """A row of summary statistics.
374
+
375
+ Each row represents those objects for a particular SIP server
376
+ present in this system. applIndex is used to uniquely identify
377
+ these instances of SIP servers and correlate them through the
378
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788). The
379
+ same value of applIndex used in the corresponding
380
+ SIP-COMMON-MIB is used here.""",
381
+ }, # row
382
+ "sipServerProxyStatProxyReqFailures" : {
383
+ "nodetype" : "column",
384
+ "moduleName" : "SIP-SERVER-MIB",
385
+ "oid" : "1.3.6.1.2.1.151.1.4.1.1.1",
386
+ "status" : "current",
387
+ "syntax" : {
388
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
389
+ },
390
+ "access" : "readonly",
391
+ "description" :
392
+ """This object contains the number of occurrences of unsupported
393
+ options being specified in received Proxy-Require headers.
394
+ Such occurrences result in a 420 Bad Extension status code
395
+ being returned.
396
+
397
+ Discontinuities in the value of this counter can occur at
398
+ re-initialization of the SIP entity or service. A Management
399
+ Station can detect discontinuities in this counter by
400
+
401
+
402
+ monitoring the sipServerProxyStatsDisconTime object in the same
403
+ row.""",
404
+ }, # column
405
+ "sipServerProxyStatsDisconTime" : {
406
+ "nodetype" : "column",
407
+ "moduleName" : "SIP-SERVER-MIB",
408
+ "oid" : "1.3.6.1.2.1.151.1.4.1.1.2",
409
+ "status" : "current",
410
+ "syntax" : {
411
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
412
+ },
413
+ "access" : "readonly",
414
+ "description" :
415
+ """The value of the sysUpTime object when the counters for the server
416
+ statistics objects in this row last experienced a discontinuity.""",
417
+ }, # column
418
+ "sipServerRegCfg" : {
419
+ "nodetype" : "node",
420
+ "moduleName" : "SIP-SERVER-MIB",
421
+ "oid" : "1.3.6.1.2.1.151.1.5",
422
+ }, # node
423
+ "sipServerRegCfgTable" : {
424
+ "nodetype" : "table",
425
+ "moduleName" : "SIP-SERVER-MIB",
426
+ "oid" : "1.3.6.1.2.1.151.1.5.1",
427
+ "status" : "current",
428
+ "description" :
429
+ """This table contains configuration objects applicable to SIP
430
+ Registrars.""",
431
+ }, # table
432
+ "sipServerRegCfgEntry" : {
433
+ "nodetype" : "row",
434
+ "moduleName" : "SIP-SERVER-MIB",
435
+ "oid" : "1.3.6.1.2.1.151.1.5.1.1",
436
+ "status" : "current",
437
+ "linkage" : [
438
+ "applIndex",
439
+ ],
440
+ "description" :
441
+ """A row of common Registrar configuration.
442
+
443
+ Each row represents those objects for a particular SIP server
444
+ present in this system. applIndex is used to uniquely identify
445
+ these instances of SIP servers and correlate them through the
446
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788). The
447
+ same value of applIndex used in the corresponding
448
+ SIP-COMMON-MIB is used here.""",
449
+ }, # row
450
+ "sipServerRegMaxContactExpiryDuration" : {
451
+ "nodetype" : "column",
452
+ "moduleName" : "SIP-SERVER-MIB",
453
+ "oid" : "1.3.6.1.2.1.151.1.5.1.1.1",
454
+ "status" : "current",
455
+ "syntax" : {
456
+ "type" : {
457
+ "basetype" : "Unsigned32",
458
+ "ranges" : [
459
+ {
460
+ "min" : "0",
461
+ "max" : "4294967295"
462
+ },
463
+ ],
464
+ "range" : {
465
+ "min" : "0",
466
+ "max" : "4294967295"
467
+ },
468
+ },
469
+ },
470
+ "access" : "readonly",
471
+ "units" : "seconds",
472
+ "description" :
473
+ """This object reflects the maximum expiry that may be requested
474
+ by a User Agent for a particular Contact. User Agents can
475
+ specify expiry using either an Expiry header in a REGISTER
476
+ request, or using an Expires parameter in a Contact header in
477
+ a REGISTER request. If the value requested by the User Agent
478
+ is greater than the value of this object, then the contact
479
+ information is given the duration specified by this object, and
480
+ that duration is indicated to the User Agent in the response.""",
481
+ }, # column
482
+ "sipServerRegMaxUsers" : {
483
+ "nodetype" : "column",
484
+ "moduleName" : "SIP-SERVER-MIB",
485
+ "oid" : "1.3.6.1.2.1.151.1.5.1.1.2",
486
+ "status" : "current",
487
+ "syntax" : {
488
+ "type" : {
489
+ "basetype" : "Unsigned32",
490
+ "ranges" : [
491
+ {
492
+ "min" : "1",
493
+ "max" : "4294967295"
494
+ },
495
+ ],
496
+ "range" : {
497
+ "min" : "1",
498
+ "max" : "4294967295"
499
+ },
500
+ },
501
+ },
502
+ "access" : "readonly",
503
+ "description" :
504
+ """This object reflects the maximum number of users that the
505
+ Registrar supports. The current number of users is reflected
506
+ by sipServerRegCurrentUsers.""",
507
+ }, # column
508
+ "sipServerRegCurrentUsers" : {
509
+ "nodetype" : "column",
510
+ "moduleName" : "SIP-SERVER-MIB",
511
+ "oid" : "1.3.6.1.2.1.151.1.5.1.1.3",
512
+ "status" : "current",
513
+ "syntax" : {
514
+ "type" : {
515
+ "basetype" : "Unsigned32",
516
+ "parent module" : {
517
+ "name" : "SNMPv2-SMI",
518
+ "type" : "Gauge32",
519
+ },
520
+ "ranges" : [
521
+ {
522
+ "min" : "0",
523
+ "max" : "4294967295"
524
+ },
525
+ ],
526
+ "range" : {
527
+ "min" : "0",
528
+ "max" : "4294967295"
529
+ },
530
+ },
531
+ },
532
+ "access" : "readonly",
533
+ "description" :
534
+ """This object reflects the number of users currently registered
535
+ with the Registrar.""",
536
+ }, # column
537
+ "sipServerRegDfltRegActiveInterval" : {
538
+ "nodetype" : "column",
539
+ "moduleName" : "SIP-SERVER-MIB",
540
+ "oid" : "1.3.6.1.2.1.151.1.5.1.1.4",
541
+ "status" : "current",
542
+ "syntax" : {
543
+ "type" : {
544
+ "basetype" : "Unsigned32",
545
+ "ranges" : [
546
+ {
547
+ "min" : "1",
548
+ "max" : "4294967295"
549
+ },
550
+ ],
551
+ "range" : {
552
+ "min" : "1",
553
+ "max" : "4294967295"
554
+ },
555
+ },
556
+ },
557
+ "access" : "readonly",
558
+ "units" : "seconds",
559
+ "description" :
560
+ """This object reflects the default time interval the Registrar
561
+ considers registrations to be active. The value is used to
562
+ compute the Expires header in the REGISTER response. If a user
563
+ agent requests a time interval shorter than specified by this
564
+ object, the Registrar SHOULD honor that request. If a Contact
565
+ entry does not have an 'expires' parameter, the value of the
566
+ Expires header field is used instead. If a Contact entry has no
567
+ 'expires' parameter and no Expires header field is present,
568
+ the value of this object is used as the default value.""",
569
+ "reference" :
570
+ """RFC 3261, Section 10.2""",
571
+ }, # column
572
+ "sipServerRegUserTable" : {
573
+ "nodetype" : "table",
574
+ "moduleName" : "SIP-SERVER-MIB",
575
+ "oid" : "1.3.6.1.2.1.151.1.5.2",
576
+ "status" : "current",
577
+ "description" :
578
+ """This table contains information on all users registered to each
579
+ Registrar in this system.""",
580
+ }, # table
581
+ "sipServerRegUserEntry" : {
582
+ "nodetype" : "row",
583
+ "moduleName" : "SIP-SERVER-MIB",
584
+ "oid" : "1.3.6.1.2.1.151.1.5.2.1",
585
+ "status" : "current",
586
+ "linkage" : [
587
+ "applIndex",
588
+ "sipServerRegUserIndex",
589
+ ],
590
+ "description" :
591
+ """This entry contains information for a single user registered to
592
+ this Registrar.
593
+
594
+ Each row represents those objects for a particular SIP server
595
+ present in this system. applIndex is used to uniquely identify
596
+ these instances of SIP servers and correlate them through the
597
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788). The
598
+ same value of applIndex used in the corresponding
599
+ SIP-COMMON-MIB is used here.""",
600
+ }, # row
601
+ "sipServerRegUserIndex" : {
602
+ "nodetype" : "column",
603
+ "moduleName" : "SIP-SERVER-MIB",
604
+ "oid" : "1.3.6.1.2.1.151.1.5.2.1.1",
605
+ "status" : "current",
606
+ "syntax" : {
607
+ "type" : {
608
+ "basetype" : "Unsigned32",
609
+ "ranges" : [
610
+ {
611
+ "min" : "1",
612
+ "max" : "4294967295"
613
+ },
614
+ ],
615
+ "range" : {
616
+ "min" : "1",
617
+ "max" : "4294967295"
618
+ },
619
+ },
620
+ },
621
+ "access" : "noaccess",
622
+ "description" :
623
+ """This object uniquely identifies a conceptual row in the table.""",
624
+ }, # column
625
+ "sipServerRegUserUri" : {
626
+ "nodetype" : "column",
627
+ "moduleName" : "SIP-SERVER-MIB",
628
+ "oid" : "1.3.6.1.2.1.151.1.5.2.1.2",
629
+ "status" : "current",
630
+ "syntax" : {
631
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
632
+ },
633
+ "access" : "readonly",
634
+ "description" :
635
+ """This object contains the user's address-of-record. It is the
636
+ main form by which the Registrar knows the user. The format is
637
+ typically 'user@domain'. It is contained in the To header for
638
+ all REGISTER requests.""",
639
+ }, # column
640
+ "sipServerRegUserAuthenticationFailures" : {
641
+ "nodetype" : "column",
642
+ "moduleName" : "SIP-SERVER-MIB",
643
+ "oid" : "1.3.6.1.2.1.151.1.5.2.1.3",
644
+ "status" : "current",
645
+ "syntax" : {
646
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
647
+ },
648
+ "access" : "readonly",
649
+ "description" :
650
+ """This object contains a count of the number of times the user
651
+ has failed authentication.
652
+
653
+ Discontinuities in the value of this counter can occur due to
654
+ successful user authentications and at re-initialization of
655
+ the SIP entity or service. A Management Station can detect
656
+ discontinuities in this counter by monitoring the
657
+ sipServerRegUserDisconTime object in the same row.""",
658
+ }, # column
659
+ "sipServerRegUserDisconTime" : {
660
+ "nodetype" : "column",
661
+ "moduleName" : "SIP-SERVER-MIB",
662
+ "oid" : "1.3.6.1.2.1.151.1.5.2.1.4",
663
+ "status" : "current",
664
+ "syntax" : {
665
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
666
+ },
667
+ "access" : "readonly",
668
+ "description" :
669
+ """The value of the sysUpTime object when the counters for the
670
+ user registration statistics objects in this row last
671
+ experienced a discontinuity.""",
672
+ }, # column
673
+ "sipServerRegContactTable" : {
674
+ "nodetype" : "table",
675
+ "moduleName" : "SIP-SERVER-MIB",
676
+ "oid" : "1.3.6.1.2.1.151.1.5.3",
677
+ "status" : "current",
678
+ "description" :
679
+ """This table contains information on every location where a
680
+ registered user (specified by sipServerRegUserIndex) wishes to
681
+ be found (i.e., the user has provided contact information to
682
+ each SIP Registrar in this system).""",
683
+ }, # table
684
+ "sipServerRegContactEntry" : {
685
+ "nodetype" : "row",
686
+ "moduleName" : "SIP-SERVER-MIB",
687
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1",
688
+ "status" : "current",
689
+ "linkage" : [
690
+ "applIndex",
691
+ "sipServerRegUserIndex",
692
+ "sipServerRegContactIndex",
693
+ ],
694
+ "description" :
695
+ """This entry contains information for a single Contact. Multiple
696
+ contacts may exist for a single user.
697
+
698
+ Each row represents those objects for a particular SIP server
699
+ present in this system. applIndex is used to uniquely identify
700
+ these instances of SIP servers and correlate them through the
701
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788). The
702
+ same value of applIndex used in the corresponding
703
+ SIP-COMMON-MIB is used here.""",
704
+ }, # row
705
+ "sipServerRegContactIndex" : {
706
+ "nodetype" : "column",
707
+ "moduleName" : "SIP-SERVER-MIB",
708
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1.1",
709
+ "status" : "current",
710
+ "syntax" : {
711
+ "type" : {
712
+ "basetype" : "Unsigned32",
713
+ "ranges" : [
714
+ {
715
+ "min" : "1",
716
+ "max" : "4294967295"
717
+ },
718
+ ],
719
+ "range" : {
720
+ "min" : "1",
721
+ "max" : "4294967295"
722
+ },
723
+ },
724
+ },
725
+ "access" : "noaccess",
726
+ "description" :
727
+ """Along with the sipServerRegUserIndex, this object uniquely
728
+ identifies a conceptual row in the table.""",
729
+ }, # column
730
+ "sipServerRegContactDisplayName" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "SIP-SERVER-MIB",
733
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1.2",
734
+ "status" : "current",
735
+ "syntax" : {
736
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
737
+ },
738
+ "access" : "readonly",
739
+ "description" :
740
+ """This object contains the display name for the Contact. For
741
+ example, 'Santa at Home', or 'Santa on his Sled', corresponding
742
+ to contact URIs of sip:BigGuy@example.com or
743
+ sip:sclaus817@example.com, respectively.""",
744
+ }, # column
745
+ "sipServerRegContactURI" : {
746
+ "nodetype" : "column",
747
+ "moduleName" : "SIP-SERVER-MIB",
748
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1.3",
749
+ "status" : "current",
750
+ "syntax" : {
751
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
752
+ },
753
+ "access" : "readonly",
754
+ "description" :
755
+ """This object contains either a SIP URI where the user can be
756
+ contacted. This URI is normally returned to a client from a
757
+ Redirect Server, or is used as the RequestURI in a SIP request
758
+ line for requests forwarded by a proxy.""",
759
+ }, # column
760
+ "sipServerRegContactLastUpdated" : {
761
+ "nodetype" : "column",
762
+ "moduleName" : "SIP-SERVER-MIB",
763
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1.4",
764
+ "status" : "current",
765
+ "syntax" : {
766
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
767
+ },
768
+ "access" : "readonly",
769
+ "description" :
770
+ """This object indicates the time when this contact information
771
+ was accepted. If the contact information is updated via a
772
+ subsequent REGISTER of the same information, this object is
773
+ also updated.""",
774
+ }, # column
775
+ "sipServerRegContactExpiry" : {
776
+ "nodetype" : "column",
777
+ "moduleName" : "SIP-SERVER-MIB",
778
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1.5",
779
+ "status" : "current",
780
+ "syntax" : {
781
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
782
+ },
783
+ "access" : "readonly",
784
+ "description" :
785
+ """This object contains the date and time when the contact
786
+ information will no longer be valid. Such times may be
787
+ specified by the user at registration (i.e., Expires header or
788
+ expiry parameter in the Contact information), or a system
789
+ default can be applied.""",
790
+ }, # column
791
+ "sipServerRegContactPreference" : {
792
+ "nodetype" : "column",
793
+ "moduleName" : "SIP-SERVER-MIB",
794
+ "oid" : "1.3.6.1.2.1.151.1.5.3.1.6",
795
+ "status" : "current",
796
+ "syntax" : {
797
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
798
+ },
799
+ "access" : "readonly",
800
+ "description" :
801
+ """This object indicates a relative preference for the particular
802
+ Contact header field value compared to other bindings for this
803
+ address-of-record. A registering user may provide this
804
+ preference as a 'qvalue' parameter in the Contact header.
805
+
806
+ The format of this item is a decimal number between 0 and 1
807
+ (for example 0.9). Higher values indicate locations preferred
808
+ by the user.""",
809
+ "reference" :
810
+ """RFC 3261, Section 10.2.1.2, 16.6, and 20.10""",
811
+ }, # column
812
+ "sipServerRegStats" : {
813
+ "nodetype" : "node",
814
+ "moduleName" : "SIP-SERVER-MIB",
815
+ "oid" : "1.3.6.1.2.1.151.1.6",
816
+ }, # node
817
+ "sipServerRegStatsTable" : {
818
+ "nodetype" : "table",
819
+ "moduleName" : "SIP-SERVER-MIB",
820
+ "oid" : "1.3.6.1.2.1.151.1.6.1",
821
+ "status" : "current",
822
+ "description" :
823
+ """This table contains the summary statistics objects applicable
824
+ to all SIP Registrars in this system.""",
825
+ }, # table
826
+ "sipServerRegStatsEntry" : {
827
+ "nodetype" : "row",
828
+ "moduleName" : "SIP-SERVER-MIB",
829
+ "oid" : "1.3.6.1.2.1.151.1.6.1.1",
830
+ "status" : "current",
831
+ "linkage" : [
832
+ "applIndex",
833
+ ],
834
+ "description" :
835
+ """A row of summary statistics.
836
+
837
+ Each row represents those objects for a particular SIP server
838
+ present in this system. applIndex is used to uniquely identify
839
+ these instances of SIP servers and correlate them through the
840
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788). The
841
+ same value of applIndex used in the corresponding
842
+ SIP-COMMON-MIB is used here.""",
843
+ }, # row
844
+ "sipServerRegStatsAcceptedRegs" : {
845
+ "nodetype" : "column",
846
+ "moduleName" : "SIP-SERVER-MIB",
847
+ "oid" : "1.3.6.1.2.1.151.1.6.1.1.1",
848
+ "status" : "current",
849
+ "syntax" : {
850
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
851
+ },
852
+ "access" : "readonly",
853
+ "description" :
854
+ """This object contains a count of the number of REGISTER requests
855
+ that have been accepted (status code 200) by the Registrar.
856
+ This includes additions of new contact information, refreshing
857
+ contact information, as well as requests for deletion of
858
+ contact information.
859
+
860
+ Discontinuities in the value of this counter can occur at
861
+ re-initialization of the SIP entity or service. A Management
862
+ Station can detect discontinuities in this counter by
863
+ monitoring the sipServerRegStatsDisconTime object in the same
864
+ row.""",
865
+ }, # column
866
+ "sipServerRegStatsRejectedRegs" : {
867
+ "nodetype" : "column",
868
+ "moduleName" : "SIP-SERVER-MIB",
869
+ "oid" : "1.3.6.1.2.1.151.1.6.1.1.2",
870
+ "status" : "current",
871
+ "syntax" : {
872
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
873
+ },
874
+ "access" : "readonly",
875
+ "description" :
876
+ """This object contains a count of the number REGISTER requests
877
+ that have been rejected by the Registrar.
878
+
879
+ Discontinuities in the value of this counter can occur at
880
+ re-initialization of the SIP entity or service. A Management
881
+ Station can detect discontinuities in this counter by
882
+ monitoring the sipServerRegStatsDisconTime object in the same
883
+ row.""",
884
+ }, # column
885
+ "sipServerRegStatsDisconTime" : {
886
+ "nodetype" : "column",
887
+ "moduleName" : "SIP-SERVER-MIB",
888
+ "oid" : "1.3.6.1.2.1.151.1.6.1.1.3",
889
+ "status" : "current",
890
+ "syntax" : {
891
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
892
+ },
893
+ "access" : "readonly",
894
+ "description" :
895
+ """The value of the sysUpTime object when the counters for the
896
+ registrar statistics objects in this row last experienced a
897
+ discontinuity.""",
898
+ }, # column
899
+ "sipServerMIBConformance" : {
900
+ "nodetype" : "node",
901
+ "moduleName" : "SIP-SERVER-MIB",
902
+ "oid" : "1.3.6.1.2.1.151.2",
903
+ }, # node
904
+ "sipServerMIBCompliances" : {
905
+ "nodetype" : "node",
906
+ "moduleName" : "SIP-SERVER-MIB",
907
+ "oid" : "1.3.6.1.2.1.151.2.1",
908
+ }, # node
909
+ "sipServerMIBGroups" : {
910
+ "nodetype" : "node",
911
+ "moduleName" : "SIP-SERVER-MIB",
912
+ "oid" : "1.3.6.1.2.1.151.2.2",
913
+ }, # node
914
+ }, # nodes
915
+
916
+ "groups" : {
917
+ "sipServerConfigGroup" : {
918
+ "nodetype" : "group",
919
+ "moduleName" : "SIP-SERVER-MIB",
920
+ "oid" : "1.3.6.1.2.1.151.2.2.1",
921
+ "status" : "current",
922
+ "members" : {
923
+ "sipServerCfgHostAddressType" : {
924
+ "nodetype" : "member",
925
+ "module" : "SIP-SERVER-MIB"
926
+ },
927
+ "sipServerCfgHostAddress" : {
928
+ "nodetype" : "member",
929
+ "module" : "SIP-SERVER-MIB"
930
+ },
931
+ }, # members
932
+ "description" :
933
+ """A collection of objects providing configuration common to SIP
934
+ Proxy and Redirect servers.""",
935
+ }, # group
936
+ "sipServerProxyConfigGroup" : {
937
+ "nodetype" : "group",
938
+ "moduleName" : "SIP-SERVER-MIB",
939
+ "oid" : "1.3.6.1.2.1.151.2.2.2",
940
+ "status" : "current",
941
+ "members" : {
942
+ "sipServerCfgProxyStatefulness" : {
943
+ "nodetype" : "member",
944
+ "module" : "SIP-SERVER-MIB"
945
+ },
946
+ "sipServerCfgProxyRecursion" : {
947
+ "nodetype" : "member",
948
+ "module" : "SIP-SERVER-MIB"
949
+ },
950
+ "sipServerCfgProxyRecordRoute" : {
951
+ "nodetype" : "member",
952
+ "module" : "SIP-SERVER-MIB"
953
+ },
954
+ "sipServerCfgProxyAuthMethod" : {
955
+ "nodetype" : "member",
956
+ "module" : "SIP-SERVER-MIB"
957
+ },
958
+ "sipServerCfgProxyAuthDefaultRealm" : {
959
+ "nodetype" : "member",
960
+ "module" : "SIP-SERVER-MIB"
961
+ },
962
+ }, # members
963
+ "description" :
964
+ """A collection of objects providing configuration for SIP Proxy
965
+ servers.""",
966
+ }, # group
967
+ "sipServerProxyStatsGroup" : {
968
+ "nodetype" : "group",
969
+ "moduleName" : "SIP-SERVER-MIB",
970
+ "oid" : "1.3.6.1.2.1.151.2.2.3",
971
+ "status" : "current",
972
+ "members" : {
973
+ "sipServerProxyStatProxyReqFailures" : {
974
+ "nodetype" : "member",
975
+ "module" : "SIP-SERVER-MIB"
976
+ },
977
+ "sipServerProxyStatsDisconTime" : {
978
+ "nodetype" : "member",
979
+ "module" : "SIP-SERVER-MIB"
980
+ },
981
+ }, # members
982
+ "description" :
983
+ """A collection of objects providing statistics for SIP Proxy
984
+ servers.""",
985
+ }, # group
986
+ "sipServerRegistrarConfigGroup" : {
987
+ "nodetype" : "group",
988
+ "moduleName" : "SIP-SERVER-MIB",
989
+ "oid" : "1.3.6.1.2.1.151.2.2.4",
990
+ "status" : "current",
991
+ "members" : {
992
+ "sipServerRegMaxContactExpiryDuration" : {
993
+ "nodetype" : "member",
994
+ "module" : "SIP-SERVER-MIB"
995
+ },
996
+ "sipServerRegMaxUsers" : {
997
+ "nodetype" : "member",
998
+ "module" : "SIP-SERVER-MIB"
999
+ },
1000
+ "sipServerRegCurrentUsers" : {
1001
+ "nodetype" : "member",
1002
+ "module" : "SIP-SERVER-MIB"
1003
+ },
1004
+ "sipServerRegDfltRegActiveInterval" : {
1005
+ "nodetype" : "member",
1006
+ "module" : "SIP-SERVER-MIB"
1007
+ },
1008
+ }, # members
1009
+ "description" :
1010
+ """A collection of objects providing configuration for SIP
1011
+ Registrars.""",
1012
+ }, # group
1013
+ "sipServerRegistrarStatsGroup" : {
1014
+ "nodetype" : "group",
1015
+ "moduleName" : "SIP-SERVER-MIB",
1016
+ "oid" : "1.3.6.1.2.1.151.2.2.5",
1017
+ "status" : "current",
1018
+ "members" : {
1019
+ "sipServerRegStatsAcceptedRegs" : {
1020
+ "nodetype" : "member",
1021
+ "module" : "SIP-SERVER-MIB"
1022
+ },
1023
+ "sipServerRegStatsRejectedRegs" : {
1024
+ "nodetype" : "member",
1025
+ "module" : "SIP-SERVER-MIB"
1026
+ },
1027
+ "sipServerRegStatsDisconTime" : {
1028
+ "nodetype" : "member",
1029
+ "module" : "SIP-SERVER-MIB"
1030
+ },
1031
+ }, # members
1032
+ "description" :
1033
+ """A collection of objects providing statistics for SIP
1034
+ Registrars.""",
1035
+ }, # group
1036
+ "sipServerRegistrarUsersGroup" : {
1037
+ "nodetype" : "group",
1038
+ "moduleName" : "SIP-SERVER-MIB",
1039
+ "oid" : "1.3.6.1.2.1.151.2.2.6",
1040
+ "status" : "current",
1041
+ "members" : {
1042
+ "sipServerRegUserUri" : {
1043
+ "nodetype" : "member",
1044
+ "module" : "SIP-SERVER-MIB"
1045
+ },
1046
+ "sipServerRegUserAuthenticationFailures" : {
1047
+ "nodetype" : "member",
1048
+ "module" : "SIP-SERVER-MIB"
1049
+ },
1050
+ "sipServerRegUserDisconTime" : {
1051
+ "nodetype" : "member",
1052
+ "module" : "SIP-SERVER-MIB"
1053
+ },
1054
+ "sipServerRegContactDisplayName" : {
1055
+ "nodetype" : "member",
1056
+ "module" : "SIP-SERVER-MIB"
1057
+ },
1058
+ "sipServerRegContactURI" : {
1059
+ "nodetype" : "member",
1060
+ "module" : "SIP-SERVER-MIB"
1061
+ },
1062
+ "sipServerRegContactLastUpdated" : {
1063
+ "nodetype" : "member",
1064
+ "module" : "SIP-SERVER-MIB"
1065
+ },
1066
+ "sipServerRegContactExpiry" : {
1067
+ "nodetype" : "member",
1068
+ "module" : "SIP-SERVER-MIB"
1069
+ },
1070
+ "sipServerRegContactPreference" : {
1071
+ "nodetype" : "member",
1072
+ "module" : "SIP-SERVER-MIB"
1073
+ },
1074
+ }, # members
1075
+ "description" :
1076
+ """A collection of objects related to registered users.""",
1077
+ }, # group
1078
+ }, # groups
1079
+
1080
+ "compliances" : {
1081
+ "sipServerProxyServerCompliance" : {
1082
+ "nodetype" : "compliance",
1083
+ "moduleName" : "SIP-SERVER-MIB",
1084
+ "oid" : "1.3.6.1.2.1.151.2.1.1",
1085
+ "status" : "current",
1086
+ "description" :
1087
+ """The compliance statement for SIP entities acting as Proxy
1088
+ Servers.""",
1089
+ "requires" : {
1090
+ "sipServerConfigGroup" : {
1091
+ "nodetype" : "mandatory",
1092
+ "module" : "SIP-SERVER-MIB"
1093
+ },
1094
+ "sipServerProxyConfigGroup" : {
1095
+ "nodetype" : "mandatory",
1096
+ "module" : "SIP-SERVER-MIB"
1097
+ },
1098
+ "sipServerProxyStatsGroup" : {
1099
+ "nodetype" : "mandatory",
1100
+ "module" : "SIP-SERVER-MIB"
1101
+ },
1102
+ }, # requires
1103
+ }, # compliance
1104
+ "sipRedirectServerCompliance" : {
1105
+ "nodetype" : "compliance",
1106
+ "moduleName" : "SIP-SERVER-MIB",
1107
+ "oid" : "1.3.6.1.2.1.151.2.1.2",
1108
+ "status" : "current",
1109
+ "description" :
1110
+ """The compliance statement for SIP entities acting as Redirect
1111
+ Servers.""",
1112
+ "requires" : {
1113
+ "sipServerConfigGroup" : {
1114
+ "nodetype" : "mandatory",
1115
+ "module" : "SIP-SERVER-MIB"
1116
+ },
1117
+ }, # requires
1118
+ }, # compliance
1119
+ "sipServerRegistrarServerCompliance" : {
1120
+ "nodetype" : "compliance",
1121
+ "moduleName" : "SIP-SERVER-MIB",
1122
+ "oid" : "1.3.6.1.2.1.151.2.1.3",
1123
+ "status" : "current",
1124
+ "description" :
1125
+ """The compliance statement for SIP entities acting as
1126
+ Registrars.""",
1127
+ "requires" : {
1128
+ "sipServerConfigGroup" : {
1129
+ "nodetype" : "mandatory",
1130
+ "module" : "SIP-SERVER-MIB"
1131
+ },
1132
+ "sipServerRegistrarConfigGroup" : {
1133
+ "nodetype" : "mandatory",
1134
+ "module" : "SIP-SERVER-MIB"
1135
+ },
1136
+ "sipServerRegistrarStatsGroup" : {
1137
+ "nodetype" : "mandatory",
1138
+ "module" : "SIP-SERVER-MIB"
1139
+ },
1140
+ "sipServerRegistrarUsersGroup" : {
1141
+ "nodetype" : "optional",
1142
+ "module" : "SIP-SERVER-MIB",
1143
+ "description" :
1144
+ """This is an optional group.""",
1145
+ },
1146
+ }, # requires
1147
+ }, # compliance
1148
+ }, # compliances
1149
+
1150
+ }