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,2769 @@
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-COMMON-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/SIP-COMMON-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "SIP-COMMON-MIB",
11
+
12
+ "SIP-COMMON-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Session Initiation Protocol Working Group""",
17
+ "contact" :
18
+ """SIP WG email: sip@ietf.org
19
+
20
+ Co-editor Kevin Lingle
21
+ Cisco Systems, Inc.
22
+ postal: 7025 Kit Creek Road
23
+ P.O. Box 14987
24
+ Research Triangle Park, NC 27709
25
+ USA
26
+ email: klingle@cisco.com
27
+ phone: +1 919 476 2029
28
+
29
+ Co-editor Joon Maeng
30
+ email: jmaeng@austin.rr.com
31
+
32
+ Co-editor Jean-Francois Mule
33
+ CableLabs
34
+
35
+
36
+ postal: 858 Coal Creek Circle
37
+ Louisville, CO 80027
38
+ USA
39
+ email: jf.mule@cablelabs.com
40
+ phone: +1 303 661 9100
41
+
42
+ Co-editor Dave Walker
43
+ email: drwalker@rogers.com""",
44
+ "description" :
45
+ """Session Initiation Protocol (SIP) Common MIB module. This
46
+ module defines objects that may be common to all SIP entities.
47
+
48
+ SIP is an application-layer signaling protocol for creating,
49
+ modifying and terminating multimedia sessions with one or more
50
+ participants. These sessions include Internet multimedia
51
+ conferences and Internet telephone calls. SIP is defined in
52
+ RFC 3261 (June 2002).
53
+
54
+ This MIB is defined for managing objects that are common to
55
+ SIP User Agents (UAs), Proxy, Redirect, and Registrar servers.
56
+ Objects specific to each of these entities MAY be managed using
57
+ entity specific MIBs defined in other modules.
58
+
59
+ Copyright (C) The IETF Trust (2007). This version of
60
+ this MIB module is part of RFC 4780; see the RFC itself for
61
+ full legal notices.""",
62
+ "revisions" : (
63
+ {
64
+ "date" : "2007-04-20 00:00",
65
+ "description" :
66
+ """Initial version of the IETF SIP-COMMON-MIB module. This
67
+ version published as part of RFC 4780.""",
68
+ },
69
+ ),
70
+ "identity node" : "sipCommonMIB",
71
+ },
72
+
73
+ "imports" : (
74
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
75
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
76
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
77
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
79
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
80
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
81
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
82
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
83
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
84
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
85
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
86
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
87
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
88
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
89
+ {"module" : "SIP-TC-MIB", "name" : "SipTCTransportProtocol"},
90
+ {"module" : "SIP-TC-MIB", "name" : "SipTCMethodName"},
91
+ {"module" : "SIP-TC-MIB", "name" : "SipTCEntityRole"},
92
+ {"module" : "SIP-TC-MIB", "name" : "SipTCOptionTagHeaders"},
93
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applIndex"},
94
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
95
+ ),
96
+
97
+ "nodes" : {
98
+ "sipCommonMIB" : {
99
+ "nodetype" : "node",
100
+ "moduleName" : "SIP-COMMON-MIB",
101
+ "oid" : "1.3.6.1.2.1.149",
102
+ "status" : "current",
103
+ }, # node
104
+ "sipCommonMIBNotifications" : {
105
+ "nodetype" : "node",
106
+ "moduleName" : "SIP-COMMON-MIB",
107
+ "oid" : "1.3.6.1.2.1.149.0",
108
+ }, # node
109
+ "sipCommonMIBObjects" : {
110
+ "nodetype" : "node",
111
+ "moduleName" : "SIP-COMMON-MIB",
112
+ "oid" : "1.3.6.1.2.1.149.1",
113
+ }, # node
114
+ "sipCommonCfgBase" : {
115
+ "nodetype" : "node",
116
+ "moduleName" : "SIP-COMMON-MIB",
117
+ "oid" : "1.3.6.1.2.1.149.1.1",
118
+ }, # node
119
+ "sipCommonCfgTable" : {
120
+ "nodetype" : "table",
121
+ "moduleName" : "SIP-COMMON-MIB",
122
+ "oid" : "1.3.6.1.2.1.149.1.1.1",
123
+ "status" : "current",
124
+ "description" :
125
+ """This table contains the common configuration objects applicable
126
+ to all SIP entities.""",
127
+ }, # table
128
+ "sipCommonCfgEntry" : {
129
+ "nodetype" : "row",
130
+ "moduleName" : "SIP-COMMON-MIB",
131
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1",
132
+ "status" : "current",
133
+ "linkage" : [
134
+ "applIndex",
135
+ ],
136
+ "description" :
137
+ """A row of common configuration.
138
+
139
+ Each row represents objects for a particular SIP entity
140
+ instance present in this system. applIndex is used to uniquely
141
+ identify these instances of SIP entities and correlate them
142
+ through the common framework of the NETWORK-SERVICES-MIB (RFC
143
+ 2788).""",
144
+ }, # row
145
+ "sipCommonCfgProtocolVersion" : {
146
+ "nodetype" : "column",
147
+ "moduleName" : "SIP-COMMON-MIB",
148
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.1",
149
+ "status" : "current",
150
+ "syntax" : {
151
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
152
+ },
153
+ "access" : "readonly",
154
+ "description" :
155
+ """This object will reflect the version of SIP supported by this
156
+ SIP entity. It will follow the same format as SIP version
157
+ information contained in the SIP messages generated by this SIP
158
+ entity. For example, entities supporting SIP version 2 will
159
+ return 'SIP/2.0' as dictated by the standard.""",
160
+ "reference" :
161
+ """RFC 3261, Section 7.1""",
162
+ }, # column
163
+ "sipCommonCfgServiceOperStatus" : {
164
+ "nodetype" : "column",
165
+ "moduleName" : "SIP-COMMON-MIB",
166
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.2",
167
+ "status" : "current",
168
+ "syntax" : {
169
+ "type" : {
170
+ "basetype" : "Enumeration",
171
+ "unknown" : {
172
+ "nodetype" : "namednumber",
173
+ "number" : "1"
174
+ },
175
+ "up" : {
176
+ "nodetype" : "namednumber",
177
+ "number" : "2"
178
+ },
179
+ "down" : {
180
+ "nodetype" : "namednumber",
181
+ "number" : "3"
182
+ },
183
+ "congested" : {
184
+ "nodetype" : "namednumber",
185
+ "number" : "4"
186
+ },
187
+ "restarting" : {
188
+ "nodetype" : "namednumber",
189
+ "number" : "5"
190
+ },
191
+ "quiescing" : {
192
+ "nodetype" : "namednumber",
193
+ "number" : "6"
194
+ },
195
+ "testing" : {
196
+ "nodetype" : "namednumber",
197
+ "number" : "7"
198
+ },
199
+ },
200
+ },
201
+ "access" : "readonly",
202
+ "description" :
203
+ """This object contains the current operational state of
204
+ the SIP application.
205
+
206
+ unknown : The operational status cannot be determined
207
+ for some reason.
208
+ up : The application is operating normally and is
209
+ processing (receiving and possibly issuing) SIP
210
+ requests and responses.
211
+ down : The application is currently unable to process
212
+ SIP messages.
213
+ congested : The application is operational but no additional
214
+
215
+
216
+
217
+ inbound transactions can be accommodated at the
218
+ moment.
219
+ restarting : The application is currently unavailable, but it
220
+ is in the process of restarting and will
221
+ presumably, soon be able to process SIP messages.
222
+ quiescing : The application is currently operational
223
+ but has been administratively put into
224
+ quiescence mode. Additional inbound
225
+ transactions MAY be rejected.
226
+ testing : The application is currently in test mode
227
+ and MAY not be able to process SIP messages.
228
+
229
+ The operational status values defined for this object are not
230
+ based on any specific information contained in the SIP
231
+ standard.""",
232
+ }, # column
233
+ "sipCommonCfgServiceStartTime" : {
234
+ "nodetype" : "column",
235
+ "moduleName" : "SIP-COMMON-MIB",
236
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.3",
237
+ "status" : "current",
238
+ "syntax" : {
239
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
240
+ },
241
+ "access" : "readonly",
242
+ "description" :
243
+ """The value of sysUpTime at the time the SIP entity was last
244
+ started. If started prior to the last re-initialization of the
245
+ local network management subsystem, then this object contains a
246
+ zero value.""",
247
+ }, # column
248
+ "sipCommonCfgServiceLastChange" : {
249
+ "nodetype" : "column",
250
+ "moduleName" : "SIP-COMMON-MIB",
251
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.4",
252
+ "status" : "current",
253
+ "syntax" : {
254
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
255
+ },
256
+ "access" : "readonly",
257
+ "description" :
258
+ """The value of sysUpTime at the time the SIP entity entered its
259
+ current operational state. If the current state was entered
260
+ prior to the last re-initialization of the local network
261
+ management subsystem, then this object contains a zero value.""",
262
+ }, # column
263
+ "sipCommonCfgOrganization" : {
264
+ "nodetype" : "column",
265
+ "moduleName" : "SIP-COMMON-MIB",
266
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.5",
267
+ "status" : "current",
268
+ "syntax" : {
269
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
270
+ },
271
+ "access" : "readonly",
272
+ "description" :
273
+ """This object contains the organization name that the SIP entity
274
+ inserts into Organization headers of SIP messages processed by
275
+ this system. If the string is empty, no Organization header is
276
+ to be generated.""",
277
+ "reference" :
278
+ """RFC 3261, Section 20.25""",
279
+ }, # column
280
+ "sipCommonCfgMaxTransactions" : {
281
+ "nodetype" : "column",
282
+ "moduleName" : "SIP-COMMON-MIB",
283
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.6",
284
+ "status" : "current",
285
+ "syntax" : {
286
+ "type" : {
287
+ "basetype" : "Unsigned32",
288
+ "ranges" : [
289
+ {
290
+ "min" : "1",
291
+ "max" : "4294967295"
292
+ },
293
+ ],
294
+ "range" : {
295
+ "min" : "1",
296
+ "max" : "4294967295"
297
+ },
298
+ },
299
+ },
300
+ "access" : "readonly",
301
+ "description" :
302
+ """This object indicates the maximum number of simultaneous
303
+ transactions per second that the SIP entity can manage. In
304
+ general, the value of this object SHOULD reflect a level of
305
+ transaction processing per second that is considered high
306
+ enough to impact the system's CPU and/or memory resources to
307
+ the point of deteriorating SIP call processing but not high
308
+ enough to cause catastrophic system failure.""",
309
+ }, # column
310
+ "sipCommonCfgServiceNotifEnable" : {
311
+ "nodetype" : "column",
312
+ "moduleName" : "SIP-COMMON-MIB",
313
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.7",
314
+ "status" : "current",
315
+ "syntax" : {
316
+ "type" : {
317
+ "basetype" : "Bits",
318
+ "sipCommonServiceColdStart" : {
319
+ "nodetype" : "namednumber",
320
+ "number" : "0"
321
+ },
322
+ "sipCommonServiceWarmStart" : {
323
+ "nodetype" : "namednumber",
324
+ "number" : "1"
325
+ },
326
+ "sipCommonServiceStatusChanged" : {
327
+ "nodetype" : "namednumber",
328
+ "number" : "2"
329
+ },
330
+ },
331
+ },
332
+ "access" : "readwrite",
333
+ "default" : "(sipCommonServiceColdStart, sipCommonServiceWarmStart)",
334
+ "description" :
335
+ """This object specifies which SIP service related notifications
336
+ are enabled. Each bit represents a specific notification. If
337
+ a bit has a value 1, the associated notification is enabled and
338
+ will be generated by the SIP entity at the appropriate time.
339
+
340
+ Support for these notifications is OPTIONAL: either none or all
341
+ notification values are supported. If an implementation does
342
+ not support this object, it should return a 'noSuchObject'
343
+ exception to an SNMP GET operation. If notifications are
344
+ supported, this object's default value SHOULD reflect
345
+ sipCommonServiceColdStart and sipCommonServiceWarmStart enabled
346
+ and sipCommonServiceStatusChanged disabled.
347
+
348
+ This object value SHOULD persist across reboots.""",
349
+ }, # column
350
+ "sipCommonCfgEntityType" : {
351
+ "nodetype" : "column",
352
+ "moduleName" : "SIP-COMMON-MIB",
353
+ "oid" : "1.3.6.1.2.1.149.1.1.1.1.8",
354
+ "status" : "current",
355
+ "syntax" : {
356
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCEntityRole"},
357
+ },
358
+ "access" : "readonly",
359
+ "description" :
360
+ """This object identifies the list of SIP entities to which this
361
+ row is related. It is defined as a bit map. Each bit
362
+ represents a type of SIP entity. If a bit has value 1, the
363
+ SIP entity represented by this row plays the role of this
364
+ entity type. If a bit has value 0, the SIP entity represented
365
+ by this row does not act as this entity type. Combinations
366
+ of bits can be set when the SIP entity plays multiple SIP
367
+ roles.""",
368
+ }, # column
369
+ "sipCommonPortTable" : {
370
+ "nodetype" : "table",
371
+ "moduleName" : "SIP-COMMON-MIB",
372
+ "oid" : "1.3.6.1.2.1.149.1.1.2",
373
+ "status" : "current",
374
+ "description" :
375
+ """This table contains the list of ports that each SIP entity in
376
+ this system is allowed to use. These ports can be advertised
377
+ using the Contact header in a REGISTER request or response.""",
378
+ }, # table
379
+ "sipCommonPortEntry" : {
380
+ "nodetype" : "row",
381
+ "moduleName" : "SIP-COMMON-MIB",
382
+ "oid" : "1.3.6.1.2.1.149.1.1.2.1",
383
+ "status" : "current",
384
+ "linkage" : [
385
+ "applIndex",
386
+ "sipCommonPort",
387
+ ],
388
+ "description" :
389
+ """Specification of a particular port.
390
+
391
+ Each row represents those objects for a particular SIP entity
392
+ present in this system. applIndex is used to uniquely identify
393
+ these instances of SIP entities and correlate them through
394
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
395
+ }, # row
396
+ "sipCommonPort" : {
397
+ "nodetype" : "column",
398
+ "moduleName" : "SIP-COMMON-MIB",
399
+ "oid" : "1.3.6.1.2.1.149.1.1.2.1.1",
400
+ "status" : "current",
401
+ "syntax" : {
402
+ "type" : {
403
+ "basetype" : "Unsigned32",
404
+ "parent module" : {
405
+ "name" : "INET-ADDRESS-MIB",
406
+ "type" : "InetPortNumber",
407
+ },
408
+ "ranges" : [
409
+ {
410
+ "min" : "1",
411
+ "max" : "65535"
412
+ },
413
+ ],
414
+ "range" : {
415
+ "min" : "1",
416
+ "max" : "65535"
417
+ },
418
+ },
419
+ },
420
+ "access" : "noaccess",
421
+ "description" :
422
+ """This object reflects a particular port that can be used by the
423
+ SIP application.""",
424
+ }, # column
425
+ "sipCommonPortTransportRcv" : {
426
+ "nodetype" : "column",
427
+ "moduleName" : "SIP-COMMON-MIB",
428
+ "oid" : "1.3.6.1.2.1.149.1.1.2.1.2",
429
+ "status" : "current",
430
+ "syntax" : {
431
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCTransportProtocol"},
432
+ },
433
+ "access" : "readonly",
434
+ "description" :
435
+ """This object will specify the transport protocol the SIP entity
436
+ will use to receive SIP messages.
437
+
438
+ This object is a bit map. Each bit represents a transport
439
+ protocol. If a bit has value 1, then that transport protocol
440
+ is currently being used. If a bit has value 0, then that
441
+ transport protocol is currently not being used.""",
442
+ }, # column
443
+ "sipCommonOptionTagTable" : {
444
+ "nodetype" : "table",
445
+ "moduleName" : "SIP-COMMON-MIB",
446
+ "oid" : "1.3.6.1.2.1.149.1.1.3",
447
+ "status" : "current",
448
+ "description" :
449
+ """This table contains a list of the SIP option tags (SIP
450
+ extensions) that are either required, supported, or
451
+ unsupported by the SIP entity. These option tags are
452
+ used in the Require, Proxy-Require, Supported, and
453
+ Unsupported header fields.
454
+
455
+ Example: If a user agent client supports, and requires the
456
+ server to support, reliability of provisional responses
457
+ (RFC 3262), this table contains a row with the option tag string
458
+ '100rel' in sipCommonOptionTag and the OCTET STRING value of
459
+ '1010 0000' or '0xA0' in sipCommonOptionTagHeaderField.
460
+
461
+ If a server does not support the required feature (indicated in
462
+ a Require header to a UAS, or in a Proxy-Require to a Proxy
463
+ Server), the server returns a 420 Bad Extension listing the
464
+ feature in an Unsupported header.
465
+
466
+ Normally, the list of such features supported by an entity is
467
+ static (i.e., will not change over time).""",
468
+ "reference" :
469
+ """RFC 3261, Sections 19.2, 20.32, 20.29, 20.37, and 20.40""",
470
+ }, # table
471
+ "sipCommonOptionTagEntry" : {
472
+ "nodetype" : "row",
473
+ "moduleName" : "SIP-COMMON-MIB",
474
+ "oid" : "1.3.6.1.2.1.149.1.1.3.1",
475
+ "status" : "current",
476
+ "linkage" : [
477
+ "applIndex",
478
+ "sipCommonOptionTagIndex",
479
+ ],
480
+ "description" :
481
+ """A particular SIP option tag (extension) supported or
482
+ unsupported by the SIP entity, and which may be supported or
483
+ required by a peer.
484
+
485
+ Each row represents those objects for a particular SIP entity
486
+ present in this system. applIndex is used to uniquely identify
487
+ these instances of SIP entities and correlate them through the
488
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
489
+ }, # row
490
+ "sipCommonOptionTagIndex" : {
491
+ "nodetype" : "column",
492
+ "moduleName" : "SIP-COMMON-MIB",
493
+ "oid" : "1.3.6.1.2.1.149.1.1.3.1.1",
494
+ "status" : "current",
495
+ "syntax" : {
496
+ "type" : {
497
+ "basetype" : "Unsigned32",
498
+ "ranges" : [
499
+ {
500
+ "min" : "1",
501
+ "max" : "4294967295"
502
+ },
503
+ ],
504
+ "range" : {
505
+ "min" : "1",
506
+ "max" : "4294967295"
507
+ },
508
+ },
509
+ },
510
+ "access" : "noaccess",
511
+ "description" :
512
+ """This object uniquely identifies a conceptual row in the table.""",
513
+ }, # column
514
+ "sipCommonOptionTag" : {
515
+ "nodetype" : "column",
516
+ "moduleName" : "SIP-COMMON-MIB",
517
+ "oid" : "1.3.6.1.2.1.149.1.1.3.1.2",
518
+ "status" : "current",
519
+ "syntax" : {
520
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
521
+ },
522
+ "access" : "readonly",
523
+ "description" :
524
+ """This object indicates the SIP option tag. The option tag names
525
+ are registered with IANA and available at http://www.iana.org.""",
526
+ "reference" :
527
+ """RFC 3261, Section 27.1""",
528
+ }, # column
529
+ "sipCommonOptionTagHeaderField" : {
530
+ "nodetype" : "column",
531
+ "moduleName" : "SIP-COMMON-MIB",
532
+ "oid" : "1.3.6.1.2.1.149.1.1.3.1.3",
533
+ "status" : "current",
534
+ "syntax" : {
535
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCOptionTagHeaders"},
536
+ },
537
+ "access" : "readonly",
538
+ "description" :
539
+ """This object indicates whether the SIP option tag is supported
540
+ (Supported header), unsupported (Unsupported header), or
541
+ required (Require or Proxy-Require header) by the SIP entity.
542
+ A SIP option tag may be both supported and required.""",
543
+ }, # column
544
+ "sipCommonMethodSupportedTable" : {
545
+ "nodetype" : "table",
546
+ "moduleName" : "SIP-COMMON-MIB",
547
+ "oid" : "1.3.6.1.2.1.149.1.1.4",
548
+ "status" : "current",
549
+ "description" :
550
+ """This table contains a list of methods supported by each SIP
551
+ entity in this system (see the standard set of SIP methods in
552
+ Section 7.1 of RFC 3261). Any additional methods that may be
553
+ incorporated into the SIP protocol can be represented by this
554
+ table without any requirement to update this MIB module.
555
+
556
+ The table is informational in nature and conveys capabilities
557
+ of the managed system to the SNMP Manager.
558
+
559
+ From a protocol point of view, the list of methods advertised
560
+ by the SIP entity in the Allow header (Section 20.5 of RFC
561
+ 3261) MUST be consistent with the methods reflected in this
562
+ table.""",
563
+ }, # table
564
+ "sipCommonMethodSupportedEntry" : {
565
+ "nodetype" : "row",
566
+ "moduleName" : "SIP-COMMON-MIB",
567
+ "oid" : "1.3.6.1.2.1.149.1.1.4.1",
568
+ "status" : "current",
569
+ "linkage" : [
570
+ "applIndex",
571
+ "sipCommonMethodSupportedIndex",
572
+ ],
573
+ "description" :
574
+ """A particular method supported by the SIP entity.
575
+
576
+ Each row represents those objects for a particular SIP entity
577
+ present in this system. applIndex is used to uniquely identify
578
+ these instances of SIP entities and correlate them through
579
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
580
+ }, # row
581
+ "sipCommonMethodSupportedIndex" : {
582
+ "nodetype" : "column",
583
+ "moduleName" : "SIP-COMMON-MIB",
584
+ "oid" : "1.3.6.1.2.1.149.1.1.4.1.1",
585
+ "status" : "current",
586
+ "syntax" : {
587
+ "type" : {
588
+ "basetype" : "Unsigned32",
589
+ "ranges" : [
590
+ {
591
+ "min" : "1",
592
+ "max" : "4294967295"
593
+ },
594
+ ],
595
+ "range" : {
596
+ "min" : "1",
597
+ "max" : "4294967295"
598
+ },
599
+ },
600
+ },
601
+ "access" : "noaccess",
602
+ "description" :
603
+ """This object uniquely identifies a conceptual row in the table
604
+ and reflects an assigned number used to identify a specific
605
+ SIP method.
606
+
607
+ This identifier is suitable for referencing the associated
608
+ method throughout this and other MIBs supported by this managed
609
+ system.""",
610
+ }, # column
611
+ "sipCommonMethodSupportedName" : {
612
+ "nodetype" : "column",
613
+ "moduleName" : "SIP-COMMON-MIB",
614
+ "oid" : "1.3.6.1.2.1.149.1.1.4.1.2",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCMethodName"},
618
+ },
619
+ "access" : "readonly",
620
+ "description" :
621
+ """This object reflects the supported method's name. The method
622
+ name MUST be all upper case (e.g., 'INVITE').""",
623
+ }, # column
624
+ "sipCommonCfgTimer" : {
625
+ "nodetype" : "node",
626
+ "moduleName" : "SIP-COMMON-MIB",
627
+ "oid" : "1.3.6.1.2.1.149.1.2",
628
+ }, # node
629
+ "sipCommonCfgTimerTable" : {
630
+ "nodetype" : "table",
631
+ "moduleName" : "SIP-COMMON-MIB",
632
+ "oid" : "1.3.6.1.2.1.149.1.2.1",
633
+ "status" : "current",
634
+ "description" :
635
+ """This table contains timer configuration objects applicable to
636
+ SIP user agent and SIP stateful Proxy Server entities.""",
637
+ }, # table
638
+ "sipCommonCfgTimerEntry" : {
639
+ "nodetype" : "row",
640
+ "moduleName" : "SIP-COMMON-MIB",
641
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1",
642
+ "status" : "current",
643
+ "linkage" : [
644
+ "applIndex",
645
+ ],
646
+ "description" :
647
+ """A row of timer configuration.
648
+
649
+ Each row represents those objects for a particular SIP entity
650
+ present in this system. applIndex is used to uniquely identify
651
+ these instances of SIP entities and correlate them through
652
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).
653
+ The objects in this table entry SHOULD be non-volatile and
654
+ their value SHOULD be kept at reboot.""",
655
+ }, # row
656
+ "sipCommonCfgTimerA" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "SIP-COMMON-MIB",
659
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.1",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : {
663
+ "basetype" : "Unsigned32",
664
+ "ranges" : [
665
+ {
666
+ "min" : "100",
667
+ "max" : "1000"
668
+ },
669
+ ],
670
+ "range" : {
671
+ "min" : "100",
672
+ "max" : "1000"
673
+ },
674
+ },
675
+ },
676
+ "access" : "readonly",
677
+ "default" : "500",
678
+ "units" : "milliseconds",
679
+ "description" :
680
+ """This object reflects the initial value for the retransmit timer
681
+ for the INVITE method. The retransmit timer doubles after each
682
+ retransmission, ensuring an exponential backoff in network
683
+ traffic. This object represents the initial time a SIP entity
684
+ will wait to receive a provisional response to an INVITE before
685
+ resending the INVITE request.""",
686
+ "reference" :
687
+ """RFC 3261, Section 17.1.1.2""",
688
+ }, # column
689
+ "sipCommonCfgTimerB" : {
690
+ "nodetype" : "column",
691
+ "moduleName" : "SIP-COMMON-MIB",
692
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.2",
693
+ "status" : "current",
694
+ "syntax" : {
695
+ "type" : {
696
+ "basetype" : "Unsigned32",
697
+ "ranges" : [
698
+ {
699
+ "min" : "32000",
700
+ "max" : "300000"
701
+ },
702
+ ],
703
+ "range" : {
704
+ "min" : "32000",
705
+ "max" : "300000"
706
+ },
707
+ },
708
+ },
709
+ "access" : "readonly",
710
+ "default" : "32000",
711
+ "units" : "milliseconds",
712
+ "description" :
713
+ """This object reflects the maximum time a SIP entity will wait to
714
+ receive a final response to an INVITE. The timer is started
715
+ upon transmission of the initial INVITE request.""",
716
+ "reference" :
717
+ """RFC 3261, Section 17.1.1.2""",
718
+ }, # column
719
+ "sipCommonCfgTimerC" : {
720
+ "nodetype" : "column",
721
+ "moduleName" : "SIP-COMMON-MIB",
722
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.3",
723
+ "status" : "current",
724
+ "syntax" : {
725
+ "type" : {
726
+ "basetype" : "Unsigned32",
727
+ "ranges" : [
728
+ {
729
+ "min" : "180000",
730
+ "max" : "300000"
731
+ },
732
+ ],
733
+ "range" : {
734
+ "min" : "180000",
735
+ "max" : "300000"
736
+ },
737
+ },
738
+ },
739
+ "access" : "readonly",
740
+ "default" : "180000",
741
+ "units" : "milliseconds",
742
+ "description" :
743
+ """This object reflects the maximum time a SIP Proxy Server will
744
+ wait to receive a provisional response to an INVITE. The Timer
745
+ C MUST be set for each client transaction when an INVITE
746
+ request is proxied.""",
747
+ "reference" :
748
+ """RFC 3261, Section 16.6""",
749
+ }, # column
750
+ "sipCommonCfgTimerD" : {
751
+ "nodetype" : "column",
752
+ "moduleName" : "SIP-COMMON-MIB",
753
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.4",
754
+ "status" : "current",
755
+ "syntax" : {
756
+ "type" : {
757
+ "basetype" : "Unsigned32",
758
+ "ranges" : [
759
+ {
760
+ "min" : "0",
761
+ "max" : "300000"
762
+ },
763
+ ],
764
+ "range" : {
765
+ "min" : "0",
766
+ "max" : "300000"
767
+ },
768
+ },
769
+ },
770
+ "access" : "readonly",
771
+ "default" : "32000",
772
+ "units" : "milliseconds",
773
+ "description" :
774
+ """This object reflects the amount of time that the server
775
+ transaction can remain in the 'Completed' state when unreliable
776
+ transports are used. The default value MUST be equal to or
777
+ greater than 32000 for UDP transport, and its value MUST be 0
778
+ for TCP/SCTP transport.""",
779
+ "reference" :
780
+ """RFC 3261, Section 17.1.1.2""",
781
+ }, # column
782
+ "sipCommonCfgTimerE" : {
783
+ "nodetype" : "column",
784
+ "moduleName" : "SIP-COMMON-MIB",
785
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.5",
786
+ "status" : "current",
787
+ "syntax" : {
788
+ "type" : {
789
+ "basetype" : "Unsigned32",
790
+ "ranges" : [
791
+ {
792
+ "min" : "100",
793
+ "max" : "1000"
794
+ },
795
+ ],
796
+ "range" : {
797
+ "min" : "100",
798
+ "max" : "1000"
799
+ },
800
+ },
801
+ },
802
+ "access" : "readonly",
803
+ "default" : "500",
804
+ "units" : "milliseconds",
805
+ "description" :
806
+ """This object reflects the initial value for the retransmit timer
807
+ for a non-INVITE method while in 'Trying' state. The
808
+ retransmit timer doubles after each retransmission until it
809
+ reaches T2 to ensure an exponential backoff in network traffic.
810
+ This object represents the initial time a SIP entity will wait
811
+ to receive a provisional response to the request before
812
+ resending the non-INVITE request.""",
813
+ "reference" :
814
+ """RFC 3261, Section 17.1.2.2""",
815
+ }, # column
816
+ "sipCommonCfgTimerF" : {
817
+ "nodetype" : "column",
818
+ "moduleName" : "SIP-COMMON-MIB",
819
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.6",
820
+ "status" : "current",
821
+ "syntax" : {
822
+ "type" : {
823
+ "basetype" : "Unsigned32",
824
+ "ranges" : [
825
+ {
826
+ "min" : "32000",
827
+ "max" : "300000"
828
+ },
829
+ ],
830
+ "range" : {
831
+ "min" : "32000",
832
+ "max" : "300000"
833
+ },
834
+ },
835
+ },
836
+ "access" : "readonly",
837
+ "default" : "32000",
838
+ "units" : "milliseconds",
839
+ "description" :
840
+ """This object reflects the maximum time a SIP entity will wait to
841
+ receive a final response to a non-INVITE request. The timer is
842
+ started upon transmission of the initial request.""",
843
+ "reference" :
844
+ """RFC 3261, Section 17.1.2.2""",
845
+ }, # column
846
+ "sipCommonCfgTimerG" : {
847
+ "nodetype" : "column",
848
+ "moduleName" : "SIP-COMMON-MIB",
849
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.7",
850
+ "status" : "current",
851
+ "syntax" : {
852
+ "type" : {
853
+ "basetype" : "Unsigned32",
854
+ "ranges" : [
855
+ {
856
+ "min" : "0",
857
+ "max" : "1000"
858
+ },
859
+ ],
860
+ "range" : {
861
+ "min" : "0",
862
+ "max" : "1000"
863
+ },
864
+ },
865
+ },
866
+ "access" : "readonly",
867
+ "default" : "500",
868
+ "units" : "milliseconds",
869
+ "description" :
870
+ """This object reflects the initial value for the retransmit timer
871
+ for final responses to INVITE requests. If timer G fires, the
872
+ response is passed to the transport layer again for
873
+ retransmission, and timer G is set to fire in MIN(2*T1, T2)
874
+ seconds. From then on, when timer G fires, the response is
875
+ passed to the transport again for transmission, and timer G is
876
+ reset with a value that doubles, unless that value exceeds T2,
877
+ in which case, it is reset with the value of T2. The default
878
+ value MUST be T1 for UDP transport, and its value MUST be 0 for
879
+ reliable transport like TCP/SCTP.""",
880
+ "reference" :
881
+ """RFC 3261, Section 17.2.1""",
882
+ }, # column
883
+ "sipCommonCfgTimerH" : {
884
+ "nodetype" : "column",
885
+ "moduleName" : "SIP-COMMON-MIB",
886
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.8",
887
+ "status" : "current",
888
+ "syntax" : {
889
+ "type" : {
890
+ "basetype" : "Unsigned32",
891
+ "ranges" : [
892
+ {
893
+ "min" : "32000",
894
+ "max" : "300000"
895
+ },
896
+ ],
897
+ "range" : {
898
+ "min" : "32000",
899
+ "max" : "300000"
900
+ },
901
+ },
902
+ },
903
+ "access" : "readonly",
904
+ "default" : "32000",
905
+ "units" : "milliseconds",
906
+ "description" :
907
+ """This object reflects the maximum time a server will wait to
908
+ receive an ACK before it abandons retransmitting the response.
909
+
910
+
911
+
912
+ The timer is started upon entering the 'Completed' state.""",
913
+ "reference" :
914
+ """RFC 3261, Section 17.2.1""",
915
+ }, # column
916
+ "sipCommonCfgTimerI" : {
917
+ "nodetype" : "column",
918
+ "moduleName" : "SIP-COMMON-MIB",
919
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.9",
920
+ "status" : "current",
921
+ "syntax" : {
922
+ "type" : {
923
+ "basetype" : "Unsigned32",
924
+ "ranges" : [
925
+ {
926
+ "min" : "0",
927
+ "max" : "10000"
928
+ },
929
+ ],
930
+ "range" : {
931
+ "min" : "0",
932
+ "max" : "10000"
933
+ },
934
+ },
935
+ },
936
+ "access" : "readonly",
937
+ "default" : "5000",
938
+ "units" : "milliseconds",
939
+ "description" :
940
+ """This object reflects the maximum time a SIP entity will wait to
941
+ receive additional ACK message retransmissions.
942
+
943
+ The timer is started upon entering the 'Confirmed' state. The
944
+ default value MUST be T4 for UDP transport and its value MUST
945
+ be 0 for reliable transport like TCP/SCTP.""",
946
+ "reference" :
947
+ """RFC 3261, Section 17.2.1""",
948
+ }, # column
949
+ "sipCommonCfgTimerJ" : {
950
+ "nodetype" : "column",
951
+ "moduleName" : "SIP-COMMON-MIB",
952
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.10",
953
+ "status" : "current",
954
+ "syntax" : {
955
+ "type" : {
956
+ "basetype" : "Unsigned32",
957
+ "ranges" : [
958
+ {
959
+ "min" : "32000",
960
+ "max" : "300000"
961
+ },
962
+ ],
963
+ "range" : {
964
+ "min" : "32000",
965
+ "max" : "300000"
966
+ },
967
+ },
968
+ },
969
+ "access" : "readonly",
970
+ "default" : "32000",
971
+ "units" : "milliseconds",
972
+ "description" :
973
+ """This object reflects the maximum time a SIP server will wait to
974
+ receive retransmissions of non-INVITE requests. The timer is
975
+ started upon entering the 'Completed' state for non-INVITE
976
+ transactions. When timer J fires, the server MUST transition to
977
+ the 'Terminated' state.""",
978
+ "reference" :
979
+ """RFC 3261, Section 17.2.2""",
980
+ }, # column
981
+ "sipCommonCfgTimerK" : {
982
+ "nodetype" : "column",
983
+ "moduleName" : "SIP-COMMON-MIB",
984
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.11",
985
+ "status" : "current",
986
+ "syntax" : {
987
+ "type" : {
988
+ "basetype" : "Unsigned32",
989
+ "ranges" : [
990
+ {
991
+ "min" : "0",
992
+ "max" : "10000"
993
+ },
994
+ ],
995
+ "range" : {
996
+ "min" : "0",
997
+ "max" : "10000"
998
+ },
999
+ },
1000
+ },
1001
+ "access" : "readonly",
1002
+ "default" : "5000",
1003
+ "units" : "milliseconds",
1004
+ "description" :
1005
+ """This object reflects the maximum time a SIP client will wait to
1006
+ receive retransmissions of responses to non-INVITE requests.
1007
+ The timer is started upon entering the 'Completed' state for
1008
+
1009
+
1010
+
1011
+ non-INVITE transactions. When timer K fires, the server MUST
1012
+ transition to the 'Terminated' state. The default value MUST
1013
+ be T4 for UDP transport, and its value MUST be 0 for reliable
1014
+ transport like TCP/SCTP.""",
1015
+ "reference" :
1016
+ """RFC 3261, Section 17.1.2.2""",
1017
+ }, # column
1018
+ "sipCommonCfgTimerT1" : {
1019
+ "nodetype" : "column",
1020
+ "moduleName" : "SIP-COMMON-MIB",
1021
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.12",
1022
+ "status" : "current",
1023
+ "syntax" : {
1024
+ "type" : {
1025
+ "basetype" : "Unsigned32",
1026
+ "ranges" : [
1027
+ {
1028
+ "min" : "200",
1029
+ "max" : "10000"
1030
+ },
1031
+ ],
1032
+ "range" : {
1033
+ "min" : "200",
1034
+ "max" : "10000"
1035
+ },
1036
+ },
1037
+ },
1038
+ "access" : "readonly",
1039
+ "default" : "500",
1040
+ "units" : "milliseconds",
1041
+ "description" :
1042
+ """This object reflects the T1 timer for a SIP entity. T1 is an
1043
+ estimate of the round-trip time (RTT) between the client and
1044
+ server transactions.""",
1045
+ "reference" :
1046
+ """RFC 3261, Section 17""",
1047
+ }, # column
1048
+ "sipCommonCfgTimerT2" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "SIP-COMMON-MIB",
1051
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.13",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : {
1055
+ "basetype" : "Unsigned32",
1056
+ "ranges" : [
1057
+ {
1058
+ "min" : "200",
1059
+ "max" : "10000"
1060
+ },
1061
+ ],
1062
+ "range" : {
1063
+ "min" : "200",
1064
+ "max" : "10000"
1065
+ },
1066
+ },
1067
+ },
1068
+ "access" : "readonly",
1069
+ "default" : "4000",
1070
+ "units" : "milliseconds",
1071
+ "description" :
1072
+ """This object reflects the T2 timer for a SIP entity. T2 is the
1073
+ maximum retransmit interval for non-INVITE requests and INVITE
1074
+ responses. It's used in various parts of the protocol to reset
1075
+ other Timer* objects to this value.""",
1076
+ "reference" :
1077
+ """RFC 3261, Section 17""",
1078
+ }, # column
1079
+ "sipCommonCfgTimerT4" : {
1080
+ "nodetype" : "column",
1081
+ "moduleName" : "SIP-COMMON-MIB",
1082
+ "oid" : "1.3.6.1.2.1.149.1.2.1.1.14",
1083
+ "status" : "current",
1084
+ "syntax" : {
1085
+ "type" : {
1086
+ "basetype" : "Unsigned32",
1087
+ "ranges" : [
1088
+ {
1089
+ "min" : "200",
1090
+ "max" : "10000"
1091
+ },
1092
+ ],
1093
+ "range" : {
1094
+ "min" : "200",
1095
+ "max" : "10000"
1096
+ },
1097
+ },
1098
+ },
1099
+ "access" : "readonly",
1100
+ "default" : "5000",
1101
+ "units" : "milliseconds",
1102
+ "description" :
1103
+ """This object reflects the T4 timer for a SIP entity. T4 is the
1104
+ maximum duration a message will remain in the network. It
1105
+ represents the amount of time the network will take to clear
1106
+ messages between client and server transactions. It's used in
1107
+
1108
+
1109
+
1110
+ various parts of the protocol to reset other Timer* objects to
1111
+ this value.""",
1112
+ "reference" :
1113
+ """RFC 3261, Section 17""",
1114
+ }, # column
1115
+ "sipCommonSummaryStats" : {
1116
+ "nodetype" : "node",
1117
+ "moduleName" : "SIP-COMMON-MIB",
1118
+ "oid" : "1.3.6.1.2.1.149.1.3",
1119
+ }, # node
1120
+ "sipCommonSummaryStatsTable" : {
1121
+ "nodetype" : "table",
1122
+ "moduleName" : "SIP-COMMON-MIB",
1123
+ "oid" : "1.3.6.1.2.1.149.1.3.1",
1124
+ "status" : "current",
1125
+ "description" :
1126
+ """This table contains the summary statistics objects applicable
1127
+ to all SIP entities. Each row represents those objects for a
1128
+ particular SIP entity present in this system.""",
1129
+ }, # table
1130
+ "sipCommonSummaryStatsEntry" : {
1131
+ "nodetype" : "row",
1132
+ "moduleName" : "SIP-COMMON-MIB",
1133
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1",
1134
+ "status" : "current",
1135
+ "linkage" : [
1136
+ "applIndex",
1137
+ ],
1138
+ "description" :
1139
+ """A row of summary statistics.
1140
+
1141
+ Each row represents those objects for a particular SIP entity
1142
+ present in this system. applIndex is used to uniquely identify
1143
+ these instances of SIP entities and correlate them through
1144
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
1145
+ }, # row
1146
+ "sipCommonSummaryInRequests" : {
1147
+ "nodetype" : "column",
1148
+ "moduleName" : "SIP-COMMON-MIB",
1149
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1.1",
1150
+ "status" : "current",
1151
+ "syntax" : {
1152
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1153
+ },
1154
+ "access" : "readonly",
1155
+ "description" :
1156
+ """This object indicates the total number of SIP request messages
1157
+ received by the SIP entity, including retransmissions.
1158
+
1159
+ Discontinuities in the value of this counter can occur at
1160
+ re-initialization of the SIP entity or service. A Management
1161
+ Station can detect discontinuities in this counter by
1162
+ monitoring the sipCommonSummaryDisconTime object in the same
1163
+ row.""",
1164
+ }, # column
1165
+ "sipCommonSummaryOutRequests" : {
1166
+ "nodetype" : "column",
1167
+ "moduleName" : "SIP-COMMON-MIB",
1168
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1.2",
1169
+ "status" : "current",
1170
+ "syntax" : {
1171
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1172
+ },
1173
+ "access" : "readonly",
1174
+ "description" :
1175
+ """This object contains the total number of SIP request messages
1176
+ sent out (originated and relayed) by the SIP entity. Where a
1177
+ particular message is sent more than once, for example as a
1178
+ retransmission or as a result of forking, each transmission is
1179
+ counted separately.
1180
+
1181
+ Discontinuities in the value of this counter can occur at
1182
+ re-initialization of the SIP entity or service. A Management
1183
+ Station can detect discontinuities in this counter by
1184
+ monitoring the sipCommonSummaryDisconTime object in the same
1185
+ row.""",
1186
+ }, # column
1187
+ "sipCommonSummaryInResponses" : {
1188
+ "nodetype" : "column",
1189
+ "moduleName" : "SIP-COMMON-MIB",
1190
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1.3",
1191
+ "status" : "current",
1192
+ "syntax" : {
1193
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1194
+ },
1195
+ "access" : "readonly",
1196
+ "description" :
1197
+ """This object contains the total number of SIP response messages
1198
+ received by the SIP entity, including retransmissions.
1199
+
1200
+ Discontinuities in the value of this counter can occur at
1201
+ re-initialization of the SIP entity or service. A Management
1202
+ Station can detect discontinuities in this counter by
1203
+ monitoring the sipCommonSummaryDisconTime object in the same
1204
+ row.""",
1205
+ }, # column
1206
+ "sipCommonSummaryOutResponses" : {
1207
+ "nodetype" : "column",
1208
+ "moduleName" : "SIP-COMMON-MIB",
1209
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1.4",
1210
+ "status" : "current",
1211
+ "syntax" : {
1212
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1213
+ },
1214
+ "access" : "readonly",
1215
+ "description" :
1216
+ """This object contains the total number of SIP response messages
1217
+ sent (originated and relayed) by the SIP entity including
1218
+ retransmissions.
1219
+
1220
+ Discontinuities in the value of this counter can occur at
1221
+ re-initialization of the SIP entity or service. A Management
1222
+ Station can detect discontinuities in this counter by
1223
+ monitoring the sipCommonSummaryDisconTime object in the same
1224
+ row.""",
1225
+ }, # column
1226
+ "sipCommonSummaryTotalTransactions" : {
1227
+ "nodetype" : "column",
1228
+ "moduleName" : "SIP-COMMON-MIB",
1229
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1.5",
1230
+ "status" : "current",
1231
+ "syntax" : {
1232
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1233
+ },
1234
+ "access" : "readonly",
1235
+ "description" :
1236
+ """This object contains a count of the number of transactions that
1237
+ are in progress and transactions that have reached the
1238
+ 'Terminated' state. It is not applicable to stateless SIP Proxy
1239
+ Servers.
1240
+
1241
+ A SIP transaction occurs between a client and a server, and
1242
+ comprises all messages from the first request sent from the
1243
+ client to the server, up to a final (non-1xx) response sent
1244
+ from the server to the client.
1245
+
1246
+ If the request is INVITE and the final response is a non-2xx,
1247
+ the transaction also include an ACK to the response. The ACK
1248
+ for a 2xx response to an INVITE request is a separate
1249
+ transaction.
1250
+
1251
+ The branch ID parameter in the Via header field values serves
1252
+ as a transaction identifier.
1253
+
1254
+ A transaction is identified by the CSeq sequence number within
1255
+ a single call leg. The ACK request has the same CSeq number as
1256
+ the corresponding INVITE request, but comprises a transaction
1257
+ of its own.
1258
+
1259
+ In the case of a forked request, each branch counts as a single
1260
+ transaction.
1261
+
1262
+ For a transaction stateless Proxy Server, this counter is
1263
+ always 0.
1264
+
1265
+
1266
+
1267
+ Discontinuities in the value of this counter can occur at
1268
+ re-initialization of the SIP entity or service. A Management
1269
+ Station can detect discontinuities in this counter by
1270
+ monitoring the sipCommonSummaryDisconTime object in the same
1271
+ row.""",
1272
+ }, # column
1273
+ "sipCommonSummaryDisconTime" : {
1274
+ "nodetype" : "column",
1275
+ "moduleName" : "SIP-COMMON-MIB",
1276
+ "oid" : "1.3.6.1.2.1.149.1.3.1.1.6",
1277
+ "status" : "current",
1278
+ "syntax" : {
1279
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1280
+ },
1281
+ "access" : "readonly",
1282
+ "description" :
1283
+ """The value of the sysUpTime object when the counters for the
1284
+ summary statistics objects in this row last experienced a
1285
+ discontinuity.""",
1286
+ }, # column
1287
+ "sipCommonMethodStats" : {
1288
+ "nodetype" : "node",
1289
+ "moduleName" : "SIP-COMMON-MIB",
1290
+ "oid" : "1.3.6.1.2.1.149.1.4",
1291
+ }, # node
1292
+ "sipCommonMethodStatsTable" : {
1293
+ "nodetype" : "table",
1294
+ "moduleName" : "SIP-COMMON-MIB",
1295
+ "oid" : "1.3.6.1.2.1.149.1.4.1",
1296
+ "status" : "current",
1297
+ "description" :
1298
+ """This table contains the method statistics objects for SIP
1299
+ entities. Each row represents those objects for a particular
1300
+ SIP entity present in this system.""",
1301
+ }, # table
1302
+ "sipCommonMethodStatsEntry" : {
1303
+ "nodetype" : "row",
1304
+ "moduleName" : "SIP-COMMON-MIB",
1305
+ "oid" : "1.3.6.1.2.1.149.1.4.1.1",
1306
+ "status" : "current",
1307
+ "linkage" : [
1308
+ "applIndex",
1309
+ "sipCommonMethodStatsName",
1310
+ ],
1311
+ "description" :
1312
+ """A row of per entity method statistics.
1313
+
1314
+ Each row represents those objects for a particular SIP entity
1315
+ present in this system. applIndex is used to uniquely identify
1316
+ these instances of SIP entities and correlate them through
1317
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
1318
+ }, # row
1319
+ "sipCommonMethodStatsName" : {
1320
+ "nodetype" : "column",
1321
+ "moduleName" : "SIP-COMMON-MIB",
1322
+ "oid" : "1.3.6.1.2.1.149.1.4.1.1.1",
1323
+ "status" : "current",
1324
+ "syntax" : {
1325
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCMethodName"},
1326
+ },
1327
+ "access" : "noaccess",
1328
+ "description" :
1329
+ """This object uniquely identifies the SIP method related to the
1330
+ objects in a particular row.""",
1331
+ }, # column
1332
+ "sipCommonMethodStatsOutbounds" : {
1333
+ "nodetype" : "column",
1334
+ "moduleName" : "SIP-COMMON-MIB",
1335
+ "oid" : "1.3.6.1.2.1.149.1.4.1.1.2",
1336
+ "status" : "current",
1337
+ "syntax" : {
1338
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1339
+ },
1340
+ "access" : "readonly",
1341
+ "description" :
1342
+ """This object reflects the total number of requests sent by the
1343
+ SIP entity, excluding retransmissions. Retransmissions are
1344
+ counted separately and are not reflected in this counter. A
1345
+ Management Station can detect discontinuities in this counter
1346
+ by monitoring the sipCommonMethodStatsDisconTime object in the
1347
+ same row.""",
1348
+ "reference" :
1349
+ """RFC 3261, Section 7.1""",
1350
+ }, # column
1351
+ "sipCommonMethodStatsInbounds" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "SIP-COMMON-MIB",
1354
+ "oid" : "1.3.6.1.2.1.149.1.4.1.1.3",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1358
+ },
1359
+ "access" : "readonly",
1360
+ "description" :
1361
+ """This object reflects the total number of requests received by
1362
+ the SIP entity. Retransmissions are counted separately and are
1363
+ not reflected in this counter. A Management Station can detect
1364
+ discontinuities in this counter by monitoring the
1365
+ sipCommonMethodStatsDisconTime object in the same row.""",
1366
+ "reference" :
1367
+ """RFC 3261, Section 7.1""",
1368
+ }, # column
1369
+ "sipCommonMethodStatsDisconTime" : {
1370
+ "nodetype" : "column",
1371
+ "moduleName" : "SIP-COMMON-MIB",
1372
+ "oid" : "1.3.6.1.2.1.149.1.4.1.1.4",
1373
+ "status" : "current",
1374
+ "syntax" : {
1375
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1376
+ },
1377
+ "access" : "readonly",
1378
+ "description" :
1379
+ """The value of the sysUpTime object when the counters for the
1380
+ method statistics objects in this row last experienced a
1381
+ discontinuity.""",
1382
+ }, # column
1383
+ "sipCommonStatusCode" : {
1384
+ "nodetype" : "node",
1385
+ "moduleName" : "SIP-COMMON-MIB",
1386
+ "oid" : "1.3.6.1.2.1.149.1.5",
1387
+ }, # node
1388
+ "sipCommonStatusCodeTable" : {
1389
+ "nodetype" : "table",
1390
+ "moduleName" : "SIP-COMMON-MIB",
1391
+ "oid" : "1.3.6.1.2.1.149.1.5.1",
1392
+ "status" : "current",
1393
+ "description" :
1394
+ """This table contains the list of SIP status codes that each SIP
1395
+ entity in this system has been requested to monitor. It is the
1396
+ mechanism by which specific status codes are monitored.
1397
+ Entries created in this table must not persist across reboots.""",
1398
+ }, # table
1399
+ "sipCommonStatusCodeEntry" : {
1400
+ "nodetype" : "row",
1401
+ "moduleName" : "SIP-COMMON-MIB",
1402
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1",
1403
+ "create" : "true",
1404
+ "status" : "current",
1405
+ "linkage" : [
1406
+ "applIndex",
1407
+ "sipCommonStatusCodeMethod",
1408
+ "sipCommonStatusCodeValue",
1409
+ ],
1410
+ "description" :
1411
+ """This row contains information on a particular SIP status code
1412
+ that the SIP entity has been requested to monitor. Entries
1413
+ created in this table must not persist across reboots.
1414
+
1415
+ Each row represents those objects for a particular SIP entity
1416
+ present in this system. applIndex is used to uniquely identify
1417
+ these instances of SIP entities and correlate them through
1418
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
1419
+ }, # row
1420
+ "sipCommonStatusCodeMethod" : {
1421
+ "nodetype" : "column",
1422
+ "moduleName" : "SIP-COMMON-MIB",
1423
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1.1",
1424
+ "status" : "current",
1425
+ "syntax" : {
1426
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCMethodName"},
1427
+ },
1428
+ "access" : "noaccess",
1429
+ "description" :
1430
+ """This object uniquely identifies a conceptual row in the
1431
+ table.""",
1432
+ }, # column
1433
+ "sipCommonStatusCodeValue" : {
1434
+ "nodetype" : "column",
1435
+ "moduleName" : "SIP-COMMON-MIB",
1436
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1.2",
1437
+ "status" : "current",
1438
+ "syntax" : {
1439
+ "type" : {
1440
+ "basetype" : "Unsigned32",
1441
+ "ranges" : [
1442
+ {
1443
+ "min" : "100",
1444
+ "max" : "999"
1445
+ },
1446
+ ],
1447
+ "range" : {
1448
+ "min" : "100",
1449
+ "max" : "999"
1450
+ },
1451
+ },
1452
+ },
1453
+ "access" : "noaccess",
1454
+ "description" :
1455
+ """This object contains a SIP status code value that the SIP
1456
+ entity has been requested to monitor. All of the other
1457
+ information in the row is related to this value.""",
1458
+ }, # column
1459
+ "sipCommonStatusCodeIns" : {
1460
+ "nodetype" : "column",
1461
+ "moduleName" : "SIP-COMMON-MIB",
1462
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1.3",
1463
+ "status" : "current",
1464
+ "syntax" : {
1465
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1466
+ },
1467
+ "access" : "readonly",
1468
+ "description" :
1469
+ """This object reflects the total number of response messages
1470
+ received by the SIP entity with the status code value contained
1471
+ in the sipCommonStatusCodeValue column.
1472
+
1473
+ Discontinuities in the value of this counter can occur at
1474
+ re-initialization of the SIP entity or service, or when the
1475
+ monitoring of the status code is temporarily disabled. A
1476
+ Management Station can detect discontinuities in this counter
1477
+ by monitoring the sipCommonStatusCodeDisconTime object in the
1478
+ same row.""",
1479
+ }, # column
1480
+ "sipCommonStatusCodeOuts" : {
1481
+ "nodetype" : "column",
1482
+ "moduleName" : "SIP-COMMON-MIB",
1483
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1.4",
1484
+ "status" : "current",
1485
+ "syntax" : {
1486
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1487
+ },
1488
+ "access" : "readonly",
1489
+ "description" :
1490
+ """This object reflects the total number of response messages sent
1491
+ by the SIP entity with the status code value contained in the
1492
+ sipCommonStatusCodeValue column.
1493
+
1494
+ Discontinuities in the value of this counter can occur at
1495
+ re-initialization of the SIP entity or service, or when the
1496
+ monitoring of the Status code is temporarily disabled. A
1497
+ Management Station can detect discontinuities in this counter
1498
+ by monitoring the sipCommonStatusCodeDisconTime object in the
1499
+ same row.""",
1500
+ }, # column
1501
+ "sipCommonStatusCodeRowStatus" : {
1502
+ "nodetype" : "column",
1503
+ "moduleName" : "SIP-COMMON-MIB",
1504
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1.5",
1505
+ "status" : "current",
1506
+ "syntax" : {
1507
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1508
+ },
1509
+ "access" : "readwrite",
1510
+ "description" :
1511
+ """The row augmentation in sipCommonStatusCodeNotifTable will be
1512
+ governed by the value of this RowStatus.
1513
+
1514
+ The values 'createAndGo' and 'destroy' are the only valid
1515
+ values allowed for this object. If a row exists, it will
1516
+ reflect a status of 'active' when queried.""",
1517
+ }, # column
1518
+ "sipCommonStatusCodeDisconTime" : {
1519
+ "nodetype" : "column",
1520
+ "moduleName" : "SIP-COMMON-MIB",
1521
+ "oid" : "1.3.6.1.2.1.149.1.5.1.1.6",
1522
+ "status" : "current",
1523
+ "syntax" : {
1524
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1525
+ },
1526
+ "access" : "readonly",
1527
+ "description" :
1528
+ """The value of the sysUpTime object when the counters for the
1529
+ status code statistics objects in this row last experienced
1530
+ a discontinuity.""",
1531
+ }, # column
1532
+ "sipCommonStatusCodeNotifTable" : {
1533
+ "nodetype" : "table",
1534
+ "moduleName" : "SIP-COMMON-MIB",
1535
+ "oid" : "1.3.6.1.2.1.149.1.5.2",
1536
+ "status" : "current",
1537
+ "description" :
1538
+ """This table contains objects to control notifications related to
1539
+ particular status codes that each SIP entity in this system has
1540
+ been requested to monitor.
1541
+
1542
+ There is an entry in this table corresponding to each entry in
1543
+ sipCommonStatusCodeTable. Therefore, this table augments
1544
+ sipCommonStatusCodeTable and utilizes the same index
1545
+ methodology.
1546
+
1547
+ The objects in this table are not included directly in the
1548
+ sipCommonStatusCodeTable simply to keep the status code
1549
+ notification control objects separate from the actual status
1550
+ code statistics.""",
1551
+ }, # table
1552
+ "sipCommonStatusCodeNotifEntry" : {
1553
+ "nodetype" : "row",
1554
+ "moduleName" : "SIP-COMMON-MIB",
1555
+ "oid" : "1.3.6.1.2.1.149.1.5.2.1",
1556
+ "status" : "current",
1557
+ "linkage" : [
1558
+ { "SIP-COMMON-MIB" : {
1559
+ "indexkind" : "augments",
1560
+ "relatedNode" : "sipCommonStatusCodeEntry",
1561
+ }},
1562
+ ],
1563
+ "description" :
1564
+ """This row contains information controlling notifications for a
1565
+ particular SIP status code that the SIP entity has been
1566
+ requested to monitor.""",
1567
+ }, # row
1568
+ "sipCommonStatusCodeNotifSend" : {
1569
+ "nodetype" : "column",
1570
+ "moduleName" : "SIP-COMMON-MIB",
1571
+ "oid" : "1.3.6.1.2.1.149.1.5.2.1.1",
1572
+ "status" : "current",
1573
+ "syntax" : {
1574
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1575
+ },
1576
+ "access" : "readwrite",
1577
+ "default" : "false",
1578
+ "description" :
1579
+ """This object controls whether a sipCommonStatusCodeNotif is
1580
+ emitted when the status code value specified by
1581
+ sipCommonStatusCodeValue is sent or received. If the value of
1582
+ this object is 'true', then a notification is sent. If it is
1583
+ 'false', no notification is sent.
1584
+ Note well that a notification MAY be emitted for every message
1585
+ sent or received that contains the particular status code.
1586
+ Depending on the status code involved, this can cause a
1587
+ significant number of notification emissions that could be
1588
+ detrimental to network performance. Managers are forewarned to
1589
+ be prudent in the use of this object to enable notifications.
1590
+ Look to sipCommonStatusCodeNotifEmitMode for alternative
1591
+ controls for sipCommonStatusCodeNotif emissions.""",
1592
+ }, # column
1593
+ "sipCommonStatusCodeNotifEmitMode" : {
1594
+ "nodetype" : "column",
1595
+ "moduleName" : "SIP-COMMON-MIB",
1596
+ "oid" : "1.3.6.1.2.1.149.1.5.2.1.2",
1597
+ "status" : "current",
1598
+ "syntax" : {
1599
+ "type" : {
1600
+ "basetype" : "Enumeration",
1601
+ "normal" : {
1602
+ "nodetype" : "namednumber",
1603
+ "number" : "1"
1604
+ },
1605
+ "oneShot" : {
1606
+ "nodetype" : "namednumber",
1607
+ "number" : "2"
1608
+ },
1609
+ "triggered" : {
1610
+ "nodetype" : "namednumber",
1611
+ "number" : "3"
1612
+ },
1613
+ },
1614
+ },
1615
+ "access" : "readwrite",
1616
+ "default" : "oneShot",
1617
+ "description" :
1618
+ """The object sipCommonStatusCodeNotifSend MUST be set to 'true'
1619
+ for the values of this object to have any effect. It is
1620
+ RECOMMENDED that the desired emit mode be established by this
1621
+ object prior to setting sipCommonStatusCodeNotifSend to 'true'.
1622
+ This object and the sipCommonStatusCodeNotifSend object can
1623
+ obviously be set independently, but their respective values
1624
+ will have a dependency on each other and the resulting
1625
+ notifications.
1626
+
1627
+ This object specifies the mode for emissions of
1628
+ sipCommonStatusCodeNotif notifications.
1629
+
1630
+ normal : sipCommonStatusCodeNotif notifications will be
1631
+ emitted by the system for each SIP response
1632
+ message sent or received that contains the
1633
+ desired status code.
1634
+
1635
+ oneShot : Only one sipCommonStatusCodeNotif notification
1636
+ will be emitted. It will be the next SIP response
1637
+ message sent or received that contains the
1638
+ desired status code.
1639
+
1640
+ No more notifications are emitted until this
1641
+ object is set to 'oneShot' again or set to
1642
+ 'normal'. This option is provided as a means of
1643
+ quelling the potential promiscuous behavior that
1644
+ can be associated with the
1645
+ sipCommonStatusCodeNotif.
1646
+
1647
+ triggered : This value is only readable and cannot be set. It
1648
+ reflects that the 'oneShot' case has occurred,
1649
+ and indicates that the mode needs to be reset to
1650
+ get further notifications. The mode is reset by
1651
+ setting this object to 'oneShot' or 'normal'.""",
1652
+ }, # column
1653
+ "sipCommonStatusCodeNotifThresh" : {
1654
+ "nodetype" : "column",
1655
+ "moduleName" : "SIP-COMMON-MIB",
1656
+ "oid" : "1.3.6.1.2.1.149.1.5.2.1.3",
1657
+ "status" : "current",
1658
+ "syntax" : {
1659
+ "type" : { "module" :"", "name" : "Unsigned32"},
1660
+ },
1661
+ "access" : "readwrite",
1662
+ "default" : "500",
1663
+ "description" :
1664
+ """This object specifies the number of response messages sent or
1665
+ received by this system that are considered excessive. Based
1666
+ on crossing that threshold, a
1667
+ sipCommonStatusCodeThreshExceededInNotif notification or a
1668
+ sipCommonStatusCodeThreshExceededOutNotif will be sent. The
1669
+ sipCommonStatusCodeThreshExceededInNotif and
1670
+
1671
+
1672
+
1673
+ sipCommonStatusCodeThreshExceededOutNotif notifications can be
1674
+ used as an early warning mechanism in lieu of using
1675
+ sipCommonStatusCodeNotif.
1676
+
1677
+ Note that the configuration applied by this object will be
1678
+ applied equally to inbound and outbound response messages.""",
1679
+ }, # column
1680
+ "sipCommonStatusCodeNotifInterval" : {
1681
+ "nodetype" : "column",
1682
+ "moduleName" : "SIP-COMMON-MIB",
1683
+ "oid" : "1.3.6.1.2.1.149.1.5.2.1.4",
1684
+ "status" : "current",
1685
+ "syntax" : {
1686
+ "type" : { "module" :"", "name" : "Unsigned32"},
1687
+ },
1688
+ "access" : "readwrite",
1689
+ "default" : "60",
1690
+ "units" : "seconds",
1691
+ "description" :
1692
+ """This object specifies the time interval over which, if
1693
+ sipCommonStatusCodeThresh is exceeded with respect to sent or
1694
+ received messages, a sipCommonStatusCodeThreshExceededInNotif
1695
+ or sipCommonStatusCodeThreshExceededOutNotif notification will
1696
+ be sent.
1697
+
1698
+ Note that the configuration applied by this object will be
1699
+ applied equally to inbound and outbound response messages.""",
1700
+ }, # column
1701
+ "sipCommonStatsTrans" : {
1702
+ "nodetype" : "node",
1703
+ "moduleName" : "SIP-COMMON-MIB",
1704
+ "oid" : "1.3.6.1.2.1.149.1.6",
1705
+ }, # node
1706
+ "sipCommonTransCurrentTable" : {
1707
+ "nodetype" : "table",
1708
+ "moduleName" : "SIP-COMMON-MIB",
1709
+ "oid" : "1.3.6.1.2.1.149.1.6.1",
1710
+ "status" : "current",
1711
+ "description" :
1712
+ """This table contains information on the transactions currently
1713
+ awaiting definitive responses by each SIP entity in this
1714
+ system.
1715
+
1716
+ This table does not apply to transaction stateless Proxy
1717
+ Servers.""",
1718
+ }, # table
1719
+ "sipCommonTransCurrentEntry" : {
1720
+ "nodetype" : "row",
1721
+ "moduleName" : "SIP-COMMON-MIB",
1722
+ "oid" : "1.3.6.1.2.1.149.1.6.1.1",
1723
+ "status" : "current",
1724
+ "linkage" : [
1725
+ "applIndex",
1726
+ ],
1727
+ "description" :
1728
+ """Information on a particular SIP entity's current transactions.
1729
+
1730
+
1731
+
1732
+ Each row represents those objects for a particular SIP entity
1733
+ present in this system. applIndex is used to uniquely identify
1734
+ these instances of SIP entities and correlate them through
1735
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
1736
+ }, # row
1737
+ "sipCommonTransCurrentactions" : {
1738
+ "nodetype" : "column",
1739
+ "moduleName" : "SIP-COMMON-MIB",
1740
+ "oid" : "1.3.6.1.2.1.149.1.6.1.1.1",
1741
+ "status" : "current",
1742
+ "syntax" : {
1743
+ "type" : {
1744
+ "basetype" : "Unsigned32",
1745
+ "parent module" : {
1746
+ "name" : "SNMPv2-SMI",
1747
+ "type" : "Gauge32",
1748
+ },
1749
+ "ranges" : [
1750
+ {
1751
+ "min" : "0",
1752
+ "max" : "4294967295"
1753
+ },
1754
+ ],
1755
+ "range" : {
1756
+ "min" : "0",
1757
+ "max" : "4294967295"
1758
+ },
1759
+ },
1760
+ },
1761
+ "access" : "readonly",
1762
+ "description" :
1763
+ """This object contains the number of transactions awaiting
1764
+ definitive (non-1xx) response. In the case of a forked
1765
+ request, each branch counts as a single transaction
1766
+ corresponding to the entity identified by applIndex.""",
1767
+ }, # column
1768
+ "sipCommonStatsRetry" : {
1769
+ "nodetype" : "node",
1770
+ "moduleName" : "SIP-COMMON-MIB",
1771
+ "oid" : "1.3.6.1.2.1.149.1.7",
1772
+ }, # node
1773
+ "sipCommonStatsRetryTable" : {
1774
+ "nodetype" : "table",
1775
+ "moduleName" : "SIP-COMMON-MIB",
1776
+ "oid" : "1.3.6.1.2.1.149.1.7.1",
1777
+ "status" : "current",
1778
+ "description" :
1779
+ """This table contains retry statistics objects applicable to each
1780
+ SIP entity in this system.""",
1781
+ }, # table
1782
+ "sipCommonStatsRetryEntry" : {
1783
+ "nodetype" : "row",
1784
+ "moduleName" : "SIP-COMMON-MIB",
1785
+ "oid" : "1.3.6.1.2.1.149.1.7.1.1",
1786
+ "status" : "current",
1787
+ "linkage" : [
1788
+ "applIndex",
1789
+ "sipCommonStatsRetryMethod",
1790
+ ],
1791
+ "description" :
1792
+ """A row of retry statistics.
1793
+
1794
+ Each row represents those objects for a particular SIP entity
1795
+ present in this system. applIndex is used to uniquely identify
1796
+ these instances of SIP entities and correlate them through the
1797
+ common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
1798
+ }, # row
1799
+ "sipCommonStatsRetryMethod" : {
1800
+ "nodetype" : "column",
1801
+ "moduleName" : "SIP-COMMON-MIB",
1802
+ "oid" : "1.3.6.1.2.1.149.1.7.1.1.1",
1803
+ "status" : "current",
1804
+ "syntax" : {
1805
+ "type" : { "module" :"SIP-TC-MIB", "name" : "SipTCMethodName"},
1806
+ },
1807
+ "access" : "noaccess",
1808
+ "description" :
1809
+ """This object uniquely identifies the SIP method related to the
1810
+ objects in a row.""",
1811
+ }, # column
1812
+ "sipCommonStatsRetries" : {
1813
+ "nodetype" : "column",
1814
+ "moduleName" : "SIP-COMMON-MIB",
1815
+ "oid" : "1.3.6.1.2.1.149.1.7.1.1.2",
1816
+ "status" : "current",
1817
+ "syntax" : {
1818
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1819
+ },
1820
+ "access" : "readonly",
1821
+ "description" :
1822
+ """This object reflects the total number of request
1823
+ retransmissions that have been sent by the SIP entity. Note
1824
+ that there could be multiple retransmissions per request.
1825
+
1826
+ Discontinuities in the value of this counter can occur at
1827
+ re-initialization of the SIP entity or service. A Management
1828
+ Station can detect discontinuities in this counter by
1829
+ monitoring the sipCommonStatsRetryDisconTime object in the same
1830
+ row.""",
1831
+ }, # column
1832
+ "sipCommonStatsRetryFinalResponses" : {
1833
+ "nodetype" : "column",
1834
+ "moduleName" : "SIP-COMMON-MIB",
1835
+ "oid" : "1.3.6.1.2.1.149.1.7.1.1.3",
1836
+ "status" : "current",
1837
+ "syntax" : {
1838
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1839
+ },
1840
+ "access" : "readonly",
1841
+ "description" :
1842
+ """This object reflects the total number of Final Response retries
1843
+ that have been sent by the SIP entity. Note that there could
1844
+ be multiple retransmissions per request.
1845
+
1846
+ Discontinuities in the value of this counter can occur at
1847
+ re-initialization of the SIP entity or service. A Management
1848
+ Station can detect discontinuities in this counter by
1849
+
1850
+
1851
+
1852
+ monitoring the sipCommonStatsRetryDisconTime object in the same
1853
+ row.""",
1854
+ }, # column
1855
+ "sipCommonStatsRetryNonFinalResponses" : {
1856
+ "nodetype" : "column",
1857
+ "moduleName" : "SIP-COMMON-MIB",
1858
+ "oid" : "1.3.6.1.2.1.149.1.7.1.1.4",
1859
+ "status" : "current",
1860
+ "syntax" : {
1861
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1862
+ },
1863
+ "access" : "readonly",
1864
+ "description" :
1865
+ """This object reflects the total number of non-Final Response
1866
+ retries that have been sent by the SIP entity.
1867
+
1868
+ Discontinuities in the value of this counter can occur at
1869
+ re-initialization of the SIP entity or service. A Management
1870
+ Station can detect discontinuities in this counter by
1871
+ monitoring the sipCommonStatsRetryDisconTime object in the same
1872
+ row.""",
1873
+ }, # column
1874
+ "sipCommonStatsRetryDisconTime" : {
1875
+ "nodetype" : "column",
1876
+ "moduleName" : "SIP-COMMON-MIB",
1877
+ "oid" : "1.3.6.1.2.1.149.1.7.1.1.5",
1878
+ "status" : "current",
1879
+ "syntax" : {
1880
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1881
+ },
1882
+ "access" : "readonly",
1883
+ "description" :
1884
+ """The value of the sysUpTime object when the counters for the
1885
+ retry statistics objects in this row last experienced a
1886
+ discontinuity.""",
1887
+ }, # column
1888
+ "sipCommonOtherStats" : {
1889
+ "nodetype" : "node",
1890
+ "moduleName" : "SIP-COMMON-MIB",
1891
+ "oid" : "1.3.6.1.2.1.149.1.8",
1892
+ }, # node
1893
+ "sipCommonOtherStatsTable" : {
1894
+ "nodetype" : "table",
1895
+ "moduleName" : "SIP-COMMON-MIB",
1896
+ "oid" : "1.3.6.1.2.1.149.1.8.1",
1897
+ "status" : "current",
1898
+ "description" :
1899
+ """This table contains other common statistics supported by each
1900
+ SIP entity in this system.""",
1901
+ }, # table
1902
+ "sipCommonOtherStatsEntry" : {
1903
+ "nodetype" : "row",
1904
+ "moduleName" : "SIP-COMMON-MIB",
1905
+ "oid" : "1.3.6.1.2.1.149.1.8.1.1",
1906
+ "status" : "current",
1907
+ "linkage" : [
1908
+ "applIndex",
1909
+ ],
1910
+ "description" :
1911
+ """Information on a particular SIP entity's other common
1912
+ statistics.
1913
+
1914
+
1915
+
1916
+ Each row represents those objects for a particular SIP entity
1917
+ present in this system. applIndex is used to uniquely identify
1918
+ these instances of SIP entities and correlate them through
1919
+ the common framework of the NETWORK-SERVICES-MIB (RFC 2788).""",
1920
+ }, # row
1921
+ "sipCommonOtherStatsNumUnsupportedUris" : {
1922
+ "nodetype" : "column",
1923
+ "moduleName" : "SIP-COMMON-MIB",
1924
+ "oid" : "1.3.6.1.2.1.149.1.8.1.1.1",
1925
+ "status" : "current",
1926
+ "syntax" : {
1927
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1928
+ },
1929
+ "access" : "readonly",
1930
+ "description" :
1931
+ """Number of RequestURIs received with an unsupported scheme.
1932
+ A server normally responds to such requests with a 400 Bad
1933
+ Request status code.
1934
+
1935
+ Discontinuities in the value of this counter can occur at
1936
+ re-initialization of the SIP entity or service. A Management
1937
+ Station can detect discontinuities in this counter by
1938
+ monitoring the sipCommonOtherStatsDisconTime object in the same
1939
+ row.""",
1940
+ }, # column
1941
+ "sipCommonOtherStatsNumUnsupportedMethods" : {
1942
+ "nodetype" : "column",
1943
+ "moduleName" : "SIP-COMMON-MIB",
1944
+ "oid" : "1.3.6.1.2.1.149.1.8.1.1.2",
1945
+ "status" : "current",
1946
+ "syntax" : {
1947
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1948
+ },
1949
+ "access" : "readonly",
1950
+ "description" :
1951
+ """Number of SIP requests received with unsupported methods. A
1952
+ server normally responds to such requests with a 501 (Not
1953
+ Implemented) or 405 (Method Not Allowed).
1954
+
1955
+ Discontinuities in the value of this counter can occur at
1956
+ re-initialization of the SIP entity or service. A Management
1957
+ Station can detect discontinuities in this counter by
1958
+ monitoring the sipCommonOtherStatsDisconTime object in the same
1959
+ row.""",
1960
+ }, # column
1961
+ "sipCommonOtherStatsOtherwiseDiscardedMsgs" : {
1962
+ "nodetype" : "column",
1963
+ "moduleName" : "SIP-COMMON-MIB",
1964
+ "oid" : "1.3.6.1.2.1.149.1.8.1.1.3",
1965
+ "status" : "current",
1966
+ "syntax" : {
1967
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1968
+ },
1969
+ "access" : "readonly",
1970
+ "description" :
1971
+ """Number of SIP messages received that, for any number of
1972
+ reasons, was discarded without a response.
1973
+
1974
+ Discontinuities in the value of this counter can occur at
1975
+ re-initialization of the SIP entity or service. A Management
1976
+ Station can detect discontinuities in this counter by
1977
+ monitoring the sipCommonOtherStatsDisconTime object in the same
1978
+ row.""",
1979
+ }, # column
1980
+ "sipCommonOtherStatsDisconTime" : {
1981
+ "nodetype" : "column",
1982
+ "moduleName" : "SIP-COMMON-MIB",
1983
+ "oid" : "1.3.6.1.2.1.149.1.8.1.1.4",
1984
+ "status" : "current",
1985
+ "syntax" : {
1986
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1987
+ },
1988
+ "access" : "readonly",
1989
+ "description" :
1990
+ """The value of the sysUpTime object when the counters for the
1991
+ statistics objects in this row last experienced a
1992
+ discontinuity.""",
1993
+ }, # column
1994
+ "sipCommonNotifObjects" : {
1995
+ "nodetype" : "node",
1996
+ "moduleName" : "SIP-COMMON-MIB",
1997
+ "oid" : "1.3.6.1.2.1.149.1.9",
1998
+ }, # node
1999
+ "sipCommonStatusCodeNotifTo" : {
2000
+ "nodetype" : "scalar",
2001
+ "moduleName" : "SIP-COMMON-MIB",
2002
+ "oid" : "1.3.6.1.2.1.149.1.9.1",
2003
+ "status" : "current",
2004
+ "syntax" : {
2005
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2006
+ },
2007
+ "access" : "notifyonly",
2008
+ "description" :
2009
+ """This object contains the value of the To header in the message
2010
+ containing the status code that caused the notification. The
2011
+ header name will be part of this object value. For example,
2012
+ 'To: Watson '.""",
2013
+ }, # scalar
2014
+ "sipCommonStatusCodeNotifFrom" : {
2015
+ "nodetype" : "scalar",
2016
+ "moduleName" : "SIP-COMMON-MIB",
2017
+ "oid" : "1.3.6.1.2.1.149.1.9.2",
2018
+ "status" : "current",
2019
+ "syntax" : {
2020
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2021
+ },
2022
+ "access" : "notifyonly",
2023
+ "description" :
2024
+ """This object contains the value of the From header in the
2025
+ message containing the status code that caused the
2026
+
2027
+
2028
+
2029
+ notification. The header name will be part of this object
2030
+ value. For example, 'From: Watson '.""",
2031
+ }, # scalar
2032
+ "sipCommonStatusCodeNotifCallId" : {
2033
+ "nodetype" : "scalar",
2034
+ "moduleName" : "SIP-COMMON-MIB",
2035
+ "oid" : "1.3.6.1.2.1.149.1.9.3",
2036
+ "status" : "current",
2037
+ "syntax" : {
2038
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2039
+ },
2040
+ "access" : "notifyonly",
2041
+ "description" :
2042
+ """This object contains the value of the Call-ID in the message
2043
+ containing the status code that caused the notification. The
2044
+ header name will be part of this object value. For example,
2045
+ 'Call-ID: 5551212@example.com'.""",
2046
+ }, # scalar
2047
+ "sipCommonStatusCodeNotifCSeq" : {
2048
+ "nodetype" : "scalar",
2049
+ "moduleName" : "SIP-COMMON-MIB",
2050
+ "oid" : "1.3.6.1.2.1.149.1.9.4",
2051
+ "status" : "current",
2052
+ "syntax" : {
2053
+ "type" : { "module" :"", "name" : "Unsigned32"},
2054
+ },
2055
+ "access" : "notifyonly",
2056
+ "description" :
2057
+ """This object contains the CSeq value in the message containing
2058
+ the status code that caused the notification. The header name
2059
+ will be part of this object value. For example, 'CSeq: 1722
2060
+ INVITE'.""",
2061
+ }, # scalar
2062
+ "sipCommonNotifApplIndex" : {
2063
+ "nodetype" : "scalar",
2064
+ "moduleName" : "SIP-COMMON-MIB",
2065
+ "oid" : "1.3.6.1.2.1.149.1.9.5",
2066
+ "status" : "current",
2067
+ "syntax" : {
2068
+ "type" : {
2069
+ "basetype" : "Unsigned32",
2070
+ "ranges" : [
2071
+ {
2072
+ "min" : "1",
2073
+ "max" : "2147483647"
2074
+ },
2075
+ ],
2076
+ "range" : {
2077
+ "min" : "1",
2078
+ "max" : "2147483647"
2079
+ },
2080
+ },
2081
+ },
2082
+ "access" : "notifyonly",
2083
+ "description" :
2084
+ """This object contains the applIndex as described in RFC 2788.
2085
+ This object is created in order to allow a variable binding
2086
+ containing a value of applIndex in a notification.""",
2087
+ }, # scalar
2088
+ "sipCommonNotifSequenceNumber" : {
2089
+ "nodetype" : "scalar",
2090
+ "moduleName" : "SIP-COMMON-MIB",
2091
+ "oid" : "1.3.6.1.2.1.149.1.9.6",
2092
+ "status" : "current",
2093
+ "syntax" : {
2094
+ "type" : {
2095
+ "basetype" : "Unsigned32",
2096
+ "ranges" : [
2097
+ {
2098
+ "min" : "1",
2099
+ "max" : "2147483647"
2100
+ },
2101
+ ],
2102
+ "range" : {
2103
+ "min" : "1",
2104
+ "max" : "2147483647"
2105
+ },
2106
+ },
2107
+ },
2108
+ "access" : "notifyonly",
2109
+ "description" :
2110
+ """This object contains a sequence number for each notification
2111
+ generated by this SIP entity. Each notification SHOULD have a
2112
+ unique sequence number. A network manager can use this
2113
+ information to determine whether notifications from a
2114
+
2115
+
2116
+
2117
+ particular SIP entity have been missed. The value of this
2118
+ object MUST start at 1 and increase by 1 with each generated
2119
+ notification. If a system restarts, the sequence number MAY
2120
+ start again from 1.""",
2121
+ }, # scalar
2122
+ "sipCommonMIBConformance" : {
2123
+ "nodetype" : "node",
2124
+ "moduleName" : "SIP-COMMON-MIB",
2125
+ "oid" : "1.3.6.1.2.1.149.2",
2126
+ }, # node
2127
+ "sipCommonMIBCompliances" : {
2128
+ "nodetype" : "node",
2129
+ "moduleName" : "SIP-COMMON-MIB",
2130
+ "oid" : "1.3.6.1.2.1.149.2.1",
2131
+ }, # node
2132
+ "sipCommonMIBGroups" : {
2133
+ "nodetype" : "node",
2134
+ "moduleName" : "SIP-COMMON-MIB",
2135
+ "oid" : "1.3.6.1.2.1.149.2.2",
2136
+ }, # node
2137
+ }, # nodes
2138
+
2139
+ "notifications" : {
2140
+ "sipCommonStatusCodeNotif" : {
2141
+ "nodetype" : "notification",
2142
+ "moduleName" : "SIP-COMMON-MIB",
2143
+ "oid" : "1.3.6.1.2.1.149.0.1",
2144
+ "status" : "current",
2145
+ "objects" : {
2146
+ "sipCommonNotifSequenceNumber" : {
2147
+ "nodetype" : "object",
2148
+ "module" : "SIP-COMMON-MIB"
2149
+ },
2150
+ "sipCommonNotifApplIndex" : {
2151
+ "nodetype" : "object",
2152
+ "module" : "SIP-COMMON-MIB"
2153
+ },
2154
+ "sipCommonStatusCodeNotifTo" : {
2155
+ "nodetype" : "object",
2156
+ "module" : "SIP-COMMON-MIB"
2157
+ },
2158
+ "sipCommonStatusCodeNotifFrom" : {
2159
+ "nodetype" : "object",
2160
+ "module" : "SIP-COMMON-MIB"
2161
+ },
2162
+ "sipCommonStatusCodeNotifCallId" : {
2163
+ "nodetype" : "object",
2164
+ "module" : "SIP-COMMON-MIB"
2165
+ },
2166
+ "sipCommonStatusCodeNotifCSeq" : {
2167
+ "nodetype" : "object",
2168
+ "module" : "SIP-COMMON-MIB"
2169
+ },
2170
+ "sipCommonStatusCodeIns" : {
2171
+ "nodetype" : "object",
2172
+ "module" : "SIP-COMMON-MIB"
2173
+ },
2174
+ "sipCommonStatusCodeOuts" : {
2175
+ "nodetype" : "object",
2176
+ "module" : "SIP-COMMON-MIB"
2177
+ },
2178
+ },
2179
+ "description" :
2180
+ """Signifies that a specific status code has been sent or received
2181
+ by the system.""",
2182
+ }, # notification
2183
+ "sipCommonStatusCodeThreshExceededInNotif" : {
2184
+ "nodetype" : "notification",
2185
+ "moduleName" : "SIP-COMMON-MIB",
2186
+ "oid" : "1.3.6.1.2.1.149.0.2",
2187
+ "status" : "current",
2188
+ "objects" : {
2189
+ "sipCommonNotifSequenceNumber" : {
2190
+ "nodetype" : "object",
2191
+ "module" : "SIP-COMMON-MIB"
2192
+ },
2193
+ "sipCommonNotifApplIndex" : {
2194
+ "nodetype" : "object",
2195
+ "module" : "SIP-COMMON-MIB"
2196
+ },
2197
+ "sipCommonStatusCodeIns" : {
2198
+ "nodetype" : "object",
2199
+ "module" : "SIP-COMMON-MIB"
2200
+ },
2201
+ },
2202
+ "description" :
2203
+ """Signifies that a specific status code was found to have been
2204
+ received by the system frequently enough to exceed the
2205
+ configured threshold. This notification can be used as
2206
+ an early warning mechanism in lieu of using
2207
+ sipCommonStatusCodeNotif.""",
2208
+ }, # notification
2209
+ "sipCommonStatusCodeThreshExceededOutNotif" : {
2210
+ "nodetype" : "notification",
2211
+ "moduleName" : "SIP-COMMON-MIB",
2212
+ "oid" : "1.3.6.1.2.1.149.0.3",
2213
+ "status" : "current",
2214
+ "objects" : {
2215
+ "sipCommonNotifSequenceNumber" : {
2216
+ "nodetype" : "object",
2217
+ "module" : "SIP-COMMON-MIB"
2218
+ },
2219
+ "sipCommonNotifApplIndex" : {
2220
+ "nodetype" : "object",
2221
+ "module" : "SIP-COMMON-MIB"
2222
+ },
2223
+ "sipCommonStatusCodeOuts" : {
2224
+ "nodetype" : "object",
2225
+ "module" : "SIP-COMMON-MIB"
2226
+ },
2227
+ },
2228
+ "description" :
2229
+ """Signifies that a specific status code was found to have been
2230
+ sent by the system enough to exceed the configured threshold.
2231
+ This notification can be used as an early warning mechanism in
2232
+ lieu of using sipCommonStatusCodeNotif.""",
2233
+ }, # notification
2234
+ "sipCommonServiceColdStart" : {
2235
+ "nodetype" : "notification",
2236
+ "moduleName" : "SIP-COMMON-MIB",
2237
+ "oid" : "1.3.6.1.2.1.149.0.4",
2238
+ "status" : "current",
2239
+ "objects" : {
2240
+ "sipCommonNotifSequenceNumber" : {
2241
+ "nodetype" : "object",
2242
+ "module" : "SIP-COMMON-MIB"
2243
+ },
2244
+ "sipCommonNotifApplIndex" : {
2245
+ "nodetype" : "object",
2246
+ "module" : "SIP-COMMON-MIB"
2247
+ },
2248
+ "sipCommonCfgServiceStartTime" : {
2249
+ "nodetype" : "object",
2250
+ "module" : "SIP-COMMON-MIB"
2251
+ },
2252
+ },
2253
+ "description" :
2254
+ """Signifies that the SIP service has reinitialized itself or
2255
+ started for the first time. This SHOULD result from a hard
2256
+ 'down' to 'up' administrative status change. The configuration
2257
+ or behavior of the service MAY be altered.""",
2258
+ }, # notification
2259
+ "sipCommonServiceWarmStart" : {
2260
+ "nodetype" : "notification",
2261
+ "moduleName" : "SIP-COMMON-MIB",
2262
+ "oid" : "1.3.6.1.2.1.149.0.5",
2263
+ "status" : "current",
2264
+ "objects" : {
2265
+ "sipCommonNotifSequenceNumber" : {
2266
+ "nodetype" : "object",
2267
+ "module" : "SIP-COMMON-MIB"
2268
+ },
2269
+ "sipCommonNotifApplIndex" : {
2270
+ "nodetype" : "object",
2271
+ "module" : "SIP-COMMON-MIB"
2272
+ },
2273
+ "sipCommonCfgServiceLastChange" : {
2274
+ "nodetype" : "object",
2275
+ "module" : "SIP-COMMON-MIB"
2276
+ },
2277
+ },
2278
+ "description" :
2279
+ """Signifies that the SIP service has reinitialized itself and is
2280
+ restarting after an administrative 'reset'. The configuration
2281
+ or behavior of the service MAY be altered.""",
2282
+ }, # notification
2283
+ "sipCommonServiceStatusChanged" : {
2284
+ "nodetype" : "notification",
2285
+ "moduleName" : "SIP-COMMON-MIB",
2286
+ "oid" : "1.3.6.1.2.1.149.0.6",
2287
+ "status" : "current",
2288
+ "objects" : {
2289
+ "sipCommonNotifSequenceNumber" : {
2290
+ "nodetype" : "object",
2291
+ "module" : "SIP-COMMON-MIB"
2292
+ },
2293
+ "sipCommonNotifApplIndex" : {
2294
+ "nodetype" : "object",
2295
+ "module" : "SIP-COMMON-MIB"
2296
+ },
2297
+ "sipCommonCfgServiceLastChange" : {
2298
+ "nodetype" : "object",
2299
+ "module" : "SIP-COMMON-MIB"
2300
+ },
2301
+ "sipCommonCfgServiceOperStatus" : {
2302
+ "nodetype" : "object",
2303
+ "module" : "SIP-COMMON-MIB"
2304
+ },
2305
+ },
2306
+ "description" :
2307
+ """Signifies that the SIP service operational status has changed.""",
2308
+ }, # notification
2309
+ }, # notifications
2310
+
2311
+ "groups" : {
2312
+ "sipCommonConfigGroup" : {
2313
+ "nodetype" : "group",
2314
+ "moduleName" : "SIP-COMMON-MIB",
2315
+ "oid" : "1.3.6.1.2.1.149.2.2.1",
2316
+ "status" : "current",
2317
+ "members" : {
2318
+ "sipCommonCfgProtocolVersion" : {
2319
+ "nodetype" : "member",
2320
+ "module" : "SIP-COMMON-MIB"
2321
+ },
2322
+ "sipCommonCfgServiceOperStatus" : {
2323
+ "nodetype" : "member",
2324
+ "module" : "SIP-COMMON-MIB"
2325
+ },
2326
+ "sipCommonCfgServiceStartTime" : {
2327
+ "nodetype" : "member",
2328
+ "module" : "SIP-COMMON-MIB"
2329
+ },
2330
+ "sipCommonCfgServiceLastChange" : {
2331
+ "nodetype" : "member",
2332
+ "module" : "SIP-COMMON-MIB"
2333
+ },
2334
+ "sipCommonPortTransportRcv" : {
2335
+ "nodetype" : "member",
2336
+ "module" : "SIP-COMMON-MIB"
2337
+ },
2338
+ "sipCommonOptionTag" : {
2339
+ "nodetype" : "member",
2340
+ "module" : "SIP-COMMON-MIB"
2341
+ },
2342
+ "sipCommonOptionTagHeaderField" : {
2343
+ "nodetype" : "member",
2344
+ "module" : "SIP-COMMON-MIB"
2345
+ },
2346
+ "sipCommonCfgMaxTransactions" : {
2347
+ "nodetype" : "member",
2348
+ "module" : "SIP-COMMON-MIB"
2349
+ },
2350
+ "sipCommonCfgServiceNotifEnable" : {
2351
+ "nodetype" : "member",
2352
+ "module" : "SIP-COMMON-MIB"
2353
+ },
2354
+ "sipCommonCfgEntityType" : {
2355
+ "nodetype" : "member",
2356
+ "module" : "SIP-COMMON-MIB"
2357
+ },
2358
+ "sipCommonMethodSupportedName" : {
2359
+ "nodetype" : "member",
2360
+ "module" : "SIP-COMMON-MIB"
2361
+ },
2362
+ }, # members
2363
+ "description" :
2364
+ """A collection of objects providing configuration common to all
2365
+ SIP entities.""",
2366
+ }, # group
2367
+ "sipCommonInformationalGroup" : {
2368
+ "nodetype" : "group",
2369
+ "moduleName" : "SIP-COMMON-MIB",
2370
+ "oid" : "1.3.6.1.2.1.149.2.2.2",
2371
+ "status" : "current",
2372
+ "members" : {
2373
+ "sipCommonCfgOrganization" : {
2374
+ "nodetype" : "member",
2375
+ "module" : "SIP-COMMON-MIB"
2376
+ },
2377
+ }, # members
2378
+ "description" :
2379
+ """A collection of objects providing configuration common to all
2380
+ SIP entities.""",
2381
+ }, # group
2382
+ "sipCommonConfigTimerGroup" : {
2383
+ "nodetype" : "group",
2384
+ "moduleName" : "SIP-COMMON-MIB",
2385
+ "oid" : "1.3.6.1.2.1.149.2.2.3",
2386
+ "status" : "current",
2387
+ "members" : {
2388
+ "sipCommonCfgTimerA" : {
2389
+ "nodetype" : "member",
2390
+ "module" : "SIP-COMMON-MIB"
2391
+ },
2392
+ "sipCommonCfgTimerB" : {
2393
+ "nodetype" : "member",
2394
+ "module" : "SIP-COMMON-MIB"
2395
+ },
2396
+ "sipCommonCfgTimerC" : {
2397
+ "nodetype" : "member",
2398
+ "module" : "SIP-COMMON-MIB"
2399
+ },
2400
+ "sipCommonCfgTimerD" : {
2401
+ "nodetype" : "member",
2402
+ "module" : "SIP-COMMON-MIB"
2403
+ },
2404
+ "sipCommonCfgTimerE" : {
2405
+ "nodetype" : "member",
2406
+ "module" : "SIP-COMMON-MIB"
2407
+ },
2408
+ "sipCommonCfgTimerF" : {
2409
+ "nodetype" : "member",
2410
+ "module" : "SIP-COMMON-MIB"
2411
+ },
2412
+ "sipCommonCfgTimerG" : {
2413
+ "nodetype" : "member",
2414
+ "module" : "SIP-COMMON-MIB"
2415
+ },
2416
+ "sipCommonCfgTimerH" : {
2417
+ "nodetype" : "member",
2418
+ "module" : "SIP-COMMON-MIB"
2419
+ },
2420
+ "sipCommonCfgTimerI" : {
2421
+ "nodetype" : "member",
2422
+ "module" : "SIP-COMMON-MIB"
2423
+ },
2424
+ "sipCommonCfgTimerJ" : {
2425
+ "nodetype" : "member",
2426
+ "module" : "SIP-COMMON-MIB"
2427
+ },
2428
+ "sipCommonCfgTimerK" : {
2429
+ "nodetype" : "member",
2430
+ "module" : "SIP-COMMON-MIB"
2431
+ },
2432
+ "sipCommonCfgTimerT1" : {
2433
+ "nodetype" : "member",
2434
+ "module" : "SIP-COMMON-MIB"
2435
+ },
2436
+ "sipCommonCfgTimerT2" : {
2437
+ "nodetype" : "member",
2438
+ "module" : "SIP-COMMON-MIB"
2439
+ },
2440
+ "sipCommonCfgTimerT4" : {
2441
+ "nodetype" : "member",
2442
+ "module" : "SIP-COMMON-MIB"
2443
+ },
2444
+ }, # members
2445
+ "description" :
2446
+ """A collection of objects providing timer configuration common to
2447
+ all SIP entities.""",
2448
+ }, # group
2449
+ "sipCommonStatsGroup" : {
2450
+ "nodetype" : "group",
2451
+ "moduleName" : "SIP-COMMON-MIB",
2452
+ "oid" : "1.3.6.1.2.1.149.2.2.4",
2453
+ "status" : "current",
2454
+ "members" : {
2455
+ "sipCommonSummaryInRequests" : {
2456
+ "nodetype" : "member",
2457
+ "module" : "SIP-COMMON-MIB"
2458
+ },
2459
+ "sipCommonSummaryOutRequests" : {
2460
+ "nodetype" : "member",
2461
+ "module" : "SIP-COMMON-MIB"
2462
+ },
2463
+ "sipCommonSummaryInResponses" : {
2464
+ "nodetype" : "member",
2465
+ "module" : "SIP-COMMON-MIB"
2466
+ },
2467
+ "sipCommonSummaryOutResponses" : {
2468
+ "nodetype" : "member",
2469
+ "module" : "SIP-COMMON-MIB"
2470
+ },
2471
+ "sipCommonSummaryTotalTransactions" : {
2472
+ "nodetype" : "member",
2473
+ "module" : "SIP-COMMON-MIB"
2474
+ },
2475
+ "sipCommonSummaryDisconTime" : {
2476
+ "nodetype" : "member",
2477
+ "module" : "SIP-COMMON-MIB"
2478
+ },
2479
+ "sipCommonMethodStatsOutbounds" : {
2480
+ "nodetype" : "member",
2481
+ "module" : "SIP-COMMON-MIB"
2482
+ },
2483
+ "sipCommonMethodStatsInbounds" : {
2484
+ "nodetype" : "member",
2485
+ "module" : "SIP-COMMON-MIB"
2486
+ },
2487
+ "sipCommonMethodStatsDisconTime" : {
2488
+ "nodetype" : "member",
2489
+ "module" : "SIP-COMMON-MIB"
2490
+ },
2491
+ "sipCommonStatusCodeIns" : {
2492
+ "nodetype" : "member",
2493
+ "module" : "SIP-COMMON-MIB"
2494
+ },
2495
+ "sipCommonStatusCodeOuts" : {
2496
+ "nodetype" : "member",
2497
+ "module" : "SIP-COMMON-MIB"
2498
+ },
2499
+ "sipCommonStatusCodeRowStatus" : {
2500
+ "nodetype" : "member",
2501
+ "module" : "SIP-COMMON-MIB"
2502
+ },
2503
+ "sipCommonStatusCodeDisconTime" : {
2504
+ "nodetype" : "member",
2505
+ "module" : "SIP-COMMON-MIB"
2506
+ },
2507
+ "sipCommonTransCurrentactions" : {
2508
+ "nodetype" : "member",
2509
+ "module" : "SIP-COMMON-MIB"
2510
+ },
2511
+ "sipCommonOtherStatsNumUnsupportedUris" : {
2512
+ "nodetype" : "member",
2513
+ "module" : "SIP-COMMON-MIB"
2514
+ },
2515
+ "sipCommonOtherStatsNumUnsupportedMethods" : {
2516
+ "nodetype" : "member",
2517
+ "module" : "SIP-COMMON-MIB"
2518
+ },
2519
+ "sipCommonOtherStatsOtherwiseDiscardedMsgs" : {
2520
+ "nodetype" : "member",
2521
+ "module" : "SIP-COMMON-MIB"
2522
+ },
2523
+ "sipCommonOtherStatsDisconTime" : {
2524
+ "nodetype" : "member",
2525
+ "module" : "SIP-COMMON-MIB"
2526
+ },
2527
+ }, # members
2528
+ "description" :
2529
+ """A collection of objects providing statistics common to all SIP
2530
+ entities.""",
2531
+ }, # group
2532
+ "sipCommonStatsRetryGroup" : {
2533
+ "nodetype" : "group",
2534
+ "moduleName" : "SIP-COMMON-MIB",
2535
+ "oid" : "1.3.6.1.2.1.149.2.2.5",
2536
+ "status" : "current",
2537
+ "members" : {
2538
+ "sipCommonStatsRetries" : {
2539
+ "nodetype" : "member",
2540
+ "module" : "SIP-COMMON-MIB"
2541
+ },
2542
+ "sipCommonStatsRetryFinalResponses" : {
2543
+ "nodetype" : "member",
2544
+ "module" : "SIP-COMMON-MIB"
2545
+ },
2546
+ "sipCommonStatsRetryNonFinalResponses" : {
2547
+ "nodetype" : "member",
2548
+ "module" : "SIP-COMMON-MIB"
2549
+ },
2550
+ "sipCommonStatsRetryDisconTime" : {
2551
+ "nodetype" : "member",
2552
+ "module" : "SIP-COMMON-MIB"
2553
+ },
2554
+ }, # members
2555
+ "description" :
2556
+ """A collection of objects providing retry statistics.""",
2557
+ }, # group
2558
+ "sipCommonNotifGroup" : {
2559
+ "nodetype" : "group",
2560
+ "moduleName" : "SIP-COMMON-MIB",
2561
+ "oid" : "1.3.6.1.2.1.149.2.2.6",
2562
+ "status" : "current",
2563
+ "members" : {
2564
+ "sipCommonStatusCodeNotif" : {
2565
+ "nodetype" : "member",
2566
+ "module" : "SIP-COMMON-MIB"
2567
+ },
2568
+ "sipCommonStatusCodeThreshExceededInNotif" : {
2569
+ "nodetype" : "member",
2570
+ "module" : "SIP-COMMON-MIB"
2571
+ },
2572
+ "sipCommonStatusCodeThreshExceededOutNotif" : {
2573
+ "nodetype" : "member",
2574
+ "module" : "SIP-COMMON-MIB"
2575
+ },
2576
+ "sipCommonServiceColdStart" : {
2577
+ "nodetype" : "member",
2578
+ "module" : "SIP-COMMON-MIB"
2579
+ },
2580
+ "sipCommonServiceWarmStart" : {
2581
+ "nodetype" : "member",
2582
+ "module" : "SIP-COMMON-MIB"
2583
+ },
2584
+ "sipCommonServiceStatusChanged" : {
2585
+ "nodetype" : "member",
2586
+ "module" : "SIP-COMMON-MIB"
2587
+ },
2588
+ }, # members
2589
+ "description" :
2590
+ """A collection of notifications common to all SIP entities.""",
2591
+ }, # group
2592
+ "sipCommonStatusCodeNotifGroup" : {
2593
+ "nodetype" : "group",
2594
+ "moduleName" : "SIP-COMMON-MIB",
2595
+ "oid" : "1.3.6.1.2.1.149.2.2.7",
2596
+ "status" : "current",
2597
+ "members" : {
2598
+ "sipCommonStatusCodeNotifSend" : {
2599
+ "nodetype" : "member",
2600
+ "module" : "SIP-COMMON-MIB"
2601
+ },
2602
+ "sipCommonStatusCodeNotifEmitMode" : {
2603
+ "nodetype" : "member",
2604
+ "module" : "SIP-COMMON-MIB"
2605
+ },
2606
+ "sipCommonStatusCodeNotifThresh" : {
2607
+ "nodetype" : "member",
2608
+ "module" : "SIP-COMMON-MIB"
2609
+ },
2610
+ "sipCommonStatusCodeNotifInterval" : {
2611
+ "nodetype" : "member",
2612
+ "module" : "SIP-COMMON-MIB"
2613
+ },
2614
+ }, # members
2615
+ "description" :
2616
+ """A collection of objects related to the control and attribution
2617
+ of notifications common to all SIP entities.""",
2618
+ }, # group
2619
+ "sipCommonNotifObjectsGroup" : {
2620
+ "nodetype" : "group",
2621
+ "moduleName" : "SIP-COMMON-MIB",
2622
+ "oid" : "1.3.6.1.2.1.149.2.2.8",
2623
+ "status" : "current",
2624
+ "members" : {
2625
+ "sipCommonStatusCodeNotifTo" : {
2626
+ "nodetype" : "member",
2627
+ "module" : "SIP-COMMON-MIB"
2628
+ },
2629
+ "sipCommonStatusCodeNotifFrom" : {
2630
+ "nodetype" : "member",
2631
+ "module" : "SIP-COMMON-MIB"
2632
+ },
2633
+ "sipCommonStatusCodeNotifCallId" : {
2634
+ "nodetype" : "member",
2635
+ "module" : "SIP-COMMON-MIB"
2636
+ },
2637
+ "sipCommonStatusCodeNotifCSeq" : {
2638
+ "nodetype" : "member",
2639
+ "module" : "SIP-COMMON-MIB"
2640
+ },
2641
+ "sipCommonNotifApplIndex" : {
2642
+ "nodetype" : "member",
2643
+ "module" : "SIP-COMMON-MIB"
2644
+ },
2645
+ "sipCommonNotifSequenceNumber" : {
2646
+ "nodetype" : "member",
2647
+ "module" : "SIP-COMMON-MIB"
2648
+ },
2649
+ }, # members
2650
+ "description" :
2651
+ """A collection of accessible-for-notify objects related to the
2652
+ notification defined in this MIB module.""",
2653
+ }, # group
2654
+ }, # groups
2655
+
2656
+ "compliances" : {
2657
+ "sipCommonCompliance" : {
2658
+ "nodetype" : "compliance",
2659
+ "moduleName" : "SIP-COMMON-MIB",
2660
+ "oid" : "1.3.6.1.2.1.149.2.1.1",
2661
+ "status" : "current",
2662
+ "description" :
2663
+ """The compliance statement for SIP entities.""",
2664
+ "requires" : {
2665
+ "sipCommonConfigGroup" : {
2666
+ "nodetype" : "mandatory",
2667
+ "module" : "SIP-COMMON-MIB"
2668
+ },
2669
+ "sipCommonStatsGroup" : {
2670
+ "nodetype" : "mandatory",
2671
+ "module" : "SIP-COMMON-MIB"
2672
+ },
2673
+ "sipCommonInformationalGroup" : {
2674
+ "nodetype" : "optional",
2675
+ "module" : "SIP-COMMON-MIB",
2676
+ "description" :
2677
+ """This group is OPTIONAL. A SIP entity can elect to not provide
2678
+ any support for these objects, as they provide optional
2679
+ information.""",
2680
+ },
2681
+ "sipCommonConfigTimerGroup" : {
2682
+ "nodetype" : "optional",
2683
+ "module" : "SIP-COMMON-MIB",
2684
+ "description" :
2685
+ """This group is OPTIONAL. A SIP entity can elect to not provide
2686
+ any timer configuration.""",
2687
+ },
2688
+ "sipCommonStatsRetryGroup" : {
2689
+ "nodetype" : "optional",
2690
+ "module" : "SIP-COMMON-MIB",
2691
+ "description" :
2692
+ """This group is OPTIONAL. A SIP entity can elect to not provide
2693
+ any retry statistics.""",
2694
+ },
2695
+ "sipCommonNotifGroup" : {
2696
+ "nodetype" : "optional",
2697
+ "module" : "SIP-COMMON-MIB",
2698
+ "description" :
2699
+ """This group is OPTIONAL. A SIP entity can elect to not provide
2700
+ any notifications. If implemented, the
2701
+ sipCommonStatusCodeNotifGroup and sipCommonNotifObjectsGroup
2702
+ MUST also be implemented.""",
2703
+ },
2704
+ "sipCommonStatusCodeNotifGroup" : {
2705
+ "nodetype" : "optional",
2706
+ "module" : "SIP-COMMON-MIB",
2707
+ "description" :
2708
+ """This group is OPTIONAL. A SIP entity can elect to not provide
2709
+ any notifications. If implemented, the sipCommonNotifGroup and
2710
+ sipCommonNotifObjectsGroup MUST also be implemented.""",
2711
+ },
2712
+ "sipCommonNotifObjectsGroup" : {
2713
+ "nodetype" : "optional",
2714
+ "module" : "SIP-COMMON-MIB",
2715
+ "description" :
2716
+ """This group is OPTIONAL. A SIP entity can elect to not provide
2717
+ any notifications. If implemented, the
2718
+ sipCommonStatusCodeNotifGroup and sipCommonNotifGroup MUST also
2719
+ be implemented.""",
2720
+ },
2721
+ }, # requires
2722
+ "refinements" : {
2723
+ "sipCommonStatusCodeRowStatus" : {
2724
+ "module" : "SIP-COMMON-MIB",
2725
+ "syntax" : {
2726
+ "type" : {
2727
+ "basetype" : "Enumeration",
2728
+ "parent module" : {
2729
+ "name" : "SNMPv2-TC",
2730
+ "type" : "RowStatus",
2731
+ },
2732
+ "active" : {
2733
+ "nodetype" : "namednumber",
2734
+ "number" : "1"
2735
+ },
2736
+ },
2737
+ }, # syntax
2738
+ "writesyntax" : {
2739
+ "type" : {
2740
+ "basetype" : "Enumeration",
2741
+ "parent module" : {
2742
+ "name" : "SNMPv2-TC",
2743
+ "type" : "RowStatus",
2744
+ },
2745
+ "createAndGo" : {
2746
+ "nodetype" : "namednumber",
2747
+ "number" : "4"
2748
+ },
2749
+ "destroy" : {
2750
+ "nodetype" : "namednumber",
2751
+ "number" : "6"
2752
+ },
2753
+ },
2754
+ }, # writesyntax
2755
+ "description" :
2756
+ """Support for createAndWait and notInService is not required.""",
2757
+ },
2758
+ "sipCommonCfgServiceNotifEnable" : {
2759
+ "module" : "SIP-COMMON-MIB",
2760
+ "access" : "noaccess",
2761
+ "description" :
2762
+ """This object is optional and does not need to be supported.""",
2763
+ },
2764
+ }, # refinements
2765
+
2766
+ }, # compliance
2767
+ }, # compliances
2768
+
2769
+ }