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,3592 @@
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-STD-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PW-STD-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PW-STD-MIB",
11
+
12
+ "PW-STD-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """Pseudowire Edge-to-Edge Emulation (PWE3) Working
17
+ Group""",
18
+ "contact" :
19
+ """David Zelig
20
+ Email: davidz@oversi.com
21
+
22
+ Thomas D. Nadeau
23
+ Email: tom.nadeau@bt.com
24
+
25
+ The PWE3 Working Group (email distribution pwe3@ietf.org,
26
+ http://www.ietf.org/html.charters/pwe3-charter.html)""",
27
+ "description" :
28
+ """This MIB module contains managed object definitions for
29
+ pseudowire operation as in Bryant, S. and P. Pate, 'Pseudo
30
+ Wire Emulation Edge-to-Edge (PWE3) Architecture' [RFC3985],
31
+ Martini, L., et al, 'Pseudowire Setup and Maintenance Using
32
+ the Label Distribution Protocol (LDP)' [RFC4447], and
33
+ Townsley, M., et al, 'Layer Two Tunneling Protocol
34
+ (Version 3)' [RFC3931].
35
+
36
+ This MIB module enables the use of any underlying packet
37
+ switched network (PSN). MIB nodules that will support
38
+ PW operations over specific PSN types are defined in
39
+ separate memos.
40
+
41
+ The indexes for this MIB module are also used to index the
42
+ PSN-specific tables and the PW-specific tables. The PW Type
43
+ dictates which PW-specific MIB module to use.
44
+
45
+ Copyright (c) 2009 IETF Trust and the persons identified
46
+ as authors of the code. All rights reserved.
47
+
48
+ Redistribution and use in source and binary forms, with or
49
+ without modification, are permitted provided that the following
50
+ conditions are met:
51
+
52
+ - Redistributions of source code must retain the above
53
+ copyright notice, this list of conditions and the following
54
+ disclaimer.
55
+
56
+ - Redistributions in binary form must reproduce the above
57
+ copyright notice, this list of conditions and the following
58
+ disclaimer in the documentation and/or other materials
59
+ provided with the distribution.
60
+
61
+ - Neither the name of Internet Society, IETF or IETF Trust, nor
62
+ the names of specific contributors, may be used to endorse or
63
+ promote products derived from this software without specific
64
+ prior written permission.
65
+
66
+
67
+
68
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
69
+ CONTRIBUTORS 'AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES,
70
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
71
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
72
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
73
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
74
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
75
+ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
76
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
77
+ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
78
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
79
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
80
+ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
81
+
82
+ This version of this MIB module is part of RFC 5601;
83
+ see the RFC itself for full legal notices.""",
84
+ "revisions" : (
85
+ {
86
+ "date" : "2009-06-11 00:00",
87
+ "description" :
88
+ """Initial version published as part of RFC 5601.""",
89
+ },
90
+ ),
91
+ "identity node" : "pwStdMIB",
92
+ },
93
+
94
+ "imports" : (
95
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
96
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
97
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
98
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
99
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
100
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
101
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
102
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
103
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
104
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
105
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
106
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
107
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
108
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
109
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
110
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
111
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
112
+ {"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
113
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
114
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
115
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
116
+ {"module" : "PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
117
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
118
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
119
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
120
+ {"module" : "HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
121
+ {"module" : "PW-TC-STD-MIB", "name" : "PwIndexType"},
122
+ {"module" : "PW-TC-STD-MIB", "name" : "PwIndexOrZeroType"},
123
+ {"module" : "PW-TC-STD-MIB", "name" : "PwGroupID"},
124
+ {"module" : "PW-TC-STD-MIB", "name" : "PwIDType"},
125
+ {"module" : "PW-TC-STD-MIB", "name" : "PwOperStatusTC"},
126
+ {"module" : "PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
127
+ {"module" : "PW-TC-STD-MIB", "name" : "PwCwStatusTC"},
128
+ {"module" : "PW-TC-STD-MIB", "name" : "PwStatus"},
129
+ {"module" : "PW-TC-STD-MIB", "name" : "PwFragSize"},
130
+ {"module" : "PW-TC-STD-MIB", "name" : "PwFragStatus"},
131
+ {"module" : "PW-TC-STD-MIB", "name" : "PwGenIdType"},
132
+ {"module" : "IANA-PWE3-MIB", "name" : "IANAPwTypeTC"},
133
+ {"module" : "IANA-PWE3-MIB", "name" : "IANAPwPsnTypeTC"},
134
+ {"module" : "IANA-PWE3-MIB", "name" : "IANAPwCapabilities"},
135
+ ),
136
+
137
+ "nodes" : {
138
+ "pwStdMIB" : {
139
+ "nodetype" : "node",
140
+ "moduleName" : "PW-STD-MIB",
141
+ "oid" : "1.3.6.1.2.1.10.246",
142
+ "status" : "current",
143
+ }, # node
144
+ "pwNotifications" : {
145
+ "nodetype" : "node",
146
+ "moduleName" : "PW-STD-MIB",
147
+ "oid" : "1.3.6.1.2.1.10.246.0",
148
+ }, # node
149
+ "pwObjects" : {
150
+ "nodetype" : "node",
151
+ "moduleName" : "PW-STD-MIB",
152
+ "oid" : "1.3.6.1.2.1.10.246.1",
153
+ }, # node
154
+ "pwIndexNext" : {
155
+ "nodetype" : "scalar",
156
+ "moduleName" : "PW-STD-MIB",
157
+ "oid" : "1.3.6.1.2.1.10.246.1.1",
158
+ "status" : "current",
159
+ "syntax" : {
160
+ "type" : { "module" :"", "name" : "Unsigned32"},
161
+ },
162
+ "access" : "readonly",
163
+ "description" :
164
+ """This object contains an appropriate value to be used for
165
+ pwIndex when creating entries in the pwTable. The value 0
166
+ indicates that no unassigned entries are available. To
167
+ obtain the value of pwIndex for a new entry in the pwTable,
168
+
169
+
170
+
171
+ the manager issues a management protocol retrieval
172
+ operation. The agent will determine through its local policy
173
+ when this index value will be made available for reuse.""",
174
+ }, # scalar
175
+ "pwTable" : {
176
+ "nodetype" : "table",
177
+ "moduleName" : "PW-STD-MIB",
178
+ "oid" : "1.3.6.1.2.1.10.246.1.2",
179
+ "status" : "current",
180
+ "description" :
181
+ """This table specifies information for configuring and
182
+ status monitoring that is common to all service types
183
+ and PSN types.""",
184
+ }, # table
185
+ "pwEntry" : {
186
+ "nodetype" : "row",
187
+ "moduleName" : "PW-STD-MIB",
188
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1",
189
+ "create" : "true",
190
+ "status" : "current",
191
+ "linkage" : [
192
+ "pwIndex",
193
+ ],
194
+ "description" :
195
+ """A row in this table represents a pseudowire (PW) virtual
196
+ connection across a packet network. It is indexed by
197
+ pwIndex, which uniquely identifies a singular
198
+ connection.
199
+ A row can be created by an operator command from a
200
+ management plan of a PE, by signaling, or due to auto-
201
+ discovery process. An operator's command can be issued via
202
+ a non-SNMP application; in such case, a row will be created
203
+ implicitly by the agent.
204
+ The read-create objects in this table are divided into
205
+ three categories:
206
+ 1) Objects that MUST NOT be changed after row activation.
207
+ These are objects that define basic properties of the
208
+ PW (for example type, destination, etc.).
209
+ 2) Objects that MAY be changed when the PW is
210
+ defined as not active. A change of these objects involves
211
+ re-signaling of the PW or it might be traffic affecting.
212
+ PW not active is defined as one of the following
213
+ conditions:
214
+ a) The pwRowStatus is notInService(2).
215
+ b) The pwRowStatus is notReady(3).
216
+ c) The pwAdminStatus is down(2).
217
+ If the operator needs to change one of the values for an
218
+ active row, the operator can either set the pwRowStatus to
219
+ notInService(2) or set pwAdminStatus to down(2).
220
+ Signaling (or traffic) is initiated again upon setting
221
+ the pwRowStatus to active(1) or setting the pwAdminStatus
222
+ to up(1) or testing(3), respectively.
223
+
224
+
225
+
226
+ 3) Objects that MAY be changed at any time.
227
+
228
+ A PW MAY have an entry in the ifTable in addition to the
229
+ entry in this table. In this case, a special ifType for PW
230
+ will be set in the ifTable, and the ifIndex in the ifTable
231
+ of the PW will be set in the pwIfIndex object in this table.
232
+
233
+ By default, all the read-create objects MUST NOT be
234
+ changed after row activation, unless specifically indicated
235
+ in the individual object description.
236
+
237
+ Manual entries in this table SHOULD be preserved after a
238
+ reboot; the agent MUST ensure the integrity of those
239
+ entries. If the set of entries of a specific row are found
240
+ to be inconsistent after reboot, the PW pwOperStatus MUST
241
+ be declared as notPresent(5).""",
242
+ }, # row
243
+ "pwIndex" : {
244
+ "nodetype" : "column",
245
+ "moduleName" : "PW-STD-MIB",
246
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.1",
247
+ "status" : "current",
248
+ "syntax" : {
249
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIndexType"},
250
+ },
251
+ "access" : "noaccess",
252
+ "description" :
253
+ """A unique index for the conceptual row identifying a PW within
254
+ this table.""",
255
+ }, # column
256
+ "pwType" : {
257
+ "nodetype" : "column",
258
+ "moduleName" : "PW-STD-MIB",
259
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.2",
260
+ "status" : "current",
261
+ "syntax" : {
262
+ "type" : { "module" :"IANA-PWE3-MIB", "name" : "IANAPwTypeTC"},
263
+ },
264
+ "access" : "readwrite",
265
+ "description" :
266
+ """This value indicates the emulated service to be carried over
267
+ this PW.""",
268
+ }, # column
269
+ "pwOwner" : {
270
+ "nodetype" : "column",
271
+ "moduleName" : "PW-STD-MIB",
272
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.3",
273
+ "status" : "current",
274
+ "syntax" : {
275
+ "type" : {
276
+ "basetype" : "Enumeration",
277
+ "manual" : {
278
+ "nodetype" : "namednumber",
279
+ "number" : "1"
280
+ },
281
+ "pwIdFecSignaling" : {
282
+ "nodetype" : "namednumber",
283
+ "number" : "2"
284
+ },
285
+ "genFecSignaling" : {
286
+ "nodetype" : "namednumber",
287
+ "number" : "3"
288
+ },
289
+ "l2tpControlProtocol" : {
290
+ "nodetype" : "namednumber",
291
+ "number" : "4"
292
+ },
293
+ "other" : {
294
+ "nodetype" : "namednumber",
295
+ "number" : "5"
296
+ },
297
+ },
298
+ },
299
+ "access" : "readwrite",
300
+ "description" :
301
+ """This object is set by the operator to indicate the protocol
302
+ responsible for establishing this PW.
303
+ 'manual' is used in all cases where no maintenance
304
+ protocol (PW signaling) is used to set up the PW, i.e.,
305
+ configuration of entries in the PW tables including
306
+ PW labels, etc., is done by setting the MIB fields manually.
307
+ 'pwIdFecSignaling' is used in case of signaling with the
308
+ Pwid FEC element with LDP signaling.
309
+ 'genFecSignaling' is used in case of LDP signaling with
310
+ the generalized FEC.
311
+ 'l2tpControlProtocol' indicates the use of the L2TP
312
+ control protocol.
313
+ 'other' is used for other types of signaling.""",
314
+ }, # column
315
+ "pwPsnType" : {
316
+ "nodetype" : "column",
317
+ "moduleName" : "PW-STD-MIB",
318
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.4",
319
+ "status" : "current",
320
+ "syntax" : {
321
+ "type" : { "module" :"IANA-PWE3-MIB", "name" : "IANAPwPsnTypeTC"},
322
+ },
323
+ "access" : "readwrite",
324
+ "description" :
325
+ """This object is set by the operator to indicate the PSN type.
326
+ Based on this object, the relevant PSN table's entry is
327
+ created in the PSN-specific MIB modules.""",
328
+ }, # column
329
+ "pwSetUpPriority" : {
330
+ "nodetype" : "column",
331
+ "moduleName" : "PW-STD-MIB",
332
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.5",
333
+ "status" : "current",
334
+ "syntax" : {
335
+ "type" : {
336
+ "basetype" : "Integer32",
337
+ "ranges" : [
338
+ {
339
+ "min" : "0",
340
+ "max" : "7"
341
+ },
342
+ ],
343
+ "range" : {
344
+ "min" : "0",
345
+ "max" : "7"
346
+ },
347
+ },
348
+ },
349
+ "access" : "readwrite",
350
+ "default" : "0",
351
+ "description" :
352
+ """This object defines the relative priority of the PW
353
+ during set-up in a lowest-to-highest fashion, where 0
354
+ is the highest priority. PWs with the same priority
355
+ are treated with equal priority. PWs that have not yet
356
+
357
+
358
+
359
+ completed setup will report 'dormant' in the
360
+ pwOperStatus.
361
+ This value is significant if there are competing resources
362
+ among PWs and the implementation supports this feature.
363
+ Equal priority handling with competing resources is
364
+ implementation specific.
365
+ This object MAY be changed at any time.""",
366
+ }, # column
367
+ "pwHoldingPriority" : {
368
+ "nodetype" : "column",
369
+ "moduleName" : "PW-STD-MIB",
370
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.6",
371
+ "status" : "current",
372
+ "syntax" : {
373
+ "type" : {
374
+ "basetype" : "Integer32",
375
+ "ranges" : [
376
+ {
377
+ "min" : "0",
378
+ "max" : "7"
379
+ },
380
+ ],
381
+ "range" : {
382
+ "min" : "0",
383
+ "max" : "7"
384
+ },
385
+ },
386
+ },
387
+ "access" : "readwrite",
388
+ "default" : "0",
389
+ "description" :
390
+ """This object defines the relative holding priority of the
391
+ PW in a lowest-to-highest fashion, where 0 is the highest
392
+ priority. PWs with the same priority are treated equally.
393
+ This value is significant if there are competing resources
394
+ among PWs and the implementation supports this feature.
395
+ Equal priority handling with competing resources is
396
+ implementation specific.
397
+ This object MAY be changed only if the PW is not active.""",
398
+ }, # column
399
+ "pwPeerAddrType" : {
400
+ "nodetype" : "column",
401
+ "moduleName" : "PW-STD-MIB",
402
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.8",
403
+ "status" : "current",
404
+ "syntax" : {
405
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
406
+ },
407
+ "access" : "readwrite",
408
+ "default" : "ipv4",
409
+ "description" :
410
+ """Denotes the address type of the peer node. It should be
411
+ set to 'unknown' if PE/PW maintenance protocol is not used
412
+ and the address is unknown.""",
413
+ }, # column
414
+ "pwPeerAddr" : {
415
+ "nodetype" : "column",
416
+ "moduleName" : "PW-STD-MIB",
417
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.9",
418
+ "status" : "current",
419
+ "syntax" : {
420
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
421
+ },
422
+ "access" : "readwrite",
423
+ "description" :
424
+ """This object contains the value of the peer node address
425
+ of the PW/PE maintenance protocol entity. This object
426
+ SHOULD contain a value of all zeroes if not applicable
427
+ (pwPeerAddrType is 'unknown').""",
428
+ }, # column
429
+ "pwAttachedPwIndex" : {
430
+ "nodetype" : "column",
431
+ "moduleName" : "PW-STD-MIB",
432
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.10",
433
+ "status" : "current",
434
+ "syntax" : {
435
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIndexOrZeroType"},
436
+ },
437
+ "access" : "readwrite",
438
+ "default" : "0",
439
+ "description" :
440
+ """If the PW is attached to another PW instead of a local
441
+ native service, this item indicates the pwIndex of the
442
+ attached PW. Otherwise, this object MUST
443
+ be set to zero. Attachment to another PW will have no
444
+ PW specific entry in any of the service MIB modules.""",
445
+ }, # column
446
+ "pwIfIndex" : {
447
+ "nodetype" : "column",
448
+ "moduleName" : "PW-STD-MIB",
449
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.11",
450
+ "status" : "current",
451
+ "syntax" : {
452
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndexOrZero"},
453
+ },
454
+ "access" : "readwrite",
455
+ "default" : "0",
456
+ "description" :
457
+ """This object indicates the ifIndex of the PW if the PW is
458
+ represented in the ifTable. Otherwise, it MUST be set
459
+ to zero.""",
460
+ }, # column
461
+ "pwID" : {
462
+ "nodetype" : "column",
463
+ "moduleName" : "PW-STD-MIB",
464
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.12",
465
+ "status" : "current",
466
+ "syntax" : {
467
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIDType"},
468
+ },
469
+ "access" : "readwrite",
470
+ "description" :
471
+ """Pseudowire identifier.
472
+
473
+ If the pwOwner object is 'pwIdFecSignaling' or
474
+ 'l2tpControlProtocol', then this object is signaled in the
475
+ outgoing PW ID field within the 'Virtual Circuit FEC
476
+ Element'. For other values of pwOwner, this object is not
477
+ signaled and it MAY be set to zero.
478
+
479
+ For implementations that support the pwIndexMappingTable,
480
+ a non-zero value is RECOMMENDED, even if this
481
+ identifier is not signaled. This is so that reverse
482
+ mappings can be provided by pwIndexMappingTable and
483
+ pwPeerMappingTable. It is therefore RECOMMENDED that the
484
+ value of this pwID be unique (or if pwPeerAddrType is not
485
+ 'unknown', at least [pwType, pwID, pwPeerAddrType, pwPeerAddr]
486
+ is unique.)""",
487
+ "reference" :
488
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
489
+ the Label Distribution Protocol', RFC 4447.""",
490
+ }, # column
491
+ "pwLocalGroupID" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "PW-STD-MIB",
494
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.13",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGroupID"},
498
+ },
499
+ "access" : "readwrite",
500
+ "description" :
501
+ """Used in the Group ID field sent to the peer PW End Service
502
+ within the maintenance protocol used for PW setup.
503
+ It SHOULD be set to zero if a maintenance protocol is
504
+ not used.""",
505
+ "reference" :
506
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
507
+ the Label Distribution Protocol', RFC 4447.""",
508
+ }, # column
509
+ "pwGroupAttachmentID" : {
510
+ "nodetype" : "column",
511
+ "moduleName" : "PW-STD-MIB",
512
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.14",
513
+ "status" : "current",
514
+ "syntax" : {
515
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
516
+ },
517
+ "access" : "readwrite",
518
+ "description" :
519
+ """This object is an octet string representing the attachment
520
+ group identifier (AGI) that this PW belongs to, which
521
+ typically identifies the VPN ID.
522
+ Applicable if pwOwner equals 'genFecSignaling'.""",
523
+ "reference" :
524
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
525
+ the Label Distribution Protocol', RFC 4447.""",
526
+ }, # column
527
+ "pwLocalAttachmentID" : {
528
+ "nodetype" : "column",
529
+ "moduleName" : "PW-STD-MIB",
530
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.15",
531
+ "status" : "current",
532
+ "syntax" : {
533
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
534
+ },
535
+ "access" : "readwrite",
536
+ "description" :
537
+ """This object is an octet string representing the local
538
+ forwarder attachment individual identifier (AII) to be
539
+ used by this PW. It is used as the Source AII (SAII) for
540
+ outgoing signaling messages and the Target AII (TAII) in
541
+ the incoming messages from the peer. Applicable if
542
+ pwOwner equal 'genFecSignaling'.""",
543
+ "reference" :
544
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
545
+ the Label Distribution Protocol', RFC 4447.""",
546
+ }, # column
547
+ "pwRemoteAttachmentID" : {
548
+ "nodetype" : "column",
549
+ "moduleName" : "PW-STD-MIB",
550
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.16",
551
+ "status" : "current",
552
+ "syntax" : {
553
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
554
+ },
555
+ "access" : "readwrite",
556
+ "description" :
557
+ """This object is an octet string representing the remote
558
+ forwarder attachment individual identifier (AII) to be
559
+ used by this PW. It is used as the TAII for outgoing
560
+ signaling messages and the SAII in the incoming messages
561
+ from the peer.
562
+ Applicable if pwOwner equals 'genFecSignaling'.""",
563
+ "reference" :
564
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
565
+ the Label Distribution Protocol', RFC 4447.""",
566
+ }, # column
567
+ "pwCwPreference" : {
568
+ "nodetype" : "column",
569
+ "moduleName" : "PW-STD-MIB",
570
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.17",
571
+ "status" : "current",
572
+ "syntax" : {
573
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
574
+ },
575
+ "access" : "readwrite",
576
+ "default" : "false",
577
+ "description" :
578
+ """Defines if the control word will be sent with each packet
579
+ by the local node. Some PW types mandate the use of a
580
+ control word, and in such cases, the value configured for
581
+ this object has no effect on the existence of the control
582
+ word.
583
+ This object MAY be changed only if the PW is not active.""",
584
+ "reference" :
585
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
586
+ the Label Distribution Protocol.', RFC 4447.""",
587
+ }, # column
588
+ "pwLocalIfMtu" : {
589
+ "nodetype" : "column",
590
+ "moduleName" : "PW-STD-MIB",
591
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.18",
592
+ "status" : "current",
593
+ "syntax" : {
594
+ "type" : {
595
+ "basetype" : "Unsigned32",
596
+ "ranges" : [
597
+ {
598
+ "min" : "0",
599
+ "max" : "65535"
600
+ },
601
+ ],
602
+ "range" : {
603
+ "min" : "0",
604
+ "max" : "65535"
605
+ },
606
+ },
607
+ },
608
+ "access" : "readwrite",
609
+ "default" : "0",
610
+ "description" :
611
+ """If not equal to zero, the optional IfMtu object in the
612
+ signaling protocol will be sent with this value, which
613
+ represents the locally supported MTU size over the
614
+ interface (or the virtual interface) associated with the
615
+ PW.
616
+ This object MAY be changed only if the PW is not active.""",
617
+ "reference" :
618
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
619
+ the Label Distribution Protocol', RFC 4447.""",
620
+ }, # column
621
+ "pwLocalIfString" : {
622
+ "nodetype" : "column",
623
+ "moduleName" : "PW-STD-MIB",
624
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.19",
625
+ "status" : "current",
626
+ "syntax" : {
627
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
628
+ },
629
+ "access" : "readwrite",
630
+ "default" : "false",
631
+ "description" :
632
+ """A PW MAY be associated to an interface (or a virtual
633
+ interface) in the ifTable of the node as part of the
634
+ service configuration. This object defines if the
635
+ maintenance protocol will send the interface's name
636
+ (ifAlias) as it appears in the ifTable. If set to false,
637
+ the optional element will not be sent.
638
+ This object MAY be changed only if the PW is not active.""",
639
+ "reference" :
640
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
641
+ the Label Distribution Protocol', RFC 4447, section 5.5.""",
642
+ }, # column
643
+ "pwLocalCapabAdvert" : {
644
+ "nodetype" : "column",
645
+ "moduleName" : "PW-STD-MIB",
646
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.20",
647
+ "status" : "current",
648
+ "syntax" : {
649
+ "type" : { "module" :"IANA-PWE3-MIB", "name" : "IANAPwCapabilities"},
650
+ },
651
+ "access" : "readwrite",
652
+ "description" :
653
+ """If a maintenance protocol is used, it indicates the
654
+ capabilities the local node will advertise to the peer. The
655
+ operator MAY selectively assign a partial set of
656
+ capabilities. In case of manual configuration of the PW, the
657
+ operator SHOULD set non-conflicting options (for example,
658
+ only a single type of Operations, Administration, and
659
+ Management (OAM)) out of the available options in the
660
+ implementation. It is possible to change the value of
661
+ this object when the PW is not active. The agent MUST
662
+ reject any attempt to set a capability that is not
663
+ supported.
664
+
665
+ The default value MUST be the full set of local node
666
+ capabilities.""",
667
+ "reference" :
668
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
669
+ the Label Distribution Protocol', RFC 4447.""",
670
+ }, # column
671
+ "pwRemoteGroupID" : {
672
+ "nodetype" : "column",
673
+ "moduleName" : "PW-STD-MIB",
674
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.21",
675
+ "status" : "current",
676
+ "syntax" : {
677
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGroupID"},
678
+ },
679
+ "access" : "readonly",
680
+ "description" :
681
+ """This object is obtained from the Group ID field as
682
+ received via the maintenance protocol used for PW setup.
683
+ Value of zero will be reported if not used.
684
+ Value of 0xFFFFFFFF shall be used if the object is yet to be
685
+ defined by the PW maintenance protocol.""",
686
+ "reference" :
687
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
688
+ the Label Distribution Protocol', RFC 4447.""",
689
+ }, # column
690
+ "pwCwStatus" : {
691
+ "nodetype" : "column",
692
+ "moduleName" : "PW-STD-MIB",
693
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.22",
694
+ "status" : "current",
695
+ "syntax" : {
696
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwCwStatusTC"},
697
+ },
698
+ "access" : "readonly",
699
+ "description" :
700
+ """If signaling is used for PW establishment, this object
701
+ indicates the status of the control word negotiation.
702
+ For either signaling or manual configuration, it indicates
703
+ if the control word (CW) is to be present for this PW.""",
704
+ "reference" :
705
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
706
+ the Label Distribution Protocol', RFC 4447.""",
707
+ }, # column
708
+ "pwRemoteIfMtu" : {
709
+ "nodetype" : "column",
710
+ "moduleName" : "PW-STD-MIB",
711
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.23",
712
+ "status" : "current",
713
+ "syntax" : {
714
+ "type" : { "module" :"", "name" : "Unsigned32"},
715
+ },
716
+ "access" : "readonly",
717
+ "description" :
718
+ """The remote interface MTU as (optionally) received from the
719
+ remote node via the maintenance protocol. The object SHOULD
720
+ report zero if the MTU is not available.""",
721
+ "reference" :
722
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
723
+ the Label Distribution Protocol', RFC 4447.""",
724
+ }, # column
725
+ "pwRemoteIfString" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "PW-STD-MIB",
728
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.24",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : {
732
+ "basetype" : "OctetString",
733
+ "parent module" : {
734
+ "name" : "SNMP-FRAMEWORK-MIB",
735
+ "type" : "SnmpAdminString",
736
+ },
737
+ "ranges" : [
738
+ {
739
+ "min" : "0",
740
+ "max" : "80"
741
+ },
742
+ ],
743
+ "range" : {
744
+ "min" : "0",
745
+ "max" : "80"
746
+ },
747
+ },
748
+ },
749
+ "access" : "readonly",
750
+ "description" :
751
+ """Indicates the interface description string as received by
752
+ the maintenance protocol. It MUST be a NULL string if a
753
+ maintenance protocol is not used or the value is not known
754
+ yet.""",
755
+ "reference" :
756
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
757
+ the Label Distribution Protocol', RFC 4447, section 5.5.""",
758
+ }, # column
759
+ "pwRemoteCapabilities" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "PW-STD-MIB",
762
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.25",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : { "module" :"IANA-PWE3-MIB", "name" : "IANAPwCapabilities"},
766
+ },
767
+ "access" : "readonly",
768
+ "description" :
769
+ """Indicates the capabilities as received from the peer.""",
770
+ "reference" :
771
+ """Martini, et al, 'Pseudowire Setup and Maintenance using
772
+ the Label Distribution Protocol', RFC 4447.""",
773
+ }, # column
774
+ "pwFragmentCfgSize" : {
775
+ "nodetype" : "column",
776
+ "moduleName" : "PW-STD-MIB",
777
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.26",
778
+ "status" : "current",
779
+ "syntax" : {
780
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwFragSize"},
781
+ },
782
+ "access" : "readwrite",
783
+ "default" : "0",
784
+ "units" : "bytes",
785
+ "description" :
786
+ """If set to a value other than zero, indicates that
787
+ fragmentation is desired for this PW.
788
+ This object MAY be changed only if the PW is not active.""",
789
+ "reference" :
790
+ """Malis A., Townsley M., 'PWE3 Fragmentation and Reassembly',
791
+ RFC 4623.""",
792
+ }, # column
793
+ "pwRmtFragCapability" : {
794
+ "nodetype" : "column",
795
+ "moduleName" : "PW-STD-MIB",
796
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.27",
797
+ "status" : "current",
798
+ "syntax" : {
799
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwFragStatus"},
800
+ },
801
+ "access" : "readonly",
802
+ "description" :
803
+ """The status of the fragmentation based on the local
804
+ configuration and the peer capabilities as received from
805
+ the peer when a control protocol is used.""",
806
+ "reference" :
807
+ """Malis A., Townsley M., 'PWE3 Fragmentation and Reassembly',
808
+ RFC 4623.""",
809
+ }, # column
810
+ "pwFcsRetentionCfg" : {
811
+ "nodetype" : "column",
812
+ "moduleName" : "PW-STD-MIB",
813
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.28",
814
+ "status" : "current",
815
+ "syntax" : {
816
+ "type" : {
817
+ "basetype" : "Enumeration",
818
+ "fcsRetentionDisable" : {
819
+ "nodetype" : "namednumber",
820
+ "number" : "1"
821
+ },
822
+ "fcsRetentionEnable" : {
823
+ "nodetype" : "namednumber",
824
+ "number" : "2"
825
+ },
826
+ },
827
+ },
828
+ "access" : "readwrite",
829
+ "default" : "fcsRetentionDisable",
830
+ "description" :
831
+ """The local configuration of Frame Check Sequence (FCS)
832
+ retention for this PW. FCS retention can be configured for
833
+ PW types High-Level Data Link Control (HDLC), Point-to-Point
834
+ Protocol (PPP), and Ethernet only. If the implementation
835
+ does not support FCS retention, an error MUST be reported in
836
+ pwFcsRetentionStatus. This object MAY be changed only if
837
+ the PW is not active.""",
838
+ "reference" :
839
+ """Malis A., et al., 'PWE3 Frame Check Sequence Retention',
840
+ RFC 4720.""",
841
+ }, # column
842
+ "pwFcsRetentionStatus" : {
843
+ "nodetype" : "column",
844
+ "moduleName" : "PW-STD-MIB",
845
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.29",
846
+ "status" : "current",
847
+ "syntax" : {
848
+ "type" : {
849
+ "basetype" : "Bits",
850
+ "remoteIndicationUnknown" : {
851
+ "nodetype" : "namednumber",
852
+ "number" : "0"
853
+ },
854
+ "remoteRequestFcsRetention" : {
855
+ "nodetype" : "namednumber",
856
+ "number" : "1"
857
+ },
858
+ "fcsRetentionEnabled" : {
859
+ "nodetype" : "namednumber",
860
+ "number" : "2"
861
+ },
862
+ "fcsRetentionDisabled" : {
863
+ "nodetype" : "namednumber",
864
+ "number" : "3"
865
+ },
866
+ "localFcsRetentionCfgErr" : {
867
+ "nodetype" : "namednumber",
868
+ "number" : "4"
869
+ },
870
+ "fcsRetentionFcsSizeMismatch" : {
871
+ "nodetype" : "namednumber",
872
+ "number" : "5"
873
+ },
874
+ },
875
+ },
876
+ "access" : "readonly",
877
+ "description" :
878
+ """The status of the FCS retention negotiation process based on
879
+ local configuration and the remote advertisement.
880
+
881
+ remoteIndicationUnknown - set if a FEC has not been received
882
+ from the remote.
883
+
884
+ remoteRequestFcsRetention - indicates that the peer has
885
+ requested FCS retention. FCS retention will be used if
886
+ the local node is capable and configured to use it for
887
+ this PW.
888
+
889
+ fcsRetentionEnabled - FCS retention is enabled (both peers
890
+ were configured for FCS retention for signaled PW, or the
891
+ local node is configured and capable of FCS retention for
892
+ manually assigned PWs).
893
+
894
+ fcsRetentionDisabled - FCS retention is disabled (not
895
+ configured locally or not advertised by the peer).
896
+
897
+
898
+
899
+
900
+ localFcsRetentionCfgErr - set if the local node has been
901
+ configured for FCS retention but is not capable to support
902
+ it.
903
+
904
+ fcsRetentionFcsSizeMismatch - set if there is an FCS size
905
+ mismatch between the local and the peer node.""",
906
+ "reference" :
907
+ """Malis A., et al., 'PWE3 Frame Check Sequence Retention',
908
+ RFC 4720""",
909
+ }, # column
910
+ "pwOutboundLabel" : {
911
+ "nodetype" : "column",
912
+ "moduleName" : "PW-STD-MIB",
913
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.30",
914
+ "status" : "current",
915
+ "syntax" : {
916
+ "type" : { "module" :"", "name" : "Unsigned32"},
917
+ },
918
+ "access" : "readwrite",
919
+ "description" :
920
+ """The PW label used in the outbound direction (i.e., toward
921
+ the PSN). It might be set manually if pwOwner is 'manual';
922
+ otherwise, it is set automatically.
923
+ For MPLS, MPLS over IP, or MPLS over Generic Routing
924
+ Encapsulation (GRE) PSN, it represents the 20-bit PW tag;
925
+ for L2TP, it represents the 32-bit Session ID; and for
926
+ IP PSN, it represents the destination UDP port number.
927
+ If the label is not yet known (signaling in process), the
928
+ object SHOULD return a value of 0xFFFFFFFF.
929
+ For manual configuration, this object MAY be changed only
930
+ if the PW is not active.""",
931
+ }, # column
932
+ "pwInboundLabel" : {
933
+ "nodetype" : "column",
934
+ "moduleName" : "PW-STD-MIB",
935
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.31",
936
+ "status" : "current",
937
+ "syntax" : {
938
+ "type" : { "module" :"", "name" : "Unsigned32"},
939
+ },
940
+ "access" : "readwrite",
941
+ "description" :
942
+ """The PW label used in the inbound direction (i.e., packets
943
+ received from the PSN). It may be set manually if pwOwner
944
+ is 'manual'; otherwise, it is set automatically.
945
+ For MPLS, MPLS over IP, or MPLS over GRE PSN, it represents
946
+ the 20-bit PW tag; for L2TP, it represents the 32-bit
947
+ Session ID; and for IP PSN, it represents the source
948
+ UDP port number.
949
+ If the label is not yet known (signaling in process), the
950
+ object SHOULD return a value of 0xFFFFFFFF.
951
+ For manual configuration, this object MAY be changed only
952
+ if the PW is not active.""",
953
+ }, # column
954
+ "pwName" : {
955
+ "nodetype" : "column",
956
+ "moduleName" : "PW-STD-MIB",
957
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.32",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
961
+ },
962
+ "access" : "readwrite",
963
+ "description" :
964
+ """The canonical name assigned to the PW. This object MAY be
965
+ changed at any time.""",
966
+ }, # column
967
+ "pwDescr" : {
968
+ "nodetype" : "column",
969
+ "moduleName" : "PW-STD-MIB",
970
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.33",
971
+ "status" : "current",
972
+ "syntax" : {
973
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
974
+ },
975
+ "access" : "readwrite",
976
+ "description" :
977
+ """A textual string containing information about the PW.
978
+ If there is no description, this object contains a zero-
979
+ length string. This object MAY be changed at any time.""",
980
+ }, # column
981
+ "pwCreateTime" : {
982
+ "nodetype" : "column",
983
+ "moduleName" : "PW-STD-MIB",
984
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.34",
985
+ "status" : "current",
986
+ "syntax" : {
987
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
988
+ },
989
+ "access" : "readonly",
990
+ "description" :
991
+ """The value of sysUpTime at the time this PW was created.""",
992
+ }, # column
993
+ "pwUpTime" : {
994
+ "nodetype" : "column",
995
+ "moduleName" : "PW-STD-MIB",
996
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.35",
997
+ "status" : "current",
998
+ "syntax" : {
999
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1000
+ },
1001
+ "access" : "readonly",
1002
+ "description" :
1003
+ """Specifies the time since last change of pwOperStatus to
1004
+ Up(1).""",
1005
+ }, # column
1006
+ "pwLastChange" : {
1007
+ "nodetype" : "column",
1008
+ "moduleName" : "PW-STD-MIB",
1009
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.36",
1010
+ "status" : "current",
1011
+ "syntax" : {
1012
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1013
+ },
1014
+ "access" : "readonly",
1015
+ "description" :
1016
+ """The value of sysUpTime at the time the PW entered
1017
+ its current operational state. If the current state was
1018
+ entered prior to the last re-initialization of the local
1019
+ network management subsystem, then this object contains a
1020
+ zero value.""",
1021
+ }, # column
1022
+ "pwAdminStatus" : {
1023
+ "nodetype" : "column",
1024
+ "moduleName" : "PW-STD-MIB",
1025
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.37",
1026
+ "status" : "current",
1027
+ "syntax" : {
1028
+ "type" : {
1029
+ "basetype" : "Enumeration",
1030
+ "up" : {
1031
+ "nodetype" : "namednumber",
1032
+ "number" : "1"
1033
+ },
1034
+ "down" : {
1035
+ "nodetype" : "namednumber",
1036
+ "number" : "2"
1037
+ },
1038
+ "testing" : {
1039
+ "nodetype" : "namednumber",
1040
+ "number" : "3"
1041
+ },
1042
+ },
1043
+ },
1044
+ "access" : "readwrite",
1045
+ "description" :
1046
+ """The desired operational status of this PW. This object MAY
1047
+ be set at any time.""",
1048
+ }, # column
1049
+ "pwOperStatus" : {
1050
+ "nodetype" : "column",
1051
+ "moduleName" : "PW-STD-MIB",
1052
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.38",
1053
+ "status" : "current",
1054
+ "syntax" : {
1055
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwOperStatusTC"},
1056
+ },
1057
+ "access" : "readonly",
1058
+ "description" :
1059
+ """This object indicates the operational status of the PW; it
1060
+ does not reflect the status of the Customer Edge (CE) bound
1061
+ interface. It is set to down only if pwNotForwarding,
1062
+ psnFacingPwRxFault, or psnFacingPwTxFault indications are
1063
+ set in pwLocalStatus or pwRemoteStatus.
1064
+ It indicates 'lowerLayerDown' if the only reason for
1065
+ not being in the 'up' state is that either the outer tunnel
1066
+ or physical layer of the network side is in the 'down'
1067
+ state.
1068
+ All other states are declared based on the description
1069
+ of the PwOperStatusTC.""",
1070
+ }, # column
1071
+ "pwLocalStatus" : {
1072
+ "nodetype" : "column",
1073
+ "moduleName" : "PW-STD-MIB",
1074
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.39",
1075
+ "status" : "current",
1076
+ "syntax" : {
1077
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwStatus"},
1078
+ },
1079
+ "access" : "readonly",
1080
+ "description" :
1081
+ """Indicates the status of the PW in the local node.
1082
+ The various indications in this object SHOULD be
1083
+ available independent of the ability of the local node to
1084
+ advertise them or the remote node to accept these status
1085
+ indications through the control protocol.""",
1086
+ }, # column
1087
+ "pwRemoteStatusCapable" : {
1088
+ "nodetype" : "column",
1089
+ "moduleName" : "PW-STD-MIB",
1090
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.40",
1091
+ "status" : "current",
1092
+ "syntax" : {
1093
+ "type" : {
1094
+ "basetype" : "Enumeration",
1095
+ "notApplicable" : {
1096
+ "nodetype" : "namednumber",
1097
+ "number" : "1"
1098
+ },
1099
+ "notYetKnown" : {
1100
+ "nodetype" : "namednumber",
1101
+ "number" : "2"
1102
+ },
1103
+ "remoteCapable" : {
1104
+ "nodetype" : "namednumber",
1105
+ "number" : "3"
1106
+ },
1107
+ "remoteNotCapable" : {
1108
+ "nodetype" : "namednumber",
1109
+ "number" : "4"
1110
+ },
1111
+ },
1112
+ },
1113
+ "access" : "readonly",
1114
+ "description" :
1115
+ """Indicates the remote node capability to advertise the
1116
+ PW status notification.
1117
+ notApplicable SHOULD be reported for a manually set PW, or
1118
+ if the local node is not capable of accepting the status
1119
+ notification object.
1120
+ notYetKnown SHOULD be reported if the signaling protocol
1121
+ has not yet finished the process of capability
1122
+ determination.
1123
+ remoteCapable and remoteNotcapable SHOULD be reported
1124
+ based on the initial signaling exchange that has
1125
+ determined the remote node capability.""",
1126
+ }, # column
1127
+ "pwRemoteStatus" : {
1128
+ "nodetype" : "column",
1129
+ "moduleName" : "PW-STD-MIB",
1130
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.41",
1131
+ "status" : "current",
1132
+ "syntax" : {
1133
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwStatus"},
1134
+ },
1135
+ "access" : "readonly",
1136
+ "description" :
1137
+ """Indicates the status of the PW as was advertised by the
1138
+ remote. If the remote is not capable of advertising the
1139
+ status object, or the local node is not able to accept
1140
+ the status object through signaling, then the applicable
1141
+ bit is 'pwNotForwarding', which is set if the remote has
1142
+ sent label release or label withdraw for this PW.""",
1143
+ }, # column
1144
+ "pwTimeElapsed" : {
1145
+ "nodetype" : "column",
1146
+ "moduleName" : "PW-STD-MIB",
1147
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.42",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1151
+ },
1152
+ "access" : "readonly",
1153
+ "description" :
1154
+ """The number of seconds, including partial seconds,
1155
+ that have elapsed since the beginning of the current
1156
+ interval measurement period.""",
1157
+ }, # column
1158
+ "pwValidIntervals" : {
1159
+ "nodetype" : "column",
1160
+ "moduleName" : "PW-STD-MIB",
1161
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.43",
1162
+ "status" : "current",
1163
+ "syntax" : {
1164
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfValidIntervals"},
1165
+ },
1166
+ "access" : "readonly",
1167
+ "description" :
1168
+ """The number of previous 15-minute intervals
1169
+ for which data was collected.""",
1170
+ }, # column
1171
+ "pwRowStatus" : {
1172
+ "nodetype" : "column",
1173
+ "moduleName" : "PW-STD-MIB",
1174
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.44",
1175
+ "status" : "current",
1176
+ "syntax" : {
1177
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1178
+ },
1179
+ "access" : "readwrite",
1180
+ "description" :
1181
+ """For creating, modifying, and deleting this row.
1182
+ This object MAY be changed at any time.""",
1183
+ }, # column
1184
+ "pwStorageType" : {
1185
+ "nodetype" : "column",
1186
+ "moduleName" : "PW-STD-MIB",
1187
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.45",
1188
+ "status" : "current",
1189
+ "syntax" : {
1190
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1191
+ },
1192
+ "access" : "readwrite",
1193
+ "default" : "nonVolatile",
1194
+ "description" :
1195
+ """This variable indicates the storage type for this
1196
+ object.""",
1197
+ }, # column
1198
+ "pwOamEnable" : {
1199
+ "nodetype" : "column",
1200
+ "moduleName" : "PW-STD-MIB",
1201
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.46",
1202
+ "status" : "current",
1203
+ "syntax" : {
1204
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1205
+ },
1206
+ "access" : "readwrite",
1207
+ "default" : "true",
1208
+ "description" :
1209
+ """This variable indicates if OAM is enabled for this
1210
+ PW. It MAY be changed at any time.""",
1211
+ }, # column
1212
+ "pwGenAGIType" : {
1213
+ "nodetype" : "column",
1214
+ "moduleName" : "PW-STD-MIB",
1215
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.47",
1216
+ "status" : "current",
1217
+ "syntax" : {
1218
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGenIdType"},
1219
+ },
1220
+ "access" : "readwrite",
1221
+ "default" : "0",
1222
+ "description" :
1223
+ """This variable indicates the AGI type if generalized FEC
1224
+ (129) is used for PW signaling or configuration. It SHOULD
1225
+ return the value of zero otherwise.""",
1226
+ }, # column
1227
+ "pwGenLocalAIIType" : {
1228
+ "nodetype" : "column",
1229
+ "moduleName" : "PW-STD-MIB",
1230
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.48",
1231
+ "status" : "current",
1232
+ "syntax" : {
1233
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGenIdType"},
1234
+ },
1235
+ "access" : "readwrite",
1236
+ "default" : "0",
1237
+ "description" :
1238
+ """This object is the type of the local forwarder
1239
+ attachment individual identifier (AII) to be used
1240
+ by this PW if generalized FEC (129) is used for PW
1241
+ signaling or configuration.""",
1242
+ }, # column
1243
+ "pwGenRemoteAIIType" : {
1244
+ "nodetype" : "column",
1245
+ "moduleName" : "PW-STD-MIB",
1246
+ "oid" : "1.3.6.1.2.1.10.246.1.2.1.49",
1247
+ "status" : "current",
1248
+ "syntax" : {
1249
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGenIdType"},
1250
+ },
1251
+ "access" : "readwrite",
1252
+ "default" : "0",
1253
+ "description" :
1254
+ """This object is the type of the remote forwarder
1255
+ attachment individual identifier (AII) to be used
1256
+ by this PW if generalized FEC (129) is used for PW
1257
+ signaling or configuration.""",
1258
+ }, # column
1259
+ "pwPerfCurrentTable" : {
1260
+ "nodetype" : "table",
1261
+ "moduleName" : "PW-STD-MIB",
1262
+ "oid" : "1.3.6.1.2.1.10.246.1.3",
1263
+ "status" : "current",
1264
+ "description" :
1265
+ """This table provides per-PW performance information for
1266
+ the current interval.""",
1267
+ }, # table
1268
+ "pwPerfCurrentEntry" : {
1269
+ "nodetype" : "row",
1270
+ "moduleName" : "PW-STD-MIB",
1271
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1",
1272
+ "status" : "current",
1273
+ "linkage" : [
1274
+ "pwIndex",
1275
+ ],
1276
+ "description" :
1277
+ """An entry in this table is created by the agent for
1278
+ every PW.""",
1279
+ }, # row
1280
+ "pwPerfCurrentInHCPackets" : {
1281
+ "nodetype" : "column",
1282
+ "moduleName" : "PW-STD-MIB",
1283
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.1",
1284
+ "status" : "current",
1285
+ "syntax" : {
1286
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1287
+ },
1288
+ "access" : "readonly",
1289
+ "description" :
1290
+ """High-capacity counter for number of packets received by
1291
+ the PW (from the PSN) in the current 15-minute
1292
+ interval. This is the 64-bit version of
1293
+ pwPerfCurrentInPackets, if pwPerfCurrentInHCPackets
1294
+ is supported according to the rules spelled out
1295
+ in RFC 2863.""",
1296
+ }, # column
1297
+ "pwPerfCurrentInHCBytes" : {
1298
+ "nodetype" : "column",
1299
+ "moduleName" : "PW-STD-MIB",
1300
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.2",
1301
+ "status" : "current",
1302
+ "syntax" : {
1303
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1304
+ },
1305
+ "access" : "readonly",
1306
+ "description" :
1307
+ """High-capacity counter for number of bytes received by the
1308
+ PW (from the PSN) in the current 15-minute interval.
1309
+ This is the 64-bit version of pwPerfCurrentInBytes, if
1310
+ pwPerfCurrentInHCBytes is supported according to the
1311
+ rules spelled out in RFC 2863.""",
1312
+ }, # column
1313
+ "pwPerfCurrentOutHCPackets" : {
1314
+ "nodetype" : "column",
1315
+ "moduleName" : "PW-STD-MIB",
1316
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.3",
1317
+ "status" : "current",
1318
+ "syntax" : {
1319
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1320
+ },
1321
+ "access" : "readonly",
1322
+ "description" :
1323
+ """High-capacity counter for number of packets forwarded by
1324
+ the PW (to the PSN) in the current 15-minute interval.
1325
+ This is the 64-bit version of pwPerfCurrentOutPackets,
1326
+ if pwPerfCurrentOutHCPackets is supported according to
1327
+ the rules spelled out in RFC 2863.""",
1328
+ }, # column
1329
+ "pwPerfCurrentOutHCBytes" : {
1330
+ "nodetype" : "column",
1331
+ "moduleName" : "PW-STD-MIB",
1332
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.4",
1333
+ "status" : "current",
1334
+ "syntax" : {
1335
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfCurrentCount"},
1336
+ },
1337
+ "access" : "readonly",
1338
+ "description" :
1339
+ """High-capacity counter for number of bytes forwarded by
1340
+ the PW (to the PSN) in the current 15-minute interval.
1341
+ This is the 64-bit version of pwPerfCurrentOutBytes,
1342
+ if pwPerfCurrentOutHCBytes is supported according to
1343
+ the rules spelled out in RFC 2863.""",
1344
+ }, # column
1345
+ "pwPerfCurrentInPackets" : {
1346
+ "nodetype" : "column",
1347
+ "moduleName" : "PW-STD-MIB",
1348
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.5",
1349
+ "status" : "current",
1350
+ "syntax" : {
1351
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1352
+ },
1353
+ "access" : "readonly",
1354
+ "description" :
1355
+ """The counter for number of packets received by the PW (from
1356
+ the PSN) in the current 15-minute interval.
1357
+ This is the 32-bit version of pwPerfCurrentInHCPackets,
1358
+ if pwPerfCurrentInHCPackets is supported according to
1359
+ the rules spelled out in RFC 2863.""",
1360
+ }, # column
1361
+ "pwPerfCurrentInBytes" : {
1362
+ "nodetype" : "column",
1363
+ "moduleName" : "PW-STD-MIB",
1364
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.6",
1365
+ "status" : "current",
1366
+ "syntax" : {
1367
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1368
+ },
1369
+ "access" : "readonly",
1370
+ "description" :
1371
+ """The counter for number of bytes received by the
1372
+ PW (from the PSN) in the current 15-minute interval.
1373
+ It MUST be equal to the least significant 32 bits of
1374
+ pwPerfCurrentInHCBytes, if pwPerfCurrentInHCBytes is
1375
+ supported according to the rules spelled out in RFC 2863.""",
1376
+ }, # column
1377
+ "pwPerfCurrentOutPackets" : {
1378
+ "nodetype" : "column",
1379
+ "moduleName" : "PW-STD-MIB",
1380
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.7",
1381
+ "status" : "current",
1382
+ "syntax" : {
1383
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1384
+ },
1385
+ "access" : "readonly",
1386
+ "description" :
1387
+ """The counter for number of packets forwarded by
1388
+ the PW (to the PSN) in the current 15-minute interval.
1389
+ It MUST be equal to the least significant 32 bits of
1390
+ pwPerfCurrentOutHCPackets, if
1391
+ pwPerfCurrentOutHCPackets is supported according to the
1392
+ rules spelled out in RFC 2863.""",
1393
+ }, # column
1394
+ "pwPerfCurrentOutBytes" : {
1395
+ "nodetype" : "column",
1396
+ "moduleName" : "PW-STD-MIB",
1397
+ "oid" : "1.3.6.1.2.1.10.246.1.3.1.8",
1398
+ "status" : "current",
1399
+ "syntax" : {
1400
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfCurrentCount"},
1401
+ },
1402
+ "access" : "readonly",
1403
+ "description" :
1404
+ """The counter for number of bytes forwarded by
1405
+ the PW (to the PSN) in the current 15-minute interval.
1406
+ It MUST be equal to the least significant 32 bits of
1407
+ pwPerfCurrentOutHCBytes, if pwPerfCurrentOutHCBytes is
1408
+ supported according to the rules spelled out in RFC 2863.""",
1409
+ }, # column
1410
+ "pwPerfIntervalTable" : {
1411
+ "nodetype" : "table",
1412
+ "moduleName" : "PW-STD-MIB",
1413
+ "oid" : "1.3.6.1.2.1.10.246.1.4",
1414
+ "status" : "current",
1415
+ "description" :
1416
+ """This table provides per-PW performance information for
1417
+ each interval.""",
1418
+ }, # table
1419
+ "pwPerfIntervalEntry" : {
1420
+ "nodetype" : "row",
1421
+ "moduleName" : "PW-STD-MIB",
1422
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1",
1423
+ "status" : "current",
1424
+ "linkage" : [
1425
+ "pwIndex",
1426
+ "pwPerfIntervalNumber",
1427
+ ],
1428
+ "description" :
1429
+ """An entry in this table is created by the agent for every
1430
+ PW.""",
1431
+ }, # row
1432
+ "pwPerfIntervalNumber" : {
1433
+ "nodetype" : "column",
1434
+ "moduleName" : "PW-STD-MIB",
1435
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.1",
1436
+ "status" : "current",
1437
+ "syntax" : {
1438
+ "type" : {
1439
+ "basetype" : "Integer32",
1440
+ "ranges" : [
1441
+ {
1442
+ "min" : "1",
1443
+ "max" : "96"
1444
+ },
1445
+ ],
1446
+ "range" : {
1447
+ "min" : "1",
1448
+ "max" : "96"
1449
+ },
1450
+ },
1451
+ },
1452
+ "access" : "noaccess",
1453
+ "description" :
1454
+ """A number N, between 1 and 96, which identifies the
1455
+ interval for which the set of statistics is available.
1456
+ The interval identified by 1 is the most recently
1457
+ completed 15-minute interval, and the interval identified
1458
+ by N is the interval immediately preceding the one
1459
+ identified by N-1.
1460
+ The minimum range of N is 1 through 4. The default range
1461
+ is 1 to 32. The maximum range of N is 1 through 96.""",
1462
+ "reference" :
1463
+ """Tesink, K. 'Definitions of Managed Objects for the
1464
+ SONET/SDH Interface Type', RFC 2558""",
1465
+ }, # column
1466
+ "pwPerfIntervalValidData" : {
1467
+ "nodetype" : "column",
1468
+ "moduleName" : "PW-STD-MIB",
1469
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.2",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1473
+ },
1474
+ "access" : "readonly",
1475
+ "description" :
1476
+ """This variable indicates if the data for this interval
1477
+ is valid.""",
1478
+ }, # column
1479
+ "pwPerfIntervalTimeElapsed" : {
1480
+ "nodetype" : "column",
1481
+ "moduleName" : "PW-STD-MIB",
1482
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.3",
1483
+ "status" : "current",
1484
+ "syntax" : {
1485
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1486
+ },
1487
+ "access" : "readonly",
1488
+ "description" :
1489
+ """The duration of this interval in seconds.""",
1490
+ }, # column
1491
+ "pwPerfIntervalInHCPackets" : {
1492
+ "nodetype" : "column",
1493
+ "moduleName" : "PW-STD-MIB",
1494
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.4",
1495
+ "status" : "current",
1496
+ "syntax" : {
1497
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1498
+ },
1499
+ "access" : "readonly",
1500
+ "description" :
1501
+ """High-capacity counter for number of packets received by
1502
+ the PW (from the PSN) during the interval. This is the
1503
+ 64-bit version of pwPerfIntervalInPackets, if
1504
+ pwPerfIntervalInHCPackets is supported according to the
1505
+ rules spelled out in RFC 2863.""",
1506
+ }, # column
1507
+ "pwPerfIntervalInHCBytes" : {
1508
+ "nodetype" : "column",
1509
+ "moduleName" : "PW-STD-MIB",
1510
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.5",
1511
+ "status" : "current",
1512
+ "syntax" : {
1513
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1514
+ },
1515
+ "access" : "readonly",
1516
+ "description" :
1517
+ """High-capacity counter for number of bytes received by the
1518
+ PW (from the PSN) during the interval.
1519
+ This is the 64-bit version of pwPerfIntervalInBytes, if
1520
+ pwPerfIntervalInHCBytes is supported according to the
1521
+ rules spelled out in RFC 2863.""",
1522
+ }, # column
1523
+ "pwPerfIntervalOutHCPackets" : {
1524
+ "nodetype" : "column",
1525
+ "moduleName" : "PW-STD-MIB",
1526
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.6",
1527
+ "status" : "current",
1528
+ "syntax" : {
1529
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1530
+ },
1531
+ "access" : "readonly",
1532
+ "description" :
1533
+ """High-capacity counter for number of packets forwarded by
1534
+ the PW (to the PSN) during the interval.
1535
+ This is the 64-bit version of pwPerfIntervalOutPackets,
1536
+ if pwPerfIntervalOutHCPackets is supported according to
1537
+ the rules spelled out in RFC 2863.""",
1538
+ }, # column
1539
+ "pwPerfIntervalOutHCBytes" : {
1540
+ "nodetype" : "column",
1541
+ "moduleName" : "PW-STD-MIB",
1542
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.7",
1543
+ "status" : "current",
1544
+ "syntax" : {
1545
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfIntervalCount"},
1546
+ },
1547
+ "access" : "readonly",
1548
+ "description" :
1549
+ """High-capacity counter for number of bytes forwarded by
1550
+ the PW (to the PSN) during the interval.
1551
+ This is the 64-bit version of pwPerfIntervalOutBytes,
1552
+ if pwPerfIntervalOutHCBytes is supported according to
1553
+ the rules spelled out in RFC 2863.""",
1554
+ }, # column
1555
+ "pwPerfIntervalInPackets" : {
1556
+ "nodetype" : "column",
1557
+ "moduleName" : "PW-STD-MIB",
1558
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.8",
1559
+ "status" : "current",
1560
+ "syntax" : {
1561
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1562
+ },
1563
+ "access" : "readonly",
1564
+ "description" :
1565
+ """This value represents the number of packets received
1566
+ by this PW during the interval.
1567
+ It MUST be equal to the least significant 32 bits of
1568
+ pwPerfIntervalInHCPackets, if pwPerfIntervalInHCPackets
1569
+ is supported according to the rules spelled out in
1570
+ RFC 2863.""",
1571
+ }, # column
1572
+ "pwPerfIntervalInBytes" : {
1573
+ "nodetype" : "column",
1574
+ "moduleName" : "PW-STD-MIB",
1575
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.9",
1576
+ "status" : "current",
1577
+ "syntax" : {
1578
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1579
+ },
1580
+ "access" : "readonly",
1581
+ "description" :
1582
+ """This value represents the number of bytes received by
1583
+ this PW during the interval. It MUST be equal to the
1584
+ least significant 32 bits of pwPerfIntervalInHCBytes, if
1585
+ pwPerfIntervalInHCBytes is supported according to the
1586
+ rules spelled out in RFC 2863.""",
1587
+ }, # column
1588
+ "pwPerfIntervalOutPackets" : {
1589
+ "nodetype" : "column",
1590
+ "moduleName" : "PW-STD-MIB",
1591
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.10",
1592
+ "status" : "current",
1593
+ "syntax" : {
1594
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1595
+ },
1596
+ "access" : "readonly",
1597
+ "description" :
1598
+ """This value represents the number of packets sent by this
1599
+ PW during the interval.
1600
+ It MUST be equal to the least significant 32 bits of
1601
+ pwPerfIntervalOutHCPackets, if
1602
+ pwPerfIntervalOutHCPackets is supported according to the
1603
+ rules spelled out in RFC 2863.""",
1604
+ }, # column
1605
+ "pwPerfIntervalOutBytes" : {
1606
+ "nodetype" : "column",
1607
+ "moduleName" : "PW-STD-MIB",
1608
+ "oid" : "1.3.6.1.2.1.10.246.1.4.1.11",
1609
+ "status" : "current",
1610
+ "syntax" : {
1611
+ "type" : { "module" :"PerfHist-TC-MIB", "name" : "PerfIntervalCount"},
1612
+ },
1613
+ "access" : "readonly",
1614
+ "description" :
1615
+ """This value represents the number of bytes sent by this
1616
+ PW during the interval.
1617
+ It MUST be equal to the least significant 32
1618
+ bits of pwPerfIntervalOutHCBytes,
1619
+ if pwPerfIntervalOutHCBytes is supported according to
1620
+ the rules spelled out in RFC 2863.""",
1621
+ }, # column
1622
+ "pwPerf1DayIntervalTable" : {
1623
+ "nodetype" : "table",
1624
+ "moduleName" : "PW-STD-MIB",
1625
+ "oid" : "1.3.6.1.2.1.10.246.1.5",
1626
+ "status" : "current",
1627
+ "description" :
1628
+ """This table provides per-PW performance information for
1629
+ the current day's measurement and the previous day's
1630
+
1631
+
1632
+
1633
+ interval.""",
1634
+ }, # table
1635
+ "pwPerf1DayIntervalEntry" : {
1636
+ "nodetype" : "row",
1637
+ "moduleName" : "PW-STD-MIB",
1638
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1",
1639
+ "status" : "current",
1640
+ "linkage" : [
1641
+ "pwIndex",
1642
+ "pwPerf1DayIntervalNumber",
1643
+ ],
1644
+ "description" :
1645
+ """An entry in this table is created by the agent for every
1646
+ PW.""",
1647
+ }, # row
1648
+ "pwPerf1DayIntervalNumber" : {
1649
+ "nodetype" : "column",
1650
+ "moduleName" : "PW-STD-MIB",
1651
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.1",
1652
+ "status" : "current",
1653
+ "syntax" : {
1654
+ "type" : {
1655
+ "basetype" : "Unsigned32",
1656
+ "ranges" : [
1657
+ {
1658
+ "min" : "1",
1659
+ "max" : "31"
1660
+ },
1661
+ ],
1662
+ "range" : {
1663
+ "min" : "1",
1664
+ "max" : "31"
1665
+ },
1666
+ },
1667
+ },
1668
+ "access" : "noaccess",
1669
+ "description" :
1670
+ """History Data Interval number. Interval 1 is the current day's
1671
+ measurement period, interval 2 is the most recent previous
1672
+ day, and interval 30 is 31 days ago. Intervals 3..31 are
1673
+ optional.""",
1674
+ }, # column
1675
+ "pwPerf1DayIntervalValidData" : {
1676
+ "nodetype" : "column",
1677
+ "moduleName" : "PW-STD-MIB",
1678
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.2",
1679
+ "status" : "current",
1680
+ "syntax" : {
1681
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1682
+ },
1683
+ "access" : "readonly",
1684
+ "description" :
1685
+ """This variable indicates if the data for this interval
1686
+ is valid.""",
1687
+ }, # column
1688
+ "pwPerf1DayIntervalTimeElapsed" : {
1689
+ "nodetype" : "column",
1690
+ "moduleName" : "PW-STD-MIB",
1691
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.3",
1692
+ "status" : "current",
1693
+ "syntax" : {
1694
+ "type" : { "module" :"HC-PerfHist-TC-MIB", "name" : "HCPerfTimeElapsed"},
1695
+ },
1696
+ "access" : "readonly",
1697
+ "units" : "seconds",
1698
+ "description" :
1699
+ """The number of seconds in the 1-day interval over which the
1700
+ performance monitoring information is actually counted.
1701
+ This value will be the same as the interval duration except
1702
+ in a situation where performance monitoring data could not
1703
+ be collected for any reason or where agent clock adjustments
1704
+ have been made.""",
1705
+ }, # column
1706
+ "pwPerf1DayIntervalInHCPackets" : {
1707
+ "nodetype" : "column",
1708
+ "moduleName" : "PW-STD-MIB",
1709
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.4",
1710
+ "status" : "current",
1711
+ "syntax" : {
1712
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1713
+ },
1714
+ "access" : "readonly",
1715
+ "description" :
1716
+ """High-capacity counter for the total number of packets
1717
+ received by the PW (from the PSN).""",
1718
+ }, # column
1719
+ "pwPerf1DayIntervalInHCBytes" : {
1720
+ "nodetype" : "column",
1721
+ "moduleName" : "PW-STD-MIB",
1722
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.5",
1723
+ "status" : "current",
1724
+ "syntax" : {
1725
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1726
+ },
1727
+ "access" : "readonly",
1728
+ "description" :
1729
+ """High-capacity counter for the total number of bytes
1730
+ received by the PW (from the PSN).""",
1731
+ }, # column
1732
+ "pwPerf1DayIntervalOutHCPackets" : {
1733
+ "nodetype" : "column",
1734
+ "moduleName" : "PW-STD-MIB",
1735
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.6",
1736
+ "status" : "current",
1737
+ "syntax" : {
1738
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1739
+ },
1740
+ "access" : "readonly",
1741
+ "description" :
1742
+ """High-capacity counter for the total number of packets
1743
+ forwarded by the PW (to the PSN).""",
1744
+ }, # column
1745
+ "pwPerf1DayIntervalOutHCBytes" : {
1746
+ "nodetype" : "column",
1747
+ "moduleName" : "PW-STD-MIB",
1748
+ "oid" : "1.3.6.1.2.1.10.246.1.5.1.7",
1749
+ "status" : "current",
1750
+ "syntax" : {
1751
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1752
+ },
1753
+ "access" : "readonly",
1754
+ "description" :
1755
+ """High-capacity counter for the total number of bytes
1756
+ forwarded by the PW (to the PSN).""",
1757
+ }, # column
1758
+ "pwPerfTotalErrorPackets" : {
1759
+ "nodetype" : "scalar",
1760
+ "moduleName" : "PW-STD-MIB",
1761
+ "oid" : "1.3.6.1.2.1.10.246.1.6",
1762
+ "status" : "current",
1763
+ "syntax" : {
1764
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1765
+ },
1766
+ "access" : "readonly",
1767
+ "description" :
1768
+ """Counter for number of errors at the PW processing level,
1769
+ for example, packets received with unknown PW label.""",
1770
+ }, # scalar
1771
+ "pwIndexMappingTable" : {
1772
+ "nodetype" : "table",
1773
+ "moduleName" : "PW-STD-MIB",
1774
+ "oid" : "1.3.6.1.2.1.10.246.1.7",
1775
+ "status" : "current",
1776
+ "description" :
1777
+ """This table enables the reverse mapping of the unique
1778
+ PWid parameters [peer IP, PW type, and PW ID] and the
1779
+ pwIndex. The table is not applicable for PWs created
1780
+ manually or by using the generalized FEC.""",
1781
+ }, # table
1782
+ "pwIndexMappingEntry" : {
1783
+ "nodetype" : "row",
1784
+ "moduleName" : "PW-STD-MIB",
1785
+ "oid" : "1.3.6.1.2.1.10.246.1.7.1",
1786
+ "status" : "current",
1787
+ "linkage" : [
1788
+ "pwIndexMappingPwType",
1789
+ "pwIndexMappingPwID",
1790
+ "pwIndexMappingPeerAddrType",
1791
+ "pwIndexMappingPeerAddr",
1792
+ ],
1793
+ "description" :
1794
+ """An entry in this table MUST be created by the agent for
1795
+ every PW created by the pwTable for which pwOwner
1796
+ equals pwIdFecSignaling and pwID is not zero.
1797
+
1798
+ Implementers need to be aware that if the value of
1799
+ the pwIndexMappingPeerAddr (an OID) has more than
1800
+ 113 sub-identifiers, then OIDs of column instances
1801
+ in this table will have more than 128 sub-identifiers
1802
+ and cannot be accessed using SNMPv1, SNMPv2c, or SNMPv3.""",
1803
+ }, # row
1804
+ "pwIndexMappingPwType" : {
1805
+ "nodetype" : "column",
1806
+ "moduleName" : "PW-STD-MIB",
1807
+ "oid" : "1.3.6.1.2.1.10.246.1.7.1.1",
1808
+ "status" : "current",
1809
+ "syntax" : {
1810
+ "type" : { "module" :"IANA-PWE3-MIB", "name" : "IANAPwTypeTC"},
1811
+ },
1812
+ "access" : "noaccess",
1813
+ "description" :
1814
+ """The PW type (indicates the service) of this PW.""",
1815
+ }, # column
1816
+ "pwIndexMappingPwID" : {
1817
+ "nodetype" : "column",
1818
+ "moduleName" : "PW-STD-MIB",
1819
+ "oid" : "1.3.6.1.2.1.10.246.1.7.1.2",
1820
+ "status" : "current",
1821
+ "syntax" : {
1822
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIDType"},
1823
+ },
1824
+ "access" : "noaccess",
1825
+ "description" :
1826
+ """The PW ID of this PW. Zero if the PW is configured
1827
+ manually.""",
1828
+ }, # column
1829
+ "pwIndexMappingPeerAddrType" : {
1830
+ "nodetype" : "column",
1831
+ "moduleName" : "PW-STD-MIB",
1832
+ "oid" : "1.3.6.1.2.1.10.246.1.7.1.3",
1833
+ "status" : "current",
1834
+ "syntax" : {
1835
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1836
+ },
1837
+ "access" : "noaccess",
1838
+ "description" :
1839
+ """IP address type of the peer node.""",
1840
+ }, # column
1841
+ "pwIndexMappingPeerAddr" : {
1842
+ "nodetype" : "column",
1843
+ "moduleName" : "PW-STD-MIB",
1844
+ "oid" : "1.3.6.1.2.1.10.246.1.7.1.4",
1845
+ "status" : "current",
1846
+ "syntax" : {
1847
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1848
+ },
1849
+ "access" : "noaccess",
1850
+ "description" :
1851
+ """IP address of the peer node.""",
1852
+ }, # column
1853
+ "pwIndexMappingPwIndex" : {
1854
+ "nodetype" : "column",
1855
+ "moduleName" : "PW-STD-MIB",
1856
+ "oid" : "1.3.6.1.2.1.10.246.1.7.1.5",
1857
+ "status" : "current",
1858
+ "syntax" : {
1859
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIndexType"},
1860
+ },
1861
+ "access" : "readonly",
1862
+ "description" :
1863
+ """The value that represents the PW in the pwTable.""",
1864
+ }, # column
1865
+ "pwPeerMappingTable" : {
1866
+ "nodetype" : "table",
1867
+ "moduleName" : "PW-STD-MIB",
1868
+ "oid" : "1.3.6.1.2.1.10.246.1.8",
1869
+ "status" : "current",
1870
+ "description" :
1871
+ """This table provides reverse mapping of the existing PW
1872
+ based on PW type and PW ID ordering. This table is
1873
+ typically useful for the element management system (EMS)
1874
+ ordered query of existing PWs.""",
1875
+ }, # table
1876
+ "pwPeerMappingEntry" : {
1877
+ "nodetype" : "row",
1878
+ "moduleName" : "PW-STD-MIB",
1879
+ "oid" : "1.3.6.1.2.1.10.246.1.8.1",
1880
+ "status" : "current",
1881
+ "linkage" : [
1882
+ "pwPeerMappingPeerAddrType",
1883
+ "pwPeerMappingPeerAddr",
1884
+ "pwPeerMappingPwType",
1885
+ "pwPeerMappingPwID",
1886
+ ],
1887
+ "description" :
1888
+ """An entry in this table is created by the agent for every
1889
+ PW entry in the pwTable.
1890
+
1891
+ Implementers need to be aware that if the value of the
1892
+ pwPeerMappingPeerAddr (an OID) has more than 113
1893
+ sub-identifiers, then OIDs of column instances in this
1894
+ table will have more than 128 sub-identifiers and cannot
1895
+ be accessed using SNMPv1, SNMPv2c, or SNMPv3.""",
1896
+ }, # row
1897
+ "pwPeerMappingPeerAddrType" : {
1898
+ "nodetype" : "column",
1899
+ "moduleName" : "PW-STD-MIB",
1900
+ "oid" : "1.3.6.1.2.1.10.246.1.8.1.1",
1901
+ "status" : "current",
1902
+ "syntax" : {
1903
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1904
+ },
1905
+ "access" : "noaccess",
1906
+ "description" :
1907
+ """IP address type of the peer node.""",
1908
+ }, # column
1909
+ "pwPeerMappingPeerAddr" : {
1910
+ "nodetype" : "column",
1911
+ "moduleName" : "PW-STD-MIB",
1912
+ "oid" : "1.3.6.1.2.1.10.246.1.8.1.2",
1913
+ "status" : "current",
1914
+ "syntax" : {
1915
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1916
+ },
1917
+ "access" : "noaccess",
1918
+ "description" :
1919
+ """IP address of the peer node.""",
1920
+ }, # column
1921
+ "pwPeerMappingPwType" : {
1922
+ "nodetype" : "column",
1923
+ "moduleName" : "PW-STD-MIB",
1924
+ "oid" : "1.3.6.1.2.1.10.246.1.8.1.3",
1925
+ "status" : "current",
1926
+ "syntax" : {
1927
+ "type" : { "module" :"IANA-PWE3-MIB", "name" : "IANAPwTypeTC"},
1928
+ },
1929
+ "access" : "noaccess",
1930
+ "description" :
1931
+ """The PW type (indicates the emulated service) of this PW.""",
1932
+ }, # column
1933
+ "pwPeerMappingPwID" : {
1934
+ "nodetype" : "column",
1935
+ "moduleName" : "PW-STD-MIB",
1936
+ "oid" : "1.3.6.1.2.1.10.246.1.8.1.4",
1937
+ "status" : "current",
1938
+ "syntax" : {
1939
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIDType"},
1940
+ },
1941
+ "access" : "noaccess",
1942
+ "description" :
1943
+ """The PW ID of this PW. Zero if the PW is configured
1944
+ manually.""",
1945
+ }, # column
1946
+ "pwPeerMappingPwIndex" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "PW-STD-MIB",
1949
+ "oid" : "1.3.6.1.2.1.10.246.1.8.1.5",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIndexType"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "description" :
1956
+ """The value that represents the PW in the pwTable.""",
1957
+ }, # column
1958
+ "pwUpDownNotifEnable" : {
1959
+ "nodetype" : "scalar",
1960
+ "moduleName" : "PW-STD-MIB",
1961
+ "oid" : "1.3.6.1.2.1.10.246.1.9",
1962
+ "status" : "current",
1963
+ "syntax" : {
1964
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1965
+ },
1966
+ "access" : "readwrite",
1967
+ "default" : "false",
1968
+ "description" :
1969
+ """If this object is set to true(1), then it enables
1970
+ the emission of pwUp and pwDown
1971
+ notifications; otherwise, these notifications are not
1972
+ emitted.""",
1973
+ "reference" :
1974
+ """See also [RFC3413] for explanation that
1975
+ notifications are under the ultimate control of the
1976
+ MIB module in this document.""",
1977
+ }, # scalar
1978
+ "pwDeletedNotifEnable" : {
1979
+ "nodetype" : "scalar",
1980
+ "moduleName" : "PW-STD-MIB",
1981
+ "oid" : "1.3.6.1.2.1.10.246.1.10",
1982
+ "status" : "current",
1983
+ "syntax" : {
1984
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1985
+ },
1986
+ "access" : "readwrite",
1987
+ "default" : "false",
1988
+ "description" :
1989
+ """If this object is set to true(1), then it enables the
1990
+ emission of pwDeleted notification; otherwise, this
1991
+ notification is not emitted.""",
1992
+ "reference" :
1993
+ """See also [RFC3413] for explanation that
1994
+ notifications are under the ultimate control of the
1995
+ MIB module in this document.""",
1996
+ }, # scalar
1997
+ "pwNotifRate" : {
1998
+ "nodetype" : "scalar",
1999
+ "moduleName" : "PW-STD-MIB",
2000
+ "oid" : "1.3.6.1.2.1.10.246.1.11",
2001
+ "status" : "current",
2002
+ "syntax" : {
2003
+ "type" : { "module" :"", "name" : "Unsigned32"},
2004
+ },
2005
+ "access" : "readwrite",
2006
+ "description" :
2007
+ """This object defines the maximum number of PW notifications
2008
+ that can be emitted from the device per second.""",
2009
+ }, # scalar
2010
+ "pwGenFecIndexMappingTable" : {
2011
+ "nodetype" : "table",
2012
+ "moduleName" : "PW-STD-MIB",
2013
+ "oid" : "1.3.6.1.2.1.10.246.1.12",
2014
+ "status" : "current",
2015
+ "description" :
2016
+ """This table enables the reverse mapping of the unique
2017
+ PWid parameters [GroupAttachmentID, LocalAttachmentID,
2018
+ and PeerAttachmentID] and the pwIndex. The table is
2019
+ only applicable for PW using the generalized FEC.""",
2020
+ }, # table
2021
+ "pwGenFecIndexMappingEntry" : {
2022
+ "nodetype" : "row",
2023
+ "moduleName" : "PW-STD-MIB",
2024
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1",
2025
+ "status" : "current",
2026
+ "linkage" : [
2027
+ "pwGenFecIndexMappingAGIType",
2028
+ "pwGenFecIndexMappingAGI",
2029
+ "pwGenFecIndexMappingLocalAIIType",
2030
+ "pwGenFecIndexMappingLocalAII",
2031
+ "pwGenFecIndexMappingRemoteAIIType",
2032
+ "pwGenFecIndexMappingRemoteAII",
2033
+ ],
2034
+ "description" :
2035
+ """An entry in this table MUST be created by the agent for
2036
+ every PW created by the pwTable for which pwOwner
2037
+ equals genFecSignaling.
2038
+
2039
+
2040
+
2041
+
2042
+ Implementers need to be aware that if the combined value
2043
+ of pwGenFecIndexMappingAGI, pwGenFecIndexMappingLocalAII,
2044
+ and pwGenFecIndexMappingRemoteAII (OIDs) has more than
2045
+ 113 sub-identifiers, then OIDs of column instances
2046
+ in this table will have more than 128 sub-identifiers
2047
+ and cannot be accessed using SNMPv1, SNMPv2c, or SNMPv3.""",
2048
+ }, # row
2049
+ "pwGenFecIndexMappingAGIType" : {
2050
+ "nodetype" : "column",
2051
+ "moduleName" : "PW-STD-MIB",
2052
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.1",
2053
+ "status" : "current",
2054
+ "syntax" : {
2055
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGenIdType"},
2056
+ },
2057
+ "access" : "noaccess",
2058
+ "description" :
2059
+ """This object is the type of the attachment
2060
+ group identifier (AGI) that this PW belongs to.""",
2061
+ }, # column
2062
+ "pwGenFecIndexMappingAGI" : {
2063
+ "nodetype" : "column",
2064
+ "moduleName" : "PW-STD-MIB",
2065
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.2",
2066
+ "status" : "current",
2067
+ "syntax" : {
2068
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
2069
+ },
2070
+ "access" : "noaccess",
2071
+ "description" :
2072
+ """This object is an octet string representing the attachment
2073
+ group identifier (AGI) that this PW belongs to,
2074
+ which typically identifies the VPN ID.""",
2075
+ }, # column
2076
+ "pwGenFecIndexMappingLocalAIIType" : {
2077
+ "nodetype" : "column",
2078
+ "moduleName" : "PW-STD-MIB",
2079
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.3",
2080
+ "status" : "current",
2081
+ "syntax" : {
2082
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGenIdType"},
2083
+ },
2084
+ "access" : "noaccess",
2085
+ "description" :
2086
+ """This object is the type of the local forwarder
2087
+ attachment individual identifier (AII) to be used
2088
+ by this PW.""",
2089
+ }, # column
2090
+ "pwGenFecIndexMappingLocalAII" : {
2091
+ "nodetype" : "column",
2092
+ "moduleName" : "PW-STD-MIB",
2093
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.4",
2094
+ "status" : "current",
2095
+ "syntax" : {
2096
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
2097
+ },
2098
+ "access" : "noaccess",
2099
+ "description" :
2100
+ """This object is an octet string representing the local
2101
+ forwarder attachment individual identifier (AII) to be used
2102
+ by this PW. It is used as the SAII for outgoing signaling
2103
+ messages and the TAII in the incoming messages from the
2104
+ peer.""",
2105
+ }, # column
2106
+ "pwGenFecIndexMappingRemoteAIIType" : {
2107
+ "nodetype" : "column",
2108
+ "moduleName" : "PW-STD-MIB",
2109
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.5",
2110
+ "status" : "current",
2111
+ "syntax" : {
2112
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwGenIdType"},
2113
+ },
2114
+ "access" : "noaccess",
2115
+ "description" :
2116
+ """This object is the type of the remote forwarder
2117
+ attachment individual identifier (AII) to be used
2118
+ by this PW.""",
2119
+ }, # column
2120
+ "pwGenFecIndexMappingRemoteAII" : {
2121
+ "nodetype" : "column",
2122
+ "moduleName" : "PW-STD-MIB",
2123
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.6",
2124
+ "status" : "current",
2125
+ "syntax" : {
2126
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwAttachmentIdentifierType"},
2127
+ },
2128
+ "access" : "noaccess",
2129
+ "description" :
2130
+ """This object is an octet string representing the peer
2131
+ forwarder attachment individual identifier (AII) to be used
2132
+ by this PW. It is used as the TAII for outgoing signaling
2133
+ messages and the SAII in the incoming messages from the
2134
+ peer.""",
2135
+ }, # column
2136
+ "pwGenFecIndexMappingPwIndex" : {
2137
+ "nodetype" : "column",
2138
+ "moduleName" : "PW-STD-MIB",
2139
+ "oid" : "1.3.6.1.2.1.10.246.1.12.1.7",
2140
+ "status" : "current",
2141
+ "syntax" : {
2142
+ "type" : { "module" :"PW-TC-STD-MIB", "name" : "PwIndexType"},
2143
+ },
2144
+ "access" : "readonly",
2145
+ "description" :
2146
+ """The value that represents the PW in the pwTable.""",
2147
+ }, # column
2148
+ "pwConformance" : {
2149
+ "nodetype" : "node",
2150
+ "moduleName" : "PW-STD-MIB",
2151
+ "oid" : "1.3.6.1.2.1.10.246.2",
2152
+ }, # node
2153
+ "pwGroups" : {
2154
+ "nodetype" : "node",
2155
+ "moduleName" : "PW-STD-MIB",
2156
+ "oid" : "1.3.6.1.2.1.10.246.2.1",
2157
+ }, # node
2158
+ "pwCompliances" : {
2159
+ "nodetype" : "node",
2160
+ "moduleName" : "PW-STD-MIB",
2161
+ "oid" : "1.3.6.1.2.1.10.246.2.2",
2162
+ }, # node
2163
+ }, # nodes
2164
+
2165
+ "notifications" : {
2166
+ "pwDown" : {
2167
+ "nodetype" : "notification",
2168
+ "moduleName" : "PW-STD-MIB",
2169
+ "oid" : "1.3.6.1.2.1.10.246.0.1",
2170
+ "status" : "current",
2171
+ "objects" : {
2172
+ "pwOperStatus" : {
2173
+ "nodetype" : "object",
2174
+ "module" : "PW-STD-MIB"
2175
+ },
2176
+ "pwOperStatus" : {
2177
+ "nodetype" : "object",
2178
+ "module" : "PW-STD-MIB"
2179
+ },
2180
+ },
2181
+ "description" :
2182
+ """This notification is generated when the pwOperStatus
2183
+ object for one or more contiguous entries in the pwTable are
2184
+ about to enter the down(2) or lowerLayerDown(6) state from
2185
+ any other state, except for transition from the
2186
+ notPresent(5) state. For the purpose of deciding when
2187
+ these notifications occur, the lowerLayerDown(6) state
2188
+ and the down(2) state are considered to be equivalent;
2189
+ i.e., there is no notification on transition from
2190
+ lowerLayerDown(6) into down(2), and there is a trap on
2191
+ transition from any other state except down(2) (and
2192
+ notPresent) into lowerLayerDown(6).
2193
+
2194
+ The included values of pwOperStatus MUST each be equal to
2195
+ down(2) or lowerLayerDown(6). The two instances of
2196
+ pwOperStatus in this notification indicate the range of
2197
+ indexes that are affected. Note that all the indexes of
2198
+ the two ends of the range can be derived from the
2199
+ instance identifiers of these two objects. For cases
2200
+ where a contiguous range of cross-connects have
2201
+ transitioned into the down(2) and lowerLayerDown(6) states
2202
+ at roughly the same time, the device SHOULD issue a single
2203
+ notification for each range of contiguous indexes in an
2204
+ effort to minimize the emission of a large number of
2205
+ notifications. If a notification has to be issued for
2206
+ just a single cross-connect entry, then the instance
2207
+ identifier (and values) of the two pwOperStatus objects
2208
+ MUST be identical.""",
2209
+ }, # notification
2210
+ "pwUp" : {
2211
+ "nodetype" : "notification",
2212
+ "moduleName" : "PW-STD-MIB",
2213
+ "oid" : "1.3.6.1.2.1.10.246.0.2",
2214
+ "status" : "current",
2215
+ "objects" : {
2216
+ "pwOperStatus" : {
2217
+ "nodetype" : "object",
2218
+ "module" : "PW-STD-MIB"
2219
+ },
2220
+ "pwOperStatus" : {
2221
+ "nodetype" : "object",
2222
+ "module" : "PW-STD-MIB"
2223
+ },
2224
+ },
2225
+ "description" :
2226
+ """This notification is generated when the pwOperStatus
2227
+ object for one or more contiguous entries in the pwTable are
2228
+ about to enter the up(1) state from some other state
2229
+
2230
+
2231
+
2232
+ except the notPresent(5) state and given that the pwDown
2233
+ notification been issued for these entries. The included
2234
+ values of pwOperStatus MUST both be set equal to this
2235
+ new state (i.e., up(1)). The two instances of pwOperStatus
2236
+ in this notification indicate the range of indexes that
2237
+ are affected. Note that all the indexes of the two ends
2238
+ of the range can be derived from the instance identifiers
2239
+ of these two objects. For cases where a contiguous range
2240
+ of cross-connects have transitioned into the up(1) state
2241
+ at roughly the same time, the device SHOULD issue a single
2242
+ notification for each range of contiguous indexes in an
2243
+ effort to minimize the emission of a large number of
2244
+ notifications. If a notification has to be issued for
2245
+ just a single cross-connect entry, then the instance
2246
+ identifier (and values) of the two pwOperStatus objects
2247
+ MUST be identical.""",
2248
+ }, # notification
2249
+ "pwDeleted" : {
2250
+ "nodetype" : "notification",
2251
+ "moduleName" : "PW-STD-MIB",
2252
+ "oid" : "1.3.6.1.2.1.10.246.0.3",
2253
+ "status" : "current",
2254
+ "objects" : {
2255
+ "pwType" : {
2256
+ "nodetype" : "object",
2257
+ "module" : "PW-STD-MIB"
2258
+ },
2259
+ "pwID" : {
2260
+ "nodetype" : "object",
2261
+ "module" : "PW-STD-MIB"
2262
+ },
2263
+ "pwPeerAddrType" : {
2264
+ "nodetype" : "object",
2265
+ "module" : "PW-STD-MIB"
2266
+ },
2267
+ "pwPeerAddr" : {
2268
+ "nodetype" : "object",
2269
+ "module" : "PW-STD-MIB"
2270
+ },
2271
+ },
2272
+ "description" :
2273
+ """This notification is generated when the PW has been
2274
+ deleted, i.e., when the pwRowStatus has been set to
2275
+ destroy(6) or the PW has been deleted by a non-MIB
2276
+ application or due to an auto-discovery process.""",
2277
+ }, # notification
2278
+ }, # notifications
2279
+
2280
+ "groups" : {
2281
+ "pwBasicGroup" : {
2282
+ "nodetype" : "group",
2283
+ "moduleName" : "PW-STD-MIB",
2284
+ "oid" : "1.3.6.1.2.1.10.246.2.1.1",
2285
+ "status" : "current",
2286
+ "members" : {
2287
+ "pwType" : {
2288
+ "nodetype" : "member",
2289
+ "module" : "PW-STD-MIB"
2290
+ },
2291
+ "pwOwner" : {
2292
+ "nodetype" : "member",
2293
+ "module" : "PW-STD-MIB"
2294
+ },
2295
+ "pwPsnType" : {
2296
+ "nodetype" : "member",
2297
+ "module" : "PW-STD-MIB"
2298
+ },
2299
+ "pwIfIndex" : {
2300
+ "nodetype" : "member",
2301
+ "module" : "PW-STD-MIB"
2302
+ },
2303
+ "pwCwPreference" : {
2304
+ "nodetype" : "member",
2305
+ "module" : "PW-STD-MIB"
2306
+ },
2307
+ "pwLocalIfMtu" : {
2308
+ "nodetype" : "member",
2309
+ "module" : "PW-STD-MIB"
2310
+ },
2311
+ "pwOutboundLabel" : {
2312
+ "nodetype" : "member",
2313
+ "module" : "PW-STD-MIB"
2314
+ },
2315
+ "pwInboundLabel" : {
2316
+ "nodetype" : "member",
2317
+ "module" : "PW-STD-MIB"
2318
+ },
2319
+ "pwName" : {
2320
+ "nodetype" : "member",
2321
+ "module" : "PW-STD-MIB"
2322
+ },
2323
+ "pwDescr" : {
2324
+ "nodetype" : "member",
2325
+ "module" : "PW-STD-MIB"
2326
+ },
2327
+ "pwCreateTime" : {
2328
+ "nodetype" : "member",
2329
+ "module" : "PW-STD-MIB"
2330
+ },
2331
+ "pwUpTime" : {
2332
+ "nodetype" : "member",
2333
+ "module" : "PW-STD-MIB"
2334
+ },
2335
+ "pwLastChange" : {
2336
+ "nodetype" : "member",
2337
+ "module" : "PW-STD-MIB"
2338
+ },
2339
+ "pwAdminStatus" : {
2340
+ "nodetype" : "member",
2341
+ "module" : "PW-STD-MIB"
2342
+ },
2343
+ "pwOperStatus" : {
2344
+ "nodetype" : "member",
2345
+ "module" : "PW-STD-MIB"
2346
+ },
2347
+ "pwLocalStatus" : {
2348
+ "nodetype" : "member",
2349
+ "module" : "PW-STD-MIB"
2350
+ },
2351
+ "pwRowStatus" : {
2352
+ "nodetype" : "member",
2353
+ "module" : "PW-STD-MIB"
2354
+ },
2355
+ "pwStorageType" : {
2356
+ "nodetype" : "member",
2357
+ "module" : "PW-STD-MIB"
2358
+ },
2359
+ "pwOamEnable" : {
2360
+ "nodetype" : "member",
2361
+ "module" : "PW-STD-MIB"
2362
+ },
2363
+ }, # members
2364
+ "description" :
2365
+ """Collection of objects that are required in all
2366
+ implementations that support the PW MIB module.""",
2367
+ }, # group
2368
+ "pwPwIdGroup" : {
2369
+ "nodetype" : "group",
2370
+ "moduleName" : "PW-STD-MIB",
2371
+ "oid" : "1.3.6.1.2.1.10.246.2.1.2",
2372
+ "status" : "current",
2373
+ "members" : {
2374
+ "pwID" : {
2375
+ "nodetype" : "member",
2376
+ "module" : "PW-STD-MIB"
2377
+ },
2378
+ }, # members
2379
+ "description" :
2380
+ """Collection of objects required for PW ID configuration
2381
+ and signaling.""",
2382
+ }, # group
2383
+ "pwGeneralizedFecGroup" : {
2384
+ "nodetype" : "group",
2385
+ "moduleName" : "PW-STD-MIB",
2386
+ "oid" : "1.3.6.1.2.1.10.246.2.1.3",
2387
+ "status" : "current",
2388
+ "members" : {
2389
+ "pwGroupAttachmentID" : {
2390
+ "nodetype" : "member",
2391
+ "module" : "PW-STD-MIB"
2392
+ },
2393
+ "pwLocalAttachmentID" : {
2394
+ "nodetype" : "member",
2395
+ "module" : "PW-STD-MIB"
2396
+ },
2397
+ "pwRemoteAttachmentID" : {
2398
+ "nodetype" : "member",
2399
+ "module" : "PW-STD-MIB"
2400
+ },
2401
+ "pwGenAGIType" : {
2402
+ "nodetype" : "member",
2403
+ "module" : "PW-STD-MIB"
2404
+ },
2405
+ "pwGenLocalAIIType" : {
2406
+ "nodetype" : "member",
2407
+ "module" : "PW-STD-MIB"
2408
+ },
2409
+ "pwGenRemoteAIIType" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "PW-STD-MIB"
2412
+ },
2413
+ }, # members
2414
+ "description" :
2415
+ """Collection of objects required for generalized FEC
2416
+
2417
+
2418
+
2419
+ configuration and signaling.""",
2420
+ }, # group
2421
+ "pwFcsGroup" : {
2422
+ "nodetype" : "group",
2423
+ "moduleName" : "PW-STD-MIB",
2424
+ "oid" : "1.3.6.1.2.1.10.246.2.1.4",
2425
+ "status" : "current",
2426
+ "members" : {
2427
+ "pwFcsRetentionCfg" : {
2428
+ "nodetype" : "member",
2429
+ "module" : "PW-STD-MIB"
2430
+ },
2431
+ "pwFcsRetentionStatus" : {
2432
+ "nodetype" : "member",
2433
+ "module" : "PW-STD-MIB"
2434
+ },
2435
+ }, # members
2436
+ "description" :
2437
+ """Collection of objects required for FCS retention
2438
+ configuration and signaling.""",
2439
+ }, # group
2440
+ "pwFragGroup" : {
2441
+ "nodetype" : "group",
2442
+ "moduleName" : "PW-STD-MIB",
2443
+ "oid" : "1.3.6.1.2.1.10.246.2.1.5",
2444
+ "status" : "current",
2445
+ "members" : {
2446
+ "pwFragmentCfgSize" : {
2447
+ "nodetype" : "member",
2448
+ "module" : "PW-STD-MIB"
2449
+ },
2450
+ "pwRmtFragCapability" : {
2451
+ "nodetype" : "member",
2452
+ "module" : "PW-STD-MIB"
2453
+ },
2454
+ }, # members
2455
+ "description" :
2456
+ """Collection of objects required for fragmentation
2457
+ configuration and signaling.""",
2458
+ }, # group
2459
+ "pwPwStatusGroup" : {
2460
+ "nodetype" : "group",
2461
+ "moduleName" : "PW-STD-MIB",
2462
+ "oid" : "1.3.6.1.2.1.10.246.2.1.6",
2463
+ "status" : "current",
2464
+ "members" : {
2465
+ "pwRemoteCapabilities" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "PW-STD-MIB"
2468
+ },
2469
+ "pwRemoteStatusCapable" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "PW-STD-MIB"
2472
+ },
2473
+ "pwRemoteStatus" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "PW-STD-MIB"
2476
+ },
2477
+ }, # members
2478
+ "description" :
2479
+ """Collection of objects required for PW status configuration
2480
+ and signaling.""",
2481
+ }, # group
2482
+ "pwGetNextGroup" : {
2483
+ "nodetype" : "group",
2484
+ "moduleName" : "PW-STD-MIB",
2485
+ "oid" : "1.3.6.1.2.1.10.246.2.1.7",
2486
+ "status" : "current",
2487
+ "members" : {
2488
+ "pwIndexNext" : {
2489
+ "nodetype" : "member",
2490
+ "module" : "PW-STD-MIB"
2491
+ },
2492
+ }, # members
2493
+ "description" :
2494
+ """Collection of objects for getting the next available
2495
+
2496
+
2497
+
2498
+ index.""",
2499
+ }, # group
2500
+ "pwPriorityGroup" : {
2501
+ "nodetype" : "group",
2502
+ "moduleName" : "PW-STD-MIB",
2503
+ "oid" : "1.3.6.1.2.1.10.246.2.1.8",
2504
+ "status" : "current",
2505
+ "members" : {
2506
+ "pwSetUpPriority" : {
2507
+ "nodetype" : "member",
2508
+ "module" : "PW-STD-MIB"
2509
+ },
2510
+ "pwHoldingPriority" : {
2511
+ "nodetype" : "member",
2512
+ "module" : "PW-STD-MIB"
2513
+ },
2514
+ }, # members
2515
+ "description" :
2516
+ """Collection of objects for controlling the PW setup and
2517
+ holding priority.""",
2518
+ }, # group
2519
+ "pwAttachmentGroup" : {
2520
+ "nodetype" : "group",
2521
+ "moduleName" : "PW-STD-MIB",
2522
+ "oid" : "1.3.6.1.2.1.10.246.2.1.9",
2523
+ "status" : "current",
2524
+ "members" : {
2525
+ "pwAttachedPwIndex" : {
2526
+ "nodetype" : "member",
2527
+ "module" : "PW-STD-MIB"
2528
+ },
2529
+ }, # members
2530
+ "description" :
2531
+ """Collection of objects for PW configuration as ifIndex.""",
2532
+ }, # group
2533
+ "pwPerformanceGeneralGroup" : {
2534
+ "nodetype" : "group",
2535
+ "moduleName" : "PW-STD-MIB",
2536
+ "oid" : "1.3.6.1.2.1.10.246.2.1.10",
2537
+ "status" : "current",
2538
+ "members" : {
2539
+ "pwPerfTotalErrorPackets" : {
2540
+ "nodetype" : "member",
2541
+ "module" : "PW-STD-MIB"
2542
+ },
2543
+ }, # members
2544
+ "description" :
2545
+ """Collection of general objects needed for managing the
2546
+ total running performance parameters.""",
2547
+ }, # group
2548
+ "pwPeformance1DayIntervalGroup" : {
2549
+ "nodetype" : "group",
2550
+ "moduleName" : "PW-STD-MIB",
2551
+ "oid" : "1.3.6.1.2.1.10.246.2.1.11",
2552
+ "status" : "current",
2553
+ "members" : {
2554
+ "pwPerf1DayIntervalValidData" : {
2555
+ "nodetype" : "member",
2556
+ "module" : "PW-STD-MIB"
2557
+ },
2558
+ "pwPerf1DayIntervalTimeElapsed" : {
2559
+ "nodetype" : "member",
2560
+ "module" : "PW-STD-MIB"
2561
+ },
2562
+ "pwPerf1DayIntervalInHCPackets" : {
2563
+ "nodetype" : "member",
2564
+ "module" : "PW-STD-MIB"
2565
+ },
2566
+ "pwPerf1DayIntervalInHCBytes" : {
2567
+ "nodetype" : "member",
2568
+ "module" : "PW-STD-MIB"
2569
+ },
2570
+ "pwPerf1DayIntervalOutHCPackets" : {
2571
+ "nodetype" : "member",
2572
+ "module" : "PW-STD-MIB"
2573
+ },
2574
+ "pwPerf1DayIntervalOutHCBytes" : {
2575
+ "nodetype" : "member",
2576
+ "module" : "PW-STD-MIB"
2577
+ },
2578
+ }, # members
2579
+ "description" :
2580
+ """Collection of objects needed for a PW running 1-day
2581
+
2582
+
2583
+
2584
+ interval performance collection.""",
2585
+ }, # group
2586
+ "pwPerformanceIntervalGeneralGroup" : {
2587
+ "nodetype" : "group",
2588
+ "moduleName" : "PW-STD-MIB",
2589
+ "oid" : "1.3.6.1.2.1.10.246.2.1.12",
2590
+ "status" : "current",
2591
+ "members" : {
2592
+ "pwTimeElapsed" : {
2593
+ "nodetype" : "member",
2594
+ "module" : "PW-STD-MIB"
2595
+ },
2596
+ "pwValidIntervals" : {
2597
+ "nodetype" : "member",
2598
+ "module" : "PW-STD-MIB"
2599
+ },
2600
+ "pwPerfIntervalValidData" : {
2601
+ "nodetype" : "member",
2602
+ "module" : "PW-STD-MIB"
2603
+ },
2604
+ "pwPerfIntervalTimeElapsed" : {
2605
+ "nodetype" : "member",
2606
+ "module" : "PW-STD-MIB"
2607
+ },
2608
+ }, # members
2609
+ "description" :
2610
+ """Collection of general objects needed for managing the
2611
+ interval performance parameters.""",
2612
+ }, # group
2613
+ "pwPeformanceIntervalGroup" : {
2614
+ "nodetype" : "group",
2615
+ "moduleName" : "PW-STD-MIB",
2616
+ "oid" : "1.3.6.1.2.1.10.246.2.1.13",
2617
+ "status" : "current",
2618
+ "members" : {
2619
+ "pwPerfCurrentInPackets" : {
2620
+ "nodetype" : "member",
2621
+ "module" : "PW-STD-MIB"
2622
+ },
2623
+ "pwPerfCurrentInBytes" : {
2624
+ "nodetype" : "member",
2625
+ "module" : "PW-STD-MIB"
2626
+ },
2627
+ "pwPerfCurrentOutPackets" : {
2628
+ "nodetype" : "member",
2629
+ "module" : "PW-STD-MIB"
2630
+ },
2631
+ "pwPerfCurrentOutBytes" : {
2632
+ "nodetype" : "member",
2633
+ "module" : "PW-STD-MIB"
2634
+ },
2635
+ "pwPerfIntervalInPackets" : {
2636
+ "nodetype" : "member",
2637
+ "module" : "PW-STD-MIB"
2638
+ },
2639
+ "pwPerfIntervalInBytes" : {
2640
+ "nodetype" : "member",
2641
+ "module" : "PW-STD-MIB"
2642
+ },
2643
+ "pwPerfIntervalOutPackets" : {
2644
+ "nodetype" : "member",
2645
+ "module" : "PW-STD-MIB"
2646
+ },
2647
+ "pwPerfIntervalOutBytes" : {
2648
+ "nodetype" : "member",
2649
+ "module" : "PW-STD-MIB"
2650
+ },
2651
+ }, # members
2652
+ "description" :
2653
+ """Collection of 32-bit objects needed for PW performance
2654
+ collection in 15-minute intervals.""",
2655
+ }, # group
2656
+ "pwHCPeformanceIntervalGroup" : {
2657
+ "nodetype" : "group",
2658
+ "moduleName" : "PW-STD-MIB",
2659
+ "oid" : "1.3.6.1.2.1.10.246.2.1.14",
2660
+ "status" : "current",
2661
+ "members" : {
2662
+ "pwPerfCurrentInHCPackets" : {
2663
+ "nodetype" : "member",
2664
+ "module" : "PW-STD-MIB"
2665
+ },
2666
+ "pwPerfCurrentInHCBytes" : {
2667
+ "nodetype" : "member",
2668
+ "module" : "PW-STD-MIB"
2669
+ },
2670
+ "pwPerfCurrentOutHCPackets" : {
2671
+ "nodetype" : "member",
2672
+ "module" : "PW-STD-MIB"
2673
+ },
2674
+ "pwPerfCurrentOutHCBytes" : {
2675
+ "nodetype" : "member",
2676
+ "module" : "PW-STD-MIB"
2677
+ },
2678
+ "pwPerfIntervalInHCPackets" : {
2679
+ "nodetype" : "member",
2680
+ "module" : "PW-STD-MIB"
2681
+ },
2682
+ "pwPerfIntervalInHCBytes" : {
2683
+ "nodetype" : "member",
2684
+ "module" : "PW-STD-MIB"
2685
+ },
2686
+ "pwPerfIntervalOutHCPackets" : {
2687
+ "nodetype" : "member",
2688
+ "module" : "PW-STD-MIB"
2689
+ },
2690
+ "pwPerfIntervalOutHCBytes" : {
2691
+ "nodetype" : "member",
2692
+ "module" : "PW-STD-MIB"
2693
+ },
2694
+ }, # members
2695
+ "description" :
2696
+ """Collection of HC objects needed for PW performance
2697
+ collection in 15-minute intervals.""",
2698
+ }, # group
2699
+ "pwMappingTablesGroup" : {
2700
+ "nodetype" : "group",
2701
+ "moduleName" : "PW-STD-MIB",
2702
+ "oid" : "1.3.6.1.2.1.10.246.2.1.15",
2703
+ "status" : "current",
2704
+ "members" : {
2705
+ "pwIndexMappingPwIndex" : {
2706
+ "nodetype" : "member",
2707
+ "module" : "PW-STD-MIB"
2708
+ },
2709
+ "pwPeerMappingPwIndex" : {
2710
+ "nodetype" : "member",
2711
+ "module" : "PW-STD-MIB"
2712
+ },
2713
+ "pwGenFecIndexMappingPwIndex" : {
2714
+ "nodetype" : "member",
2715
+ "module" : "PW-STD-MIB"
2716
+ },
2717
+ }, # members
2718
+ "description" :
2719
+ """Collection of objects contained in the reverse
2720
+ mapping tables.""",
2721
+ }, # group
2722
+ "pwNotificationControlGroup" : {
2723
+ "nodetype" : "group",
2724
+ "moduleName" : "PW-STD-MIB",
2725
+ "oid" : "1.3.6.1.2.1.10.246.2.1.16",
2726
+ "status" : "current",
2727
+ "members" : {
2728
+ "pwUpDownNotifEnable" : {
2729
+ "nodetype" : "member",
2730
+ "module" : "PW-STD-MIB"
2731
+ },
2732
+ "pwDeletedNotifEnable" : {
2733
+ "nodetype" : "member",
2734
+ "module" : "PW-STD-MIB"
2735
+ },
2736
+ "pwNotifRate" : {
2737
+ "nodetype" : "member",
2738
+ "module" : "PW-STD-MIB"
2739
+ },
2740
+ }, # members
2741
+ "description" :
2742
+ """Collection of objects for controlling the PW
2743
+ notifications.""",
2744
+ }, # group
2745
+ "pwNotificationGroup" : {
2746
+ "nodetype" : "group",
2747
+ "moduleName" : "PW-STD-MIB",
2748
+ "oid" : "1.3.6.1.2.1.10.246.2.1.17",
2749
+ "status" : "current",
2750
+ "members" : {
2751
+ "pwUp" : {
2752
+ "nodetype" : "member",
2753
+ "module" : "PW-STD-MIB"
2754
+ },
2755
+ "pwDown" : {
2756
+ "nodetype" : "member",
2757
+ "module" : "PW-STD-MIB"
2758
+ },
2759
+ "pwDeleted" : {
2760
+ "nodetype" : "member",
2761
+ "module" : "PW-STD-MIB"
2762
+ },
2763
+ }, # members
2764
+ "description" :
2765
+ """Collection of PW notifications objects.""",
2766
+ }, # group
2767
+ "pwSignalingGroup" : {
2768
+ "nodetype" : "group",
2769
+ "moduleName" : "PW-STD-MIB",
2770
+ "oid" : "1.3.6.1.2.1.10.246.2.1.18",
2771
+ "status" : "current",
2772
+ "members" : {
2773
+ "pwPeerAddrType" : {
2774
+ "nodetype" : "member",
2775
+ "module" : "PW-STD-MIB"
2776
+ },
2777
+ "pwPeerAddr" : {
2778
+ "nodetype" : "member",
2779
+ "module" : "PW-STD-MIB"
2780
+ },
2781
+ "pwLocalGroupID" : {
2782
+ "nodetype" : "member",
2783
+ "module" : "PW-STD-MIB"
2784
+ },
2785
+ "pwLocalIfString" : {
2786
+ "nodetype" : "member",
2787
+ "module" : "PW-STD-MIB"
2788
+ },
2789
+ "pwLocalCapabAdvert" : {
2790
+ "nodetype" : "member",
2791
+ "module" : "PW-STD-MIB"
2792
+ },
2793
+ "pwRemoteGroupID" : {
2794
+ "nodetype" : "member",
2795
+ "module" : "PW-STD-MIB"
2796
+ },
2797
+ "pwCwStatus" : {
2798
+ "nodetype" : "member",
2799
+ "module" : "PW-STD-MIB"
2800
+ },
2801
+ "pwRemoteIfMtu" : {
2802
+ "nodetype" : "member",
2803
+ "module" : "PW-STD-MIB"
2804
+ },
2805
+ "pwRemoteIfString" : {
2806
+ "nodetype" : "member",
2807
+ "module" : "PW-STD-MIB"
2808
+ },
2809
+ }, # members
2810
+ "description" :
2811
+ """Collection of objects for use in implementations that
2812
+ support the PW signaling.""",
2813
+ }, # group
2814
+ }, # groups
2815
+
2816
+ "compliances" : {
2817
+ "pwModuleFullCompliance" : {
2818
+ "nodetype" : "compliance",
2819
+ "moduleName" : "PW-STD-MIB",
2820
+ "oid" : "1.3.6.1.2.1.10.246.2.2.1",
2821
+ "status" : "current",
2822
+ "description" :
2823
+ """The compliance statement for agents that provide full
2824
+ support for the PW MIB module. Such devices can
2825
+ then be monitored and configured using
2826
+
2827
+
2828
+
2829
+ this MIB module.""",
2830
+ "requires" : {
2831
+ "pwBasicGroup" : {
2832
+ "nodetype" : "mandatory",
2833
+ "module" : "PW-STD-MIB"
2834
+ },
2835
+ "pwPerformanceGeneralGroup" : {
2836
+ "nodetype" : "mandatory",
2837
+ "module" : "PW-STD-MIB"
2838
+ },
2839
+ "pwNotificationGroup" : {
2840
+ "nodetype" : "optional",
2841
+ "module" : "PW-STD-MIB",
2842
+ "description" :
2843
+ """This group is only mandatory for implementations
2844
+ that can efficiently implement the notifications
2845
+ contained in this group.""",
2846
+ },
2847
+ "pwPwIdGroup" : {
2848
+ "nodetype" : "optional",
2849
+ "module" : "PW-STD-MIB",
2850
+ "description" :
2851
+ """This group is only mandatory for implementations
2852
+ that support the PW ID FEC.""",
2853
+ },
2854
+ "pwGeneralizedFecGroup" : {
2855
+ "nodetype" : "optional",
2856
+ "module" : "PW-STD-MIB",
2857
+ "description" :
2858
+ """This group is only mandatory for implementations
2859
+ that support the generalized PW FEC.""",
2860
+ },
2861
+ "pwFcsGroup" : {
2862
+ "nodetype" : "optional",
2863
+ "module" : "PW-STD-MIB",
2864
+ "description" :
2865
+ """This group is only mandatory for implementations
2866
+ that support FCS retention.""",
2867
+ },
2868
+ "pwFragGroup" : {
2869
+ "nodetype" : "optional",
2870
+ "module" : "PW-STD-MIB",
2871
+ "description" :
2872
+ """This group is only mandatory for implementations
2873
+ that support PW fragmentation.""",
2874
+ },
2875
+ "pwPwStatusGroup" : {
2876
+ "nodetype" : "optional",
2877
+ "module" : "PW-STD-MIB",
2878
+ "description" :
2879
+ """This group is only mandatory for implementations
2880
+ that support PW status notification.""",
2881
+ },
2882
+ "pwGetNextGroup" : {
2883
+ "nodetype" : "optional",
2884
+ "module" : "PW-STD-MIB",
2885
+ "description" :
2886
+ """This group is only mandatory for implementations
2887
+ where the pwIndex may be any arbitrary value
2888
+ and the EMS would require retrieval of the next
2889
+ free index.""",
2890
+ },
2891
+ "pwPriorityGroup" : {
2892
+ "nodetype" : "optional",
2893
+ "module" : "PW-STD-MIB",
2894
+ "description" :
2895
+ """This group is only mandatory for implementations
2896
+ that support the controlling the PW setup and
2897
+ holding priority.""",
2898
+ },
2899
+ "pwAttachmentGroup" : {
2900
+ "nodetype" : "optional",
2901
+ "module" : "PW-STD-MIB",
2902
+ "description" :
2903
+ """This group is only mandatory for implementations
2904
+ that support attachment of two PWs (PW stitching).""",
2905
+ },
2906
+ "pwPeformance1DayIntervalGroup" : {
2907
+ "nodetype" : "optional",
2908
+ "module" : "PW-STD-MIB",
2909
+ "description" :
2910
+ """This group is only mandatory for implementations
2911
+ that support PW performance gathering in 1-day
2912
+ intervals.""",
2913
+ },
2914
+ "pwPerformanceIntervalGeneralGroup" : {
2915
+ "nodetype" : "optional",
2916
+ "module" : "PW-STD-MIB",
2917
+ "description" :
2918
+ """This group is only mandatory for implementations
2919
+ that support PW performance gathering in 15-
2920
+ minute intervals.""",
2921
+ },
2922
+ "pwPeformanceIntervalGroup" : {
2923
+ "nodetype" : "optional",
2924
+ "module" : "PW-STD-MIB",
2925
+ "description" :
2926
+ """This group is only mandatory for implementations
2927
+ that support PW performance gathering in 15-
2928
+ minute intervals.""",
2929
+ },
2930
+ "pwHCPeformanceIntervalGroup" : {
2931
+ "nodetype" : "optional",
2932
+ "module" : "PW-STD-MIB",
2933
+ "description" :
2934
+ """This group is only mandatory for implementations
2935
+ where at least one of the interval performance
2936
+ counters wraps around too quickly based on the
2937
+ criteria specified in RFC 2863 for high-capacity
2938
+ counters.""",
2939
+ },
2940
+ "pwMappingTablesGroup" : {
2941
+ "nodetype" : "optional",
2942
+ "module" : "PW-STD-MIB",
2943
+ "description" :
2944
+ """This group is only mandatory for implementations
2945
+ that support reverse mapping of PW indexes to
2946
+ the pwIndex and the peer mapping table.""",
2947
+ },
2948
+ "pwSignalingGroup" : {
2949
+ "nodetype" : "optional",
2950
+ "module" : "PW-STD-MIB",
2951
+ "description" :
2952
+ """This group is only mandatory for implementations
2953
+ that support the PW signaling.""",
2954
+ },
2955
+ "pwNotificationControlGroup" : {
2956
+ "nodetype" : "optional",
2957
+ "module" : "PW-STD-MIB",
2958
+ "description" :
2959
+ """This group is only mandatory for implementations
2960
+ that support the PW notifications.""",
2961
+ },
2962
+ }, # requires
2963
+ "refinements" : {
2964
+ "pwAdminStatus" : {
2965
+ "module" : "PW-STD-MIB",
2966
+ "syntax" : {
2967
+ "type" : {
2968
+ "basetype" : "Enumeration",
2969
+ "up" : {
2970
+ "nodetype" : "namednumber",
2971
+ "number" : "1"
2972
+ },
2973
+ "down" : {
2974
+ "nodetype" : "namednumber",
2975
+ "number" : "2"
2976
+ },
2977
+ },
2978
+ }, # syntax
2979
+ "description" :
2980
+ """Support of the value testing(3) is not
2981
+ required.""",
2982
+ },
2983
+ "pwOperStatus" : {
2984
+ "module" : "PW-STD-MIB",
2985
+ "syntax" : {
2986
+ "type" : {
2987
+ "basetype" : "Enumeration",
2988
+ "parent module" : {
2989
+ "name" : "PW-TC-STD-MIB",
2990
+ "type" : "PwOperStatusTC",
2991
+ },
2992
+ "up" : {
2993
+ "nodetype" : "namednumber",
2994
+ "number" : "1"
2995
+ },
2996
+ "down" : {
2997
+ "nodetype" : "namednumber",
2998
+ "number" : "2"
2999
+ },
3000
+ "notPresent" : {
3001
+ "nodetype" : "namednumber",
3002
+ "number" : "5"
3003
+ },
3004
+ "lowerLayerDown" : {
3005
+ "nodetype" : "namednumber",
3006
+ "number" : "6"
3007
+ },
3008
+ },
3009
+ }, # syntax
3010
+ "description" :
3011
+ """Support of the values testing(3) and dormant(4)
3012
+
3013
+
3014
+
3015
+ is not required.""",
3016
+ },
3017
+ "pwRowStatus" : {
3018
+ "module" : "PW-STD-MIB",
3019
+ "syntax" : {
3020
+ "type" : {
3021
+ "basetype" : "Enumeration",
3022
+ "parent module" : {
3023
+ "name" : "SNMPv2-TC",
3024
+ "type" : "RowStatus",
3025
+ },
3026
+ "active" : {
3027
+ "nodetype" : "namednumber",
3028
+ "number" : "1"
3029
+ },
3030
+ "notInService" : {
3031
+ "nodetype" : "namednumber",
3032
+ "number" : "2"
3033
+ },
3034
+ "notReady" : {
3035
+ "nodetype" : "namednumber",
3036
+ "number" : "3"
3037
+ },
3038
+ },
3039
+ }, # syntax
3040
+ "writesyntax" : {
3041
+ "type" : {
3042
+ "basetype" : "Enumeration",
3043
+ "parent module" : {
3044
+ "name" : "SNMPv2-TC",
3045
+ "type" : "RowStatus",
3046
+ },
3047
+ "active" : {
3048
+ "nodetype" : "namednumber",
3049
+ "number" : "1"
3050
+ },
3051
+ "notInService" : {
3052
+ "nodetype" : "namednumber",
3053
+ "number" : "2"
3054
+ },
3055
+ "createAndGo" : {
3056
+ "nodetype" : "namednumber",
3057
+ "number" : "4"
3058
+ },
3059
+ "destroy" : {
3060
+ "nodetype" : "namednumber",
3061
+ "number" : "6"
3062
+ },
3063
+ },
3064
+ }, # writesyntax
3065
+ "description" :
3066
+ """Support for createAndWait is not required. Support
3067
+ of notReady is not required for implementations
3068
+ that do not support signaling, or if it is
3069
+ guaranteed that the conceptual row has all the
3070
+ required information to create the PW when the
3071
+ row has been created by the agent or written by
3072
+ the operator.""",
3073
+ },
3074
+ "pwPeerAddrType" : {
3075
+ "module" : "PW-STD-MIB",
3076
+ "syntax" : {
3077
+ "type" : {
3078
+ "basetype" : "Enumeration",
3079
+ "parent module" : {
3080
+ "name" : "INET-ADDRESS-MIB",
3081
+ "type" : "InetAddressType",
3082
+ },
3083
+ "unknown" : {
3084
+ "nodetype" : "namednumber",
3085
+ "number" : "0"
3086
+ },
3087
+ "ipv4" : {
3088
+ "nodetype" : "namednumber",
3089
+ "number" : "1"
3090
+ },
3091
+ },
3092
+ }, # syntax
3093
+ "access" : "readonly",
3094
+ "description" :
3095
+ """Only unknown(0) and ipv4(1) are required.
3096
+ Implementations that support only IPv4 MAY support
3097
+ read-only access.""",
3098
+ },
3099
+ "pwPeerAddr" : {
3100
+ "module" : "PW-STD-MIB",
3101
+ "syntax" : {
3102
+ "type" : {
3103
+ "basetype" : "OctetString",
3104
+ "parent module" : {
3105
+ "name" : "INET-ADDRESS-MIB",
3106
+ "type" : "InetAddress",
3107
+ },
3108
+ "ranges" : [
3109
+ {
3110
+ "min" : "0",
3111
+ "max" : "0"
3112
+ },
3113
+ {
3114
+ "min" : "4",
3115
+ "max" : "4"
3116
+ },
3117
+ ],
3118
+ "range" : {
3119
+ "min" : "0",
3120
+ "max" : "4"
3121
+ },
3122
+ },
3123
+ }, # syntax
3124
+ "description" :
3125
+ """An implementation is only required to support
3126
+ 0, 4 address sizes.""",
3127
+ },
3128
+ "pwStorageType" : {
3129
+ "module" : "PW-STD-MIB",
3130
+ "access" : "readonly",
3131
+ "description" :
3132
+ """Write access is not required.""",
3133
+ },
3134
+ "pwNotifRate" : {
3135
+ "module" : "PW-STD-MIB",
3136
+ "access" : "readonly",
3137
+ "description" :
3138
+ """Write access is not required.""",
3139
+ },
3140
+ }, # refinements
3141
+
3142
+ }, # compliance
3143
+ "pwModuleReadOnlyCompliance" : {
3144
+ "nodetype" : "compliance",
3145
+ "moduleName" : "PW-STD-MIB",
3146
+ "oid" : "1.3.6.1.2.1.10.246.2.2.2",
3147
+ "status" : "current",
3148
+ "description" :
3149
+ """The compliance statement for agents that provide read-
3150
+ only support for the PW MIB module. Such devices can
3151
+ then be monitored but cannot be configured using this
3152
+ MIB module.""",
3153
+ "requires" : {
3154
+ "pwBasicGroup" : {
3155
+ "nodetype" : "mandatory",
3156
+ "module" : "PW-STD-MIB"
3157
+ },
3158
+ "pwNotificationGroup" : {
3159
+ "nodetype" : "optional",
3160
+ "module" : "PW-STD-MIB",
3161
+ "description" :
3162
+ """This group is only mandatory for implementations
3163
+ that can efficiently implement the notifications
3164
+ contained in this group.""",
3165
+ },
3166
+ "pwPwIdGroup" : {
3167
+ "nodetype" : "optional",
3168
+ "module" : "PW-STD-MIB",
3169
+ "description" :
3170
+ """This group is only mandatory for implementations
3171
+ that support the PW ID FEC.""",
3172
+ },
3173
+ "pwGeneralizedFecGroup" : {
3174
+ "nodetype" : "optional",
3175
+ "module" : "PW-STD-MIB",
3176
+ "description" :
3177
+ """This group is only mandatory for implementations
3178
+ that support the generalized PW FEC.""",
3179
+ },
3180
+ "pwFcsGroup" : {
3181
+ "nodetype" : "optional",
3182
+ "module" : "PW-STD-MIB",
3183
+ "description" :
3184
+ """This group is only mandatory for implementations
3185
+ that support FCS retention.""",
3186
+ },
3187
+ "pwFragGroup" : {
3188
+ "nodetype" : "optional",
3189
+ "module" : "PW-STD-MIB",
3190
+ "description" :
3191
+ """This group is only mandatory for implementations
3192
+ that support PW fragmentation.""",
3193
+ },
3194
+ "pwPwStatusGroup" : {
3195
+ "nodetype" : "optional",
3196
+ "module" : "PW-STD-MIB",
3197
+ "description" :
3198
+ """This group is only mandatory for implementations
3199
+ that support PW status notification.""",
3200
+ },
3201
+ "pwGetNextGroup" : {
3202
+ "nodetype" : "optional",
3203
+ "module" : "PW-STD-MIB",
3204
+ "description" :
3205
+ """This group is only mandatory for implementations
3206
+ where the pwIndex may be any arbitrary value
3207
+ and the EMS would require retrieval of the next
3208
+ free index.""",
3209
+ },
3210
+ "pwPriorityGroup" : {
3211
+ "nodetype" : "optional",
3212
+ "module" : "PW-STD-MIB",
3213
+ "description" :
3214
+ """This group is only mandatory for implementations
3215
+ that support the controlling the PW setup and
3216
+ holding priority.""",
3217
+ },
3218
+ "pwAttachmentGroup" : {
3219
+ "nodetype" : "optional",
3220
+ "module" : "PW-STD-MIB",
3221
+ "description" :
3222
+ """This group is only mandatory for implementations
3223
+ that support attachment of two PWs (PW stitching).""",
3224
+ },
3225
+ "pwPeformance1DayIntervalGroup" : {
3226
+ "nodetype" : "optional",
3227
+ "module" : "PW-STD-MIB",
3228
+ "description" :
3229
+ """This group is only mandatory for implementations
3230
+ that support PW performance gathering in 1-day
3231
+ intervals.""",
3232
+ },
3233
+ "pwPerformanceIntervalGeneralGroup" : {
3234
+ "nodetype" : "optional",
3235
+ "module" : "PW-STD-MIB",
3236
+ "description" :
3237
+ """This group is only mandatory for implementations
3238
+ that support PW performance gathering in 15-
3239
+ minute intervals.""",
3240
+ },
3241
+ "pwPeformanceIntervalGroup" : {
3242
+ "nodetype" : "optional",
3243
+ "module" : "PW-STD-MIB",
3244
+ "description" :
3245
+ """This group is only mandatory for implementations
3246
+ that support PW performance gathering in 15-
3247
+ minute intervals.""",
3248
+ },
3249
+ "pwHCPeformanceIntervalGroup" : {
3250
+ "nodetype" : "optional",
3251
+ "module" : "PW-STD-MIB",
3252
+ "description" :
3253
+ """This group is only mandatory for implementations
3254
+ where at least one of the interval performance
3255
+ counters wraps around too quickly based on the
3256
+ criteria specified in RFC 2863 for high-capacity
3257
+ counters.""",
3258
+ },
3259
+ "pwMappingTablesGroup" : {
3260
+ "nodetype" : "optional",
3261
+ "module" : "PW-STD-MIB",
3262
+ "description" :
3263
+ """This group is only mandatory for implementations
3264
+ that support reverse mapping of PW indexes to
3265
+ the pwIndex and the peer mapping table.""",
3266
+ },
3267
+ "pwSignalingGroup" : {
3268
+ "nodetype" : "optional",
3269
+ "module" : "PW-STD-MIB",
3270
+ "description" :
3271
+ """This group is only mandatory for implementations
3272
+ that support the PW signaling.""",
3273
+ },
3274
+ "pwNotificationControlGroup" : {
3275
+ "nodetype" : "optional",
3276
+ "module" : "PW-STD-MIB",
3277
+ "description" :
3278
+ """This group is only mandatory for implementations
3279
+ that support the PW notifications.""",
3280
+ },
3281
+ }, # requires
3282
+ "refinements" : {
3283
+ "pwType" : {
3284
+ "module" : "PW-STD-MIB",
3285
+ "access" : "readonly",
3286
+ "description" :
3287
+ """Write access is not required.""",
3288
+ },
3289
+ "pwOwner" : {
3290
+ "module" : "PW-STD-MIB",
3291
+ "access" : "readonly",
3292
+ "description" :
3293
+ """Write access is not required.""",
3294
+ },
3295
+ "pwPsnType" : {
3296
+ "module" : "PW-STD-MIB",
3297
+ "access" : "readonly",
3298
+ "description" :
3299
+ """Write access is not required.""",
3300
+ },
3301
+ "pwSetUpPriority" : {
3302
+ "module" : "PW-STD-MIB",
3303
+ "access" : "readonly",
3304
+ "description" :
3305
+ """Write access is not required.""",
3306
+ },
3307
+ "pwHoldingPriority" : {
3308
+ "module" : "PW-STD-MIB",
3309
+ "access" : "readonly",
3310
+ "description" :
3311
+ """Write access is not required.""",
3312
+ },
3313
+ "pwPeerAddrType" : {
3314
+ "module" : "PW-STD-MIB",
3315
+ "syntax" : {
3316
+ "type" : {
3317
+ "basetype" : "Enumeration",
3318
+ "parent module" : {
3319
+ "name" : "INET-ADDRESS-MIB",
3320
+ "type" : "InetAddressType",
3321
+ },
3322
+ "unknown" : {
3323
+ "nodetype" : "namednumber",
3324
+ "number" : "0"
3325
+ },
3326
+ "ipv4" : {
3327
+ "nodetype" : "namednumber",
3328
+ "number" : "1"
3329
+ },
3330
+ },
3331
+ }, # syntax
3332
+ "access" : "readonly",
3333
+ "description" :
3334
+ """Write access is not required. Only unknown(0) and
3335
+ ipv4(1) are required.""",
3336
+ },
3337
+ "pwPeerAddr" : {
3338
+ "module" : "PW-STD-MIB",
3339
+ "syntax" : {
3340
+ "type" : {
3341
+ "basetype" : "OctetString",
3342
+ "parent module" : {
3343
+ "name" : "INET-ADDRESS-MIB",
3344
+ "type" : "InetAddress",
3345
+ },
3346
+ "ranges" : [
3347
+ {
3348
+ "min" : "0",
3349
+ "max" : "0"
3350
+ },
3351
+ {
3352
+ "min" : "4",
3353
+ "max" : "4"
3354
+ },
3355
+ ],
3356
+ "range" : {
3357
+ "min" : "0",
3358
+ "max" : "4"
3359
+ },
3360
+ },
3361
+ }, # syntax
3362
+ "access" : "readonly",
3363
+ "description" :
3364
+ """Write access is not required. An implementation
3365
+ is only required to support 0, 4 address sizes.""",
3366
+ },
3367
+ "pwAttachedPwIndex" : {
3368
+ "module" : "PW-STD-MIB",
3369
+ "access" : "readonly",
3370
+ "description" :
3371
+ """Write access is not required.""",
3372
+ },
3373
+ "pwIfIndex" : {
3374
+ "module" : "PW-STD-MIB",
3375
+ "access" : "readonly",
3376
+ "description" :
3377
+ """Write access is not required.""",
3378
+ },
3379
+ "pwID" : {
3380
+ "module" : "PW-STD-MIB",
3381
+ "access" : "readonly",
3382
+ "description" :
3383
+ """Write access is not required.""",
3384
+ },
3385
+ "pwLocalGroupID" : {
3386
+ "module" : "PW-STD-MIB",
3387
+ "access" : "readonly",
3388
+ "description" :
3389
+ """Write access is not required.""",
3390
+ },
3391
+ "pwGroupAttachmentID" : {
3392
+ "module" : "PW-STD-MIB",
3393
+ "access" : "readonly",
3394
+ "description" :
3395
+ """Write access is not required.""",
3396
+ },
3397
+ "pwLocalAttachmentID" : {
3398
+ "module" : "PW-STD-MIB",
3399
+ "access" : "readonly",
3400
+ "description" :
3401
+ """Write access is not required.""",
3402
+ },
3403
+ "pwRemoteAttachmentID" : {
3404
+ "module" : "PW-STD-MIB",
3405
+ "access" : "readonly",
3406
+ "description" :
3407
+ """Write access is not required.""",
3408
+ },
3409
+ "pwCwPreference" : {
3410
+ "module" : "PW-STD-MIB",
3411
+ "access" : "readonly",
3412
+ "description" :
3413
+ """Write access is not required.""",
3414
+ },
3415
+ "pwLocalIfMtu" : {
3416
+ "module" : "PW-STD-MIB",
3417
+ "access" : "readonly",
3418
+ "description" :
3419
+ """Write access is not required.""",
3420
+ },
3421
+ "pwLocalIfString" : {
3422
+ "module" : "PW-STD-MIB",
3423
+ "access" : "readonly",
3424
+ "description" :
3425
+ """Write access is not required.""",
3426
+ },
3427
+ "pwLocalCapabAdvert" : {
3428
+ "module" : "PW-STD-MIB",
3429
+ "access" : "readonly",
3430
+ "description" :
3431
+ """Write access is not required.""",
3432
+ },
3433
+ "pwFragmentCfgSize" : {
3434
+ "module" : "PW-STD-MIB",
3435
+ "access" : "readonly",
3436
+ "description" :
3437
+ """Write access is not required.""",
3438
+ },
3439
+ "pwFcsRetentionCfg" : {
3440
+ "module" : "PW-STD-MIB",
3441
+ "access" : "readonly",
3442
+ "description" :
3443
+ """Write access is not required.""",
3444
+ },
3445
+ "pwOutboundLabel" : {
3446
+ "module" : "PW-STD-MIB",
3447
+ "access" : "readonly",
3448
+ "description" :
3449
+ """Write access is not required.""",
3450
+ },
3451
+ "pwInboundLabel" : {
3452
+ "module" : "PW-STD-MIB",
3453
+ "access" : "readonly",
3454
+ "description" :
3455
+ """Write access is not required.""",
3456
+ },
3457
+ "pwName" : {
3458
+ "module" : "PW-STD-MIB",
3459
+ "access" : "readonly",
3460
+ "description" :
3461
+ """Write access is not required.""",
3462
+ },
3463
+ "pwDescr" : {
3464
+ "module" : "PW-STD-MIB",
3465
+ "access" : "readonly",
3466
+ "description" :
3467
+ """Write access is not required.""",
3468
+ },
3469
+ "pwAdminStatus" : {
3470
+ "module" : "PW-STD-MIB",
3471
+ "syntax" : {
3472
+ "type" : {
3473
+ "basetype" : "Enumeration",
3474
+ "up" : {
3475
+ "nodetype" : "namednumber",
3476
+ "number" : "1"
3477
+ },
3478
+ "down" : {
3479
+ "nodetype" : "namednumber",
3480
+ "number" : "2"
3481
+ },
3482
+ },
3483
+ }, # syntax
3484
+ "access" : "readonly",
3485
+ "description" :
3486
+ """Write access is not required. The support of value
3487
+ testing(3) is not required.""",
3488
+ },
3489
+ "pwOperStatus" : {
3490
+ "module" : "PW-STD-MIB",
3491
+ "syntax" : {
3492
+ "type" : {
3493
+ "basetype" : "Enumeration",
3494
+ "parent module" : {
3495
+ "name" : "PW-TC-STD-MIB",
3496
+ "type" : "PwOperStatusTC",
3497
+ },
3498
+ "up" : {
3499
+ "nodetype" : "namednumber",
3500
+ "number" : "1"
3501
+ },
3502
+ "down" : {
3503
+ "nodetype" : "namednumber",
3504
+ "number" : "2"
3505
+ },
3506
+ "notPresent" : {
3507
+ "nodetype" : "namednumber",
3508
+ "number" : "5"
3509
+ },
3510
+ "lowerLayerDown" : {
3511
+ "nodetype" : "namednumber",
3512
+ "number" : "6"
3513
+ },
3514
+ },
3515
+ }, # syntax
3516
+ "description" :
3517
+ """The support of the values testing(3) and dormant(4)
3518
+ is not required.""",
3519
+ },
3520
+ "pwRowStatus" : {
3521
+ "module" : "PW-STD-MIB",
3522
+ "syntax" : {
3523
+ "type" : {
3524
+ "basetype" : "Enumeration",
3525
+ "parent module" : {
3526
+ "name" : "SNMPv2-TC",
3527
+ "type" : "RowStatus",
3528
+ },
3529
+ "active" : {
3530
+ "nodetype" : "namednumber",
3531
+ "number" : "1"
3532
+ },
3533
+ },
3534
+ }, # syntax
3535
+ "access" : "readonly",
3536
+ "description" :
3537
+ """Write access is not required.""",
3538
+ },
3539
+ "pwStorageType" : {
3540
+ "module" : "PW-STD-MIB",
3541
+ "access" : "readonly",
3542
+ "description" :
3543
+ """Write access is not required.""",
3544
+ },
3545
+ "pwOamEnable" : {
3546
+ "module" : "PW-STD-MIB",
3547
+ "access" : "readonly",
3548
+ "description" :
3549
+ """Write access is not required.""",
3550
+ },
3551
+ "pwGenAGIType" : {
3552
+ "module" : "PW-STD-MIB",
3553
+ "access" : "readonly",
3554
+ "description" :
3555
+ """Write access is not required.""",
3556
+ },
3557
+ "pwGenLocalAIIType" : {
3558
+ "module" : "PW-STD-MIB",
3559
+ "access" : "readonly",
3560
+ "description" :
3561
+ """Write access is not required.""",
3562
+ },
3563
+ "pwGenRemoteAIIType" : {
3564
+ "module" : "PW-STD-MIB",
3565
+ "access" : "readonly",
3566
+ "description" :
3567
+ """Write access is not required.""",
3568
+ },
3569
+ "pwUpDownNotifEnable" : {
3570
+ "module" : "PW-STD-MIB",
3571
+ "access" : "readonly",
3572
+ "description" :
3573
+ """Write access is not required.""",
3574
+ },
3575
+ "pwDeletedNotifEnable" : {
3576
+ "module" : "PW-STD-MIB",
3577
+ "access" : "readonly",
3578
+ "description" :
3579
+ """Write access is not required.""",
3580
+ },
3581
+ "pwNotifRate" : {
3582
+ "module" : "PW-STD-MIB",
3583
+ "access" : "readonly",
3584
+ "description" :
3585
+ """Write access is not required.""",
3586
+ },
3587
+ }, # refinements
3588
+
3589
+ }, # compliance
3590
+ }, # compliances
3591
+
3592
+ }