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,1896 @@
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 PW-TDM-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PW-TDM-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PW-TDM-MIB",
11
+
12
+ "PW-TDM-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Pseudo-Wire Emulation Edge-to-Edge (PWE3)
17
+ Working Group""",
18
+ "contact" :
19
+ """ Orly Nicklass
20
+ Postal: RADVISION Ltd.
21
+ 24Raul Wallenberg St.
22
+ Tel Aviv, Israel
23
+ Email: orlyn@radvision.com
24
+
25
+ The PWE3 Working Group (email distribution pwe3@ietf.org,
26
+ http://www.ietf.org/html.charters/pwe3-charter.html)""",
27
+ "description" :
28
+ """This MIB contains managed object definitions for
29
+ encapsulating TDM (T1,E1, T3, E3, NxDS0) as
30
+ pseudo-wires over packet-switching networks (PSN).
31
+
32
+ This MIB supplements the PW-STD-MIB as in: Zelig, D.,
33
+ Nadeau, T. 'Pseudowire (PW) Management Information Base'.
34
+ The PW-STD-MIB contains structures and MIB associations
35
+ generic to pseudowire (PW) emulation. PW-specific
36
+ MIBs (such as this) contain config and stats for specific
37
+ PW types.
38
+
39
+ Copyright (c) 2009 IETF Trust and the persons identified as
40
+ authors of the code. All rights reserved.
41
+
42
+ Redistribution and use in source and binary forms, with or
43
+ without modification, are permitted provided that the
44
+ following conditions are met:
45
+
46
+ - Redistributions of source code must retain the above
47
+ copyright notice, this list of conditions and the
48
+ following disclaimer.
49
+
50
+ - Redistributions in binary form must reproduce the above
51
+ copyright notice, this list of conditions and the following
52
+ disclaimer in the documentation and/or other materials
53
+ provided with the distribution.
54
+
55
+ - Neither the name of Internet Society, IETF or IETF Trust,
56
+ nor the names of specific contributors, may be used to
57
+ endorse or promote products derived from this software
58
+ without specific prior written permission.
59
+
60
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
61
+ CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES,
62
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
63
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
64
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
65
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
66
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
67
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
68
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
69
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
70
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
71
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
72
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
73
+
74
+ This version of this MIB module is part of RFC 5604;
75
+
76
+
77
+
78
+ see the RFC itself for full legal notices.""",
79
+ "revisions" : (
80
+ {
81
+ "date" : "2009-06-15 00:00",
82
+ "description" :
83
+ """Initial version published as part of RFC 5604.""",
84
+ },
85
+ ),
86
+ "identity node" : "pwTDMMIB",
87
+ },
88
+
89
+ "imports" : (
90
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
91
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
92
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
93
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
94
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
95
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
96
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
97
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
98
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
99
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
100
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
101
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
102
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
103
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
104
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
105
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
106
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
107
+ {"module" : "PW-STD-MIB", "name" : "pwIndex"},
108
+ {"module" : "PW-TC-STD-MIB", "name" : "PwCfgIndexOrzero"},
109
+ ),
110
+
111
+ "typedefs" : {
112
+ "PwTDMCfgIndex" : {
113
+ "basetype" : "Unsigned32",
114
+ "status" : "current",
115
+ "ranges" : [
116
+ {
117
+ "min" : "1",
118
+ "max" : "4294967295"
119
+ },
120
+ ],
121
+ "range" : {
122
+ "min" : "1",
123
+ "max" : "4294967295"
124
+ },
125
+ "description" :
126
+ """Index into the relevant pwXXXCfgTable.""",
127
+ },
128
+ }, # typedefs
129
+
130
+ "nodes" : {
131
+ "pwTDMMIB" : {
132
+ "nodetype" : "node",
133
+ "moduleName" : "PW-TDM-MIB",
134
+ "oid" : "1.3.6.1.2.1.186",
135
+ "status" : "current",
136
+ }, # node
137
+ "pwTDMNotifications" : {
138
+ "nodetype" : "node",
139
+ "moduleName" : "PW-TDM-MIB",
140
+ "oid" : "1.3.6.1.2.1.186.0",
141
+ }, # node
142
+ "pwTDMObjects" : {
143
+ "nodetype" : "node",
144
+ "moduleName" : "PW-TDM-MIB",
145
+ "oid" : "1.3.6.1.2.1.186.1",
146
+ }, # node
147
+ "pwTDMTable" : {
148
+ "nodetype" : "table",
149
+ "moduleName" : "PW-TDM-MIB",
150
+ "oid" : "1.3.6.1.2.1.186.1.1",
151
+ "status" : "current",
152
+ "description" :
153
+ """This table contains basic information including the
154
+ ifIndex and pointers to entries in the relevant TDM
155
+ config tables for this TDM PW.""",
156
+ }, # table
157
+ "pwTDMEntry" : {
158
+ "nodetype" : "row",
159
+ "moduleName" : "PW-TDM-MIB",
160
+ "oid" : "1.3.6.1.2.1.186.1.1.1",
161
+ "status" : "current",
162
+ "linkage" : [
163
+ "pwIndex",
164
+ ],
165
+ "description" :
166
+ """This table is indexed by the same index that was
167
+ created for the associated entry in the PW Table
168
+ (in the PW-STD-MIB).
169
+
170
+ - The PwIndex.
171
+
172
+
173
+
174
+ An entry is created in this table by the agent for every
175
+ entry in the pwTable with a pwType equal to one of the
176
+ following:
177
+ e1Satop(17), t1Satop(18), e3Satop(19), t3Satop(20),
178
+ basicCesPsn(21), basicTdmIp(22), tdmCasCesPsn(23),
179
+ or tdmCasTdmIp(24).
180
+ Unless otherwise specified, all writeable objects in this
181
+ table MUST NOT be changed after row activation in the
182
+ generic pwTable (see [PWMIB]) and values must persist
183
+ after reboot.""",
184
+ }, # row
185
+ "pwTDMRate" : {
186
+ "nodetype" : "column",
187
+ "moduleName" : "PW-TDM-MIB",
188
+ "oid" : "1.3.6.1.2.1.186.1.1.1.1",
189
+ "status" : "current",
190
+ "syntax" : {
191
+ "type" : { "module" :"", "name" : "Integer32"},
192
+ },
193
+ "access" : "readwrite",
194
+ "default" : "32",
195
+ "description" :
196
+ """The parameter represents the bit-rate of the TDM service
197
+ in multiples of the 'basic' 64 Kbit/s rate [TDMCP-EXT].
198
+ It complements the definition of pwType used in
199
+ PW-STD-MIB.
200
+ For structure-agnostic mode, the following should be used:
201
+ a) (Structure-Agnostic TDM over Packet) Satop E1 - 32
202
+ b) Satop T1 emulation:
203
+ i) MUST be set to 24 in the basic emulation mode
204
+ ii) MUST be set to 25 for the 'Octet-aligned T1'
205
+ emulation mode
206
+ c) Satop E3 - 535
207
+ d) Satop T3 - 699
208
+ For all kinds of structure-aware emulation, this parameter
209
+ MUST be set to N where N is the number of DS0 channels
210
+
211
+
212
+
213
+ in the corresponding attachment circuit.""",
214
+ "reference" :
215
+ """TDMCP-EXT""",
216
+ }, # column
217
+ "pwTDMIfIndex" : {
218
+ "nodetype" : "column",
219
+ "moduleName" : "PW-TDM-MIB",
220
+ "oid" : "1.3.6.1.2.1.186.1.1.1.2",
221
+ "status" : "current",
222
+ "syntax" : {
223
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
224
+ },
225
+ "access" : "readwrite",
226
+ "description" :
227
+ """This is a unique index within the ifTable. It represents
228
+ the interface index of the full link or the interface
229
+ index for the bundle holding the group of
230
+ time slots to be transmitted via this PW connection.
231
+
232
+ A value of zero indicates an interface index that has yet
233
+ to be determined.
234
+ Once set, if the TDM ifIndex is (for some reason) later
235
+ removed, the agent SHOULD delete the associated PW rows
236
+ (e.g., this pwTDMTable entry). If the agent does not
237
+ delete the rows, the agent MUST set this object to
238
+ zero.""",
239
+ }, # column
240
+ "pwGenTDMCfgIndex" : {
241
+ "nodetype" : "column",
242
+ "moduleName" : "PW-TDM-MIB",
243
+ "oid" : "1.3.6.1.2.1.186.1.1.1.3",
244
+ "status" : "current",
245
+ "syntax" : {
246
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwCfgIndexOrzero"},
247
+ },
248
+ "access" : "readwrite",
249
+ "description" :
250
+ """Index to the generic parameters in the TDM configuration
251
+ table that appears in this MIB module. It is likely that
252
+ multiple TDM PWs of the same characteristic will share
253
+ a single TDM Cfg entry.""",
254
+ }, # column
255
+ "pwRelTDMCfgIndex" : {
256
+ "nodetype" : "column",
257
+ "moduleName" : "PW-TDM-MIB",
258
+ "oid" : "1.3.6.1.2.1.186.1.1.1.4",
259
+ "status" : "current",
260
+ "syntax" : {
261
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwCfgIndexOrzero"},
262
+ },
263
+ "access" : "readwrite",
264
+ "description" :
265
+ """Index to the relevant TDM configuration table entry
266
+ that appears in one of the related MIB modules
267
+ such as TDMoIP or CESoPSN. It is likely that
268
+ multiple TDM PWs of the same characteristic will share
269
+ a single configuration entry of the relevant type.
270
+ The value 0 implies no entry in other related MIBs.""",
271
+ }, # column
272
+ "pwTDMConfigError" : {
273
+ "nodetype" : "column",
274
+ "moduleName" : "PW-TDM-MIB",
275
+ "oid" : "1.3.6.1.2.1.186.1.1.1.5",
276
+ "status" : "current",
277
+ "syntax" : {
278
+ "type" : {
279
+ "basetype" : "Bits",
280
+ "notApplicable" : {
281
+ "nodetype" : "namednumber",
282
+ "number" : "0"
283
+ },
284
+ "tdmTypeIncompatible" : {
285
+ "nodetype" : "namednumber",
286
+ "number" : "1"
287
+ },
288
+ "peerRtpIncompatible" : {
289
+ "nodetype" : "namednumber",
290
+ "number" : "2"
291
+ },
292
+ "peerPayloadSizeIncompatible" : {
293
+ "nodetype" : "namednumber",
294
+ "number" : "3"
295
+ },
296
+ },
297
+ },
298
+ "access" : "readonly",
299
+ "description" :
300
+ """Any of the bits are set if the local configuration is
301
+ not compatible with the peer configuration as available
302
+ from the various parameters options. Setting is done based
303
+ on signaling, or else value (0) will be set.
304
+
305
+ -tdmTypeIncompatible bit is set if the local configuration
306
+ is not carrying the same TDM type as the peer configuration.
307
+
308
+ -peerRtpIncompatible bit is set if the local configuration
309
+ is configured to send RTP packets for this PW, and the
310
+ remote is not capable of accepting RTP packets.
311
+
312
+ -peerPayloadSizeIncompatible bit is set if the local
313
+ configuration is not carrying the same Payload Size as the
314
+ peer configuration.""",
315
+ }, # column
316
+ "pwTDMTimeElapsed" : {
317
+ "nodetype" : "column",
318
+ "moduleName" : "PW-TDM-MIB",
319
+ "oid" : "1.3.6.1.2.1.186.1.1.1.6",
320
+ "status" : "current",
321
+ "syntax" : {
322
+ "type" : {
323
+ "basetype" : "Integer32",
324
+ "ranges" : [
325
+ {
326
+ "min" : "1",
327
+ "max" : "900"
328
+ },
329
+ ],
330
+ "range" : {
331
+ "min" : "1",
332
+ "max" : "900"
333
+ },
334
+ },
335
+ },
336
+ "access" : "readonly",
337
+ "description" :
338
+ """The number of seconds, including partial seconds,
339
+ that have elapsed since the beginning of the current
340
+ measurement period. If, for some reason, such as an
341
+ adjustment in the system's time-of-day clock, the
342
+ current interval exceeds the maximum value, the
343
+ agent will return the maximum value.""",
344
+ }, # column
345
+ "pwTDMValidIntervals" : {
346
+ "nodetype" : "column",
347
+ "moduleName" : "PW-TDM-MIB",
348
+ "oid" : "1.3.6.1.2.1.186.1.1.1.7",
349
+ "status" : "current",
350
+ "syntax" : {
351
+ "type" : {
352
+ "basetype" : "Integer32",
353
+ "ranges" : [
354
+ {
355
+ "min" : "0",
356
+ "max" : "96"
357
+ },
358
+ ],
359
+ "range" : {
360
+ "min" : "0",
361
+ "max" : "96"
362
+ },
363
+ },
364
+ },
365
+ "access" : "readonly",
366
+ "description" :
367
+ """The number of previous 15-minute intervals for which data
368
+ was collected.
369
+ An agent with TDM capability must be capable of supporting
370
+ at least n intervals. The minimum value of n is 4. The
371
+ default of n is 32 and the maximum value of n is 96.
372
+ The value will be n unless the measurement was (re-)
373
+ started within the last (n*15) minutes, in which case,
374
+ the value will be the number of complete 15-minute
375
+ intervals for which the agent has at least some data.
376
+ In certain cases (e.g., in the case where the agent is
377
+ a proxy), it is possible that some intervals are unavailable.
378
+ In this case, this interval is the maximum interval number
379
+ for which data is available.""",
380
+ }, # column
381
+ "pwTDMValidDayIntervals" : {
382
+ "nodetype" : "column",
383
+ "moduleName" : "PW-TDM-MIB",
384
+ "oid" : "1.3.6.1.2.1.186.1.1.1.8",
385
+ "status" : "current",
386
+ "syntax" : {
387
+ "type" : {
388
+ "basetype" : "Integer32",
389
+ "ranges" : [
390
+ {
391
+ "min" : "0",
392
+ "max" : "30"
393
+ },
394
+ ],
395
+ "range" : {
396
+ "min" : "0",
397
+ "max" : "30"
398
+ },
399
+ },
400
+ },
401
+ "access" : "readonly",
402
+ "description" :
403
+ """The number of previous days for which data
404
+ was collected.
405
+ An agent with TDM capability must be capable of supporting
406
+ at least n intervals. The minimum value of n is 1. The
407
+ default of n is 1 and the maximum value of n is 30.""",
408
+ }, # column
409
+ "pwTDMLastEsTimeStamp" : {
410
+ "nodetype" : "column",
411
+ "moduleName" : "PW-TDM-MIB",
412
+ "oid" : "1.3.6.1.2.1.186.1.1.1.11",
413
+ "status" : "current",
414
+ "syntax" : {
415
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
416
+ },
417
+ "access" : "readonly",
418
+ "description" :
419
+ """The value of sysUpTime at the most recent occasion at
420
+ which the TDM PW entered the ES or SES state.""",
421
+ }, # column
422
+ "pwTDMCfgIndexNext" : {
423
+ "nodetype" : "scalar",
424
+ "moduleName" : "PW-TDM-MIB",
425
+ "oid" : "1.3.6.1.2.1.186.1.2",
426
+ "status" : "current",
427
+ "syntax" : {
428
+ "type" : { "module" :"", "name" : "Unsigned32"},
429
+ },
430
+ "access" : "readonly",
431
+ "description" :
432
+ """This object contains the value to be used for
433
+ pwTDMCfgIndex when creating entries in the
434
+ pwTDMCfgTable. The value 0 indicates that no
435
+ unassigned entries are available. To obtain the
436
+ value of pwTDMCfgIndexNext for a new entry in the
437
+ pwTDMCfgTable, the manager issues a management
438
+ protocol retrieval operation. The agent will
439
+ determine through its local policy when this
440
+ index value will be made available for reuse.""",
441
+ }, # scalar
442
+ "pwTDMCfgTable" : {
443
+ "nodetype" : "table",
444
+ "moduleName" : "PW-TDM-MIB",
445
+ "oid" : "1.3.6.1.2.1.186.1.3",
446
+ "status" : "current",
447
+ "description" :
448
+ """This table contains a set of parameters that may be
449
+ referenced by one or more TDM PWs in pwTDMTable.""",
450
+ }, # table
451
+ "pwTDMCfgEntry" : {
452
+ "nodetype" : "row",
453
+ "moduleName" : "PW-TDM-MIB",
454
+ "oid" : "1.3.6.1.2.1.186.1.3.1",
455
+ "create" : "true",
456
+ "status" : "current",
457
+ "linkage" : [
458
+ "pwTDMCfgIndex",
459
+ ],
460
+ "description" :
461
+ """These parameters define the characteristics of a
462
+ TDM PW. They are grouped here to ease NMS burden.
463
+ Once an entry is created here it may be re-used
464
+ by many PWs.
465
+ Unless otherwise specified, all objects in this table
466
+ MUST NOT be changed after row activation (see [PWMIB]).""",
467
+ }, # row
468
+ "pwTDMCfgIndex" : {
469
+ "nodetype" : "column",
470
+ "moduleName" : "PW-TDM-MIB",
471
+ "oid" : "1.3.6.1.2.1.186.1.3.1.1",
472
+ "status" : "current",
473
+ "syntax" : {
474
+ "type" : { "module" :"PW-TDM-MIB", "name" : "PwTDMCfgIndex"},
475
+ },
476
+ "access" : "noaccess",
477
+ "description" :
478
+ """Index to an entry in this table. When an NMS creates
479
+ a new entry/row in this table, it best makes use of
480
+ the value of the pwTDMCfgIndexNext object in order to
481
+ find a free or available index value.""",
482
+ }, # column
483
+ "pwTDMCfgRowStatus" : {
484
+ "nodetype" : "column",
485
+ "moduleName" : "PW-TDM-MIB",
486
+ "oid" : "1.3.6.1.2.1.186.1.3.1.2",
487
+ "status" : "current",
488
+ "syntax" : {
489
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
490
+ },
491
+ "access" : "readwrite",
492
+ "description" :
493
+ """Object used for creating, modifying, and deleting
494
+ a row from this table. The following objects cannot be
495
+ modified if the entry is in use and the status is active:
496
+ pwTDMCfgPayloadSize, pwTDMCfgRtpHdrUsed,
497
+ pwTDMCfgJtrBfrDepth, and pwTDMCfgPayloadSuppression.
498
+ The row cannot be deleted if the entry is in use.""",
499
+ }, # column
500
+ "pwTDMCfgPayloadSize" : {
501
+ "nodetype" : "column",
502
+ "moduleName" : "PW-TDM-MIB",
503
+ "oid" : "1.3.6.1.2.1.186.1.3.1.4",
504
+ "status" : "current",
505
+ "syntax" : {
506
+ "type" : { "module" :"", "name" : "Unsigned32"},
507
+ },
508
+ "access" : "readwrite",
509
+ "description" :
510
+ """The value of this object indicates the PayLoad Size (in bytes)
511
+ to be defined during the PW setUp. Upon TX, implementation
512
+ must be capable of carrying that amount of bytes.
513
+ Upon RX, when the Low Entry Networking (LEN) field is set
514
+ to 0, the payload of packet MUST assume this size, and if
515
+ the actual packet size is inconsistent with this length,
516
+ the packet MUST be considered to be malformed.""",
517
+ }, # column
518
+ "pwTDMCfgPktReorder" : {
519
+ "nodetype" : "column",
520
+ "moduleName" : "PW-TDM-MIB",
521
+ "oid" : "1.3.6.1.2.1.186.1.3.1.5",
522
+ "status" : "current",
523
+ "syntax" : {
524
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
525
+ },
526
+ "access" : "readwrite",
527
+ "description" :
528
+ """If set to True: as CE-bound packets are queued in the
529
+ jitter buffer, out of order packets are re-ordered. The
530
+ maximum sequence number differential (i.e., the range in
531
+ which re-sequencing can occur) is dependant on the depth
532
+ of the jitter buffer. See pwTDMCfgJtrBfrDepth.
533
+
534
+ NOTE: Some implementations may not support this feature.
535
+ The agent should then reject a SET request for true.""",
536
+ }, # column
537
+ "pwTDMCfgRtpHdrUsed" : {
538
+ "nodetype" : "column",
539
+ "moduleName" : "PW-TDM-MIB",
540
+ "oid" : "1.3.6.1.2.1.186.1.3.1.6",
541
+ "status" : "current",
542
+ "syntax" : {
543
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
544
+ },
545
+ "access" : "readwrite",
546
+ "default" : "false",
547
+ "description" :
548
+ """If set to False: an RTP header is not pre-pended to the
549
+ TDM packet.""",
550
+ "reference" :
551
+ """SATOP""",
552
+ }, # column
553
+ "pwTDMCfgJtrBfrDepth" : {
554
+ "nodetype" : "column",
555
+ "moduleName" : "PW-TDM-MIB",
556
+ "oid" : "1.3.6.1.2.1.186.1.3.1.7",
557
+ "status" : "current",
558
+ "syntax" : {
559
+ "type" : { "module" :"", "name" : "Unsigned32"},
560
+ },
561
+ "access" : "readwrite",
562
+ "default" : "3000",
563
+ "units" : "microsecond",
564
+ "description" :
565
+ """The size of this buffer SHOULD be locally
566
+ configured to allow accommodation to the PSN-specific packet
567
+ delay variation.
568
+
569
+
570
+
571
+
572
+
573
+ If configured to a value not supported by the
574
+ implementation, the agent MUST return an error code
575
+ 'jtrBfrDepth' in 'pwTDMConfigError'.
576
+
577
+ NOTE: jitter buffers are a limited resource to
578
+ be managed. The actual size should be at least twice as big
579
+ as the value of pwTDMCfgJtrBfrDepth.""",
580
+ }, # column
581
+ "pwTDMCfgPayloadSuppression" : {
582
+ "nodetype" : "column",
583
+ "moduleName" : "PW-TDM-MIB",
584
+ "oid" : "1.3.6.1.2.1.186.1.3.1.8",
585
+ "status" : "current",
586
+ "syntax" : {
587
+ "type" : {
588
+ "basetype" : "Enumeration",
589
+ "enable" : {
590
+ "nodetype" : "namednumber",
591
+ "number" : "1"
592
+ },
593
+ "disable" : {
594
+ "nodetype" : "namednumber",
595
+ "number" : "2"
596
+ },
597
+ },
598
+ },
599
+ "access" : "readwrite",
600
+ "default" : "disable",
601
+ "description" :
602
+ """Selecting 'enable' means: Payload suppression is allowed.
603
+ Payload MAY be omitted in order to conserve bandwidth.
604
+ Selecting 'disable' means: No suppression under any
605
+ condition.
606
+ Object MAY be changed at any time.""",
607
+ }, # column
608
+ "pwTDMCfgConsecPktsInSynch" : {
609
+ "nodetype" : "column",
610
+ "moduleName" : "PW-TDM-MIB",
611
+ "oid" : "1.3.6.1.2.1.186.1.3.1.9",
612
+ "status" : "current",
613
+ "syntax" : {
614
+ "type" : {
615
+ "basetype" : "Unsigned32",
616
+ "ranges" : [
617
+ {
618
+ "min" : "1",
619
+ "max" : "10"
620
+ },
621
+ ],
622
+ "range" : {
623
+ "min" : "1",
624
+ "max" : "10"
625
+ },
626
+ },
627
+ },
628
+ "access" : "readwrite",
629
+ "default" : "2",
630
+ "description" :
631
+ """The number of consecutive packets with sequential
632
+ sequence numbers that are required to exit the
633
+ LOPS.
634
+ Object MAY be changed only when the related PW is
635
+ defined as not active.""",
636
+ "reference" :
637
+ """SATOP""",
638
+ }, # column
639
+ "pwTDMCfgConsecMissPktsOutSynch" : {
640
+ "nodetype" : "column",
641
+ "moduleName" : "PW-TDM-MIB",
642
+ "oid" : "1.3.6.1.2.1.186.1.3.1.10",
643
+ "status" : "current",
644
+ "syntax" : {
645
+ "type" : {
646
+ "basetype" : "Unsigned32",
647
+ "ranges" : [
648
+ {
649
+ "min" : "1",
650
+ "max" : "15"
651
+ },
652
+ ],
653
+ "range" : {
654
+ "min" : "1",
655
+ "max" : "15"
656
+ },
657
+ },
658
+ },
659
+ "access" : "readwrite",
660
+ "default" : "10",
661
+ "description" :
662
+ """The number of consecutive missing packets that are
663
+
664
+
665
+
666
+ required to enter the LOPS.
667
+ Object MAY be changed only when the related PW is
668
+ defined as not active.""",
669
+ "reference" :
670
+ """SATOP""",
671
+ }, # column
672
+ "pwTDMCfgSetUp2SynchTimeOut" : {
673
+ "nodetype" : "column",
674
+ "moduleName" : "PW-TDM-MIB",
675
+ "oid" : "1.3.6.1.2.1.186.1.3.1.11",
676
+ "status" : "current",
677
+ "syntax" : {
678
+ "type" : { "module" :"", "name" : "Unsigned32"},
679
+ },
680
+ "access" : "readwrite",
681
+ "default" : "5000",
682
+ "units" : "millisecond",
683
+ "description" :
684
+ """The amount of time the host should wait before declaring the
685
+ pseudowire in a down state, if the number of consecutive
686
+ TDM packets that have been received after changing the
687
+ administrative status to up and after finalization of
688
+ signaling (if supported) between the two PEs is smaller
689
+ than pwTDMCfgConsecPktsInSynch. Once the PW has
690
+ OperStatus of 'up', this parameter is no longer valid. This
691
+ parameter is defined to ensure that the host does not
692
+ prematurely inform failure of the PW. In particular, PW
693
+ 'down' notifications should not be sent before expiration
694
+ of this timer. This parameter is valid only after
695
+ administrative changes of the status of the PW. If the PW
696
+ fails due to network impairments, a 'down' notification
697
+ should be sent.
698
+ Object MAY be changed only when the related PW is
699
+ defined as not active.""",
700
+ }, # column
701
+ "pwTDMCfgPktReplacePolicy" : {
702
+ "nodetype" : "column",
703
+ "moduleName" : "PW-TDM-MIB",
704
+ "oid" : "1.3.6.1.2.1.186.1.3.1.12",
705
+ "status" : "current",
706
+ "syntax" : {
707
+ "type" : {
708
+ "basetype" : "Enumeration",
709
+ "allOnes" : {
710
+ "nodetype" : "namednumber",
711
+ "number" : "1"
712
+ },
713
+ "implementationSpecific" : {
714
+ "nodetype" : "namednumber",
715
+ "number" : "2"
716
+ },
717
+ "filler" : {
718
+ "nodetype" : "namednumber",
719
+ "number" : "3"
720
+ },
721
+ },
722
+ },
723
+ "access" : "readwrite",
724
+ "default" : "allOnes",
725
+ "description" :
726
+ """This parameter determines the value to be played when CE bound
727
+ packets over/underflow the jitter buffer, or are missing
728
+ for any reason. This byte pattern is sent (played) on
729
+ the TDM line. Selecting implementationSpecific(2) implies an
730
+ agent-specific algorithm. Selecting filler(3) requires
731
+
732
+
733
+
734
+ the setting of pwTDMCfgPktFiller.
735
+ Object MAY be changed only when the related PW is
736
+ defined as not active.""",
737
+ }, # column
738
+ "pwTDMCfgAvePktLossTimeWindow" : {
739
+ "nodetype" : "column",
740
+ "moduleName" : "PW-TDM-MIB",
741
+ "oid" : "1.3.6.1.2.1.186.1.3.1.13",
742
+ "status" : "current",
743
+ "syntax" : {
744
+ "type" : { "module" :"", "name" : "Integer32"},
745
+ },
746
+ "access" : "readwrite",
747
+ "units" : "millisecond",
748
+ "description" :
749
+ """The length of time over which the average packet
750
+ loss rate should be computed to detect excessive packet
751
+ loss rate.
752
+ Object MAY be changed only when the related PW is
753
+ defined as not active.""",
754
+ }, # column
755
+ "pwTDMCfgExcessivePktLossThreshold" : {
756
+ "nodetype" : "column",
757
+ "moduleName" : "PW-TDM-MIB",
758
+ "oid" : "1.3.6.1.2.1.186.1.3.1.14",
759
+ "status" : "current",
760
+ "syntax" : {
761
+ "type" : { "module" :"", "name" : "Unsigned32"},
762
+ },
763
+ "access" : "readwrite",
764
+ "units" : "Percent",
765
+ "description" :
766
+ """Excessive packet loss rate is detected by computing the
767
+ average packet-loss rate over a pwTDMCfgAvePktLossTimeWindow
768
+ amount of time and comparing it with this threshold value.
769
+ The rate is expressed in percentage.
770
+ Object MAY be changed only when the related PW is
771
+ defined as not active.""",
772
+ }, # column
773
+ "pwTDMCfgAlarmThreshold" : {
774
+ "nodetype" : "column",
775
+ "moduleName" : "PW-TDM-MIB",
776
+ "oid" : "1.3.6.1.2.1.186.1.3.1.15",
777
+ "status" : "current",
778
+ "syntax" : {
779
+ "type" : { "module" :"", "name" : "Unsigned32"},
780
+ },
781
+ "access" : "readwrite",
782
+ "default" : "2500",
783
+ "units" : "milisec",
784
+ "description" :
785
+ """Alarms are only reported when the defect state persists
786
+ for the length of time specified by this object.
787
+ Object MAY be changed only when the related PW is
788
+ defined as not active.""",
789
+ }, # column
790
+ "pwTDMCfgClearAlarmThreshold" : {
791
+ "nodetype" : "column",
792
+ "moduleName" : "PW-TDM-MIB",
793
+ "oid" : "1.3.6.1.2.1.186.1.3.1.16",
794
+ "status" : "current",
795
+ "syntax" : {
796
+ "type" : { "module" :"", "name" : "Unsigned32"},
797
+ },
798
+ "access" : "readwrite",
799
+ "default" : "10000",
800
+ "units" : "milisec",
801
+ "description" :
802
+ """Alarm MUST be cleared after the corresponding defect is
803
+ undetected for the amount of time specified by this object.
804
+ Object MAY be changed only when the related PW is
805
+ defined as not active.""",
806
+ }, # column
807
+ "pwTDMCfgMissingPktsToSes" : {
808
+ "nodetype" : "column",
809
+ "moduleName" : "PW-TDM-MIB",
810
+ "oid" : "1.3.6.1.2.1.186.1.3.1.17",
811
+ "status" : "current",
812
+ "syntax" : {
813
+ "type" : { "module" :"", "name" : "Unsigned32"},
814
+ },
815
+ "access" : "readwrite",
816
+ "default" : "30",
817
+ "units" : "Percent",
818
+ "description" :
819
+ """Percent of missing packets detected (consecutive or not)
820
+ within a 1-second window to cause a Severely Error
821
+ Second (SES) to be counted.
822
+ Object MAY be changed only when the related PW is
823
+ defined as not active.""",
824
+ }, # column
825
+ "pwTDMCfgTimestampMode" : {
826
+ "nodetype" : "column",
827
+ "moduleName" : "PW-TDM-MIB",
828
+ "oid" : "1.3.6.1.2.1.186.1.3.1.18",
829
+ "status" : "current",
830
+ "syntax" : {
831
+ "type" : {
832
+ "basetype" : "Enumeration",
833
+ "notApplicable" : {
834
+ "nodetype" : "namednumber",
835
+ "number" : "1"
836
+ },
837
+ "absolute" : {
838
+ "nodetype" : "namednumber",
839
+ "number" : "2"
840
+ },
841
+ "differential" : {
842
+ "nodetype" : "namednumber",
843
+ "number" : "3"
844
+ },
845
+ },
846
+ },
847
+ "access" : "readwrite",
848
+ "description" :
849
+ """Timestamp generation MAY be used in one of the following
850
+ modes:
851
+ 1. Absolute mode: The PSN-bound IWF sets timestamps
852
+ using the clock recovered from the incoming TDM attachment
853
+ circuit. As a consequence, the timestamps are closely
854
+ correlated with the sequence numbers. All TDM
855
+ implementations that support usage of the RTP header MUST
856
+ support this mode.
857
+ 2. Differential mode: Both IWFs have access to a common high-
858
+ quality timing source, and this source is used for timestamp
859
+ generation. Support of this mode is OPTIONAL.
860
+ Object MAY be changed only when the related PW is
861
+
862
+
863
+
864
+ defined as not active.""",
865
+ }, # column
866
+ "pwTDMCfgStorageType" : {
867
+ "nodetype" : "column",
868
+ "moduleName" : "PW-TDM-MIB",
869
+ "oid" : "1.3.6.1.2.1.186.1.3.1.19",
870
+ "status" : "current",
871
+ "syntax" : {
872
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
873
+ },
874
+ "access" : "readwrite",
875
+ "description" :
876
+ """This variable indicates the storage type for this
877
+ row. Conceptual rows having the value permanent(4) must
878
+ allow write-access to all columnar objects.""",
879
+ }, # column
880
+ "pwTDMCfgPktFiller" : {
881
+ "nodetype" : "column",
882
+ "moduleName" : "PW-TDM-MIB",
883
+ "oid" : "1.3.6.1.2.1.186.1.3.1.20",
884
+ "status" : "current",
885
+ "syntax" : {
886
+ "type" : {
887
+ "basetype" : "Unsigned32",
888
+ "ranges" : [
889
+ {
890
+ "min" : "0",
891
+ "max" : "255"
892
+ },
893
+ ],
894
+ "range" : {
895
+ "min" : "0",
896
+ "max" : "255"
897
+ },
898
+ },
899
+ },
900
+ "access" : "readwrite",
901
+ "default" : "255",
902
+ "description" :
903
+ """Filler byte pattern played out on the TDM
904
+ interface if pwTDMCfgPktReplacePolicy
905
+ was set to filler(3).
906
+ Object MAY be changed only when the related PW is
907
+ defined as not active.""",
908
+ }, # column
909
+ "pwTDMCfgName" : {
910
+ "nodetype" : "column",
911
+ "moduleName" : "PW-TDM-MIB",
912
+ "oid" : "1.3.6.1.2.1.186.1.3.1.21",
913
+ "status" : "current",
914
+ "syntax" : {
915
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
916
+ },
917
+ "access" : "readwrite",
918
+ "description" :
919
+ """A descriptive string, preferably a unique name, to an entry
920
+ in this table.
921
+ Object MAY be changed at any time.""",
922
+ }, # column
923
+ "pwTDMPerfCurrentTable" : {
924
+ "nodetype" : "table",
925
+ "moduleName" : "PW-TDM-MIB",
926
+ "oid" : "1.3.6.1.2.1.186.1.5",
927
+ "status" : "current",
928
+ "description" :
929
+ """The current 15-minute interval counts are in
930
+ this table.
931
+
932
+ This table provides per TDM PW performance information.""",
933
+ }, # table
934
+ "pwTDMPerfCurrentEntry" : {
935
+ "nodetype" : "row",
936
+ "moduleName" : "PW-TDM-MIB",
937
+ "oid" : "1.3.6.1.2.1.186.1.5.1",
938
+ "status" : "current",
939
+ "linkage" : [
940
+ "pwIndex",
941
+ ],
942
+ "description" :
943
+ """An entry in this table is created by the agent for every
944
+ pwTDMTable entry. After 15 minutes, the contents of this
945
+ table entry are copied to a new entry in the
946
+ pwTDMPerfInterval table, and the counts in this entry
947
+ are reset to zero.""",
948
+ }, # row
949
+ "pwTDMPerfCurrentMissingPkts" : {
950
+ "nodetype" : "column",
951
+ "moduleName" : "PW-TDM-MIB",
952
+ "oid" : "1.3.6.1.2.1.186.1.5.1.1",
953
+ "status" : "current",
954
+ "syntax" : {
955
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
956
+ },
957
+ "access" : "readonly",
958
+ "description" :
959
+ """Number of missing packets (as detected via control word
960
+ sequence number gaps).""",
961
+ }, # column
962
+ "pwTDMPerfCurrentPktsReOrder" : {
963
+ "nodetype" : "column",
964
+ "moduleName" : "PW-TDM-MIB",
965
+ "oid" : "1.3.6.1.2.1.186.1.5.1.2",
966
+ "status" : "current",
967
+ "syntax" : {
968
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
969
+ },
970
+ "access" : "readonly",
971
+ "description" :
972
+ """Number of packets detected out of sequence (via control
973
+ word sequence number) but successfully re-ordered.
974
+ Note: some implementations may not support this feature.""",
975
+ }, # column
976
+ "pwTDMPerfCurrentJtrBfrUnderruns" : {
977
+ "nodetype" : "column",
978
+ "moduleName" : "PW-TDM-MIB",
979
+ "oid" : "1.3.6.1.2.1.186.1.5.1.3",
980
+ "status" : "current",
981
+ "syntax" : {
982
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
983
+ },
984
+ "access" : "readonly",
985
+ "description" :
986
+ """Number of times a packet needed to be played
987
+ out and the jitter buffer was empty.""",
988
+ }, # column
989
+ "pwTDMPerfCurrentMisOrderDropped" : {
990
+ "nodetype" : "column",
991
+ "moduleName" : "PW-TDM-MIB",
992
+ "oid" : "1.3.6.1.2.1.186.1.5.1.4",
993
+ "status" : "current",
994
+ "syntax" : {
995
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
996
+ },
997
+ "access" : "readonly",
998
+ "description" :
999
+ """Number of packets detected out of order (via control word
1000
+ sequence numbers) that could not be re-ordered or could
1001
+ not fit in the jitter buffer.""",
1002
+ }, # column
1003
+ "pwTDMPerfCurrentMalformedPkt" : {
1004
+ "nodetype" : "column",
1005
+ "moduleName" : "PW-TDM-MIB",
1006
+ "oid" : "1.3.6.1.2.1.186.1.5.1.5",
1007
+ "status" : "current",
1008
+ "syntax" : {
1009
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1010
+ },
1011
+ "access" : "readonly",
1012
+ "description" :
1013
+ """Number of packets detected with unexpected size or
1014
+ bad headers' stack.""",
1015
+ }, # column
1016
+ "pwTDMPerfCurrentESs" : {
1017
+ "nodetype" : "column",
1018
+ "moduleName" : "PW-TDM-MIB",
1019
+ "oid" : "1.3.6.1.2.1.186.1.5.1.6",
1020
+ "status" : "current",
1021
+ "syntax" : {
1022
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1023
+ },
1024
+ "access" : "readonly",
1025
+ "description" :
1026
+ """The counter associated with the number of Error
1027
+ Seconds encountered. Any malformed packet, sequence error,
1028
+ LOPS, and the like are considered as Error Seconds.""",
1029
+ }, # column
1030
+ "pwTDMPerfCurrentSESs" : {
1031
+ "nodetype" : "column",
1032
+ "moduleName" : "PW-TDM-MIB",
1033
+ "oid" : "1.3.6.1.2.1.186.1.5.1.7",
1034
+ "status" : "current",
1035
+ "syntax" : {
1036
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1037
+ },
1038
+ "access" : "readonly",
1039
+ "description" :
1040
+ """The counter associated with the number of
1041
+ Severely Error Seconds encountered.""",
1042
+ }, # column
1043
+ "pwTDMPerfCurrentUASs" : {
1044
+ "nodetype" : "column",
1045
+ "moduleName" : "PW-TDM-MIB",
1046
+ "oid" : "1.3.6.1.2.1.186.1.5.1.8",
1047
+ "status" : "current",
1048
+ "syntax" : {
1049
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1050
+ },
1051
+ "access" : "readonly",
1052
+ "description" :
1053
+ """The counter associated with the number of
1054
+ Unavailable Seconds encountered. Any consecutive
1055
+ ten seconds of SES are counted as one Unavailable
1056
+ Seconds (UAS).""",
1057
+ }, # column
1058
+ "pwTDMPerfCurrentFC" : {
1059
+ "nodetype" : "column",
1060
+ "moduleName" : "PW-TDM-MIB",
1061
+ "oid" : "1.3.6.1.2.1.186.1.5.1.9",
1062
+ "status" : "current",
1063
+ "syntax" : {
1064
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1065
+ },
1066
+ "access" : "readonly",
1067
+ "description" :
1068
+ """TDM Failure Counts (FC-TDM). The number of TDM failure
1069
+ events. A failure event begins when the LOPS failure
1070
+ is declared, and it ends when the failure is cleared. A
1071
+ failure event that begins in one period and ends in
1072
+ another period is counted only in the period in which
1073
+ it begins.""",
1074
+ }, # column
1075
+ "pwTDMPerfIntervalTable" : {
1076
+ "nodetype" : "table",
1077
+ "moduleName" : "PW-TDM-MIB",
1078
+ "oid" : "1.3.6.1.2.1.186.1.6",
1079
+ "status" : "current",
1080
+ "description" :
1081
+ """This table provides performance information per TDM PW
1082
+ similar to the pwTDMPerfCurrentTable above. However,
1083
+ these counts represent historical 15-minute intervals.
1084
+ Typically, this table will have a maximum of 96 entries
1085
+ for a 24 hour period, but is not limited to this.""",
1086
+ }, # table
1087
+ "pwTDMPerfIntervalEntry" : {
1088
+ "nodetype" : "row",
1089
+ "moduleName" : "PW-TDM-MIB",
1090
+ "oid" : "1.3.6.1.2.1.186.1.6.1",
1091
+ "status" : "current",
1092
+ "linkage" : [
1093
+ "pwIndex",
1094
+ "pwTDMPerfIntervalNumber",
1095
+ ],
1096
+ "description" :
1097
+ """An entry in this table is created by the agent for
1098
+ every pwTDMPerfCurrentEntry that is 15 minutes old.
1099
+ The contents of the Current entry are copied to the new
1100
+ entry here. The Current entry then resets its counts
1101
+ to zero for the next current 15-minute interval.""",
1102
+ }, # row
1103
+ "pwTDMPerfIntervalNumber" : {
1104
+ "nodetype" : "column",
1105
+ "moduleName" : "PW-TDM-MIB",
1106
+ "oid" : "1.3.6.1.2.1.186.1.6.1.1",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : {
1110
+ "basetype" : "Unsigned32",
1111
+ "ranges" : [
1112
+ {
1113
+ "min" : "1",
1114
+ "max" : "96"
1115
+ },
1116
+ ],
1117
+ "range" : {
1118
+ "min" : "1",
1119
+ "max" : "96"
1120
+ },
1121
+ },
1122
+ },
1123
+ "access" : "noaccess",
1124
+ "description" :
1125
+ """A number (normally between 1 and 96 to cover a 24 hour
1126
+ period) that identifies the interval for which the set
1127
+ of statistics is available. The interval identified by 1
1128
+
1129
+
1130
+
1131
+ is the most recently completed 15-minute interval, and
1132
+ the interval identified by N is the interval immediately
1133
+ preceding the one identified by N-1. The minimum range of
1134
+ N is 1 through 4. The default range is 1 through 32. The
1135
+ maximum value of N is 1 through 96.""",
1136
+ }, # column
1137
+ "pwTDMPerfIntervalValidData" : {
1138
+ "nodetype" : "column",
1139
+ "moduleName" : "PW-TDM-MIB",
1140
+ "oid" : "1.3.6.1.2.1.186.1.6.1.2",
1141
+ "status" : "current",
1142
+ "syntax" : {
1143
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1144
+ },
1145
+ "access" : "readonly",
1146
+ "description" :
1147
+ """This variable indicates if the data for this interval
1148
+ is valid.""",
1149
+ }, # column
1150
+ "pwTDMPerfIntervalDuration" : {
1151
+ "nodetype" : "column",
1152
+ "moduleName" : "PW-TDM-MIB",
1153
+ "oid" : "1.3.6.1.2.1.186.1.6.1.3",
1154
+ "status" : "current",
1155
+ "syntax" : {
1156
+ "type" : { "module" :"", "name" : "Unsigned32"},
1157
+ },
1158
+ "access" : "readonly",
1159
+ "units" : "seconds",
1160
+ "description" :
1161
+ """The duration of a particular interval in seconds.
1162
+ Adjustments in the system's time-of-day clock may
1163
+ cause the interval to be greater or less than the
1164
+ normal value. Therefore, this actual interval value
1165
+ is provided.""",
1166
+ }, # column
1167
+ "pwTDMPerfIntervalMissingPkts" : {
1168
+ "nodetype" : "column",
1169
+ "moduleName" : "PW-TDM-MIB",
1170
+ "oid" : "1.3.6.1.2.1.186.1.6.1.4",
1171
+ "status" : "current",
1172
+ "syntax" : {
1173
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1174
+ },
1175
+ "access" : "readonly",
1176
+ "description" :
1177
+ """Number of missing packets (as detected via control
1178
+ word sequence number gaps).""",
1179
+ }, # column
1180
+ "pwTDMPerfIntervalPktsReOrder" : {
1181
+ "nodetype" : "column",
1182
+ "moduleName" : "PW-TDM-MIB",
1183
+ "oid" : "1.3.6.1.2.1.186.1.6.1.5",
1184
+ "status" : "current",
1185
+ "syntax" : {
1186
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1187
+ },
1188
+ "access" : "readonly",
1189
+ "description" :
1190
+ """Number of packets detected out of sequence (via control
1191
+ word sequence number) but successfully re-ordered.
1192
+ Note: some implementations may not support this
1193
+ feature.""",
1194
+ }, # column
1195
+ "pwTDMPerfIntervalJtrBfrUnderruns" : {
1196
+ "nodetype" : "column",
1197
+ "moduleName" : "PW-TDM-MIB",
1198
+ "oid" : "1.3.6.1.2.1.186.1.6.1.6",
1199
+ "status" : "current",
1200
+ "syntax" : {
1201
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1202
+ },
1203
+ "access" : "readonly",
1204
+ "description" :
1205
+ """Number of times a packet needed to be played
1206
+ out and the jitter buffer was empty.""",
1207
+ }, # column
1208
+ "pwTDMPerfIntervalMisOrderDropped" : {
1209
+ "nodetype" : "column",
1210
+ "moduleName" : "PW-TDM-MIB",
1211
+ "oid" : "1.3.6.1.2.1.186.1.6.1.7",
1212
+ "status" : "current",
1213
+ "syntax" : {
1214
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1215
+ },
1216
+ "access" : "readonly",
1217
+ "description" :
1218
+ """Number of packets detected out of order (via control word
1219
+ sequence numbers) that could not be re-ordered or could
1220
+ not fit in the jitter buffer.""",
1221
+ }, # column
1222
+ "pwTDMPerfIntervalMalformedPkt" : {
1223
+ "nodetype" : "column",
1224
+ "moduleName" : "PW-TDM-MIB",
1225
+ "oid" : "1.3.6.1.2.1.186.1.6.1.8",
1226
+ "status" : "current",
1227
+ "syntax" : {
1228
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1229
+ },
1230
+ "access" : "readonly",
1231
+ "description" :
1232
+ """Number of packets detected with unexpected size, or
1233
+ bad headers' stack""",
1234
+ }, # column
1235
+ "pwTDMPerfIntervalESs" : {
1236
+ "nodetype" : "column",
1237
+ "moduleName" : "PW-TDM-MIB",
1238
+ "oid" : "1.3.6.1.2.1.186.1.6.1.9",
1239
+ "status" : "current",
1240
+ "syntax" : {
1241
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1242
+ },
1243
+ "access" : "readonly",
1244
+ "description" :
1245
+ """The counter associated with the number of Error
1246
+ Seconds encountered.""",
1247
+ }, # column
1248
+ "pwTDMPerfIntervalSESs" : {
1249
+ "nodetype" : "column",
1250
+ "moduleName" : "PW-TDM-MIB",
1251
+ "oid" : "1.3.6.1.2.1.186.1.6.1.10",
1252
+ "status" : "current",
1253
+ "syntax" : {
1254
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1255
+ },
1256
+ "access" : "readonly",
1257
+ "description" :
1258
+ """The counter associated with the number of
1259
+ Severely Error Seconds encountered.""",
1260
+ }, # column
1261
+ "pwTDMPerfIntervalUASs" : {
1262
+ "nodetype" : "column",
1263
+ "moduleName" : "PW-TDM-MIB",
1264
+ "oid" : "1.3.6.1.2.1.186.1.6.1.11",
1265
+ "status" : "current",
1266
+ "syntax" : {
1267
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1268
+ },
1269
+ "access" : "readonly",
1270
+ "description" :
1271
+ """The counter associated with the number of
1272
+ Unavailable Seconds encountered.""",
1273
+ }, # column
1274
+ "pwTDMPerfIntervalFC" : {
1275
+ "nodetype" : "column",
1276
+ "moduleName" : "PW-TDM-MIB",
1277
+ "oid" : "1.3.6.1.2.1.186.1.6.1.12",
1278
+ "status" : "current",
1279
+ "syntax" : {
1280
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1281
+ },
1282
+ "access" : "readonly",
1283
+ "description" :
1284
+ """TDM Failure Counts (FC-TDM). The number of TDM failure
1285
+ events. A failure event begins when the LOPS failure
1286
+ is declared, and it ends when the failure is cleared. A
1287
+ failure event that begins in one period and ends in
1288
+ another period is counted only in the period in which
1289
+ it begins.""",
1290
+ }, # column
1291
+ "pwTDMPerf1DayIntervalTable" : {
1292
+ "nodetype" : "table",
1293
+ "moduleName" : "PW-TDM-MIB",
1294
+ "oid" : "1.3.6.1.2.1.186.1.7",
1295
+ "status" : "current",
1296
+ "description" :
1297
+ """This table provides performance information per TDM PW
1298
+ similar to the pwTDMPerfIntervalTable above. However,
1299
+ these counters represent historical one-day intervals up to
1300
+ one full month. The table consists of real-time data, as
1301
+ such it is not persistence across re-boot.""",
1302
+ }, # table
1303
+ "pwTDMPerf1DayIntervalEntry" : {
1304
+ "nodetype" : "row",
1305
+ "moduleName" : "PW-TDM-MIB",
1306
+ "oid" : "1.3.6.1.2.1.186.1.7.1",
1307
+ "status" : "current",
1308
+ "linkage" : [
1309
+ "pwIndex",
1310
+ "pwTDMPerf1DayIntervalNumber",
1311
+ ],
1312
+ "description" :
1313
+ """An entry is created in this table by the agent
1314
+ for every entry in the pwTDMTable table.""",
1315
+ }, # row
1316
+ "pwTDMPerf1DayIntervalNumber" : {
1317
+ "nodetype" : "column",
1318
+ "moduleName" : "PW-TDM-MIB",
1319
+ "oid" : "1.3.6.1.2.1.186.1.7.1.1",
1320
+ "status" : "current",
1321
+ "syntax" : {
1322
+ "type" : {
1323
+ "basetype" : "Unsigned32",
1324
+ "ranges" : [
1325
+ {
1326
+ "min" : "1",
1327
+ "max" : "30"
1328
+ },
1329
+ ],
1330
+ "range" : {
1331
+ "min" : "1",
1332
+ "max" : "30"
1333
+ },
1334
+ },
1335
+ },
1336
+ "access" : "noaccess",
1337
+ "description" :
1338
+ """The number of intervals where 1 indicates the current day
1339
+ measured period and 2 and above indicate previous days,
1340
+ respectively.""",
1341
+ }, # column
1342
+ "pwTDMPerf1DayIntervalValidData" : {
1343
+ "nodetype" : "column",
1344
+ "moduleName" : "PW-TDM-MIB",
1345
+ "oid" : "1.3.6.1.2.1.186.1.7.1.2",
1346
+ "status" : "current",
1347
+ "syntax" : {
1348
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1349
+ },
1350
+ "access" : "readonly",
1351
+ "description" :
1352
+ """This variable indicates if the data for this interval
1353
+ is valid.""",
1354
+ }, # column
1355
+ "pwTDMPerf1DayIntervalDuration" : {
1356
+ "nodetype" : "column",
1357
+ "moduleName" : "PW-TDM-MIB",
1358
+ "oid" : "1.3.6.1.2.1.186.1.7.1.3",
1359
+ "status" : "current",
1360
+ "syntax" : {
1361
+ "type" : { "module" :"", "name" : "Unsigned32"},
1362
+ },
1363
+ "access" : "readonly",
1364
+ "units" : "seconds",
1365
+ "description" :
1366
+ """The duration of a particular interval in seconds.
1367
+ Adjustments in the system's time-of-day clock may
1368
+ cause the interval to be greater or less than the
1369
+ normal value. Therefore, this actual interval value
1370
+ is provided.""",
1371
+ }, # column
1372
+ "pwTDMPerf1DayIntervalMissingPkts" : {
1373
+ "nodetype" : "column",
1374
+ "moduleName" : "PW-TDM-MIB",
1375
+ "oid" : "1.3.6.1.2.1.186.1.7.1.4",
1376
+ "status" : "current",
1377
+ "syntax" : {
1378
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1379
+ },
1380
+ "access" : "readonly",
1381
+ "description" :
1382
+ """Number of missing packets (as detected via control word
1383
+ sequence number gaps).""",
1384
+ }, # column
1385
+ "pwTDMPerf1DayIntervalPktsReOrder" : {
1386
+ "nodetype" : "column",
1387
+ "moduleName" : "PW-TDM-MIB",
1388
+ "oid" : "1.3.6.1.2.1.186.1.7.1.5",
1389
+ "status" : "current",
1390
+ "syntax" : {
1391
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1392
+ },
1393
+ "access" : "readonly",
1394
+ "description" :
1395
+ """Number of packets detected out of sequence (via control
1396
+ word sequence number) but successfully re-ordered.
1397
+ Note: some implementations may not support this
1398
+ feature.""",
1399
+ }, # column
1400
+ "pwTDMPerf1DayIntervalJtrBfrUnderruns" : {
1401
+ "nodetype" : "column",
1402
+ "moduleName" : "PW-TDM-MIB",
1403
+ "oid" : "1.3.6.1.2.1.186.1.7.1.6",
1404
+ "status" : "current",
1405
+ "syntax" : {
1406
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1407
+ },
1408
+ "access" : "readonly",
1409
+ "description" :
1410
+ """Number of times a packet needed to be played
1411
+ out and the jitter buffer was empty.""",
1412
+ }, # column
1413
+ "pwTDMPerf1DayIntervalMisOrderDropped" : {
1414
+ "nodetype" : "column",
1415
+ "moduleName" : "PW-TDM-MIB",
1416
+ "oid" : "1.3.6.1.2.1.186.1.7.1.7",
1417
+ "status" : "current",
1418
+ "syntax" : {
1419
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1420
+ },
1421
+ "access" : "readonly",
1422
+ "description" :
1423
+ """Number of packets detected out of order (via control word
1424
+ sequence numbers) that could not be re-ordered or could
1425
+ not fit in the jitter buffer.""",
1426
+ }, # column
1427
+ "pwTDMPerf1DayIntervalMalformedPkt" : {
1428
+ "nodetype" : "column",
1429
+ "moduleName" : "PW-TDM-MIB",
1430
+ "oid" : "1.3.6.1.2.1.186.1.7.1.8",
1431
+ "status" : "current",
1432
+ "syntax" : {
1433
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1434
+ },
1435
+ "access" : "readonly",
1436
+ "description" :
1437
+ """Number of packets detected with unexpected size or
1438
+ bad headers' stack.""",
1439
+ }, # column
1440
+ "pwTDMPerf1DayIntervalESs" : {
1441
+ "nodetype" : "column",
1442
+ "moduleName" : "PW-TDM-MIB",
1443
+ "oid" : "1.3.6.1.2.1.186.1.7.1.9",
1444
+ "status" : "current",
1445
+ "syntax" : {
1446
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1447
+ },
1448
+ "access" : "readonly",
1449
+ "description" :
1450
+ """The counter associated with the number of Error
1451
+ Seconds encountered.""",
1452
+ }, # column
1453
+ "pwTDMPerf1DayIntervalSESs" : {
1454
+ "nodetype" : "column",
1455
+ "moduleName" : "PW-TDM-MIB",
1456
+ "oid" : "1.3.6.1.2.1.186.1.7.1.10",
1457
+ "status" : "current",
1458
+ "syntax" : {
1459
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1460
+ },
1461
+ "access" : "readonly",
1462
+ "description" :
1463
+ """The counter associated with the number of Severely
1464
+ Error Seconds.""",
1465
+ }, # column
1466
+ "pwTDMPerf1DayIntervalUASs" : {
1467
+ "nodetype" : "column",
1468
+ "moduleName" : "PW-TDM-MIB",
1469
+ "oid" : "1.3.6.1.2.1.186.1.7.1.11",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1473
+ },
1474
+ "access" : "readonly",
1475
+ "description" :
1476
+ """The counter associated with the number of
1477
+ UnAvailable Seconds.
1478
+
1479
+ NOTE: When first entering the UAS state, the number
1480
+ of SES to UAS is added to this object, then as each
1481
+ additional UAS occurs, this object increments by one.""",
1482
+ }, # column
1483
+ "pwTDMPerf1DayIntervalFC" : {
1484
+ "nodetype" : "column",
1485
+ "moduleName" : "PW-TDM-MIB",
1486
+ "oid" : "1.3.6.1.2.1.186.1.7.1.12",
1487
+ "status" : "current",
1488
+ "syntax" : {
1489
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1490
+ },
1491
+ "access" : "readonly",
1492
+ "description" :
1493
+ """TDM Failure Counts (FC-TDM). The number of TDM failure
1494
+ events. A failure event begins when the LOPS failure
1495
+ is declared, and it ends when the failure is cleared.""",
1496
+ }, # column
1497
+ "pwTDMConformance" : {
1498
+ "nodetype" : "node",
1499
+ "moduleName" : "PW-TDM-MIB",
1500
+ "oid" : "1.3.6.1.2.1.186.2",
1501
+ }, # node
1502
+ "pwTDMCompliances" : {
1503
+ "nodetype" : "node",
1504
+ "moduleName" : "PW-TDM-MIB",
1505
+ "oid" : "1.3.6.1.2.1.186.2.1",
1506
+ }, # node
1507
+ "pwTDMGroups" : {
1508
+ "nodetype" : "node",
1509
+ "moduleName" : "PW-TDM-MIB",
1510
+ "oid" : "1.3.6.1.2.1.186.2.2",
1511
+ }, # node
1512
+ }, # nodes
1513
+
1514
+ "groups" : {
1515
+ "pwTDMGroup" : {
1516
+ "nodetype" : "group",
1517
+ "moduleName" : "PW-TDM-MIB",
1518
+ "oid" : "1.3.6.1.2.1.186.2.2.1",
1519
+ "status" : "current",
1520
+ "members" : {
1521
+ "pwTDMRate" : {
1522
+ "nodetype" : "member",
1523
+ "module" : "PW-TDM-MIB"
1524
+ },
1525
+ "pwTDMIfIndex" : {
1526
+ "nodetype" : "member",
1527
+ "module" : "PW-TDM-MIB"
1528
+ },
1529
+ "pwGenTDMCfgIndex" : {
1530
+ "nodetype" : "member",
1531
+ "module" : "PW-TDM-MIB"
1532
+ },
1533
+ "pwRelTDMCfgIndex" : {
1534
+ "nodetype" : "member",
1535
+ "module" : "PW-TDM-MIB"
1536
+ },
1537
+ "pwTDMConfigError" : {
1538
+ "nodetype" : "member",
1539
+ "module" : "PW-TDM-MIB"
1540
+ },
1541
+ "pwTDMTimeElapsed" : {
1542
+ "nodetype" : "member",
1543
+ "module" : "PW-TDM-MIB"
1544
+ },
1545
+ "pwTDMValidIntervals" : {
1546
+ "nodetype" : "member",
1547
+ "module" : "PW-TDM-MIB"
1548
+ },
1549
+ "pwTDMValidDayIntervals" : {
1550
+ "nodetype" : "member",
1551
+ "module" : "PW-TDM-MIB"
1552
+ },
1553
+ "pwTDMLastEsTimeStamp" : {
1554
+ "nodetype" : "member",
1555
+ "module" : "PW-TDM-MIB"
1556
+ },
1557
+ "pwTDMCfgIndexNext" : {
1558
+ "nodetype" : "member",
1559
+ "module" : "PW-TDM-MIB"
1560
+ },
1561
+ "pwTDMCfgRowStatus" : {
1562
+ "nodetype" : "member",
1563
+ "module" : "PW-TDM-MIB"
1564
+ },
1565
+ "pwTDMCfgPayloadSize" : {
1566
+ "nodetype" : "member",
1567
+ "module" : "PW-TDM-MIB"
1568
+ },
1569
+ "pwTDMCfgPktReorder" : {
1570
+ "nodetype" : "member",
1571
+ "module" : "PW-TDM-MIB"
1572
+ },
1573
+ "pwTDMCfgRtpHdrUsed" : {
1574
+ "nodetype" : "member",
1575
+ "module" : "PW-TDM-MIB"
1576
+ },
1577
+ "pwTDMCfgJtrBfrDepth" : {
1578
+ "nodetype" : "member",
1579
+ "module" : "PW-TDM-MIB"
1580
+ },
1581
+ "pwTDMCfgPayloadSuppression" : {
1582
+ "nodetype" : "member",
1583
+ "module" : "PW-TDM-MIB"
1584
+ },
1585
+ "pwTDMCfgConsecPktsInSynch" : {
1586
+ "nodetype" : "member",
1587
+ "module" : "PW-TDM-MIB"
1588
+ },
1589
+ "pwTDMCfgConsecMissPktsOutSynch" : {
1590
+ "nodetype" : "member",
1591
+ "module" : "PW-TDM-MIB"
1592
+ },
1593
+ "pwTDMCfgSetUp2SynchTimeOut" : {
1594
+ "nodetype" : "member",
1595
+ "module" : "PW-TDM-MIB"
1596
+ },
1597
+ "pwTDMCfgPktReplacePolicy" : {
1598
+ "nodetype" : "member",
1599
+ "module" : "PW-TDM-MIB"
1600
+ },
1601
+ "pwTDMCfgAvePktLossTimeWindow" : {
1602
+ "nodetype" : "member",
1603
+ "module" : "PW-TDM-MIB"
1604
+ },
1605
+ "pwTDMCfgExcessivePktLossThreshold" : {
1606
+ "nodetype" : "member",
1607
+ "module" : "PW-TDM-MIB"
1608
+ },
1609
+ "pwTDMCfgAlarmThreshold" : {
1610
+ "nodetype" : "member",
1611
+ "module" : "PW-TDM-MIB"
1612
+ },
1613
+ "pwTDMCfgClearAlarmThreshold" : {
1614
+ "nodetype" : "member",
1615
+ "module" : "PW-TDM-MIB"
1616
+ },
1617
+ "pwTDMCfgMissingPktsToSes" : {
1618
+ "nodetype" : "member",
1619
+ "module" : "PW-TDM-MIB"
1620
+ },
1621
+ "pwTDMCfgTimestampMode" : {
1622
+ "nodetype" : "member",
1623
+ "module" : "PW-TDM-MIB"
1624
+ },
1625
+ "pwTDMCfgStorageType" : {
1626
+ "nodetype" : "member",
1627
+ "module" : "PW-TDM-MIB"
1628
+ },
1629
+ "pwTDMCfgPktFiller" : {
1630
+ "nodetype" : "member",
1631
+ "module" : "PW-TDM-MIB"
1632
+ },
1633
+ "pwTDMCfgName" : {
1634
+ "nodetype" : "member",
1635
+ "module" : "PW-TDM-MIB"
1636
+ },
1637
+ }, # members
1638
+ "description" :
1639
+ """Collection of objects for basic TDM PW config and
1640
+ status.""",
1641
+ }, # group
1642
+ "pwTDMPerfCurrentGroup" : {
1643
+ "nodetype" : "group",
1644
+ "moduleName" : "PW-TDM-MIB",
1645
+ "oid" : "1.3.6.1.2.1.186.2.2.2",
1646
+ "status" : "current",
1647
+ "members" : {
1648
+ "pwTDMPerfCurrentMissingPkts" : {
1649
+ "nodetype" : "member",
1650
+ "module" : "PW-TDM-MIB"
1651
+ },
1652
+ "pwTDMPerfCurrentPktsReOrder" : {
1653
+ "nodetype" : "member",
1654
+ "module" : "PW-TDM-MIB"
1655
+ },
1656
+ "pwTDMPerfCurrentJtrBfrUnderruns" : {
1657
+ "nodetype" : "member",
1658
+ "module" : "PW-TDM-MIB"
1659
+ },
1660
+ "pwTDMPerfCurrentMisOrderDropped" : {
1661
+ "nodetype" : "member",
1662
+ "module" : "PW-TDM-MIB"
1663
+ },
1664
+ "pwTDMPerfCurrentMalformedPkt" : {
1665
+ "nodetype" : "member",
1666
+ "module" : "PW-TDM-MIB"
1667
+ },
1668
+ "pwTDMPerfCurrentESs" : {
1669
+ "nodetype" : "member",
1670
+ "module" : "PW-TDM-MIB"
1671
+ },
1672
+ "pwTDMPerfCurrentSESs" : {
1673
+ "nodetype" : "member",
1674
+ "module" : "PW-TDM-MIB"
1675
+ },
1676
+ "pwTDMPerfCurrentUASs" : {
1677
+ "nodetype" : "member",
1678
+ "module" : "PW-TDM-MIB"
1679
+ },
1680
+ "pwTDMPerfCurrentFC" : {
1681
+ "nodetype" : "member",
1682
+ "module" : "PW-TDM-MIB"
1683
+ },
1684
+ }, # members
1685
+ "description" :
1686
+ """Collection of current statistics objects for TDM PWs.""",
1687
+ }, # group
1688
+ "pwTDMPerfIntervalGroup" : {
1689
+ "nodetype" : "group",
1690
+ "moduleName" : "PW-TDM-MIB",
1691
+ "oid" : "1.3.6.1.2.1.186.2.2.3",
1692
+ "status" : "current",
1693
+ "members" : {
1694
+ "pwTDMPerfIntervalValidData" : {
1695
+ "nodetype" : "member",
1696
+ "module" : "PW-TDM-MIB"
1697
+ },
1698
+ "pwTDMPerfIntervalDuration" : {
1699
+ "nodetype" : "member",
1700
+ "module" : "PW-TDM-MIB"
1701
+ },
1702
+ "pwTDMPerfIntervalMissingPkts" : {
1703
+ "nodetype" : "member",
1704
+ "module" : "PW-TDM-MIB"
1705
+ },
1706
+ "pwTDMPerfIntervalPktsReOrder" : {
1707
+ "nodetype" : "member",
1708
+ "module" : "PW-TDM-MIB"
1709
+ },
1710
+ "pwTDMPerfIntervalJtrBfrUnderruns" : {
1711
+ "nodetype" : "member",
1712
+ "module" : "PW-TDM-MIB"
1713
+ },
1714
+ "pwTDMPerfIntervalMisOrderDropped" : {
1715
+ "nodetype" : "member",
1716
+ "module" : "PW-TDM-MIB"
1717
+ },
1718
+ "pwTDMPerfIntervalMalformedPkt" : {
1719
+ "nodetype" : "member",
1720
+ "module" : "PW-TDM-MIB"
1721
+ },
1722
+ "pwTDMPerfIntervalESs" : {
1723
+ "nodetype" : "member",
1724
+ "module" : "PW-TDM-MIB"
1725
+ },
1726
+ "pwTDMPerfIntervalSESs" : {
1727
+ "nodetype" : "member",
1728
+ "module" : "PW-TDM-MIB"
1729
+ },
1730
+ "pwTDMPerfIntervalUASs" : {
1731
+ "nodetype" : "member",
1732
+ "module" : "PW-TDM-MIB"
1733
+ },
1734
+ "pwTDMPerfIntervalFC" : {
1735
+ "nodetype" : "member",
1736
+ "module" : "PW-TDM-MIB"
1737
+ },
1738
+ }, # members
1739
+ "description" :
1740
+ """Collection of Interval statistics objects for TDM PWs.""",
1741
+ }, # group
1742
+ "pwTDMPerf1DayIntervalGroup" : {
1743
+ "nodetype" : "group",
1744
+ "moduleName" : "PW-TDM-MIB",
1745
+ "oid" : "1.3.6.1.2.1.186.2.2.4",
1746
+ "status" : "current",
1747
+ "members" : {
1748
+ "pwTDMPerf1DayIntervalValidData" : {
1749
+ "nodetype" : "member",
1750
+ "module" : "PW-TDM-MIB"
1751
+ },
1752
+ "pwTDMPerf1DayIntervalDuration" : {
1753
+ "nodetype" : "member",
1754
+ "module" : "PW-TDM-MIB"
1755
+ },
1756
+ "pwTDMPerf1DayIntervalMissingPkts" : {
1757
+ "nodetype" : "member",
1758
+ "module" : "PW-TDM-MIB"
1759
+ },
1760
+ "pwTDMPerf1DayIntervalPktsReOrder" : {
1761
+ "nodetype" : "member",
1762
+ "module" : "PW-TDM-MIB"
1763
+ },
1764
+ "pwTDMPerf1DayIntervalJtrBfrUnderruns" : {
1765
+ "nodetype" : "member",
1766
+ "module" : "PW-TDM-MIB"
1767
+ },
1768
+ "pwTDMPerf1DayIntervalMisOrderDropped" : {
1769
+ "nodetype" : "member",
1770
+ "module" : "PW-TDM-MIB"
1771
+ },
1772
+ "pwTDMPerf1DayIntervalMalformedPkt" : {
1773
+ "nodetype" : "member",
1774
+ "module" : "PW-TDM-MIB"
1775
+ },
1776
+ "pwTDMPerf1DayIntervalESs" : {
1777
+ "nodetype" : "member",
1778
+ "module" : "PW-TDM-MIB"
1779
+ },
1780
+ "pwTDMPerf1DayIntervalSESs" : {
1781
+ "nodetype" : "member",
1782
+ "module" : "PW-TDM-MIB"
1783
+ },
1784
+ "pwTDMPerf1DayIntervalUASs" : {
1785
+ "nodetype" : "member",
1786
+ "module" : "PW-TDM-MIB"
1787
+ },
1788
+ "pwTDMPerf1DayIntervalFC" : {
1789
+ "nodetype" : "member",
1790
+ "module" : "PW-TDM-MIB"
1791
+ },
1792
+ }, # members
1793
+ "description" :
1794
+ """Collection of Daily statistics objects for TDM PWs.""",
1795
+ }, # group
1796
+ }, # groups
1797
+
1798
+ "compliances" : {
1799
+ "pwTDMModuleCompliance" : {
1800
+ "nodetype" : "compliance",
1801
+ "moduleName" : "PW-TDM-MIB",
1802
+ "oid" : "1.3.6.1.2.1.186.2.1.1",
1803
+ "status" : "current",
1804
+ "description" :
1805
+ """The compliance statement for agent that support TDM PW
1806
+ over PSN operation.""",
1807
+ "requires" : {
1808
+ "pwTDMGroup" : {
1809
+ "nodetype" : "mandatory",
1810
+ "module" : "PW-TDM-MIB"
1811
+ },
1812
+ "pwTDMPerfCurrentGroup" : {
1813
+ "nodetype" : "mandatory",
1814
+ "module" : "PW-TDM-MIB"
1815
+ },
1816
+ "pwTDMPerfIntervalGroup" : {
1817
+ "nodetype" : "mandatory",
1818
+ "module" : "PW-TDM-MIB"
1819
+ },
1820
+ "pwTDMPerf1DayIntervalGroup" : {
1821
+ "nodetype" : "mandatory",
1822
+ "module" : "PW-TDM-MIB"
1823
+ },
1824
+ }, # requires
1825
+ "refinements" : {
1826
+ "pwGenTDMCfgIndex" : {
1827
+ "module" : "PW-TDM-MIB",
1828
+ "access" : "readonly",
1829
+ "description" :
1830
+ """The ability to set an index pointer
1831
+ is not required.""",
1832
+ },
1833
+ "pwRelTDMCfgIndex" : {
1834
+ "module" : "PW-TDM-MIB",
1835
+ "access" : "readonly",
1836
+ "description" :
1837
+ """The ability to set an index pointer
1838
+ is not required.""",
1839
+ },
1840
+ "pwTDMCfgPktReorder" : {
1841
+ "module" : "PW-TDM-MIB",
1842
+ "access" : "readonly",
1843
+ "description" :
1844
+ """The ability to set the packet reordering
1845
+ is not required. If the feature is not
1846
+ supported, the value set by the agent MUST
1847
+ be FALSE.""",
1848
+ },
1849
+ "pwTDMCfgRtpHdrUsed" : {
1850
+ "module" : "PW-TDM-MIB",
1851
+ "access" : "readonly",
1852
+ "description" :
1853
+ """The ability to set whether or not to use the
1854
+ RTP header is not required.""",
1855
+ },
1856
+ "pwTDMCfgPayloadSuppression" : {
1857
+ "module" : "PW-TDM-MIB",
1858
+ "access" : "readonly",
1859
+ "description" :
1860
+ """The ability to set this object is not
1861
+ required.""",
1862
+ },
1863
+ "pwTDMCfgPktReplacePolicy" : {
1864
+ "module" : "PW-TDM-MIB",
1865
+ "access" : "readonly",
1866
+ "description" :
1867
+ """The ability to set the replace policy
1868
+ is not required.""",
1869
+ },
1870
+ "pwTDMCfgStorageType" : {
1871
+ "module" : "PW-TDM-MIB",
1872
+ "access" : "readonly",
1873
+ "description" :
1874
+ """The ability to set the storage type is
1875
+ not required.""",
1876
+ },
1877
+ "pwTDMCfgPktFiller" : {
1878
+ "module" : "PW-TDM-MIB",
1879
+ "access" : "readonly",
1880
+ "description" :
1881
+ """The ability to set the filler pattern
1882
+ is not required.""",
1883
+ },
1884
+ "pwTDMCfgName" : {
1885
+ "module" : "PW-TDM-MIB",
1886
+ "access" : "readonly",
1887
+ "description" :
1888
+ """The ability to set an alias
1889
+ is not required.""",
1890
+ },
1891
+ }, # refinements
1892
+
1893
+ }, # compliance
1894
+ }, # compliances
1895
+
1896
+ }