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,3661 @@
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-CEP-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PW-CEP-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PW-CEP-STD-MIB",
11
+
12
+ "PW-CEP-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Pseudowire Emulation Edge-to-Edge (PWE3)
17
+ Working Group""",
18
+ "contact" :
19
+ """David Zelig (Ed.)
20
+ Email: david_zelig@pmc-sierra.com
21
+
22
+ Ron Cohen (Ed.)
23
+ Email: ronc@resolutenetworks.com
24
+
25
+ Thomas D. Nadeau (Ed.)
26
+ Email: Thomas.Nadeau@ca.com
27
+
28
+ The PWE3 Working Group
29
+ Email: pwe3@ietf.org (email distribution)
30
+ http://www.ietf.org/html.charters/pwe3-charter.html""",
31
+ "description" :
32
+ """This MIB module contains managed object definitions for
33
+ Circuit Emulation over Packet (CEP) as in [RFC4842]: Malis,
34
+ A., Prayson, P., Cohen, R., and D. Zelig. 'Synchronous
35
+ Optical Network/Synchronous Digital Hierarchy (SONET/SDH)
36
+ Circuit Emulation over Packet (CEP)', RFC 4842.
37
+
38
+
39
+
40
+
41
+
42
+ Copyright (c) 2011 IETF Trust and the persons identified as
43
+ authors of the code. All rights reserved.
44
+
45
+ Redistribution and use in source and binary forms, with or
46
+ without modification, is permitted pursuant to, and subject
47
+ to the license terms contained in, the Simplified BSD
48
+ License set forth in Section 4.c of the IETF Trust's Legal
49
+ Provisions Relating to IETF Documents
50
+ (http://trustee.ietf.org/license-info).""",
51
+ "revisions" : (
52
+ {
53
+ "date" : "2011-05-16 00:00",
54
+ "description" :
55
+ """This MIB module published as part of RFC 6240.""",
56
+ },
57
+ ),
58
+ "identity node" : "pwCepStdMIB",
59
+ },
60
+
61
+ "imports" : (
62
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
63
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
64
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
65
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
66
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
67
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
68
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
69
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
70
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
71
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
72
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
73
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
74
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
75
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
76
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
77
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
78
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
79
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
80
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
81
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
82
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
83
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
84
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
85
+ {"module" : "PW-STD-MIB", "name" : "pwIndex"},
86
+ {"module" : "PW-TC-STD-MIB", "name" : "PwCfgIndexOrzero"},
87
+ ),
88
+
89
+ "typedefs" : {
90
+ "PwCepSonetEbm" : {
91
+ "basetype" : "Unsigned32",
92
+ "status" : "current",
93
+ "description" :
94
+ """Equipped Bit Mask (EBM) used for fractional STS-1/Virtual
95
+ Circuit 3 (VC-3). The EBM bits are the 28 least
96
+ significant bits out of the 32-bit value.""",
97
+ },
98
+ "PwCepSdhVc4Ebm" : {
99
+ "basetype" : "Unsigned32",
100
+ "status" : "current",
101
+ "description" :
102
+ """Equipped Bit Mask (EBM) used for each Tributary Unit Group
103
+ 3 (TUG-3) in fractional VC-4 circuits. The EBM bits are
104
+ the 30 least significant bits out of the 32-bit value.""",
105
+ },
106
+ "PwCepSonetVtgMap" : {
107
+ "basetype" : "Unsigned32",
108
+ "status" : "current",
109
+ "description" :
110
+ """The VT/VC types carried in the 7 VT groups (VTGs)/TUG-2s.
111
+ The format is 28 bits in the form of an Equipped Bit Mask
112
+ (EBM) for fractional STS-1/VC-3. The mapping specifies the
113
+ maximal occupancies of VT/VC within each VTG/TUG-2. For
114
+ example, all four bits are set to 1 in this object to
115
+ represent a VTG carrying VT1.5/VC11s, while only three
116
+ are set when VT2/VC12s are carried within this VTG.
117
+ The relevant bits are the 28 least significant bits out of
118
+ the 32-bit value.""",
119
+ },
120
+ "PwCepFracAsyncMap" : {
121
+ "basetype" : "Enumeration",
122
+ "status" : "current",
123
+ "other" : {
124
+ "nodetype" : "namednumber",
125
+ "number" : "1"
126
+ },
127
+ "ds3" : {
128
+ "nodetype" : "namednumber",
129
+ "number" : "2"
130
+ },
131
+ "e3" : {
132
+ "nodetype" : "namednumber",
133
+ "number" : "3"
134
+ },
135
+ "description" :
136
+ """The type of asynchronous mapping carried inside STS-1,
137
+ VC-3, or TUG-3 containing TU-3 circuit.""",
138
+ },
139
+ }, # typedefs
140
+
141
+ "nodes" : {
142
+ "pwCepStdMIB" : {
143
+ "nodetype" : "node",
144
+ "moduleName" : "PW-CEP-STD-MIB",
145
+ "oid" : "1.3.6.1.2.1.200",
146
+ "status" : "current",
147
+ }, # node
148
+ "pwCepObjects" : {
149
+ "nodetype" : "node",
150
+ "moduleName" : "PW-CEP-STD-MIB",
151
+ "oid" : "1.3.6.1.2.1.200.1",
152
+ }, # node
153
+ "pwCepTable" : {
154
+ "nodetype" : "table",
155
+ "moduleName" : "PW-CEP-STD-MIB",
156
+ "oid" : "1.3.6.1.2.1.200.1.1",
157
+ "status" : "current",
158
+ "description" :
159
+ """This table contains objects and parameters for managing and
160
+ monitoring the CEP PW.""",
161
+ }, # table
162
+ "pwCepEntry" : {
163
+ "nodetype" : "row",
164
+ "moduleName" : "PW-CEP-STD-MIB",
165
+ "oid" : "1.3.6.1.2.1.200.1.1.1",
166
+ "status" : "current",
167
+ "linkage" : [
168
+ "pwIndex",
169
+ ],
170
+ "description" :
171
+ """Each entry represents the association of a SONET/SDH path or
172
+ VT to a PW. This table is indexed by the pwIndex of the
173
+ applicable PW entry in the pwTable.
174
+
175
+ An entry is created in this table by the agent for every
176
+ entry in the pwTable with a pwType equal to 'cep'.
177
+
178
+ All read-write objects in this table MAY be changed at any
179
+ time; however, change of some objects (for example
180
+ pwCepCfgIndex) during PW forwarding state may cause
181
+ traffic disruption.
182
+
183
+
184
+
185
+ Manual entries in this table SHOULD be preserved after a
186
+ reboot. The agent MUST ensure the integrity of those
187
+ entries. If the set of entries of a specific row are found
188
+ to be inconsistent after reboot, the PW pwOperStatus MUST
189
+ be declared as notPresent(5).""",
190
+ }, # row
191
+ "pwCepType" : {
192
+ "nodetype" : "column",
193
+ "moduleName" : "PW-CEP-STD-MIB",
194
+ "oid" : "1.3.6.1.2.1.200.1.1.1.1",
195
+ "status" : "current",
196
+ "syntax" : {
197
+ "type" : {
198
+ "basetype" : "Enumeration",
199
+ "spe" : {
200
+ "nodetype" : "namednumber",
201
+ "number" : "1"
202
+ },
203
+ "vt" : {
204
+ "nodetype" : "namednumber",
205
+ "number" : "2"
206
+ },
207
+ "fracSpe" : {
208
+ "nodetype" : "namednumber",
209
+ "number" : "3"
210
+ },
211
+ },
212
+ },
213
+ "access" : "readwrite",
214
+ "default" : "spe",
215
+ "description" :
216
+ """Specifies the sub-type of CEP PW. Currently only
217
+ structured types are supported:
218
+
219
+ 'spe'(1) : SONET STS-Nc signals.
220
+ 'vt' (2) : SONET VT-x (x=1.5,2,3,6) signals.
221
+ 'fracSpe' (3) : SONET fractional STS-1 or SDH fractional
222
+ VC-3 or VC-4 carrying tributaries or
223
+ asynchronous signals.
224
+
225
+ Support of 'vt' mode or 'fracSpe' mode is optional.""",
226
+ }, # column
227
+ "pwCepSonetIfIndex" : {
228
+ "nodetype" : "column",
229
+ "moduleName" : "PW-CEP-STD-MIB",
230
+ "oid" : "1.3.6.1.2.1.200.1.1.1.2",
231
+ "status" : "current",
232
+ "syntax" : {
233
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
234
+ },
235
+ "access" : "readwrite",
236
+ "description" :
237
+ """This is a unique index within the ifTable. It represents
238
+ the interface index for the SONET path for SPE emulation
239
+ ([RFC3592], Section 3.3), an interface index for the SONET
240
+ VT ([RFC3592], Section 3.4) if the VT to be emulated is
241
+ extracted from a SONET signal or locally mapped from a
242
+ physical interface.
243
+
244
+ A value of zero indicates an interface index that has yet
245
+ to be determined.
246
+
247
+ Once set, if the SONET ifIndex is (for some reason) later
248
+ removed, the agent MAY delete the associated PW rows
249
+ (e.g., this pwCepTableEntry). If the agent does not
250
+ delete the rows, it is RECOMMENDED that the agent set this
251
+ object to zero.""",
252
+ }, # column
253
+ "pwCepSonetConfigErrorOrStatus" : {
254
+ "nodetype" : "column",
255
+ "moduleName" : "PW-CEP-STD-MIB",
256
+ "oid" : "1.3.6.1.2.1.200.1.1.1.3",
257
+ "status" : "current",
258
+ "syntax" : {
259
+ "type" : {
260
+ "basetype" : "Bits",
261
+ "other" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "0"
264
+ },
265
+ "timeslotInUse" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "1"
268
+ },
269
+ "timeslotMisuse" : {
270
+ "nodetype" : "namednumber",
271
+ "number" : "2"
272
+ },
273
+ "peerDbaIncompatible" : {
274
+ "nodetype" : "namednumber",
275
+ "number" : "3"
276
+ },
277
+ "peerEbmIncompatible" : {
278
+ "nodetype" : "namednumber",
279
+ "number" : "4"
280
+ },
281
+ "peerRtpIncompatible" : {
282
+ "nodetype" : "namednumber",
283
+ "number" : "5"
284
+ },
285
+ "peerAsyncIncompatible" : {
286
+ "nodetype" : "namednumber",
287
+ "number" : "6"
288
+ },
289
+ "peerDbaAsymmetric" : {
290
+ "nodetype" : "namednumber",
291
+ "number" : "7"
292
+ },
293
+ "peerEbmAsymmetric" : {
294
+ "nodetype" : "namednumber",
295
+ "number" : "8"
296
+ },
297
+ "peerRtpAsymmetric" : {
298
+ "nodetype" : "namednumber",
299
+ "number" : "9"
300
+ },
301
+ "peerAsyncAsymmetric" : {
302
+ "nodetype" : "namednumber",
303
+ "number" : "10"
304
+ },
305
+ },
306
+ },
307
+ "access" : "readonly",
308
+ "description" :
309
+ """This object reports a configuration mismatch inside
310
+ the local node or between the local node and the peer node.
311
+ Some bits indicate an error, and some are simply status
312
+ reports that do not affect the forwarding process.
313
+
314
+ 'timeslotInUse'(1) is set when another CEP PW has already
315
+ reserved a timeslot (or timeslots) that this CEP PW is
316
+ attempting to reserve.
317
+
318
+
319
+
320
+ 'timeslotMisuse'(2) is set when the stated timeslot this
321
+ PW is trying to use is not legal, for example, if
322
+ specifying a starting timeslot of 45 for a SONET path of
323
+ an STS-12c width.
324
+
325
+ The peerZZZIncompatible bits are set if the local
326
+ configuration is not compatible with the peer configuration
327
+ as available from the CEP option received from the peer
328
+ through the signaling process and the local node cannot
329
+ support such asymmetric configuration.
330
+
331
+ The peerZZZAsymmetric bits are set if the local
332
+ configuration is not compatible with the peer configuration
333
+ as available from the CEP option received from the peer
334
+ through the signaling process, but the local node can
335
+ support such asymmetric configuration.""",
336
+ "reference" :
337
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
338
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
339
+ (CEP)', RFC 4842, Section 12.""",
340
+ }, # column
341
+ "pwCepCfgIndex" : {
342
+ "nodetype" : "column",
343
+ "moduleName" : "PW-CEP-STD-MIB",
344
+ "oid" : "1.3.6.1.2.1.200.1.1.1.4",
345
+ "status" : "current",
346
+ "syntax" : {
347
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwCfgIndexOrzero"},
348
+ },
349
+ "access" : "readwrite",
350
+ "description" :
351
+ """Index to CEP configuration table below. Multiple CEP PWs
352
+ MAY share a single pwCepCfgEntry.
353
+
354
+ The value 0 indicates that no entries are available.""",
355
+ }, # column
356
+ "pwCepTimeElapsed" : {
357
+ "nodetype" : "column",
358
+ "moduleName" : "PW-CEP-STD-MIB",
359
+ "oid" : "1.3.6.1.2.1.200.1.1.1.5",
360
+ "status" : "current",
361
+ "syntax" : {
362
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
363
+ },
364
+ "access" : "readonly",
365
+ "units" : "seconds",
366
+ "description" :
367
+ """The number of seconds, including partial seconds,
368
+ that have elapsed since the beginning of the current
369
+ measurement period. If, for some reason such as an
370
+ adjustment in the system's time-of-day clock, the
371
+ current interval exceeds the maximum value, the
372
+ agent will return the maximum value.""",
373
+ }, # column
374
+ "pwCepValidIntervals" : {
375
+ "nodetype" : "column",
376
+ "moduleName" : "PW-CEP-STD-MIB",
377
+ "oid" : "1.3.6.1.2.1.200.1.1.1.6",
378
+ "status" : "current",
379
+ "syntax" : {
380
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
381
+ },
382
+ "access" : "readonly",
383
+ "description" :
384
+ """The number (n) of previous 15-minute intervals for which
385
+ data was collected.
386
+
387
+ An agent with CEP capability MUST be capable of supporting
388
+ at least 4 intervals. The RECOMMENDED default value for
389
+ n is 32, and n MUST NOT exceed 96.""",
390
+ }, # column
391
+ "pwCepIndications" : {
392
+ "nodetype" : "column",
393
+ "moduleName" : "PW-CEP-STD-MIB",
394
+ "oid" : "1.3.6.1.2.1.200.1.1.1.7",
395
+ "status" : "current",
396
+ "syntax" : {
397
+ "type" : {
398
+ "basetype" : "Bits",
399
+ "missingPkt" : {
400
+ "nodetype" : "namednumber",
401
+ "number" : "0"
402
+ },
403
+ "ooRngDropped" : {
404
+ "nodetype" : "namednumber",
405
+ "number" : "1"
406
+ },
407
+ "jtrBfrUnder" : {
408
+ "nodetype" : "namednumber",
409
+ "number" : "2"
410
+ },
411
+ "pktMalformed" : {
412
+ "nodetype" : "namednumber",
413
+ "number" : "3"
414
+ },
415
+ "lops" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "4"
418
+ },
419
+ "cepRdi" : {
420
+ "nodetype" : "namednumber",
421
+ "number" : "5"
422
+ },
423
+ "cepAis" : {
424
+ "nodetype" : "namednumber",
425
+ "number" : "6"
426
+ },
427
+ "badHdrStack" : {
428
+ "nodetype" : "namednumber",
429
+ "number" : "7"
430
+ },
431
+ "cepNeFailure" : {
432
+ "nodetype" : "namednumber",
433
+ "number" : "8"
434
+ },
435
+ "cepFeFailure" : {
436
+ "nodetype" : "namednumber",
437
+ "number" : "9"
438
+ },
439
+ },
440
+ },
441
+ "access" : "readwrite",
442
+ "description" :
443
+ """Definitions:
444
+
445
+ 'missingPkt'(0) - While playing out a sequence of packets,
446
+ at least one packet was determined to be missing based on a
447
+ gap in the CEP sequence number. Note: If the implementation
448
+ supports packet reordering, detecting gaps SHOULD take
449
+ place as they are played out, not as they arrive. This
450
+ provides time for misordered packets to arrive late.
451
+
452
+ 'ooRngDropped'(1) - At least one packet arrived outside the
453
+ range of the jitter buffer. This may be because the
454
+ jitter buffer is full or the sequence number addresses
455
+ a buffer outside the current jitter buffer range or
456
+ an already occupied buffer within range. Whether or not
457
+ packet reordering is supported by the implementation, this
458
+ indication MUST be supported.
459
+
460
+
461
+
462
+
463
+
464
+
465
+ 'jtrBfrUnder'(2) - The jitter buffer underflowed because
466
+ not enough packets arrived as packets were being
467
+ played out.
468
+
469
+ 'pktMalformed'(3) - Any error related to unexpected
470
+ packet format (except bad header stack) or unexpected
471
+ length.
472
+
473
+ 'lops'(4) - Loss of Packet Synchronization.
474
+
475
+ 'cepRdi'(5) - Circuit Emulation over Packet Remote Defect
476
+ Indication. Remote Defect Indication (RDI) is generated by
477
+ the remote CEP de-packetizer when LOPS is detected.
478
+
479
+ 'cepAis'(6) - Remote CEP packetizer has detected an Alarm
480
+ Indication Signal (AIS) on its incoming SONET stream.
481
+ cepAis MUST NOT (in itself) cause a CEP PW down
482
+ notification.
483
+
484
+ 'badHdrStack'(7) - Set when the number of
485
+ CEP header extensions detected in incoming packets does
486
+ not match the expected number.
487
+
488
+ 'cepNeFailure'(8) - Set when CEP-NE failure is currently
489
+ declared.
490
+
491
+ 'cepFeFailure'(8) - Set when CEP-FE failure is currently
492
+ declared.
493
+
494
+ This object MUST hold the accumulated indications until the
495
+ next SNMP write that clear the indication(s).
496
+
497
+ Writing a non-zero value MUST fail.
498
+
499
+ Currently, there is no hierarchy of CEP defects.
500
+
501
+ The algorithm used to capture these indications
502
+ is implementation specific.""",
503
+ }, # column
504
+ "pwCepLastEsTimeStamp" : {
505
+ "nodetype" : "column",
506
+ "moduleName" : "PW-CEP-STD-MIB",
507
+ "oid" : "1.3.6.1.2.1.200.1.1.1.8",
508
+ "status" : "current",
509
+ "syntax" : {
510
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
511
+ },
512
+ "access" : "readonly",
513
+ "description" :
514
+ """The value of sysUpTime on the most recent occasion at which
515
+ the CEP PW entered the Errored Seconds (ES) or Severely
516
+ Errored Seconds (SES) state.""",
517
+ }, # column
518
+ "pwCepPeerCepOption" : {
519
+ "nodetype" : "column",
520
+ "moduleName" : "PW-CEP-STD-MIB",
521
+ "oid" : "1.3.6.1.2.1.200.1.1.1.9",
522
+ "status" : "current",
523
+ "syntax" : {
524
+ "type" : { "module" :"", "name" : "Unsigned32"},
525
+ },
526
+ "access" : "readonly",
527
+ "description" :
528
+ """The value of the CEP option parameter as received from the
529
+ peer by the PW signaling protocol.""",
530
+ }, # column
531
+ "pwCepCfgIndexNext" : {
532
+ "nodetype" : "scalar",
533
+ "moduleName" : "PW-CEP-STD-MIB",
534
+ "oid" : "1.3.6.1.2.1.200.1.2",
535
+ "status" : "current",
536
+ "syntax" : {
537
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwCfgIndexOrzero"},
538
+ },
539
+ "access" : "readonly",
540
+ "description" :
541
+ """This object contains an appropriate value to be used
542
+ for pwCepCfgIndex when creating entries in the
543
+ pwCepCfgTable. The value 0 indicates that no
544
+ unassigned entries are available. To obtain the
545
+ value of pwCepCfgIndex for a new entry in the
546
+ pwCepCfgTable, the manager issues a management
547
+ protocol retrieval operation to obtain the current
548
+ value of pwCepCfgIndex. After each retrieval
549
+ operation, the agent should modify the value to
550
+ reflect the next unassigned index. After a manager
551
+ retrieves a value, the agent will determine through
552
+ its local policy when this index value will be made
553
+ available for reuse.""",
554
+ }, # scalar
555
+ "pwCepCfgTable" : {
556
+ "nodetype" : "table",
557
+ "moduleName" : "PW-CEP-STD-MIB",
558
+ "oid" : "1.3.6.1.2.1.200.1.3",
559
+ "status" : "current",
560
+ "description" :
561
+ """This table contains a set of parameters that may be
562
+ referenced by one or more CEP PWs by pwCepTable.""",
563
+ }, # table
564
+ "pwCepCfgEntry" : {
565
+ "nodetype" : "row",
566
+ "moduleName" : "PW-CEP-STD-MIB",
567
+ "oid" : "1.3.6.1.2.1.200.1.3.1",
568
+ "create" : "true",
569
+ "status" : "current",
570
+ "linkage" : [
571
+ "pwCepCfgTableIndex",
572
+ ],
573
+ "description" :
574
+ """These parameters define the characteristics of a
575
+ CEP PW. They are grouped here to ease Network Management
576
+ System (NMS) burden. Once an entry is created here, it may
577
+ be reused by many PWs.
578
+
579
+ By default, all the read-create objects MUST NOT be
580
+ changed after row activation unless specifically indicated
581
+ in the individual object description. If the operator
582
+ wishes to change value of a read-create object, the
583
+ pwCepCfgRowStatus MUST be set to notInService(2).
584
+
585
+ The agent MUST NOT allow the change of the
586
+ pwCepCfgRowStatus from the active(1) state for
587
+ pwCepCfgEntry, which is in use by at least one active PW.
588
+
589
+ Manual entries in this table SHOULD be preserved after a
590
+ reboot, the agent MUST ensure the integrity of those
591
+ entries. If the set of entries of a specific row are found
592
+ to be inconsistent after reboot, the affected PWs'
593
+ pwOperStatus MUST be declared as notPresent(5).""",
594
+ }, # row
595
+ "pwCepCfgTableIndex" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "PW-CEP-STD-MIB",
598
+ "oid" : "1.3.6.1.2.1.200.1.3.1.1",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : {
602
+ "basetype" : "Unsigned32",
603
+ "ranges" : [
604
+ {
605
+ "min" : "1",
606
+ "max" : "4294967295"
607
+ },
608
+ ],
609
+ "range" : {
610
+ "min" : "1",
611
+ "max" : "4294967295"
612
+ },
613
+ },
614
+ },
615
+ "access" : "noaccess",
616
+ "description" :
617
+ """Primary index to this table.""",
618
+ }, # column
619
+ "pwCepSonetPayloadLength" : {
620
+ "nodetype" : "column",
621
+ "moduleName" : "PW-CEP-STD-MIB",
622
+ "oid" : "1.3.6.1.2.1.200.1.3.1.2",
623
+ "status" : "current",
624
+ "syntax" : {
625
+ "type" : { "module" :"", "name" : "Unsigned32"},
626
+ },
627
+ "access" : "readwrite",
628
+ "description" :
629
+ """The number of SONET bytes of the Path or VT carried as
630
+ payload within one packet. For example, for STS-1/VC-3 SPE
631
+ circuits, a value of 783 bytes indicates that each packet
632
+ carries the payload equivalent to one frame. For VT1.5/VC11
633
+ circuits, a payload length of 104 bytes indicates that each
634
+ packet carries payload equivalent to one VT1.5 super-frame.
635
+ The actual payload size may be different due to bandwidth
636
+ reduction modes, e.g., Dynamic Bandwidth Allocation (DBA)
637
+ mode or dynamically assigned fractional SPE. This length
638
+ applies to inbound and outbound packets carrying user
639
+ payload. Although there is no control over inbound packets,
640
+ those of illegal length are discarded and accounted for (see
641
+ pwCepPerf...Malformed.)
642
+
643
+
644
+
645
+
646
+
647
+ The default values are determined by the pwCepType:
648
+ 783 for pwCepType equal to spe(2) or fracSpe(3).
649
+ For vt(3) modes, the applicable super-frame payload size
650
+ is the default value.""",
651
+ "reference" :
652
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
653
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
654
+ (CEP)', RFC 4842, Sections 5.1 and 12.1""",
655
+ }, # column
656
+ "pwCepCfgMinPktLength" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "PW-CEP-STD-MIB",
659
+ "oid" : "1.3.6.1.2.1.200.1.3.1.3",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : { "module" :"", "name" : "Unsigned32"},
663
+ },
664
+ "access" : "readwrite",
665
+ "default" : "0",
666
+ "description" :
667
+ """This object defines the minimum CEP packet length in
668
+ number of bytes (including CEP header and payload).
669
+ It applies to CEP's bandwidth-savings packets. Currently,
670
+ DBA is the only bandwidth-savings packet type (in the
671
+ future, CEP may support compression). Minimum packet
672
+ length is necessary in some systems or networks.
673
+
674
+ Setting zero here indicates that there is no minimum
675
+ packet restriction.""",
676
+ }, # column
677
+ "pwCepCfgPktReorder" : {
678
+ "nodetype" : "column",
679
+ "moduleName" : "PW-CEP-STD-MIB",
680
+ "oid" : "1.3.6.1.2.1.200.1.3.1.4",
681
+ "status" : "current",
682
+ "syntax" : {
683
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
684
+ },
685
+ "access" : "readonly",
686
+ "description" :
687
+ """This object defines if reordering is applied for incoming
688
+ packets.
689
+
690
+ If set 'true', as inbound packets are queued in the
691
+ jitter buffer, out-of-order packets are reordered. The
692
+ maximum sequence number differential (i.e., the range in
693
+ which resequencing can occur) is dependant on the depth
694
+ of the jitter buffer.
695
+
696
+ If the local agent supports packet reordering, the default
697
+ value SHOULD be set to 'true'; otherwise, this value
698
+ SHOULD be set to 'false'.""",
699
+ }, # column
700
+ "pwCepCfgEnableDBA" : {
701
+ "nodetype" : "column",
702
+ "moduleName" : "PW-CEP-STD-MIB",
703
+ "oid" : "1.3.6.1.2.1.200.1.3.1.5",
704
+ "status" : "current",
705
+ "syntax" : {
706
+ "type" : {
707
+ "basetype" : "Bits",
708
+ "ais" : {
709
+ "nodetype" : "namednumber",
710
+ "number" : "0"
711
+ },
712
+ "unequipped" : {
713
+ "nodetype" : "namednumber",
714
+ "number" : "1"
715
+ },
716
+ },
717
+ },
718
+ "access" : "readwrite",
719
+ "description" :
720
+ """This object defines when DBA is applied for packets sent
721
+ toward the PSN.
722
+
723
+ Setting 'ais' MUST cause CEP packet payload suppression
724
+ when AIS is detected on the associated SONET path.
725
+ Similarly, 'unequipped' MUST cause payload suppression
726
+ when an unequipped condition is detected on the SONET/SDH
727
+ PATH/VT.
728
+
729
+ During DBA condition, CEP packets will continue
730
+ to be sent, but with indicators set in the CEP header
731
+ instructing the remote to play all ones (for AIS) or all
732
+ zeros (for unequipped) onto its SONET/SDH path.
733
+
734
+ NOTE: Some implementations may not support this feature.
735
+ In these cases, this object should be read-only.""",
736
+ "reference" :
737
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
738
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
739
+ (CEP)', RFC 4842, Section 11.1.""",
740
+ }, # column
741
+ "pwCepCfgRtpHdrSuppress" : {
742
+ "nodetype" : "column",
743
+ "moduleName" : "PW-CEP-STD-MIB",
744
+ "oid" : "1.3.6.1.2.1.200.1.3.1.6",
745
+ "status" : "current",
746
+ "syntax" : {
747
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
748
+ },
749
+ "access" : "readwrite",
750
+ "default" : "true",
751
+ "description" :
752
+ """If this object is set to 'true', an RTP header is not
753
+ prepended to the CEP packet.""",
754
+ "reference" :
755
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
756
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
757
+ (CEP)', RFC 4842, Section 5.3.""",
758
+ }, # column
759
+ "pwCepCfgJtrBfrDepth" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "PW-CEP-STD-MIB",
762
+ "oid" : "1.3.6.1.2.1.200.1.3.1.7",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : { "module" :"", "name" : "Unsigned32"},
766
+ },
767
+ "access" : "readwrite",
768
+ "units" : "micro-seconds",
769
+ "description" :
770
+ """This object defines the number of microseconds
771
+ of expected packet delay variation for this CEP PW
772
+ over the PSN.
773
+
774
+ The actual jitter buffer MUST be at least twice this
775
+ value for proper operation.
776
+
777
+ If configured to a value not supported by the
778
+ implementation, the agent MUST reject the SNMP Set
779
+ operation.""",
780
+ "reference" :
781
+ """The control of jitter and wander within digital
782
+ networks which are based on the synchronous digital
783
+ hierarchy (SDH), ITU-T Recommendation G.825.""",
784
+ }, # column
785
+ "pwCepCfgConsecPktsInsync" : {
786
+ "nodetype" : "column",
787
+ "moduleName" : "PW-CEP-STD-MIB",
788
+ "oid" : "1.3.6.1.2.1.200.1.3.1.8",
789
+ "status" : "current",
790
+ "syntax" : {
791
+ "type" : { "module" :"", "name" : "Unsigned32"},
792
+ },
793
+ "access" : "readwrite",
794
+ "default" : "2",
795
+ "description" :
796
+ """Consecutive packets with sequential sequence
797
+ numbers required to exit the LOPS state.""",
798
+ "reference" :
799
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
800
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
801
+ (CEP)', RFC 4842, Section 6.2.2.""",
802
+ }, # column
803
+ "pwCepCfgConsecMissingOutSync" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "PW-CEP-STD-MIB",
806
+ "oid" : "1.3.6.1.2.1.200.1.3.1.9",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : { "module" :"", "name" : "Unsigned32"},
810
+ },
811
+ "access" : "readwrite",
812
+ "default" : "10",
813
+ "description" :
814
+ """Consecutive missing packets required to enter
815
+ the LOPS state.""",
816
+ "reference" :
817
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
818
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
819
+ (CEP)', RFC 4842, Section 6.2.2.""",
820
+ }, # column
821
+ "pwCepCfgPktErrorPlayOutValue" : {
822
+ "nodetype" : "column",
823
+ "moduleName" : "PW-CEP-STD-MIB",
824
+ "oid" : "1.3.6.1.2.1.200.1.3.1.10",
825
+ "status" : "current",
826
+ "syntax" : {
827
+ "type" : {
828
+ "basetype" : "Unsigned32",
829
+ "ranges" : [
830
+ {
831
+ "min" : "0",
832
+ "max" : "255"
833
+ },
834
+ ],
835
+ "range" : {
836
+ "min" : "0",
837
+ "max" : "255"
838
+ },
839
+ },
840
+ },
841
+ "access" : "readwrite",
842
+ "default" : "255",
843
+ "description" :
844
+ """This object defines the value played when inbound packets
845
+ have over/underflowed the jitter buffer or are missing
846
+ for any reason. This byte pattern is sent (played) on
847
+ the SONET path.""",
848
+ }, # column
849
+ "pwCepCfgMissingPktsToSes" : {
850
+ "nodetype" : "column",
851
+ "moduleName" : "PW-CEP-STD-MIB",
852
+ "oid" : "1.3.6.1.2.1.200.1.3.1.11",
853
+ "status" : "current",
854
+ "syntax" : {
855
+ "type" : { "module" :"", "name" : "Unsigned32"},
856
+ },
857
+ "access" : "readwrite",
858
+ "default" : "3",
859
+ "units" : "seconds",
860
+ "description" :
861
+ """The number of missing packets detected (consecutive or not)
862
+ within a 1-second window to cause a Severely Errored
863
+ Second (SES) to be counted.""",
864
+ "reference" :
865
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
866
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
867
+ (CEP)', RFC 4842, Section 10.1.""",
868
+ }, # column
869
+ "pwCepCfgSesToUas" : {
870
+ "nodetype" : "column",
871
+ "moduleName" : "PW-CEP-STD-MIB",
872
+ "oid" : "1.3.6.1.2.1.200.1.3.1.12",
873
+ "status" : "current",
874
+ "syntax" : {
875
+ "type" : { "module" :"", "name" : "Unsigned32"},
876
+ },
877
+ "access" : "readwrite",
878
+ "default" : "10",
879
+ "units" : "seconds",
880
+ "description" :
881
+ """The number of consecutive SESs before declaring PW in
882
+ Unavailable Seconds (UAS) state (at which point
883
+ pwCepPerfUASs starts counting). The SesToUas default value
884
+ is 10 seconds.
885
+
886
+ NOTE: Similar to [RFC3592], if the agent chooses to update
887
+ the various performance statistics in real time, it MUST
888
+ be prepared to retroactively reduce the ES and SES counts by
889
+ this value and increase the UAS count by this value when it
890
+ determines that UAS state has been entered.
891
+
892
+ NOTE: See pwCepPerfSESs and pwCepPerfUASs.""",
893
+ "reference" :
894
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
895
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
896
+ (CEP)', RFC 4842, Section 10.1.""",
897
+ }, # column
898
+ "pwCepCfgSecsToExitUas" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "PW-CEP-STD-MIB",
901
+ "oid" : "1.3.6.1.2.1.200.1.3.1.13",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : { "module" :"", "name" : "Unsigned32"},
905
+ },
906
+ "access" : "readwrite",
907
+ "default" : "10",
908
+ "units" : "seconds",
909
+ "description" :
910
+ """The number of consecutive nonSESs before declaring PW is NOT
911
+ in UAS state (at which point pwCepPerfUASs stops counting).""",
912
+ "reference" :
913
+ """Malis, A., et al., 'Synchronous Optical Network/Synchronous
914
+ Digital Hierarchy (SONET/SDH) Circuit Emulation over Packet
915
+ (CEP)', RFC 4842, Section 10.1.""",
916
+ }, # column
917
+ "pwCepCfgName" : {
918
+ "nodetype" : "column",
919
+ "moduleName" : "PW-CEP-STD-MIB",
920
+ "oid" : "1.3.6.1.2.1.200.1.3.1.14",
921
+ "status" : "current",
922
+ "syntax" : {
923
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
924
+ },
925
+ "access" : "readwrite",
926
+ "description" :
927
+ """This variable contains the name of the Configuration entry.
928
+ This name may be used to help the NMS to display the
929
+ purpose of the entry.""",
930
+ }, # column
931
+ "pwCepCfgRowStatus" : {
932
+ "nodetype" : "column",
933
+ "moduleName" : "PW-CEP-STD-MIB",
934
+ "oid" : "1.3.6.1.2.1.200.1.3.1.15",
935
+ "status" : "current",
936
+ "syntax" : {
937
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
938
+ },
939
+ "access" : "readwrite",
940
+ "description" :
941
+ """For creating, modifying, and deleting this row.
942
+
943
+ None of the read-create objects' values can be changed
944
+ when pwCepCfgRowStatus is in the active(1) state. Changes
945
+ are allowed when the pwRowStatus is in notInService(2) or
946
+ notReady(3) states only.
947
+
948
+ If the operator needs to change one of the values for an
949
+ active row (for example, in order to fix a mismatch in
950
+ configuration between the local node and the peer), the
951
+ pwCepCfgRowStatus should be first changed to
952
+ notInService(2). The objects may be changed now and later
953
+ changed to active(1) in order to re-initiate the signaling
954
+ process with the new values in effect.
955
+
956
+ Change of status from the active(1) state or deleting a row
957
+ SHOULD be blocked by the local agent if the row is
958
+ referenced by any pwCepEntry those pwRowStatus
959
+ is in the active(1) state.""",
960
+ }, # column
961
+ "pwCepCfgStorageType" : {
962
+ "nodetype" : "column",
963
+ "moduleName" : "PW-CEP-STD-MIB",
964
+ "oid" : "1.3.6.1.2.1.200.1.3.1.16",
965
+ "status" : "current",
966
+ "syntax" : {
967
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
968
+ },
969
+ "access" : "readwrite",
970
+ "default" : "nonVolatile",
971
+ "description" :
972
+ """This object indicates the storage type for this row.""",
973
+ }, # column
974
+ "pwCepFracTable" : {
975
+ "nodetype" : "table",
976
+ "moduleName" : "PW-CEP-STD-MIB",
977
+ "oid" : "1.3.6.1.2.1.200.1.4",
978
+ "status" : "current",
979
+ "description" :
980
+ """This table contains a set of parameters for CEP PWs with
981
+ pwCepType FRAC type.""",
982
+ }, # table
983
+ "pwCepFracEntry" : {
984
+ "nodetype" : "row",
985
+ "moduleName" : "PW-CEP-STD-MIB",
986
+ "oid" : "1.3.6.1.2.1.200.1.4.1",
987
+ "create" : "true",
988
+ "status" : "current",
989
+ "linkage" : [
990
+ "pwCepFracIndex",
991
+ ],
992
+ "description" :
993
+ """There are two options for creating an entry in this table:
994
+
995
+ - By the Element Management System (EMS) in advance for
996
+ creating the PW.
997
+ - By the agent automatically when the PW is set up.
998
+
999
+ The first option is typically used when there is a native
1000
+ service processing (NSP) cross-connect option between the
1001
+ physical ports and the emulated (virtual ports), while the
1002
+ second MAY be used when there is a one-to-one mapping
1003
+ between the emulated signal and the physical signal.""",
1004
+ }, # row
1005
+ "pwCepFracIndex" : {
1006
+ "nodetype" : "column",
1007
+ "moduleName" : "PW-CEP-STD-MIB",
1008
+ "oid" : "1.3.6.1.2.1.200.1.4.1.1",
1009
+ "status" : "current",
1010
+ "syntax" : {
1011
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1012
+ },
1013
+ "access" : "noaccess",
1014
+ "description" :
1015
+ """This is the index of this table. It is a unique
1016
+ index within the ifTable. It represents the interface index
1017
+ for the SONET path ([RFC3592], Section 3.3) for fractional
1018
+ SPE emulation.
1019
+
1020
+ It may represent an internal (virtual) interface if an NSP
1021
+ function exists between the physical interface and the
1022
+ emulation process.""",
1023
+ }, # column
1024
+ "pwCepFracMode" : {
1025
+ "nodetype" : "column",
1026
+ "moduleName" : "PW-CEP-STD-MIB",
1027
+ "oid" : "1.3.6.1.2.1.200.1.4.1.2",
1028
+ "status" : "current",
1029
+ "syntax" : {
1030
+ "type" : {
1031
+ "basetype" : "Enumeration",
1032
+ "notApplicable" : {
1033
+ "nodetype" : "namednumber",
1034
+ "number" : "1"
1035
+ },
1036
+ "dynamic" : {
1037
+ "nodetype" : "namednumber",
1038
+ "number" : "2"
1039
+ },
1040
+ "static" : {
1041
+ "nodetype" : "namednumber",
1042
+ "number" : "3"
1043
+ },
1044
+ "staticWithEbm" : {
1045
+ "nodetype" : "namednumber",
1046
+ "number" : "4"
1047
+ },
1048
+ "staticAsync" : {
1049
+ "nodetype" : "namednumber",
1050
+ "number" : "5"
1051
+ },
1052
+ },
1053
+ },
1054
+ "access" : "readwrite",
1055
+ "default" : "dynamic",
1056
+ "description" :
1057
+ """Fractional mode for STS-1/VC-3 or VC-4 circuits:
1058
+
1059
+ notApplicable - When this object is not applicable.
1060
+ dynamic - EBM carried within the CEP header. Unequipped
1061
+ VTs are removed from the payload on the fly.
1062
+ static - EBM not carried within the CEP header. Only VTs
1063
+ defined in the EBM are carried within the payload.
1064
+ staticWithEbm - EBM carried within the CEP header. Only
1065
+ VTs defined in the EBM are carried within the
1066
+ payload.
1067
+ staticAsync - Asynchronous E3/T3 fixed byte removal only.""",
1068
+ }, # column
1069
+ "pwCepFracConfigError" : {
1070
+ "nodetype" : "column",
1071
+ "moduleName" : "PW-CEP-STD-MIB",
1072
+ "oid" : "1.3.6.1.2.1.200.1.4.1.3",
1073
+ "status" : "current",
1074
+ "syntax" : {
1075
+ "type" : {
1076
+ "basetype" : "Bits",
1077
+ "other" : {
1078
+ "nodetype" : "namednumber",
1079
+ "number" : "0"
1080
+ },
1081
+ "vtgMapEbmConflict" : {
1082
+ "nodetype" : "namednumber",
1083
+ "number" : "1"
1084
+ },
1085
+ "vtgMapAsyncConflict" : {
1086
+ "nodetype" : "namednumber",
1087
+ "number" : "2"
1088
+ },
1089
+ },
1090
+ },
1091
+ "access" : "readonly",
1092
+ "description" :
1093
+ """vtgMapEbmConflict(1) is set when the configured static EBM
1094
+ does not match the configured vtgMap for fractional
1095
+ STS-1/VC-3 circuits or when the TUG2Map is in conflict with
1096
+ the static EBM for VC-4 circuits, for example, if the vtgMap
1097
+ specifies that VTG#1 carries VT2 VTs while the EBM indicate
1098
+ that four VTs are equipped within VTG#1.
1099
+
1100
+ vtgMapAsyncConflict(2) is set when there is a conflict
1101
+ between the mode, the async indication, and the vtgMap
1102
+ fields. For example, fractional mode is set to staticAsync
1103
+ while the VtgMap indicates that the STS-1/VC-3 carries VTs,
1104
+ or both async1 and Tug2Map are set in fractional VC-4
1105
+ circuits.""",
1106
+ }, # column
1107
+ "pwCepFracAsync" : {
1108
+ "nodetype" : "column",
1109
+ "moduleName" : "PW-CEP-STD-MIB",
1110
+ "oid" : "1.3.6.1.2.1.200.1.4.1.4",
1111
+ "status" : "current",
1112
+ "syntax" : {
1113
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepFracAsyncMap"},
1114
+ },
1115
+ "access" : "readwrite",
1116
+ "default" : "other",
1117
+ "description" :
1118
+ """This object defines the asynchronous payload carried
1119
+ within the STS-1/VC-3. This object is applicable when
1120
+ pwCepFracMode equals 'staticAsync' and MUST equal to
1121
+ 'other' otherwise.""",
1122
+ }, # column
1123
+ "pwCepFracVtgMap" : {
1124
+ "nodetype" : "column",
1125
+ "moduleName" : "PW-CEP-STD-MIB",
1126
+ "oid" : "1.3.6.1.2.1.200.1.4.1.5",
1127
+ "status" : "current",
1128
+ "syntax" : {
1129
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSonetVtgMap"},
1130
+ },
1131
+ "access" : "readwrite",
1132
+ "description" :
1133
+ """This object defines the VT/VC types of the seven
1134
+ VTG/TUG-2 within the STS-1/VC-3.
1135
+
1136
+ This variable should be set when 'dynamic', 'static',
1137
+ or 'staticWithEbm' fractional STS-1/VC-3 pwCepFracMode
1138
+ is selected.""",
1139
+ }, # column
1140
+ "pwCepFracEbm" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "PW-CEP-STD-MIB",
1143
+ "oid" : "1.3.6.1.2.1.200.1.4.1.6",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSonetEbm"},
1147
+ },
1148
+ "access" : "readwrite",
1149
+ "description" :
1150
+ """This object holds the static Equipped Bit Mask (EBM)
1151
+ for STS-1/VC-3 channel.
1152
+
1153
+ This variable MAY be set when 'static' or
1154
+ 'staticWithEbm' fractional STS-1/VC-3 pwCepFracMode is
1155
+ selected.
1156
+
1157
+ It is possible that the configuration of other MIB modules
1158
+ will define the EBM value; in these cases, this object is
1159
+ read-only and reflects the actual EBM that would be used.""",
1160
+ }, # column
1161
+ "pwCepFracPeerEbm" : {
1162
+ "nodetype" : "column",
1163
+ "moduleName" : "PW-CEP-STD-MIB",
1164
+ "oid" : "1.3.6.1.2.1.200.1.4.1.7",
1165
+ "status" : "current",
1166
+ "syntax" : {
1167
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSonetEbm"},
1168
+ },
1169
+ "access" : "readonly",
1170
+ "description" :
1171
+ """This object reports the Equipped Bit Mask (EBM) for
1172
+ STS-1/VC-3 channel as received from the peer within
1173
+ the CEP extension header.""",
1174
+ }, # column
1175
+ "pwCepFracSdhVc4Mode" : {
1176
+ "nodetype" : "column",
1177
+ "moduleName" : "PW-CEP-STD-MIB",
1178
+ "oid" : "1.3.6.1.2.1.200.1.4.1.8",
1179
+ "status" : "current",
1180
+ "syntax" : {
1181
+ "type" : {
1182
+ "basetype" : "Enumeration",
1183
+ "notApplicable" : {
1184
+ "nodetype" : "namednumber",
1185
+ "number" : "1"
1186
+ },
1187
+ "dynamic" : {
1188
+ "nodetype" : "namednumber",
1189
+ "number" : "2"
1190
+ },
1191
+ "static" : {
1192
+ "nodetype" : "namednumber",
1193
+ "number" : "3"
1194
+ },
1195
+ "staticWithEbm" : {
1196
+ "nodetype" : "namednumber",
1197
+ "number" : "4"
1198
+ },
1199
+ },
1200
+ },
1201
+ "access" : "readwrite",
1202
+ "default" : "notApplicable",
1203
+ "description" :
1204
+ """Fractional mode for VC-4 circuits:
1205
+
1206
+ notApplicable - When this is not VC-4 circuit.
1207
+ dynamic - EBM carried within the CEP header. Unequipped
1208
+ VTs are removed from the payload on the fly.
1209
+ static - EBM not carried within the CEP header. Only VTs
1210
+ defined in the EBM are carried within the payload.
1211
+ staticWithEbm - EBM carried within the CEP header. Only
1212
+ VTs defined in the EBM are carried within the
1213
+ payload.""",
1214
+ }, # column
1215
+ "pwCepFracSdhVc4Tu3Map1" : {
1216
+ "nodetype" : "column",
1217
+ "moduleName" : "PW-CEP-STD-MIB",
1218
+ "oid" : "1.3.6.1.2.1.200.1.4.1.9",
1219
+ "status" : "current",
1220
+ "syntax" : {
1221
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepFracAsyncMap"},
1222
+ },
1223
+ "access" : "readwrite",
1224
+ "default" : "other",
1225
+ "description" :
1226
+ """The type of asynchronous mapping carried inside STS-1,
1227
+ VC-3, or TUG-3 containing TU-3 circuit.""",
1228
+ }, # column
1229
+ "pwCepFracSdhVc4Tu3Map2" : {
1230
+ "nodetype" : "column",
1231
+ "moduleName" : "PW-CEP-STD-MIB",
1232
+ "oid" : "1.3.6.1.2.1.200.1.4.1.10",
1233
+ "status" : "current",
1234
+ "syntax" : {
1235
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepFracAsyncMap"},
1236
+ },
1237
+ "access" : "readwrite",
1238
+ "default" : "other",
1239
+ "description" :
1240
+ """If the second TUG-3 within the VC-4 contains a TU-3, this
1241
+ variable must be set.""",
1242
+ }, # column
1243
+ "pwCepFracSdhVc4Tu3Map3" : {
1244
+ "nodetype" : "column",
1245
+ "moduleName" : "PW-CEP-STD-MIB",
1246
+ "oid" : "1.3.6.1.2.1.200.1.4.1.11",
1247
+ "status" : "current",
1248
+ "syntax" : {
1249
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepFracAsyncMap"},
1250
+ },
1251
+ "access" : "readwrite",
1252
+ "default" : "other",
1253
+ "description" :
1254
+ """If the third TUG-3 within the VC-4 contains a TU-3, this
1255
+ variable must be set.""",
1256
+ }, # column
1257
+ "pwCepFracSdhVc4Tug2Map1" : {
1258
+ "nodetype" : "column",
1259
+ "moduleName" : "PW-CEP-STD-MIB",
1260
+ "oid" : "1.3.6.1.2.1.200.1.4.1.12",
1261
+ "status" : "current",
1262
+ "syntax" : {
1263
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSonetVtgMap"},
1264
+ },
1265
+ "access" : "readwrite",
1266
+ "description" :
1267
+ """The VC types of the seven TUG-2s within the first
1268
+ TUG-3 of the VC-4.""",
1269
+ }, # column
1270
+ "pwCepFracSdhVc4Tug2Map2" : {
1271
+ "nodetype" : "column",
1272
+ "moduleName" : "PW-CEP-STD-MIB",
1273
+ "oid" : "1.3.6.1.2.1.200.1.4.1.13",
1274
+ "status" : "current",
1275
+ "syntax" : {
1276
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSonetVtgMap"},
1277
+ },
1278
+ "access" : "readwrite",
1279
+ "description" :
1280
+ """The VC types of the seven TUG-2s within the second
1281
+ TUG-3 of the VC-4.""",
1282
+ }, # column
1283
+ "pwCepFracSdhVc4Tug2Map3" : {
1284
+ "nodetype" : "column",
1285
+ "moduleName" : "PW-CEP-STD-MIB",
1286
+ "oid" : "1.3.6.1.2.1.200.1.4.1.14",
1287
+ "status" : "current",
1288
+ "syntax" : {
1289
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSonetVtgMap"},
1290
+ },
1291
+ "access" : "readwrite",
1292
+ "description" :
1293
+ """The VC types of the seven TUG-2s within the third
1294
+ TUG-3 of the VC-4.""",
1295
+ }, # column
1296
+ "pwCepFracSdhVc4Ebm1" : {
1297
+ "nodetype" : "column",
1298
+ "moduleName" : "PW-CEP-STD-MIB",
1299
+ "oid" : "1.3.6.1.2.1.200.1.4.1.15",
1300
+ "status" : "current",
1301
+ "syntax" : {
1302
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSdhVc4Ebm"},
1303
+ },
1304
+ "access" : "readwrite",
1305
+ "description" :
1306
+ """Static Equipped Bit Mask (EBM) for the first TUG-3
1307
+ within the VC-4.
1308
+
1309
+ This variable should be set when 'static' or
1310
+ 'staticWithEbm' fractional VC-4 pwCepFracMode is
1311
+ selected.
1312
+
1313
+
1314
+
1315
+
1316
+
1317
+ It is possible that the EBM that would be used is
1318
+ available based on configuration of other MIB modules.
1319
+ In these cases, this object is read-only and reflects the
1320
+ actual EBM that would be used.""",
1321
+ }, # column
1322
+ "pwCepFracSdhVc4Ebm2" : {
1323
+ "nodetype" : "column",
1324
+ "moduleName" : "PW-CEP-STD-MIB",
1325
+ "oid" : "1.3.6.1.2.1.200.1.4.1.16",
1326
+ "status" : "current",
1327
+ "syntax" : {
1328
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSdhVc4Ebm"},
1329
+ },
1330
+ "access" : "readwrite",
1331
+ "description" :
1332
+ """Static Equipped Bit Mask (EBM) for the second TUG-3
1333
+ within the VC-4.
1334
+
1335
+ This variable should be set when 'static' or
1336
+ 'staticWithEbm' fractional VC-4 pwCepFracMode is
1337
+ selected.
1338
+
1339
+ It is possible that the EBM that would be used is
1340
+ available based on configuration of other MIB modules.
1341
+ In these cases, this object is read-only and reflects the
1342
+ actual EBM that would be used.""",
1343
+ }, # column
1344
+ "pwCepFracSdhVc4Ebm3" : {
1345
+ "nodetype" : "column",
1346
+ "moduleName" : "PW-CEP-STD-MIB",
1347
+ "oid" : "1.3.6.1.2.1.200.1.4.1.17",
1348
+ "status" : "current",
1349
+ "syntax" : {
1350
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSdhVc4Ebm"},
1351
+ },
1352
+ "access" : "readwrite",
1353
+ "description" :
1354
+ """Static Equipped Bit Mask (EBM) for the third TUG-3 within
1355
+ the VC-4.
1356
+
1357
+ This variable should be set when 'Static' or
1358
+ 'staticWithEbm' fractional VC-4 pwCepFracMode is
1359
+ selected.
1360
+
1361
+ It is possible that the EBM that would be used is
1362
+ available based on configuration of other MIB modules.
1363
+ In these cases, this object is read-only and reflects the
1364
+ actual EBM that would be used.""",
1365
+ }, # column
1366
+ "pwCepFracSdhVc4PeerEbm1" : {
1367
+ "nodetype" : "column",
1368
+ "moduleName" : "PW-CEP-STD-MIB",
1369
+ "oid" : "1.3.6.1.2.1.200.1.4.1.18",
1370
+ "status" : "current",
1371
+ "syntax" : {
1372
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSdhVc4Ebm"},
1373
+ },
1374
+ "access" : "readonly",
1375
+ "description" :
1376
+ """Equipped Bit Mask (EBM) for the first TUG-3 within
1377
+ the fractional VC-4 channel received from the peer
1378
+ within the CEP extension header.""",
1379
+ }, # column
1380
+ "pwCepFracSdhVc4PeerEbm2" : {
1381
+ "nodetype" : "column",
1382
+ "moduleName" : "PW-CEP-STD-MIB",
1383
+ "oid" : "1.3.6.1.2.1.200.1.4.1.19",
1384
+ "status" : "current",
1385
+ "syntax" : {
1386
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSdhVc4Ebm"},
1387
+ },
1388
+ "access" : "readonly",
1389
+ "description" :
1390
+ """Equipped Bit Mask (EBM) for the second TUG-3 within
1391
+ the fractional VC-4 channel received from the peer
1392
+ within the CEP extension header.""",
1393
+ }, # column
1394
+ "pwCepFracSdhVc4PeerEbm3" : {
1395
+ "nodetype" : "column",
1396
+ "moduleName" : "PW-CEP-STD-MIB",
1397
+ "oid" : "1.3.6.1.2.1.200.1.4.1.20",
1398
+ "status" : "current",
1399
+ "syntax" : {
1400
+ "type" : { "module" :"PW-CEP-STD-MIB", "name" : "PwCepSdhVc4Ebm"},
1401
+ },
1402
+ "access" : "readonly",
1403
+ "description" :
1404
+ """Equipped Bit Mask (EBM) for the third TUG-3 within
1405
+ the fractional VC-4 channel received from the peer
1406
+ within the CEP extension header.""",
1407
+ }, # column
1408
+ "pwCepFracRowStatus" : {
1409
+ "nodetype" : "column",
1410
+ "moduleName" : "PW-CEP-STD-MIB",
1411
+ "oid" : "1.3.6.1.2.1.200.1.4.1.21",
1412
+ "status" : "current",
1413
+ "syntax" : {
1414
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1415
+ },
1416
+ "access" : "readwrite",
1417
+ "description" :
1418
+ """For creating, modifying, and deleting this row.
1419
+ This object MAY be changed at any time.""",
1420
+ }, # column
1421
+ "pwCepFracStorageType" : {
1422
+ "nodetype" : "column",
1423
+ "moduleName" : "PW-CEP-STD-MIB",
1424
+ "oid" : "1.3.6.1.2.1.200.1.4.1.22",
1425
+ "status" : "current",
1426
+ "syntax" : {
1427
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1428
+ },
1429
+ "access" : "readwrite",
1430
+ "default" : "nonVolatile",
1431
+ "description" :
1432
+ """This variable indicates the storage type for this
1433
+ object.""",
1434
+ }, # column
1435
+ "pwCepPerfCurrentTable" : {
1436
+ "nodetype" : "table",
1437
+ "moduleName" : "PW-CEP-STD-MIB",
1438
+ "oid" : "1.3.6.1.2.1.200.1.5",
1439
+ "status" : "current",
1440
+ "description" :
1441
+ """CEP bridges the SONET and packet worlds. In the packet
1442
+ world, counts typically start from the time of service
1443
+ creation and do not stop. In the SONET world, counts are
1444
+ kept in 15-minute intervals. The PW CEP MIB supports both
1445
+ methods. The current 15-minute interval counts are in
1446
+ this table. The interval and total stats are in tables
1447
+ following this.
1448
+
1449
+ This table provides per-CEP PW performance information.
1450
+ High capacity (HC) counters are required for some counts
1451
+ due to the high speeds expected with CEP services. A SONET
1452
+ path of width 48 (STS-48c) can rollover non-HC counters in
1453
+ a few minutes.""",
1454
+ }, # table
1455
+ "pwCepPerfCurrentEntry" : {
1456
+ "nodetype" : "row",
1457
+ "moduleName" : "PW-CEP-STD-MIB",
1458
+ "oid" : "1.3.6.1.2.1.200.1.5.1",
1459
+ "status" : "current",
1460
+ "linkage" : [
1461
+ "pwIndex",
1462
+ ],
1463
+ "description" :
1464
+ """An entry in this table is created by the agent for every
1465
+ pwCep entry. After 15 minutes, the contents of this table
1466
+ entry are copied to a new entry in the pwCepPerfInterval
1467
+ table, and the counts in this entry are reset to zero.""",
1468
+ }, # row
1469
+ "pwCepPerfCurrentDbaInPacketsHC" : {
1470
+ "nodetype" : "column",
1471
+ "moduleName" : "PW-CEP-STD-MIB",
1472
+ "oid" : "1.3.6.1.2.1.200.1.5.1.1",
1473
+ "status" : "current",
1474
+ "syntax" : {
1475
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1476
+ },
1477
+ "access" : "readonly",
1478
+ "description" :
1479
+ """Number of DBA packets received.""",
1480
+ }, # column
1481
+ "pwCepPerfCurrentDbaOutPacketsHC" : {
1482
+ "nodetype" : "column",
1483
+ "moduleName" : "PW-CEP-STD-MIB",
1484
+ "oid" : "1.3.6.1.2.1.200.1.5.1.2",
1485
+ "status" : "current",
1486
+ "syntax" : {
1487
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1488
+ },
1489
+ "access" : "readonly",
1490
+ "description" :
1491
+ """Number of DBA packets sent.""",
1492
+ }, # column
1493
+ "pwCepPerfCurrentInNegPtrAdjust" : {
1494
+ "nodetype" : "column",
1495
+ "moduleName" : "PW-CEP-STD-MIB",
1496
+ "oid" : "1.3.6.1.2.1.200.1.5.1.3",
1497
+ "status" : "current",
1498
+ "syntax" : {
1499
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1500
+ },
1501
+ "access" : "readonly",
1502
+ "description" :
1503
+ """Number of negative pointer adjustments sent on the
1504
+ SONET path based on CEP pointer adjustments received.""",
1505
+ }, # column
1506
+ "pwCepPerfCurrentInPosPtrAdjust" : {
1507
+ "nodetype" : "column",
1508
+ "moduleName" : "PW-CEP-STD-MIB",
1509
+ "oid" : "1.3.6.1.2.1.200.1.5.1.4",
1510
+ "status" : "current",
1511
+ "syntax" : {
1512
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1513
+ },
1514
+ "access" : "readonly",
1515
+ "description" :
1516
+ """Number of positive pointer adjustments sent on the
1517
+ SONET path based on CEP pointer adjustments received.""",
1518
+ }, # column
1519
+ "pwCepPerfCurrentInPtrAdjustSecs" : {
1520
+ "nodetype" : "column",
1521
+ "moduleName" : "PW-CEP-STD-MIB",
1522
+ "oid" : "1.3.6.1.2.1.200.1.5.1.5",
1523
+ "status" : "current",
1524
+ "syntax" : {
1525
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1526
+ },
1527
+ "access" : "readonly",
1528
+ "units" : "seconds",
1529
+ "description" :
1530
+ """Number of seconds in which a positive or negative pointer
1531
+ adjustment was sent on the SONET path.""",
1532
+ }, # column
1533
+ "pwCepPerfCurrentOutNegPtrAdjust" : {
1534
+ "nodetype" : "column",
1535
+ "moduleName" : "PW-CEP-STD-MIB",
1536
+ "oid" : "1.3.6.1.2.1.200.1.5.1.6",
1537
+ "status" : "current",
1538
+ "syntax" : {
1539
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1540
+ },
1541
+ "access" : "readonly",
1542
+ "description" :
1543
+ """Number of negative pointer adjustments seen on the
1544
+ SONET path and encoded onto sent CEP packets.""",
1545
+ }, # column
1546
+ "pwCepPerfCurrentOutPosPtrAdjust" : {
1547
+ "nodetype" : "column",
1548
+ "moduleName" : "PW-CEP-STD-MIB",
1549
+ "oid" : "1.3.6.1.2.1.200.1.5.1.7",
1550
+ "status" : "current",
1551
+ "syntax" : {
1552
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1553
+ },
1554
+ "access" : "readonly",
1555
+ "description" :
1556
+ """Number of positive pointer adjustments seen on the
1557
+ SONET path and encoded onto sent CEP packets.""",
1558
+ }, # column
1559
+ "pwCepPerfCurrentOutPtrAdjustSecs" : {
1560
+ "nodetype" : "column",
1561
+ "moduleName" : "PW-CEP-STD-MIB",
1562
+ "oid" : "1.3.6.1.2.1.200.1.5.1.8",
1563
+ "status" : "current",
1564
+ "syntax" : {
1565
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1566
+ },
1567
+ "access" : "readonly",
1568
+ "units" : "seconds",
1569
+ "description" :
1570
+ """Number of seconds in which a positive or negative pointer
1571
+ adjustment was seen on the SONET path.""",
1572
+ }, # column
1573
+ "pwCepPerfCurrentAbsPtrAdjust" : {
1574
+ "nodetype" : "column",
1575
+ "moduleName" : "PW-CEP-STD-MIB",
1576
+ "oid" : "1.3.6.1.2.1.200.1.5.1.9",
1577
+ "status" : "current",
1578
+ "syntax" : {
1579
+ "type" : { "module" :"", "name" : "Integer32"},
1580
+ },
1581
+ "access" : "readonly",
1582
+ "description" :
1583
+ """Indicates the relative adjustment drift between
1584
+ inbound and outbound streams.
1585
+
1586
+ It is calculated as absolute value of:
1587
+ (InPosPtrAdjust - InNegPtrAdjust ) -
1588
+ (OutPosPtrAdjust - OutNegPtrAdjust)""",
1589
+ }, # column
1590
+ "pwCepPerfCurrentMissingPkts" : {
1591
+ "nodetype" : "column",
1592
+ "moduleName" : "PW-CEP-STD-MIB",
1593
+ "oid" : "1.3.6.1.2.1.200.1.5.1.10",
1594
+ "status" : "current",
1595
+ "syntax" : {
1596
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1597
+ },
1598
+ "access" : "readonly",
1599
+ "description" :
1600
+ """Number of missing packets (as detected via CEP header
1601
+ sequence number gaps).""",
1602
+ }, # column
1603
+ "pwCepPerfCurrentPktsOoseq" : {
1604
+ "nodetype" : "column",
1605
+ "moduleName" : "PW-CEP-STD-MIB",
1606
+ "oid" : "1.3.6.1.2.1.200.1.5.1.11",
1607
+ "status" : "current",
1608
+ "syntax" : {
1609
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1610
+ },
1611
+ "access" : "readonly",
1612
+ "description" :
1613
+ """Number of packets detected out of sequence (via CEP
1614
+ header sequence numbers) but successfully reordered.
1615
+ Note: Some implementations may not support this
1616
+ feature (see pwCepCfgPktReorder).""",
1617
+ }, # column
1618
+ "pwCepPerfCurrentPktsOoRngDropped" : {
1619
+ "nodetype" : "column",
1620
+ "moduleName" : "PW-CEP-STD-MIB",
1621
+ "oid" : "1.3.6.1.2.1.200.1.5.1.12",
1622
+ "status" : "current",
1623
+ "syntax" : {
1624
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1625
+ },
1626
+ "access" : "readonly",
1627
+ "description" :
1628
+ """Number of packets detected out of range (via CEP header
1629
+ sequence numbers) and could not be reordered or could not
1630
+ fit in the jitter buffer.""",
1631
+ }, # column
1632
+ "pwCepPerfCurrentJtrBfrUnderruns" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "PW-CEP-STD-MIB",
1635
+ "oid" : "1.3.6.1.2.1.200.1.5.1.13",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """Number of times a packet needed to be played out and the
1643
+ jitter buffer was empty.""",
1644
+ }, # column
1645
+ "pwCepPerfCurrentPktsMalformed" : {
1646
+ "nodetype" : "column",
1647
+ "moduleName" : "PW-CEP-STD-MIB",
1648
+ "oid" : "1.3.6.1.2.1.200.1.5.1.14",
1649
+ "status" : "current",
1650
+ "syntax" : {
1651
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1652
+ },
1653
+ "access" : "readonly",
1654
+ "description" :
1655
+ """Number of packets detected with unexpected size or bad
1656
+ headers stack.""",
1657
+ }, # column
1658
+ "pwCepPerfCurrentSummaryErrors" : {
1659
+ "nodetype" : "column",
1660
+ "moduleName" : "PW-CEP-STD-MIB",
1661
+ "oid" : "1.3.6.1.2.1.200.1.5.1.15",
1662
+ "status" : "current",
1663
+ "syntax" : {
1664
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1665
+ },
1666
+ "access" : "readonly",
1667
+ "description" :
1668
+ """A summary of all the packet-error types above (from
1669
+ missing packets to bad length packets).""",
1670
+ }, # column
1671
+ "pwCepPerfCurrentESs" : {
1672
+ "nodetype" : "column",
1673
+ "moduleName" : "PW-CEP-STD-MIB",
1674
+ "oid" : "1.3.6.1.2.1.200.1.5.1.16",
1675
+ "status" : "current",
1676
+ "syntax" : {
1677
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1678
+ },
1679
+ "access" : "readonly",
1680
+ "units" : "seconds",
1681
+ "description" :
1682
+ """The counter associated with the number of Errored
1683
+ Seconds encountered.""",
1684
+ }, # column
1685
+ "pwCepPerfCurrentSESs" : {
1686
+ "nodetype" : "column",
1687
+ "moduleName" : "PW-CEP-STD-MIB",
1688
+ "oid" : "1.3.6.1.2.1.200.1.5.1.17",
1689
+ "status" : "current",
1690
+ "syntax" : {
1691
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1692
+ },
1693
+ "access" : "readonly",
1694
+ "units" : "seconds",
1695
+ "description" :
1696
+ """The counter associated with the number of
1697
+ Severely Errored Seconds encountered.""",
1698
+ }, # column
1699
+ "pwCepPerfCurrentUASs" : {
1700
+ "nodetype" : "column",
1701
+ "moduleName" : "PW-CEP-STD-MIB",
1702
+ "oid" : "1.3.6.1.2.1.200.1.5.1.18",
1703
+ "status" : "current",
1704
+ "syntax" : {
1705
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1706
+ },
1707
+ "access" : "readonly",
1708
+ "units" : "seconds",
1709
+ "description" :
1710
+ """The counter associated with the number of
1711
+ Unavailable Seconds encountered.""",
1712
+ }, # column
1713
+ "pwCepPerfCurrentFC" : {
1714
+ "nodetype" : "column",
1715
+ "moduleName" : "PW-CEP-STD-MIB",
1716
+ "oid" : "1.3.6.1.2.1.200.1.5.1.19",
1717
+ "status" : "current",
1718
+ "syntax" : {
1719
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1720
+ },
1721
+ "access" : "readonly",
1722
+ "description" :
1723
+ """CEP Failure Counts (FC-CEP). The number of CEP failure
1724
+ events. A failure event begins when the LOPS failure
1725
+ is declared and ends when the failure is cleared. A
1726
+ failure event that begins in one period and ends in
1727
+ another period is counted only in the period in which
1728
+ it begins.""",
1729
+ }, # column
1730
+ "pwCepPerfIntervalTable" : {
1731
+ "nodetype" : "table",
1732
+ "moduleName" : "PW-CEP-STD-MIB",
1733
+ "oid" : "1.3.6.1.2.1.200.1.6",
1734
+ "status" : "current",
1735
+ "description" :
1736
+ """This table provides per-CEP PW performance information,
1737
+ much like the pwCepPerfCurrentTable above. However,
1738
+ these counts represent historical 15-minute intervals.
1739
+ Typically, this table will have a maximum of 96 entries
1740
+ for a 24-hour period but is not limited to this.
1741
+
1742
+ NOTE: Counter64 objects are used here; Counter32 is
1743
+ too small for OC-768 CEP PWs.""",
1744
+ }, # table
1745
+ "pwCepPerfIntervalEntry" : {
1746
+ "nodetype" : "row",
1747
+ "moduleName" : "PW-CEP-STD-MIB",
1748
+ "oid" : "1.3.6.1.2.1.200.1.6.1",
1749
+ "create" : "true",
1750
+ "status" : "current",
1751
+ "linkage" : [
1752
+ "pwIndex",
1753
+ "pwCepPerfIntervalNumber",
1754
+ ],
1755
+ "description" :
1756
+ """An entry in this table is created by the agent for
1757
+ every pwCepPerfCurrentEntry that is 15 minutes old.
1758
+ The contents of the Current entry are copied to the new
1759
+
1760
+
1761
+
1762
+
1763
+
1764
+ entry here. The Current entry then resets its counts
1765
+ to zero for the next current 15-minute interval.
1766
+ pwCepIndex is found in the pwCepCfg table.""",
1767
+ }, # row
1768
+ "pwCepPerfIntervalNumber" : {
1769
+ "nodetype" : "column",
1770
+ "moduleName" : "PW-CEP-STD-MIB",
1771
+ "oid" : "1.3.6.1.2.1.200.1.6.1.1",
1772
+ "status" : "current",
1773
+ "syntax" : {
1774
+ "type" : {
1775
+ "basetype" : "Integer32",
1776
+ "ranges" : [
1777
+ {
1778
+ "min" : "1",
1779
+ "max" : "96"
1780
+ },
1781
+ ],
1782
+ "range" : {
1783
+ "min" : "1",
1784
+ "max" : "96"
1785
+ },
1786
+ },
1787
+ },
1788
+ "access" : "noaccess",
1789
+ "description" :
1790
+ """A number (between 1 and 96 to cover a 24-hour
1791
+ period) that identifies the interval for which the set
1792
+ of statistics is available. The interval identified by 1
1793
+ is the most recently completed 15-minute interval, and
1794
+
1795
+
1796
+
1797
+ the interval identified by N is the interval immediately
1798
+ preceding the one identified by N-1. The minimum range of
1799
+ N is 1 through 4. The default range is 1 through 32. The
1800
+ maximum range of N is 1 through 96.""",
1801
+ }, # column
1802
+ "pwCepPerfIntervalValidData" : {
1803
+ "nodetype" : "column",
1804
+ "moduleName" : "PW-CEP-STD-MIB",
1805
+ "oid" : "1.3.6.1.2.1.200.1.6.1.2",
1806
+ "status" : "current",
1807
+ "syntax" : {
1808
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1809
+ },
1810
+ "access" : "readonly",
1811
+ "description" :
1812
+ """This variable indicates if the data for this interval
1813
+ is valid.""",
1814
+ }, # column
1815
+ "pwCepPerfIntervalReset" : {
1816
+ "nodetype" : "column",
1817
+ "moduleName" : "PW-CEP-STD-MIB",
1818
+ "oid" : "1.3.6.1.2.1.200.1.6.1.3",
1819
+ "status" : "current",
1820
+ "syntax" : {
1821
+ "type" : {
1822
+ "basetype" : "Enumeration",
1823
+ "reset" : {
1824
+ "nodetype" : "namednumber",
1825
+ "number" : "1"
1826
+ },
1827
+ "normal" : {
1828
+ "nodetype" : "namednumber",
1829
+ "number" : "2"
1830
+ },
1831
+ },
1832
+ },
1833
+ "access" : "readwrite",
1834
+ "description" :
1835
+ """Used in cases where the user knows that the errors
1836
+ within this interval should not be counted. Writing
1837
+ 'reset' sets all error counts to zero. The value of
1838
+ 0 is not used here due to issues with
1839
+ implementations.""",
1840
+ }, # column
1841
+ "pwCepPerfIntervalTimeElapsed" : {
1842
+ "nodetype" : "column",
1843
+ "moduleName" : "PW-CEP-STD-MIB",
1844
+ "oid" : "1.3.6.1.2.1.200.1.6.1.4",
1845
+ "status" : "current",
1846
+ "syntax" : {
1847
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1848
+ },
1849
+ "access" : "readonly",
1850
+ "units" : "seconds",
1851
+ "description" :
1852
+ """The duration of a particular interval in seconds.
1853
+ Adjustments in the system's time-of-day clock may
1854
+ cause the interval to be greater or less than the
1855
+ normal value. Therefore, this actual interval value
1856
+ is provided.""",
1857
+ }, # column
1858
+ "pwCepPerfIntervalDbaInPacketsHC" : {
1859
+ "nodetype" : "column",
1860
+ "moduleName" : "PW-CEP-STD-MIB",
1861
+ "oid" : "1.3.6.1.2.1.200.1.6.1.5",
1862
+ "status" : "current",
1863
+ "syntax" : {
1864
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1865
+ },
1866
+ "access" : "readonly",
1867
+ "description" :
1868
+ """Number of DBA packets received.""",
1869
+ }, # column
1870
+ "pwCepPerfIntervalDbaOutPacketsHC" : {
1871
+ "nodetype" : "column",
1872
+ "moduleName" : "PW-CEP-STD-MIB",
1873
+ "oid" : "1.3.6.1.2.1.200.1.6.1.6",
1874
+ "status" : "current",
1875
+ "syntax" : {
1876
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1877
+ },
1878
+ "access" : "readonly",
1879
+ "description" :
1880
+ """Number of DBA packets sent.""",
1881
+ }, # column
1882
+ "pwCepPerfIntervalInNegPtrAdjust" : {
1883
+ "nodetype" : "column",
1884
+ "moduleName" : "PW-CEP-STD-MIB",
1885
+ "oid" : "1.3.6.1.2.1.200.1.6.1.7",
1886
+ "status" : "current",
1887
+ "syntax" : {
1888
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1889
+ },
1890
+ "access" : "readonly",
1891
+ "description" :
1892
+ """Number of negative pointer adjustments sent on the
1893
+ SONET path based on CEP pointer adjustments received.""",
1894
+ }, # column
1895
+ "pwCepPerfIntervalInPosPtrAdjust" : {
1896
+ "nodetype" : "column",
1897
+ "moduleName" : "PW-CEP-STD-MIB",
1898
+ "oid" : "1.3.6.1.2.1.200.1.6.1.8",
1899
+ "status" : "current",
1900
+ "syntax" : {
1901
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1902
+ },
1903
+ "access" : "readonly",
1904
+ "description" :
1905
+ """Number of positive pointer adjustments sent on the
1906
+ SONET path based on CEP pointer adjustments received.""",
1907
+ }, # column
1908
+ "pwCepPerfIntervalInPtrAdjustSecs" : {
1909
+ "nodetype" : "column",
1910
+ "moduleName" : "PW-CEP-STD-MIB",
1911
+ "oid" : "1.3.6.1.2.1.200.1.6.1.9",
1912
+ "status" : "current",
1913
+ "syntax" : {
1914
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1915
+ },
1916
+ "access" : "readonly",
1917
+ "units" : "seconds",
1918
+ "description" :
1919
+ """Number of seconds in which a positive or negative
1920
+ pointer adjustment was sent on the SONET path.""",
1921
+ }, # column
1922
+ "pwCepPerfIntervalOutNegPtrAdjust" : {
1923
+ "nodetype" : "column",
1924
+ "moduleName" : "PW-CEP-STD-MIB",
1925
+ "oid" : "1.3.6.1.2.1.200.1.6.1.10",
1926
+ "status" : "current",
1927
+ "syntax" : {
1928
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1929
+ },
1930
+ "access" : "readonly",
1931
+ "description" :
1932
+ """Number of negative pointer adjustments seen on the
1933
+ SONET path and encoded onto sent CEP packets.""",
1934
+ }, # column
1935
+ "pwCepPerfIntervalOutPosPtrAdjust" : {
1936
+ "nodetype" : "column",
1937
+ "moduleName" : "PW-CEP-STD-MIB",
1938
+ "oid" : "1.3.6.1.2.1.200.1.6.1.11",
1939
+ "status" : "current",
1940
+ "syntax" : {
1941
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1942
+ },
1943
+ "access" : "readonly",
1944
+ "description" :
1945
+ """Number of positive pointer adjustments seen on the
1946
+ SONET path and encoded onto sent CEP packets.""",
1947
+ }, # column
1948
+ "pwCepPerfIntervalOutPtrAdjustSecs" : {
1949
+ "nodetype" : "column",
1950
+ "moduleName" : "PW-CEP-STD-MIB",
1951
+ "oid" : "1.3.6.1.2.1.200.1.6.1.12",
1952
+ "status" : "current",
1953
+ "syntax" : {
1954
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1955
+ },
1956
+ "access" : "readonly",
1957
+ "units" : "seconds",
1958
+ "description" :
1959
+ """Number of seconds in which a positive or negative
1960
+ pointer adjustment was seen on the SONET path.""",
1961
+ }, # column
1962
+ "pwCepPerfIntervalAbsPtrAdjust" : {
1963
+ "nodetype" : "column",
1964
+ "moduleName" : "PW-CEP-STD-MIB",
1965
+ "oid" : "1.3.6.1.2.1.200.1.6.1.13",
1966
+ "status" : "current",
1967
+ "syntax" : {
1968
+ "type" : { "module" :"", "name" : "Integer32"},
1969
+ },
1970
+ "access" : "readonly",
1971
+ "description" :
1972
+ """The relative adjustment drift between inbound
1973
+ and outbound streams.
1974
+
1975
+ It is calculated as absolute value of:
1976
+ (InPosPtrAdjust - InNegPtrAdjust) -
1977
+ (OutPosPtrAdjust - OutNegPtrAdjust)""",
1978
+ }, # column
1979
+ "pwCepPerfIntervalMissingPkts" : {
1980
+ "nodetype" : "column",
1981
+ "moduleName" : "PW-CEP-STD-MIB",
1982
+ "oid" : "1.3.6.1.2.1.200.1.6.1.14",
1983
+ "status" : "current",
1984
+ "syntax" : {
1985
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1986
+ },
1987
+ "access" : "readonly",
1988
+ "description" :
1989
+ """Number of missing packets (as detected via CEP header
1990
+ sequence number gaps).""",
1991
+ }, # column
1992
+ "pwCepPerfIntervalPktsOoseq" : {
1993
+ "nodetype" : "column",
1994
+ "moduleName" : "PW-CEP-STD-MIB",
1995
+ "oid" : "1.3.6.1.2.1.200.1.6.1.15",
1996
+ "status" : "current",
1997
+ "syntax" : {
1998
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1999
+ },
2000
+ "access" : "readonly",
2001
+ "description" :
2002
+ """Number of packets detected out of sequence (via CEP
2003
+ header sequence numbers) but successfully reordered.
2004
+ Note: Some implementations mat not support this
2005
+ feature (see pwCepCfgPktReorder).""",
2006
+ }, # column
2007
+ "pwCepPerfIntervalPktsOoRngDropped" : {
2008
+ "nodetype" : "column",
2009
+ "moduleName" : "PW-CEP-STD-MIB",
2010
+ "oid" : "1.3.6.1.2.1.200.1.6.1.16",
2011
+ "status" : "current",
2012
+ "syntax" : {
2013
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2014
+ },
2015
+ "access" : "readonly",
2016
+ "description" :
2017
+ """Number of packets detected out of range (via CEP
2018
+ header sequence numbers) and could not be reordered
2019
+ or could not fit in the jitter buffer.""",
2020
+ }, # column
2021
+ "pwCepPerfIntervalJtrBfrUnderruns" : {
2022
+ "nodetype" : "column",
2023
+ "moduleName" : "PW-CEP-STD-MIB",
2024
+ "oid" : "1.3.6.1.2.1.200.1.6.1.17",
2025
+ "status" : "current",
2026
+ "syntax" : {
2027
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2028
+ },
2029
+ "access" : "readonly",
2030
+ "description" :
2031
+ """Number of times a packet needed to be played
2032
+ out and the jitter buffer was empty.""",
2033
+ }, # column
2034
+ "pwCepPerfIntervalPktsMalformed" : {
2035
+ "nodetype" : "column",
2036
+ "moduleName" : "PW-CEP-STD-MIB",
2037
+ "oid" : "1.3.6.1.2.1.200.1.6.1.18",
2038
+ "status" : "current",
2039
+ "syntax" : {
2040
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2041
+ },
2042
+ "access" : "readonly",
2043
+ "description" :
2044
+ """Number of packets detected with unexpected size or bad
2045
+ headers stack.""",
2046
+ }, # column
2047
+ "pwCepPerfIntervalSummaryErrors" : {
2048
+ "nodetype" : "column",
2049
+ "moduleName" : "PW-CEP-STD-MIB",
2050
+ "oid" : "1.3.6.1.2.1.200.1.6.1.19",
2051
+ "status" : "current",
2052
+ "syntax" : {
2053
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2054
+ },
2055
+ "access" : "readonly",
2056
+ "description" :
2057
+ """A summary of all the packet-error types above (from
2058
+ missing packets to bad length packets).""",
2059
+ }, # column
2060
+ "pwCepPerfIntervalESs" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "PW-CEP-STD-MIB",
2063
+ "oid" : "1.3.6.1.2.1.200.1.6.1.20",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2067
+ },
2068
+ "access" : "readonly",
2069
+ "units" : "seconds",
2070
+ "description" :
2071
+ """The counter associated with the number of Errored
2072
+ Seconds encountered.""",
2073
+ }, # column
2074
+ "pwCepPerfIntervalSESs" : {
2075
+ "nodetype" : "column",
2076
+ "moduleName" : "PW-CEP-STD-MIB",
2077
+ "oid" : "1.3.6.1.2.1.200.1.6.1.21",
2078
+ "status" : "current",
2079
+ "syntax" : {
2080
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2081
+ },
2082
+ "access" : "readonly",
2083
+ "units" : "seconds",
2084
+ "description" :
2085
+ """The counter associated with the number of
2086
+ Severely Errored Seconds encountered.""",
2087
+ }, # column
2088
+ "pwCepPerfIntervalUASs" : {
2089
+ "nodetype" : "column",
2090
+ "moduleName" : "PW-CEP-STD-MIB",
2091
+ "oid" : "1.3.6.1.2.1.200.1.6.1.22",
2092
+ "status" : "current",
2093
+ "syntax" : {
2094
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2095
+ },
2096
+ "access" : "readonly",
2097
+ "units" : "seconds",
2098
+ "description" :
2099
+ """The counter associated with the number of
2100
+ Unavailable Seconds encountered.""",
2101
+ }, # column
2102
+ "pwCepPerfIntervalFC" : {
2103
+ "nodetype" : "column",
2104
+ "moduleName" : "PW-CEP-STD-MIB",
2105
+ "oid" : "1.3.6.1.2.1.200.1.6.1.23",
2106
+ "status" : "current",
2107
+ "syntax" : {
2108
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
2109
+ },
2110
+ "access" : "readonly",
2111
+ "description" :
2112
+ """CEP Failure Counts (FC-CEP). The number of CEP failure
2113
+ events. A failure event begins when the LOPS failure
2114
+ is declared and ends when the failure is cleared. A
2115
+ failure event that begins in one period and ends in
2116
+ another period is counted only in the period in which
2117
+ it begins.""",
2118
+ }, # column
2119
+ "pwCepPerf1DayIntervalTable" : {
2120
+ "nodetype" : "table",
2121
+ "moduleName" : "PW-CEP-STD-MIB",
2122
+ "oid" : "1.3.6.1.2.1.200.1.7",
2123
+ "status" : "current",
2124
+ "description" :
2125
+ """This table provides per CEP PW performance information,
2126
+ the current day's measurement, and the previous day's
2127
+ interval.
2128
+
2129
+ In the extreme case where one of the error counters has
2130
+ overflowed during the one-day interval, the error counter
2131
+ MUST NOT wrap around and MUST return the maximum value.""",
2132
+ }, # table
2133
+ "pwCepPerf1DayIntervalEntry" : {
2134
+ "nodetype" : "row",
2135
+ "moduleName" : "PW-CEP-STD-MIB",
2136
+ "oid" : "1.3.6.1.2.1.200.1.7.1",
2137
+ "status" : "current",
2138
+ "linkage" : [
2139
+ "pwIndex",
2140
+ "pwCepPerf1DayIntervalNumber",
2141
+ ],
2142
+ "description" :
2143
+ """An entry is created in this table by the agent for
2144
+ every entry in the pwCepTable and for each day
2145
+ interval up to the number of supported historical
2146
+ intervals.""",
2147
+ }, # row
2148
+ "pwCepPerf1DayIntervalNumber" : {
2149
+ "nodetype" : "column",
2150
+ "moduleName" : "PW-CEP-STD-MIB",
2151
+ "oid" : "1.3.6.1.2.1.200.1.7.1.1",
2152
+ "status" : "current",
2153
+ "syntax" : {
2154
+ "type" : {
2155
+ "basetype" : "Unsigned32",
2156
+ "ranges" : [
2157
+ {
2158
+ "min" : "1",
2159
+ "max" : "31"
2160
+ },
2161
+ ],
2162
+ "range" : {
2163
+ "min" : "1",
2164
+ "max" : "31"
2165
+ },
2166
+ },
2167
+ },
2168
+ "access" : "noaccess",
2169
+ "description" :
2170
+ """History Data Interval number. Interval 1 is the current day
2171
+ measurement period; interval 2 is the most recent previous
2172
+ day; and interval 30 is 31 days ago.""",
2173
+ }, # column
2174
+ "pwCepPerf1DayIntervalValidData" : {
2175
+ "nodetype" : "column",
2176
+ "moduleName" : "PW-CEP-STD-MIB",
2177
+ "oid" : "1.3.6.1.2.1.200.1.7.1.2",
2178
+ "status" : "current",
2179
+ "syntax" : {
2180
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2181
+ },
2182
+ "access" : "readonly",
2183
+ "description" :
2184
+ """This variable indicates if the data for this interval
2185
+ is valid.""",
2186
+ }, # column
2187
+ "pwCepPerf1DayIntervalMoniSecs" : {
2188
+ "nodetype" : "column",
2189
+ "moduleName" : "PW-CEP-STD-MIB",
2190
+ "oid" : "1.3.6.1.2.1.200.1.7.1.3",
2191
+ "status" : "current",
2192
+ "syntax" : {
2193
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
2194
+ },
2195
+ "access" : "readonly",
2196
+ "units" : "seconds",
2197
+ "description" :
2198
+ """The amount of time in the 1-day interval over which the
2199
+ performance monitoring information is actually counted.
2200
+ This value will be the same as the interval duration except
2201
+ in situations where performance monitoring data could not
2202
+ be collected for any reason or the agent clock was
2203
+ adjusted.""",
2204
+ }, # column
2205
+ "pwCepPerf1DayIntervalDbaInPacketsHC" : {
2206
+ "nodetype" : "column",
2207
+ "moduleName" : "PW-CEP-STD-MIB",
2208
+ "oid" : "1.3.6.1.2.1.200.1.7.1.4",
2209
+ "status" : "current",
2210
+ "syntax" : {
2211
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2212
+ },
2213
+ "access" : "readonly",
2214
+ "description" :
2215
+ """Number of DBA packets received.""",
2216
+ }, # column
2217
+ "pwCepPerf1DayIntervalDbaOutPacketsHC" : {
2218
+ "nodetype" : "column",
2219
+ "moduleName" : "PW-CEP-STD-MIB",
2220
+ "oid" : "1.3.6.1.2.1.200.1.7.1.5",
2221
+ "status" : "current",
2222
+ "syntax" : {
2223
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2224
+ },
2225
+ "access" : "readonly",
2226
+ "description" :
2227
+ """Number of DBA packets sent.""",
2228
+ }, # column
2229
+ "pwCepPerf1DayIntervalInNegPtrAdjust" : {
2230
+ "nodetype" : "column",
2231
+ "moduleName" : "PW-CEP-STD-MIB",
2232
+ "oid" : "1.3.6.1.2.1.200.1.7.1.6",
2233
+ "status" : "current",
2234
+ "syntax" : {
2235
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2236
+ },
2237
+ "access" : "readonly",
2238
+ "description" :
2239
+ """Number of negative pointer adjustments sent on the
2240
+ SONET path based on CEP pointer adjustments received.""",
2241
+ }, # column
2242
+ "pwCepPerf1DayIntervalInPosPtrAdjust" : {
2243
+ "nodetype" : "column",
2244
+ "moduleName" : "PW-CEP-STD-MIB",
2245
+ "oid" : "1.3.6.1.2.1.200.1.7.1.7",
2246
+ "status" : "current",
2247
+ "syntax" : {
2248
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2249
+ },
2250
+ "access" : "readonly",
2251
+ "description" :
2252
+ """Number of positive pointer adjustments sent on the
2253
+ SONET path based on CEP pointer adjustments received.""",
2254
+ }, # column
2255
+ "pwCepPerf1DayIntervalInPtrAdjustSecs" : {
2256
+ "nodetype" : "column",
2257
+ "moduleName" : "PW-CEP-STD-MIB",
2258
+ "oid" : "1.3.6.1.2.1.200.1.7.1.8",
2259
+ "status" : "current",
2260
+ "syntax" : {
2261
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2262
+ },
2263
+ "access" : "readonly",
2264
+ "units" : "seconds",
2265
+ "description" :
2266
+ """Number of seconds in which a positive or negative pointer
2267
+ adjustment was sent on the SONET path.""",
2268
+ }, # column
2269
+ "pwCepPerf1DayIntervalOutNegPtrAdjust" : {
2270
+ "nodetype" : "column",
2271
+ "moduleName" : "PW-CEP-STD-MIB",
2272
+ "oid" : "1.3.6.1.2.1.200.1.7.1.9",
2273
+ "status" : "current",
2274
+ "syntax" : {
2275
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2276
+ },
2277
+ "access" : "readonly",
2278
+ "description" :
2279
+ """Number of negative pointer adjustments seen on the
2280
+ SONET path and encoded onto sent CEP packets.""",
2281
+ }, # column
2282
+ "pwCepPerf1DayIntervalOutPosPtrAdjust" : {
2283
+ "nodetype" : "column",
2284
+ "moduleName" : "PW-CEP-STD-MIB",
2285
+ "oid" : "1.3.6.1.2.1.200.1.7.1.10",
2286
+ "status" : "current",
2287
+ "syntax" : {
2288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2289
+ },
2290
+ "access" : "readonly",
2291
+ "description" :
2292
+ """Number of positive pointer adjustments seen on the
2293
+ SONET path and encoded onto sent CEP packets.""",
2294
+ }, # column
2295
+ "pwCepPerf1DayIntervalOutPtrAdjustSecs" : {
2296
+ "nodetype" : "column",
2297
+ "moduleName" : "PW-CEP-STD-MIB",
2298
+ "oid" : "1.3.6.1.2.1.200.1.7.1.11",
2299
+ "status" : "current",
2300
+ "syntax" : {
2301
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2302
+ },
2303
+ "access" : "readonly",
2304
+ "units" : "seconds",
2305
+ "description" :
2306
+ """Number of seconds in which a positive or negative pointer
2307
+ adjustment was seen on the SONET path.""",
2308
+ }, # column
2309
+ "pwCepPerf1DayIntervalAbsPtrAdjust" : {
2310
+ "nodetype" : "column",
2311
+ "moduleName" : "PW-CEP-STD-MIB",
2312
+ "oid" : "1.3.6.1.2.1.200.1.7.1.12",
2313
+ "status" : "current",
2314
+ "syntax" : {
2315
+ "type" : { "module" :"", "name" : "Integer32"},
2316
+ },
2317
+ "access" : "readonly",
2318
+ "description" :
2319
+ """The relative adjustment of drift between inbound
2320
+ and outbound streams. It is calculated as absolute
2321
+ value of:
2322
+ (InPosPtrAdjust - InNegPtrAdjust) -
2323
+ (OutPosPtrAdjust - OutNegPtrAdjust)""",
2324
+ }, # column
2325
+ "pwCepPerf1DayIntervalMissingPkts" : {
2326
+ "nodetype" : "column",
2327
+ "moduleName" : "PW-CEP-STD-MIB",
2328
+ "oid" : "1.3.6.1.2.1.200.1.7.1.13",
2329
+ "status" : "current",
2330
+ "syntax" : {
2331
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2332
+ },
2333
+ "access" : "readonly",
2334
+ "description" :
2335
+ """Number of missing packets (as detected via CEP header
2336
+ sequence number gaps).""",
2337
+ }, # column
2338
+ "pwCepPerf1DayIntervalPktsOoseq" : {
2339
+ "nodetype" : "column",
2340
+ "moduleName" : "PW-CEP-STD-MIB",
2341
+ "oid" : "1.3.6.1.2.1.200.1.7.1.14",
2342
+ "status" : "current",
2343
+ "syntax" : {
2344
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2345
+ },
2346
+ "access" : "readonly",
2347
+ "description" :
2348
+ """Number of packets detected out of sequence (via CEP
2349
+ header sequence numbers) but successfully reordered.
2350
+ Note: Some implementations may not support this feature
2351
+ (see pwCepCfgPktReorder).""",
2352
+ }, # column
2353
+ "pwCepPerf1DayIntervalPktsOoRngDropped" : {
2354
+ "nodetype" : "column",
2355
+ "moduleName" : "PW-CEP-STD-MIB",
2356
+ "oid" : "1.3.6.1.2.1.200.1.7.1.15",
2357
+ "status" : "current",
2358
+ "syntax" : {
2359
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2360
+ },
2361
+ "access" : "readonly",
2362
+ "description" :
2363
+ """Number of packets detected out of range (via CEP header
2364
+ sequence numbers) and could not be reordered or could not
2365
+ fit in the jitter buffer.""",
2366
+ }, # column
2367
+ "pwCepPerf1DayIntervalJtrBfrUnderruns" : {
2368
+ "nodetype" : "column",
2369
+ "moduleName" : "PW-CEP-STD-MIB",
2370
+ "oid" : "1.3.6.1.2.1.200.1.7.1.16",
2371
+ "status" : "current",
2372
+ "syntax" : {
2373
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2374
+ },
2375
+ "access" : "readonly",
2376
+ "description" :
2377
+ """Number of times a packet needed to be played out, and the
2378
+ jitter buffer was empty.""",
2379
+ }, # column
2380
+ "pwCepPerf1DayIntervalPktsMalformed" : {
2381
+ "nodetype" : "column",
2382
+ "moduleName" : "PW-CEP-STD-MIB",
2383
+ "oid" : "1.3.6.1.2.1.200.1.7.1.17",
2384
+ "status" : "current",
2385
+ "syntax" : {
2386
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2387
+ },
2388
+ "access" : "readonly",
2389
+ "description" :
2390
+ """Number of packets detected with unexpected size or bad
2391
+ headers stack.""",
2392
+ }, # column
2393
+ "pwCepPerf1DayIntervalSummaryErrors" : {
2394
+ "nodetype" : "column",
2395
+ "moduleName" : "PW-CEP-STD-MIB",
2396
+ "oid" : "1.3.6.1.2.1.200.1.7.1.18",
2397
+ "status" : "current",
2398
+ "syntax" : {
2399
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2400
+ },
2401
+ "access" : "readonly",
2402
+ "description" :
2403
+ """A summary of all the packet-error types above (from
2404
+ missing packets to bad length packets).""",
2405
+ }, # column
2406
+ "pwCepPerf1DayIntervalESs" : {
2407
+ "nodetype" : "column",
2408
+ "moduleName" : "PW-CEP-STD-MIB",
2409
+ "oid" : "1.3.6.1.2.1.200.1.7.1.19",
2410
+ "status" : "current",
2411
+ "syntax" : {
2412
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2413
+ },
2414
+ "access" : "readonly",
2415
+ "units" : "seconds",
2416
+ "description" :
2417
+ """The counter associated with the number of Errored
2418
+ Seconds encountered.""",
2419
+ }, # column
2420
+ "pwCepPerf1DayIntervalSESs" : {
2421
+ "nodetype" : "column",
2422
+ "moduleName" : "PW-CEP-STD-MIB",
2423
+ "oid" : "1.3.6.1.2.1.200.1.7.1.20",
2424
+ "status" : "current",
2425
+ "syntax" : {
2426
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2427
+ },
2428
+ "access" : "readonly",
2429
+ "units" : "seconds",
2430
+ "description" :
2431
+ """The counter associated with the number of Severely
2432
+ Errored Seconds. See pwCepCfgMissingPktsToSes.""",
2433
+ }, # column
2434
+ "pwCepPerf1DayIntervalUASs" : {
2435
+ "nodetype" : "column",
2436
+ "moduleName" : "PW-CEP-STD-MIB",
2437
+ "oid" : "1.3.6.1.2.1.200.1.7.1.21",
2438
+ "status" : "current",
2439
+ "syntax" : {
2440
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2441
+ },
2442
+ "access" : "readonly",
2443
+ "units" : "seconds",
2444
+ "description" :
2445
+ """The counter associated with the number of
2446
+ unavailable seconds. See pwCepCfgSesToUAS.
2447
+
2448
+ NOTE: When first entering the UAS state, the number
2449
+ of SesToUas is added to this object; then, as each
2450
+ additional UAS occurs, this object increments by one.
2451
+
2452
+ NOTE: Similar to [RFC3592], if the agent chooses to update
2453
+ the various performance statistics in real time, it must
2454
+ be prepared to retroactively reduce the ES and SES counts
2455
+ (by the value of pwCepCfgSesToUas) and increase the UAS
2456
+ count (by that same value) when it determines that UAS
2457
+ state has been entered.""",
2458
+ }, # column
2459
+ "pwCepPerf1DayIntervalFC" : {
2460
+ "nodetype" : "column",
2461
+ "moduleName" : "PW-CEP-STD-MIB",
2462
+ "oid" : "1.3.6.1.2.1.200.1.7.1.22",
2463
+ "status" : "current",
2464
+ "syntax" : {
2465
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2466
+ },
2467
+ "access" : "readonly",
2468
+ "description" :
2469
+ """CEP Failure Counts (FC-CEP). The number of CEP failure
2470
+ events. A failure event begins when the LOPS failure
2471
+ is declared and ends when the failure is cleared.""",
2472
+ }, # column
2473
+ "pwCepConformance" : {
2474
+ "nodetype" : "node",
2475
+ "moduleName" : "PW-CEP-STD-MIB",
2476
+ "oid" : "1.3.6.1.2.1.200.2",
2477
+ }, # node
2478
+ "pwCepGroups" : {
2479
+ "nodetype" : "node",
2480
+ "moduleName" : "PW-CEP-STD-MIB",
2481
+ "oid" : "1.3.6.1.2.1.200.2.1",
2482
+ }, # node
2483
+ "pwCepCompliances" : {
2484
+ "nodetype" : "node",
2485
+ "moduleName" : "PW-CEP-STD-MIB",
2486
+ "oid" : "1.3.6.1.2.1.200.2.2",
2487
+ }, # node
2488
+ }, # nodes
2489
+
2490
+ "groups" : {
2491
+ "pwCepGroup" : {
2492
+ "nodetype" : "group",
2493
+ "moduleName" : "PW-CEP-STD-MIB",
2494
+ "oid" : "1.3.6.1.2.1.200.2.1.1",
2495
+ "status" : "current",
2496
+ "members" : {
2497
+ "pwCepType" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "PW-CEP-STD-MIB"
2500
+ },
2501
+ "pwCepSonetIfIndex" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "PW-CEP-STD-MIB"
2504
+ },
2505
+ "pwCepSonetConfigErrorOrStatus" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "PW-CEP-STD-MIB"
2508
+ },
2509
+ "pwCepCfgIndex" : {
2510
+ "nodetype" : "member",
2511
+ "module" : "PW-CEP-STD-MIB"
2512
+ },
2513
+ "pwCepTimeElapsed" : {
2514
+ "nodetype" : "member",
2515
+ "module" : "PW-CEP-STD-MIB"
2516
+ },
2517
+ "pwCepValidIntervals" : {
2518
+ "nodetype" : "member",
2519
+ "module" : "PW-CEP-STD-MIB"
2520
+ },
2521
+ "pwCepIndications" : {
2522
+ "nodetype" : "member",
2523
+ "module" : "PW-CEP-STD-MIB"
2524
+ },
2525
+ "pwCepLastEsTimeStamp" : {
2526
+ "nodetype" : "member",
2527
+ "module" : "PW-CEP-STD-MIB"
2528
+ },
2529
+ }, # members
2530
+ "description" :
2531
+ """Collection of objects for basic CEP PW config and
2532
+ status.""",
2533
+ }, # group
2534
+ "pwCepSignalingGroup" : {
2535
+ "nodetype" : "group",
2536
+ "moduleName" : "PW-CEP-STD-MIB",
2537
+ "oid" : "1.3.6.1.2.1.200.2.1.2",
2538
+ "status" : "current",
2539
+ "members" : {
2540
+ "pwCepPeerCepOption" : {
2541
+ "nodetype" : "member",
2542
+ "module" : "PW-CEP-STD-MIB"
2543
+ },
2544
+ }, # members
2545
+ "description" :
2546
+ """Collection of objects required if the network element
2547
+ support CEP connections signaling.""",
2548
+ }, # group
2549
+ "pwCepCfgGroup" : {
2550
+ "nodetype" : "group",
2551
+ "moduleName" : "PW-CEP-STD-MIB",
2552
+ "oid" : "1.3.6.1.2.1.200.2.1.3",
2553
+ "status" : "current",
2554
+ "members" : {
2555
+ "pwCepCfgIndexNext" : {
2556
+ "nodetype" : "member",
2557
+ "module" : "PW-CEP-STD-MIB"
2558
+ },
2559
+ "pwCepSonetPayloadLength" : {
2560
+ "nodetype" : "member",
2561
+ "module" : "PW-CEP-STD-MIB"
2562
+ },
2563
+ "pwCepCfgMinPktLength" : {
2564
+ "nodetype" : "member",
2565
+ "module" : "PW-CEP-STD-MIB"
2566
+ },
2567
+ "pwCepCfgPktReorder" : {
2568
+ "nodetype" : "member",
2569
+ "module" : "PW-CEP-STD-MIB"
2570
+ },
2571
+ "pwCepCfgEnableDBA" : {
2572
+ "nodetype" : "member",
2573
+ "module" : "PW-CEP-STD-MIB"
2574
+ },
2575
+ "pwCepCfgRtpHdrSuppress" : {
2576
+ "nodetype" : "member",
2577
+ "module" : "PW-CEP-STD-MIB"
2578
+ },
2579
+ "pwCepCfgJtrBfrDepth" : {
2580
+ "nodetype" : "member",
2581
+ "module" : "PW-CEP-STD-MIB"
2582
+ },
2583
+ "pwCepCfgConsecPktsInsync" : {
2584
+ "nodetype" : "member",
2585
+ "module" : "PW-CEP-STD-MIB"
2586
+ },
2587
+ "pwCepCfgConsecMissingOutSync" : {
2588
+ "nodetype" : "member",
2589
+ "module" : "PW-CEP-STD-MIB"
2590
+ },
2591
+ "pwCepCfgPktErrorPlayOutValue" : {
2592
+ "nodetype" : "member",
2593
+ "module" : "PW-CEP-STD-MIB"
2594
+ },
2595
+ "pwCepCfgMissingPktsToSes" : {
2596
+ "nodetype" : "member",
2597
+ "module" : "PW-CEP-STD-MIB"
2598
+ },
2599
+ "pwCepCfgSesToUas" : {
2600
+ "nodetype" : "member",
2601
+ "module" : "PW-CEP-STD-MIB"
2602
+ },
2603
+ "pwCepCfgSecsToExitUas" : {
2604
+ "nodetype" : "member",
2605
+ "module" : "PW-CEP-STD-MIB"
2606
+ },
2607
+ "pwCepCfgName" : {
2608
+ "nodetype" : "member",
2609
+ "module" : "PW-CEP-STD-MIB"
2610
+ },
2611
+ "pwCepCfgRowStatus" : {
2612
+ "nodetype" : "member",
2613
+ "module" : "PW-CEP-STD-MIB"
2614
+ },
2615
+ "pwCepCfgStorageType" : {
2616
+ "nodetype" : "member",
2617
+ "module" : "PW-CEP-STD-MIB"
2618
+ },
2619
+ }, # members
2620
+ "description" :
2621
+ """Collection of detailed objects needed to
2622
+ configure CEP PWs.""",
2623
+ }, # group
2624
+ "pwCepPerfCurrentGroup" : {
2625
+ "nodetype" : "group",
2626
+ "moduleName" : "PW-CEP-STD-MIB",
2627
+ "oid" : "1.3.6.1.2.1.200.2.1.4",
2628
+ "status" : "current",
2629
+ "members" : {
2630
+ "pwCepPerfCurrentDbaInPacketsHC" : {
2631
+ "nodetype" : "member",
2632
+ "module" : "PW-CEP-STD-MIB"
2633
+ },
2634
+ "pwCepPerfCurrentDbaOutPacketsHC" : {
2635
+ "nodetype" : "member",
2636
+ "module" : "PW-CEP-STD-MIB"
2637
+ },
2638
+ "pwCepPerfCurrentInNegPtrAdjust" : {
2639
+ "nodetype" : "member",
2640
+ "module" : "PW-CEP-STD-MIB"
2641
+ },
2642
+ "pwCepPerfCurrentInPosPtrAdjust" : {
2643
+ "nodetype" : "member",
2644
+ "module" : "PW-CEP-STD-MIB"
2645
+ },
2646
+ "pwCepPerfCurrentInPtrAdjustSecs" : {
2647
+ "nodetype" : "member",
2648
+ "module" : "PW-CEP-STD-MIB"
2649
+ },
2650
+ "pwCepPerfCurrentOutNegPtrAdjust" : {
2651
+ "nodetype" : "member",
2652
+ "module" : "PW-CEP-STD-MIB"
2653
+ },
2654
+ "pwCepPerfCurrentOutPosPtrAdjust" : {
2655
+ "nodetype" : "member",
2656
+ "module" : "PW-CEP-STD-MIB"
2657
+ },
2658
+ "pwCepPerfCurrentOutPtrAdjustSecs" : {
2659
+ "nodetype" : "member",
2660
+ "module" : "PW-CEP-STD-MIB"
2661
+ },
2662
+ "pwCepPerfCurrentAbsPtrAdjust" : {
2663
+ "nodetype" : "member",
2664
+ "module" : "PW-CEP-STD-MIB"
2665
+ },
2666
+ "pwCepPerfCurrentMissingPkts" : {
2667
+ "nodetype" : "member",
2668
+ "module" : "PW-CEP-STD-MIB"
2669
+ },
2670
+ "pwCepPerfCurrentPktsOoseq" : {
2671
+ "nodetype" : "member",
2672
+ "module" : "PW-CEP-STD-MIB"
2673
+ },
2674
+ "pwCepPerfCurrentPktsOoRngDropped" : {
2675
+ "nodetype" : "member",
2676
+ "module" : "PW-CEP-STD-MIB"
2677
+ },
2678
+ "pwCepPerfCurrentJtrBfrUnderruns" : {
2679
+ "nodetype" : "member",
2680
+ "module" : "PW-CEP-STD-MIB"
2681
+ },
2682
+ "pwCepPerfCurrentPktsMalformed" : {
2683
+ "nodetype" : "member",
2684
+ "module" : "PW-CEP-STD-MIB"
2685
+ },
2686
+ "pwCepPerfCurrentSummaryErrors" : {
2687
+ "nodetype" : "member",
2688
+ "module" : "PW-CEP-STD-MIB"
2689
+ },
2690
+ "pwCepPerfCurrentESs" : {
2691
+ "nodetype" : "member",
2692
+ "module" : "PW-CEP-STD-MIB"
2693
+ },
2694
+ "pwCepPerfCurrentSESs" : {
2695
+ "nodetype" : "member",
2696
+ "module" : "PW-CEP-STD-MIB"
2697
+ },
2698
+ "pwCepPerfCurrentUASs" : {
2699
+ "nodetype" : "member",
2700
+ "module" : "PW-CEP-STD-MIB"
2701
+ },
2702
+ "pwCepPerfCurrentFC" : {
2703
+ "nodetype" : "member",
2704
+ "module" : "PW-CEP-STD-MIB"
2705
+ },
2706
+ }, # members
2707
+ "description" :
2708
+ """Collection of statistics objects for CEP PWs.""",
2709
+ }, # group
2710
+ "pwCepPerfIntervalGroup" : {
2711
+ "nodetype" : "group",
2712
+ "moduleName" : "PW-CEP-STD-MIB",
2713
+ "oid" : "1.3.6.1.2.1.200.2.1.5",
2714
+ "status" : "current",
2715
+ "members" : {
2716
+ "pwCepPerfIntervalValidData" : {
2717
+ "nodetype" : "member",
2718
+ "module" : "PW-CEP-STD-MIB"
2719
+ },
2720
+ "pwCepPerfIntervalReset" : {
2721
+ "nodetype" : "member",
2722
+ "module" : "PW-CEP-STD-MIB"
2723
+ },
2724
+ "pwCepPerfIntervalTimeElapsed" : {
2725
+ "nodetype" : "member",
2726
+ "module" : "PW-CEP-STD-MIB"
2727
+ },
2728
+ "pwCepPerfIntervalDbaInPacketsHC" : {
2729
+ "nodetype" : "member",
2730
+ "module" : "PW-CEP-STD-MIB"
2731
+ },
2732
+ "pwCepPerfIntervalDbaOutPacketsHC" : {
2733
+ "nodetype" : "member",
2734
+ "module" : "PW-CEP-STD-MIB"
2735
+ },
2736
+ "pwCepPerfIntervalInNegPtrAdjust" : {
2737
+ "nodetype" : "member",
2738
+ "module" : "PW-CEP-STD-MIB"
2739
+ },
2740
+ "pwCepPerfIntervalInPosPtrAdjust" : {
2741
+ "nodetype" : "member",
2742
+ "module" : "PW-CEP-STD-MIB"
2743
+ },
2744
+ "pwCepPerfIntervalInPtrAdjustSecs" : {
2745
+ "nodetype" : "member",
2746
+ "module" : "PW-CEP-STD-MIB"
2747
+ },
2748
+ "pwCepPerfIntervalOutNegPtrAdjust" : {
2749
+ "nodetype" : "member",
2750
+ "module" : "PW-CEP-STD-MIB"
2751
+ },
2752
+ "pwCepPerfIntervalOutPosPtrAdjust" : {
2753
+ "nodetype" : "member",
2754
+ "module" : "PW-CEP-STD-MIB"
2755
+ },
2756
+ "pwCepPerfIntervalOutPtrAdjustSecs" : {
2757
+ "nodetype" : "member",
2758
+ "module" : "PW-CEP-STD-MIB"
2759
+ },
2760
+ "pwCepPerfIntervalAbsPtrAdjust" : {
2761
+ "nodetype" : "member",
2762
+ "module" : "PW-CEP-STD-MIB"
2763
+ },
2764
+ "pwCepPerfIntervalMissingPkts" : {
2765
+ "nodetype" : "member",
2766
+ "module" : "PW-CEP-STD-MIB"
2767
+ },
2768
+ "pwCepPerfIntervalPktsOoseq" : {
2769
+ "nodetype" : "member",
2770
+ "module" : "PW-CEP-STD-MIB"
2771
+ },
2772
+ "pwCepPerfIntervalPktsOoRngDropped" : {
2773
+ "nodetype" : "member",
2774
+ "module" : "PW-CEP-STD-MIB"
2775
+ },
2776
+ "pwCepPerfIntervalJtrBfrUnderruns" : {
2777
+ "nodetype" : "member",
2778
+ "module" : "PW-CEP-STD-MIB"
2779
+ },
2780
+ "pwCepPerfIntervalPktsMalformed" : {
2781
+ "nodetype" : "member",
2782
+ "module" : "PW-CEP-STD-MIB"
2783
+ },
2784
+ "pwCepPerfIntervalSummaryErrors" : {
2785
+ "nodetype" : "member",
2786
+ "module" : "PW-CEP-STD-MIB"
2787
+ },
2788
+ "pwCepPerfIntervalESs" : {
2789
+ "nodetype" : "member",
2790
+ "module" : "PW-CEP-STD-MIB"
2791
+ },
2792
+ "pwCepPerfIntervalSESs" : {
2793
+ "nodetype" : "member",
2794
+ "module" : "PW-CEP-STD-MIB"
2795
+ },
2796
+ "pwCepPerfIntervalUASs" : {
2797
+ "nodetype" : "member",
2798
+ "module" : "PW-CEP-STD-MIB"
2799
+ },
2800
+ "pwCepPerfIntervalFC" : {
2801
+ "nodetype" : "member",
2802
+ "module" : "PW-CEP-STD-MIB"
2803
+ },
2804
+ }, # members
2805
+ "description" :
2806
+ """Collection of statistics objects for CEP PWs.""",
2807
+ }, # group
2808
+ "pwCepPerf1DayIntervalGroup" : {
2809
+ "nodetype" : "group",
2810
+ "moduleName" : "PW-CEP-STD-MIB",
2811
+ "oid" : "1.3.6.1.2.1.200.2.1.6",
2812
+ "status" : "current",
2813
+ "members" : {
2814
+ "pwCepPerf1DayIntervalValidData" : {
2815
+ "nodetype" : "member",
2816
+ "module" : "PW-CEP-STD-MIB"
2817
+ },
2818
+ "pwCepPerf1DayIntervalMoniSecs" : {
2819
+ "nodetype" : "member",
2820
+ "module" : "PW-CEP-STD-MIB"
2821
+ },
2822
+ "pwCepPerf1DayIntervalDbaInPacketsHC" : {
2823
+ "nodetype" : "member",
2824
+ "module" : "PW-CEP-STD-MIB"
2825
+ },
2826
+ "pwCepPerf1DayIntervalDbaOutPacketsHC" : {
2827
+ "nodetype" : "member",
2828
+ "module" : "PW-CEP-STD-MIB"
2829
+ },
2830
+ "pwCepPerf1DayIntervalInNegPtrAdjust" : {
2831
+ "nodetype" : "member",
2832
+ "module" : "PW-CEP-STD-MIB"
2833
+ },
2834
+ "pwCepPerf1DayIntervalInPosPtrAdjust" : {
2835
+ "nodetype" : "member",
2836
+ "module" : "PW-CEP-STD-MIB"
2837
+ },
2838
+ "pwCepPerf1DayIntervalInPtrAdjustSecs" : {
2839
+ "nodetype" : "member",
2840
+ "module" : "PW-CEP-STD-MIB"
2841
+ },
2842
+ "pwCepPerf1DayIntervalOutNegPtrAdjust" : {
2843
+ "nodetype" : "member",
2844
+ "module" : "PW-CEP-STD-MIB"
2845
+ },
2846
+ "pwCepPerf1DayIntervalOutPosPtrAdjust" : {
2847
+ "nodetype" : "member",
2848
+ "module" : "PW-CEP-STD-MIB"
2849
+ },
2850
+ "pwCepPerf1DayIntervalOutPtrAdjustSecs" : {
2851
+ "nodetype" : "member",
2852
+ "module" : "PW-CEP-STD-MIB"
2853
+ },
2854
+ "pwCepPerf1DayIntervalAbsPtrAdjust" : {
2855
+ "nodetype" : "member",
2856
+ "module" : "PW-CEP-STD-MIB"
2857
+ },
2858
+ "pwCepPerf1DayIntervalMissingPkts" : {
2859
+ "nodetype" : "member",
2860
+ "module" : "PW-CEP-STD-MIB"
2861
+ },
2862
+ "pwCepPerf1DayIntervalPktsOoseq" : {
2863
+ "nodetype" : "member",
2864
+ "module" : "PW-CEP-STD-MIB"
2865
+ },
2866
+ "pwCepPerf1DayIntervalPktsOoRngDropped" : {
2867
+ "nodetype" : "member",
2868
+ "module" : "PW-CEP-STD-MIB"
2869
+ },
2870
+ "pwCepPerf1DayIntervalJtrBfrUnderruns" : {
2871
+ "nodetype" : "member",
2872
+ "module" : "PW-CEP-STD-MIB"
2873
+ },
2874
+ "pwCepPerf1DayIntervalPktsMalformed" : {
2875
+ "nodetype" : "member",
2876
+ "module" : "PW-CEP-STD-MIB"
2877
+ },
2878
+ "pwCepPerf1DayIntervalSummaryErrors" : {
2879
+ "nodetype" : "member",
2880
+ "module" : "PW-CEP-STD-MIB"
2881
+ },
2882
+ "pwCepPerf1DayIntervalESs" : {
2883
+ "nodetype" : "member",
2884
+ "module" : "PW-CEP-STD-MIB"
2885
+ },
2886
+ "pwCepPerf1DayIntervalSESs" : {
2887
+ "nodetype" : "member",
2888
+ "module" : "PW-CEP-STD-MIB"
2889
+ },
2890
+ "pwCepPerf1DayIntervalUASs" : {
2891
+ "nodetype" : "member",
2892
+ "module" : "PW-CEP-STD-MIB"
2893
+ },
2894
+ "pwCepPerf1DayIntervalFC" : {
2895
+ "nodetype" : "member",
2896
+ "module" : "PW-CEP-STD-MIB"
2897
+ },
2898
+ }, # members
2899
+ "description" :
2900
+ """Collection of statistics objects for CEP PWs.""",
2901
+ }, # group
2902
+ "pwCepFractionalGroup" : {
2903
+ "nodetype" : "group",
2904
+ "moduleName" : "PW-CEP-STD-MIB",
2905
+ "oid" : "1.3.6.1.2.1.200.2.1.7",
2906
+ "status" : "current",
2907
+ "members" : {
2908
+ "pwCepFracRowStatus" : {
2909
+ "nodetype" : "member",
2910
+ "module" : "PW-CEP-STD-MIB"
2911
+ },
2912
+ "pwCepFracStorageType" : {
2913
+ "nodetype" : "member",
2914
+ "module" : "PW-CEP-STD-MIB"
2915
+ },
2916
+ }, # members
2917
+ "description" :
2918
+ """Collection of fractional SPE objects. These objects
2919
+ are optional and should be supported only if
2920
+ fractional SPE is supported within the network
2921
+ element.""",
2922
+ }, # group
2923
+ "pwCepFractionalSts1Vc3Group" : {
2924
+ "nodetype" : "group",
2925
+ "moduleName" : "PW-CEP-STD-MIB",
2926
+ "oid" : "1.3.6.1.2.1.200.2.1.8",
2927
+ "status" : "current",
2928
+ "members" : {
2929
+ "pwCepFracMode" : {
2930
+ "nodetype" : "member",
2931
+ "module" : "PW-CEP-STD-MIB"
2932
+ },
2933
+ "pwCepFracConfigError" : {
2934
+ "nodetype" : "member",
2935
+ "module" : "PW-CEP-STD-MIB"
2936
+ },
2937
+ "pwCepFracAsync" : {
2938
+ "nodetype" : "member",
2939
+ "module" : "PW-CEP-STD-MIB"
2940
+ },
2941
+ "pwCepFracVtgMap" : {
2942
+ "nodetype" : "member",
2943
+ "module" : "PW-CEP-STD-MIB"
2944
+ },
2945
+ "pwCepFracEbm" : {
2946
+ "nodetype" : "member",
2947
+ "module" : "PW-CEP-STD-MIB"
2948
+ },
2949
+ "pwCepFracPeerEbm" : {
2950
+ "nodetype" : "member",
2951
+ "module" : "PW-CEP-STD-MIB"
2952
+ },
2953
+ }, # members
2954
+ "description" :
2955
+ """Collection of fractional STS-1/VC3 objects. These
2956
+ objects are optional and should be supported only if
2957
+ fractional STS-1/VC3 is supported within the network
2958
+ element.""",
2959
+ }, # group
2960
+ "pwCepFractionalVc4Group" : {
2961
+ "nodetype" : "group",
2962
+ "moduleName" : "PW-CEP-STD-MIB",
2963
+ "oid" : "1.3.6.1.2.1.200.2.1.9",
2964
+ "status" : "current",
2965
+ "members" : {
2966
+ "pwCepFracSdhVc4Mode" : {
2967
+ "nodetype" : "member",
2968
+ "module" : "PW-CEP-STD-MIB"
2969
+ },
2970
+ "pwCepFracSdhVc4Tu3Map1" : {
2971
+ "nodetype" : "member",
2972
+ "module" : "PW-CEP-STD-MIB"
2973
+ },
2974
+ "pwCepFracSdhVc4Tu3Map2" : {
2975
+ "nodetype" : "member",
2976
+ "module" : "PW-CEP-STD-MIB"
2977
+ },
2978
+ "pwCepFracSdhVc4Tu3Map3" : {
2979
+ "nodetype" : "member",
2980
+ "module" : "PW-CEP-STD-MIB"
2981
+ },
2982
+ "pwCepFracSdhVc4Tug2Map1" : {
2983
+ "nodetype" : "member",
2984
+ "module" : "PW-CEP-STD-MIB"
2985
+ },
2986
+ "pwCepFracSdhVc4Tug2Map2" : {
2987
+ "nodetype" : "member",
2988
+ "module" : "PW-CEP-STD-MIB"
2989
+ },
2990
+ "pwCepFracSdhVc4Tug2Map3" : {
2991
+ "nodetype" : "member",
2992
+ "module" : "PW-CEP-STD-MIB"
2993
+ },
2994
+ "pwCepFracSdhVc4Ebm1" : {
2995
+ "nodetype" : "member",
2996
+ "module" : "PW-CEP-STD-MIB"
2997
+ },
2998
+ "pwCepFracSdhVc4Ebm2" : {
2999
+ "nodetype" : "member",
3000
+ "module" : "PW-CEP-STD-MIB"
3001
+ },
3002
+ "pwCepFracSdhVc4Ebm3" : {
3003
+ "nodetype" : "member",
3004
+ "module" : "PW-CEP-STD-MIB"
3005
+ },
3006
+ "pwCepFracSdhVc4PeerEbm1" : {
3007
+ "nodetype" : "member",
3008
+ "module" : "PW-CEP-STD-MIB"
3009
+ },
3010
+ "pwCepFracSdhVc4PeerEbm2" : {
3011
+ "nodetype" : "member",
3012
+ "module" : "PW-CEP-STD-MIB"
3013
+ },
3014
+ "pwCepFracSdhVc4PeerEbm3" : {
3015
+ "nodetype" : "member",
3016
+ "module" : "PW-CEP-STD-MIB"
3017
+ },
3018
+ }, # members
3019
+ "description" :
3020
+ """Collection of fractional VC4 objects. These objects
3021
+ are optional and should be supported only if
3022
+ fractional VC4 is supported within the network
3023
+ element.""",
3024
+ }, # group
3025
+ }, # groups
3026
+
3027
+ "compliances" : {
3028
+ "pwCepModuleFullCompliance" : {
3029
+ "nodetype" : "compliance",
3030
+ "moduleName" : "PW-CEP-STD-MIB",
3031
+ "oid" : "1.3.6.1.2.1.200.2.2.1",
3032
+ "status" : "current",
3033
+ "description" :
3034
+ """The compliance statement for agents that support
3035
+ full CEP PW configuration through this MIB module.""",
3036
+ "requires" : {
3037
+ "pwCepGroup" : {
3038
+ "nodetype" : "mandatory",
3039
+ "module" : "PW-CEP-STD-MIB"
3040
+ },
3041
+ "pwCepCfgGroup" : {
3042
+ "nodetype" : "mandatory",
3043
+ "module" : "PW-CEP-STD-MIB"
3044
+ },
3045
+ "pwCepPerfCurrentGroup" : {
3046
+ "nodetype" : "mandatory",
3047
+ "module" : "PW-CEP-STD-MIB"
3048
+ },
3049
+ "pwCepPerfIntervalGroup" : {
3050
+ "nodetype" : "mandatory",
3051
+ "module" : "PW-CEP-STD-MIB"
3052
+ },
3053
+ "pwCepPerf1DayIntervalGroup" : {
3054
+ "nodetype" : "mandatory",
3055
+ "module" : "PW-CEP-STD-MIB"
3056
+ },
3057
+ "pwCepFractionalGroup" : {
3058
+ "nodetype" : "optional",
3059
+ "module" : "PW-CEP-STD-MIB",
3060
+ "description" :
3061
+ """This group is only mandatory for implementations
3062
+ that support fractional SPE.""",
3063
+ },
3064
+ "pwCepFractionalSts1Vc3Group" : {
3065
+ "nodetype" : "optional",
3066
+ "module" : "PW-CEP-STD-MIB",
3067
+ "description" :
3068
+ """This group is only mandatory for implementations
3069
+ that support the fractional STS-1/VC-3.""",
3070
+ },
3071
+ "pwCepFractionalVc4Group" : {
3072
+ "nodetype" : "optional",
3073
+ "module" : "PW-CEP-STD-MIB",
3074
+ "description" :
3075
+ """This group is only mandatory for implementations
3076
+ that support the fractional VC-4.""",
3077
+ },
3078
+ "pwCepSignalingGroup" : {
3079
+ "nodetype" : "optional",
3080
+ "module" : "PW-CEP-STD-MIB",
3081
+ "description" :
3082
+ """This group is only mandatory for implementations
3083
+ that support the CEP PW signaling.""",
3084
+ },
3085
+ }, # requires
3086
+ "refinements" : {
3087
+ "pwCepType" : {
3088
+ "module" : "PW-CEP-STD-MIB",
3089
+ "syntax" : {
3090
+ "type" : {
3091
+ "basetype" : "Enumeration",
3092
+ "spe" : {
3093
+ "nodetype" : "namednumber",
3094
+ "number" : "1"
3095
+ },
3096
+ },
3097
+ }, # syntax
3098
+ "access" : "readonly",
3099
+ "description" :
3100
+ """The support of the value vt(2) or fracSpe(3) is
3101
+ optional. If either of these options are
3102
+ supported, read-write access is not required.""",
3103
+ },
3104
+ "pwCepSonetPayloadLength" : {
3105
+ "module" : "PW-CEP-STD-MIB",
3106
+ "access" : "readonly",
3107
+ "description" :
3108
+ """Write access is not required for implementations
3109
+ that support only the default values (which are
3110
+ based on the pwCepType).""",
3111
+ },
3112
+ "pwCepCfgMinPktLength" : {
3113
+ "module" : "PW-CEP-STD-MIB",
3114
+ "access" : "readonly",
3115
+ "description" :
3116
+ """Write access is not required for implementations
3117
+ that support only a single predefined value.""",
3118
+ },
3119
+ "pwCepCfgEnableDBA" : {
3120
+ "module" : "PW-CEP-STD-MIB",
3121
+ "access" : "readonly",
3122
+ "description" :
3123
+ """Write access is not required for implementations
3124
+ that support only a single predefined value.""",
3125
+ },
3126
+ "pwCepCfgRtpHdrSuppress" : {
3127
+ "module" : "PW-CEP-STD-MIB",
3128
+ "access" : "readonly",
3129
+ "description" :
3130
+ """Write access is not required for implementations
3131
+ that do not support RTP header for CEP
3132
+ connections.""",
3133
+ },
3134
+ "pwCepCfgConsecPktsInsync" : {
3135
+ "module" : "PW-CEP-STD-MIB",
3136
+ "access" : "readonly",
3137
+ "description" :
3138
+ """Write access is not required for implementations
3139
+ that support only a single predefined value.""",
3140
+ },
3141
+ "pwCepCfgConsecMissingOutSync" : {
3142
+ "module" : "PW-CEP-STD-MIB",
3143
+ "access" : "readonly",
3144
+ "description" :
3145
+ """Write access is not required for implementations
3146
+ that support only a single predefined value.""",
3147
+ },
3148
+ "pwCepCfgPktErrorPlayOutValue" : {
3149
+ "module" : "PW-CEP-STD-MIB",
3150
+ "access" : "readonly",
3151
+ "description" :
3152
+ """Write access is not required for implementations
3153
+ that support only a single predefined value.""",
3154
+ },
3155
+ "pwCepCfgMissingPktsToSes" : {
3156
+ "module" : "PW-CEP-STD-MIB",
3157
+ "access" : "readonly",
3158
+ "description" :
3159
+ """Write access is not required for implementations
3160
+ that support only a single predefined value.""",
3161
+ },
3162
+ "pwCepCfgSesToUas" : {
3163
+ "module" : "PW-CEP-STD-MIB",
3164
+ "access" : "readonly",
3165
+ "description" :
3166
+ """Write access is not required for implementations
3167
+ that support only a single predefined value.""",
3168
+ },
3169
+ "pwCepCfgSecsToExitUas" : {
3170
+ "module" : "PW-CEP-STD-MIB",
3171
+ "access" : "readonly",
3172
+ "description" :
3173
+ """Write access is not required for implementations
3174
+ that support only a single predefined value.""",
3175
+ },
3176
+ "pwCepCfgName" : {
3177
+ "module" : "PW-CEP-STD-MIB",
3178
+ "access" : "readonly",
3179
+ "description" :
3180
+ """Write access is not required.""",
3181
+ },
3182
+ "pwCepCfgRowStatus" : {
3183
+ "module" : "PW-CEP-STD-MIB",
3184
+ "syntax" : {
3185
+ "type" : {
3186
+ "basetype" : "Enumeration",
3187
+ "parent module" : {
3188
+ "name" : "SNMPv2-TC",
3189
+ "type" : "RowStatus",
3190
+ },
3191
+ "active" : {
3192
+ "nodetype" : "namednumber",
3193
+ "number" : "1"
3194
+ },
3195
+ "notInService" : {
3196
+ "nodetype" : "namednumber",
3197
+ "number" : "2"
3198
+ },
3199
+ "notReady" : {
3200
+ "nodetype" : "namednumber",
3201
+ "number" : "3"
3202
+ },
3203
+ },
3204
+ }, # syntax
3205
+ "writesyntax" : {
3206
+ "type" : {
3207
+ "basetype" : "Enumeration",
3208
+ "parent module" : {
3209
+ "name" : "SNMPv2-TC",
3210
+ "type" : "RowStatus",
3211
+ },
3212
+ "active" : {
3213
+ "nodetype" : "namednumber",
3214
+ "number" : "1"
3215
+ },
3216
+ "notInService" : {
3217
+ "nodetype" : "namednumber",
3218
+ "number" : "2"
3219
+ },
3220
+ "createAndGo" : {
3221
+ "nodetype" : "namednumber",
3222
+ "number" : "4"
3223
+ },
3224
+ "destroy" : {
3225
+ "nodetype" : "namednumber",
3226
+ "number" : "6"
3227
+ },
3228
+ },
3229
+ }, # writesyntax
3230
+ "description" :
3231
+ """Support for createAndWait is not required.""",
3232
+ },
3233
+ "pwCepFracMode" : {
3234
+ "module" : "PW-CEP-STD-MIB",
3235
+ "access" : "readonly",
3236
+ "description" :
3237
+ """Write access is not required for implementations
3238
+ that support only a single predefined value.""",
3239
+ },
3240
+ "pwCepFracAsync" : {
3241
+ "module" : "PW-CEP-STD-MIB",
3242
+ "syntax" : {
3243
+ "type" : {
3244
+ "basetype" : "Enumeration",
3245
+ "parent module" : {
3246
+ "name" : "PW-CEP-STD-MIB",
3247
+ "type" : "PwCepFracAsyncMap",
3248
+ },
3249
+ "other" : {
3250
+ "nodetype" : "namednumber",
3251
+ "number" : "1"
3252
+ },
3253
+ },
3254
+ }, # syntax
3255
+ "access" : "readonly",
3256
+ "description" :
3257
+ """Support for ds3(2) or e3(3) and read-write access
3258
+ is not required if the implementations do not
3259
+ support these options.""",
3260
+ },
3261
+ "pwCepFracVtgMap" : {
3262
+ "module" : "PW-CEP-STD-MIB",
3263
+ "access" : "readonly",
3264
+ "description" :
3265
+ """Write access is not required for implementations
3266
+ that support only a single predefined value.""",
3267
+ },
3268
+ "pwCepFracEbm" : {
3269
+ "module" : "PW-CEP-STD-MIB",
3270
+ "access" : "readonly",
3271
+ "description" :
3272
+ """Write access is not required for implementations
3273
+ where the EBM is derived from configuration in
3274
+ other MIB modules.""",
3275
+ },
3276
+ "pwCepFracSdhVc4Mode" : {
3277
+ "module" : "PW-CEP-STD-MIB",
3278
+ "access" : "readonly",
3279
+ "description" :
3280
+ """Write access is not required for implementations
3281
+ that support only a single predefined value.""",
3282
+ },
3283
+ "pwCepFracSdhVc4Tu3Map1" : {
3284
+ "module" : "PW-CEP-STD-MIB",
3285
+ "access" : "readonly",
3286
+ "description" :
3287
+ """Write access is not required for implementations
3288
+ that support only a single predefined value.""",
3289
+ },
3290
+ "pwCepFracSdhVc4Tu3Map2" : {
3291
+ "module" : "PW-CEP-STD-MIB",
3292
+ "access" : "readonly",
3293
+ "description" :
3294
+ """Write access is not required for implementations
3295
+ that support only a single predefined value.""",
3296
+ },
3297
+ "pwCepFracSdhVc4Tu3Map3" : {
3298
+ "module" : "PW-CEP-STD-MIB",
3299
+ "access" : "readonly",
3300
+ "description" :
3301
+ """Write access is not required for implementations
3302
+ that support only a single predefined value.""",
3303
+ },
3304
+ "pwCepFracSdhVc4Tug2Map1" : {
3305
+ "module" : "PW-CEP-STD-MIB",
3306
+ "access" : "readonly",
3307
+ "description" :
3308
+ """Write access is not required for implementations
3309
+ that support only a single predefined value.""",
3310
+ },
3311
+ "pwCepFracSdhVc4Tug2Map2" : {
3312
+ "module" : "PW-CEP-STD-MIB",
3313
+ "access" : "readonly",
3314
+ "description" :
3315
+ """Write access is not required for implementations
3316
+ that support only a single predefined value.""",
3317
+ },
3318
+ "pwCepFracSdhVc4Tug2Map3" : {
3319
+ "module" : "PW-CEP-STD-MIB",
3320
+ "access" : "readonly",
3321
+ "description" :
3322
+ """Write access is not required for implementations
3323
+ that support only a single predefined value.""",
3324
+ },
3325
+ "pwCepFracSdhVc4Ebm1" : {
3326
+ "module" : "PW-CEP-STD-MIB",
3327
+ "access" : "readonly",
3328
+ "description" :
3329
+ """Write access is not required for implementations
3330
+ where the EBM is derived from configuration in
3331
+ other MIB modules.""",
3332
+ },
3333
+ "pwCepFracSdhVc4Ebm2" : {
3334
+ "module" : "PW-CEP-STD-MIB",
3335
+ "access" : "readonly",
3336
+ "description" :
3337
+ """Write access is not required for implementations
3338
+ where the EBM is derived from configuration in
3339
+ other MIB modules.""",
3340
+ },
3341
+ "pwCepFracSdhVc4Ebm3" : {
3342
+ "module" : "PW-CEP-STD-MIB",
3343
+ "access" : "readonly",
3344
+ "description" :
3345
+ """Write access is not required for implementations
3346
+ where the EBM is derived from configuration in
3347
+ other MIB modules.""",
3348
+ },
3349
+ "pwCepFracRowStatus" : {
3350
+ "module" : "PW-CEP-STD-MIB",
3351
+ "syntax" : {
3352
+ "type" : {
3353
+ "basetype" : "Enumeration",
3354
+ "parent module" : {
3355
+ "name" : "SNMPv2-TC",
3356
+ "type" : "RowStatus",
3357
+ },
3358
+ "active" : {
3359
+ "nodetype" : "namednumber",
3360
+ "number" : "1"
3361
+ },
3362
+ "notInService" : {
3363
+ "nodetype" : "namednumber",
3364
+ "number" : "2"
3365
+ },
3366
+ "notReady" : {
3367
+ "nodetype" : "namednumber",
3368
+ "number" : "3"
3369
+ },
3370
+ },
3371
+ }, # syntax
3372
+ "writesyntax" : {
3373
+ "type" : {
3374
+ "basetype" : "Enumeration",
3375
+ "parent module" : {
3376
+ "name" : "SNMPv2-TC",
3377
+ "type" : "RowStatus",
3378
+ },
3379
+ "active" : {
3380
+ "nodetype" : "namednumber",
3381
+ "number" : "1"
3382
+ },
3383
+ "notInService" : {
3384
+ "nodetype" : "namednumber",
3385
+ "number" : "2"
3386
+ },
3387
+ "createAndGo" : {
3388
+ "nodetype" : "namednumber",
3389
+ "number" : "4"
3390
+ },
3391
+ "destroy" : {
3392
+ "nodetype" : "namednumber",
3393
+ "number" : "6"
3394
+ },
3395
+ },
3396
+ }, # writesyntax
3397
+ "description" :
3398
+ """Support for createAndWait is not required.""",
3399
+ },
3400
+ }, # refinements
3401
+
3402
+ }, # compliance
3403
+ "pwCepModuleReadOnlyCompliance" : {
3404
+ "nodetype" : "compliance",
3405
+ "moduleName" : "PW-CEP-STD-MIB",
3406
+ "oid" : "1.3.6.1.2.1.200.2.2.2",
3407
+ "status" : "current",
3408
+ "description" :
3409
+ """The compliance statement for agents that provide
3410
+ read-only support for the PW CEP MIB Module. Such
3411
+ devices can be monitored but cannot be configured
3412
+ using this MIB module.""",
3413
+ "requires" : {
3414
+ "pwCepGroup" : {
3415
+ "nodetype" : "mandatory",
3416
+ "module" : "PW-CEP-STD-MIB"
3417
+ },
3418
+ "pwCepCfgGroup" : {
3419
+ "nodetype" : "mandatory",
3420
+ "module" : "PW-CEP-STD-MIB"
3421
+ },
3422
+ "pwCepPerfCurrentGroup" : {
3423
+ "nodetype" : "mandatory",
3424
+ "module" : "PW-CEP-STD-MIB"
3425
+ },
3426
+ "pwCepPerfIntervalGroup" : {
3427
+ "nodetype" : "mandatory",
3428
+ "module" : "PW-CEP-STD-MIB"
3429
+ },
3430
+ "pwCepPerf1DayIntervalGroup" : {
3431
+ "nodetype" : "mandatory",
3432
+ "module" : "PW-CEP-STD-MIB"
3433
+ },
3434
+ "pwCepFractionalGroup" : {
3435
+ "nodetype" : "optional",
3436
+ "module" : "PW-CEP-STD-MIB",
3437
+ "description" :
3438
+ """This group is only mandatory for implementations
3439
+ that support fractional SPE.""",
3440
+ },
3441
+ "pwCepFractionalSts1Vc3Group" : {
3442
+ "nodetype" : "optional",
3443
+ "module" : "PW-CEP-STD-MIB",
3444
+ "description" :
3445
+ """This group is only mandatory for implementations
3446
+ that support the fractional STS-1/VC-3.""",
3447
+ },
3448
+ "pwCepFractionalVc4Group" : {
3449
+ "nodetype" : "optional",
3450
+ "module" : "PW-CEP-STD-MIB",
3451
+ "description" :
3452
+ """This group is only mandatory for implementations
3453
+ that support the fractional VC-4.""",
3454
+ },
3455
+ "pwCepSignalingGroup" : {
3456
+ "nodetype" : "optional",
3457
+ "module" : "PW-CEP-STD-MIB",
3458
+ "description" :
3459
+ """This group is only mandatory for implementations
3460
+ that support the CEP PW signaling.""",
3461
+ },
3462
+ }, # requires
3463
+ "refinements" : {
3464
+ "pwCepType" : {
3465
+ "module" : "PW-CEP-STD-MIB",
3466
+ "access" : "readonly",
3467
+ "description" :
3468
+ """Write access is not required.""",
3469
+ },
3470
+ "pwCepSonetIfIndex" : {
3471
+ "module" : "PW-CEP-STD-MIB",
3472
+ "access" : "readonly",
3473
+ "description" :
3474
+ """Write access is not required.""",
3475
+ },
3476
+ "pwCepCfgIndex" : {
3477
+ "module" : "PW-CEP-STD-MIB",
3478
+ "access" : "readonly",
3479
+ "description" :
3480
+ """Write access is not required.""",
3481
+ },
3482
+ "pwCepSonetPayloadLength" : {
3483
+ "module" : "PW-CEP-STD-MIB",
3484
+ "access" : "readonly",
3485
+ "description" :
3486
+ """Write access is not required.""",
3487
+ },
3488
+ "pwCepCfgMinPktLength" : {
3489
+ "module" : "PW-CEP-STD-MIB",
3490
+ "access" : "readonly",
3491
+ "description" :
3492
+ """Write access is not required.""",
3493
+ },
3494
+ "pwCepCfgEnableDBA" : {
3495
+ "module" : "PW-CEP-STD-MIB",
3496
+ "access" : "readonly",
3497
+ "description" :
3498
+ """Write access is not required.""",
3499
+ },
3500
+ "pwCepCfgRtpHdrSuppress" : {
3501
+ "module" : "PW-CEP-STD-MIB",
3502
+ "access" : "readonly",
3503
+ "description" :
3504
+ """Write access is not required.""",
3505
+ },
3506
+ "pwCepCfgJtrBfrDepth" : {
3507
+ "module" : "PW-CEP-STD-MIB",
3508
+ "access" : "readonly",
3509
+ "description" :
3510
+ """Write access is not required.""",
3511
+ },
3512
+ "pwCepCfgConsecPktsInsync" : {
3513
+ "module" : "PW-CEP-STD-MIB",
3514
+ "access" : "readonly",
3515
+ "description" :
3516
+ """Write access is not required.""",
3517
+ },
3518
+ "pwCepCfgConsecMissingOutSync" : {
3519
+ "module" : "PW-CEP-STD-MIB",
3520
+ "access" : "readonly",
3521
+ "description" :
3522
+ """Write access is not required.""",
3523
+ },
3524
+ "pwCepCfgPktErrorPlayOutValue" : {
3525
+ "module" : "PW-CEP-STD-MIB",
3526
+ "access" : "readonly",
3527
+ "description" :
3528
+ """Write access is not required.""",
3529
+ },
3530
+ "pwCepCfgMissingPktsToSes" : {
3531
+ "module" : "PW-CEP-STD-MIB",
3532
+ "access" : "readonly",
3533
+ "description" :
3534
+ """Write access is not required.""",
3535
+ },
3536
+ "pwCepCfgSesToUas" : {
3537
+ "module" : "PW-CEP-STD-MIB",
3538
+ "access" : "readonly",
3539
+ "description" :
3540
+ """Write access is not required.""",
3541
+ },
3542
+ "pwCepCfgSecsToExitUas" : {
3543
+ "module" : "PW-CEP-STD-MIB",
3544
+ "access" : "readonly",
3545
+ "description" :
3546
+ """Write access is not required.""",
3547
+ },
3548
+ "pwCepCfgRowStatus" : {
3549
+ "module" : "PW-CEP-STD-MIB",
3550
+ "access" : "readonly",
3551
+ "description" :
3552
+ """Write access is not required.""",
3553
+ },
3554
+ "pwCepCfgStorageType" : {
3555
+ "module" : "PW-CEP-STD-MIB",
3556
+ "access" : "readonly",
3557
+ "description" :
3558
+ """Write access is not required.""",
3559
+ },
3560
+ "pwCepFracMode" : {
3561
+ "module" : "PW-CEP-STD-MIB",
3562
+ "access" : "readonly",
3563
+ "description" :
3564
+ """Write access is not required.""",
3565
+ },
3566
+ "pwCepFracAsync" : {
3567
+ "module" : "PW-CEP-STD-MIB",
3568
+ "access" : "readonly",
3569
+ "description" :
3570
+ """Write access is not required.""",
3571
+ },
3572
+ "pwCepFracVtgMap" : {
3573
+ "module" : "PW-CEP-STD-MIB",
3574
+ "access" : "readonly",
3575
+ "description" :
3576
+ """Write access is not required.""",
3577
+ },
3578
+ "pwCepFracEbm" : {
3579
+ "module" : "PW-CEP-STD-MIB",
3580
+ "access" : "readonly",
3581
+ "description" :
3582
+ """Write access is not required.""",
3583
+ },
3584
+ "pwCepFracSdhVc4Mode" : {
3585
+ "module" : "PW-CEP-STD-MIB",
3586
+ "access" : "readonly",
3587
+ "description" :
3588
+ """Write access is not required.""",
3589
+ },
3590
+ "pwCepFracSdhVc4Tu3Map1" : {
3591
+ "module" : "PW-CEP-STD-MIB",
3592
+ "access" : "readonly",
3593
+ "description" :
3594
+ """Write access is not required.""",
3595
+ },
3596
+ "pwCepFracSdhVc4Tu3Map2" : {
3597
+ "module" : "PW-CEP-STD-MIB",
3598
+ "access" : "readonly",
3599
+ "description" :
3600
+ """Write access is not required.""",
3601
+ },
3602
+ "pwCepFracSdhVc4Tu3Map3" : {
3603
+ "module" : "PW-CEP-STD-MIB",
3604
+ "access" : "readonly",
3605
+ "description" :
3606
+ """Write access is not required.""",
3607
+ },
3608
+ "pwCepFracSdhVc4Tug2Map1" : {
3609
+ "module" : "PW-CEP-STD-MIB",
3610
+ "access" : "readonly",
3611
+ "description" :
3612
+ """Write access is not required.""",
3613
+ },
3614
+ "pwCepFracSdhVc4Tug2Map2" : {
3615
+ "module" : "PW-CEP-STD-MIB",
3616
+ "access" : "readonly",
3617
+ "description" :
3618
+ """Write access is not required.""",
3619
+ },
3620
+ "pwCepFracSdhVc4Tug2Map3" : {
3621
+ "module" : "PW-CEP-STD-MIB",
3622
+ "access" : "readonly",
3623
+ "description" :
3624
+ """Write access is not required.""",
3625
+ },
3626
+ "pwCepFracSdhVc4Ebm1" : {
3627
+ "module" : "PW-CEP-STD-MIB",
3628
+ "access" : "readonly",
3629
+ "description" :
3630
+ """Write access is not required.""",
3631
+ },
3632
+ "pwCepFracSdhVc4Ebm2" : {
3633
+ "module" : "PW-CEP-STD-MIB",
3634
+ "access" : "readonly",
3635
+ "description" :
3636
+ """Write access is not required.""",
3637
+ },
3638
+ "pwCepFracSdhVc4Ebm3" : {
3639
+ "module" : "PW-CEP-STD-MIB",
3640
+ "access" : "readonly",
3641
+ "description" :
3642
+ """Write access is not required.""",
3643
+ },
3644
+ "pwCepFracRowStatus" : {
3645
+ "module" : "PW-CEP-STD-MIB",
3646
+ "access" : "readonly",
3647
+ "description" :
3648
+ """Write access is not required.""",
3649
+ },
3650
+ "pwCepFracStorageType" : {
3651
+ "module" : "PW-CEP-STD-MIB",
3652
+ "access" : "readonly",
3653
+ "description" :
3654
+ """Write access is not required.""",
3655
+ },
3656
+ }, # refinements
3657
+
3658
+ }, # compliance
3659
+ }, # compliances
3660
+
3661
+ }