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,3940 @@
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 FRNETSERV-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/FRNETSERV-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "FRNETSERV-MIB",
11
+
12
+ "FRNETSERV-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Frame Relay Service MIB Working Group""",
17
+ "contact" :
18
+ """WG Charter:
19
+ http://www.ietf.org/html.charters/frnetmib-charter
20
+ WG-email:
21
+ frnetmib@sunroof.eng.sun.com
22
+
23
+
24
+ Subscribe:
25
+ frnetmib-request@sunroof.eng.sun.com
26
+ Email Archive:
27
+ ftp://ftp.ietf.org/ietf-mail-archive/frnetmib
28
+
29
+ Chair: Andy Malis
30
+ Vivace Networks, Inc.
31
+ Email: Andy.Malis@vivacenetworks.com
32
+
33
+ WG editor: Kenneth Rehbehn
34
+ Megisto Systems, Inc.
35
+ Email: krehbehn@megisto.com
36
+
37
+ Co-author: David Fowler
38
+ Syndesis Limited,
39
+ EMail: fowler@syndesis.com""",
40
+ "description" :
41
+ """The MIB module to describe generic objects for
42
+ Frame Relay Network Service.""",
43
+ "revisions" : (
44
+ {
45
+ "date" : "2000-09-28 00:00",
46
+ "description" :
47
+ """Published as RFC 2954.
48
+
49
+ The major new features of this revision include:
50
+
51
+ o Support for read-write capability to
52
+ provision switch components providing service,
53
+
54
+ o Support for cross-connection via a frame relay
55
+ to ATM service interworking function,
56
+
57
+ o Support for frame relay fragmentation,
58
+
59
+ o Additional frame counters to track frame
60
+ loss.
61
+
62
+ Refer to Appendix A for a comprehensive list of
63
+ changes since RFC 1604.""",
64
+ },
65
+ {
66
+ "date" : "1993-11-16 12:00",
67
+ "description" :
68
+ """Published as RFC 1604.""",
69
+ },
70
+ ),
71
+ "identity node" : "frnetservMIB",
72
+ },
73
+
74
+ "imports" : (
75
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
76
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
77
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
78
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
81
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
82
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
83
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
84
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
85
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
86
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
87
+ {"module" : "IF-MIB", "name" : "ifIndex"},
88
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
89
+ ),
90
+
91
+ "nodes" : {
92
+ "frnetservMIB" : {
93
+ "nodetype" : "node",
94
+ "moduleName" : "FRNETSERV-MIB",
95
+ "oid" : "1.3.6.1.2.1.10.44",
96
+ "status" : "current",
97
+ }, # node
98
+ "frnetservObjects" : {
99
+ "nodetype" : "node",
100
+ "moduleName" : "FRNETSERV-MIB",
101
+ "oid" : "1.3.6.1.2.1.10.44.1",
102
+ }, # node
103
+ "frLportTable" : {
104
+ "nodetype" : "table",
105
+ "moduleName" : "FRNETSERV-MIB",
106
+ "oid" : "1.3.6.1.2.1.10.44.1.1",
107
+ "status" : "current",
108
+ "description" :
109
+ """The Frame Relay Logical Port Information table is
110
+ an interface-specific addendum to the generic
111
+ ifTable of the Interface MIB.""",
112
+ }, # table
113
+ "frLportEntry" : {
114
+ "nodetype" : "row",
115
+ "moduleName" : "FRNETSERV-MIB",
116
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1",
117
+ "status" : "current",
118
+ "linkage" : [
119
+ "ifIndex",
120
+ ],
121
+ "description" :
122
+ """An entry in the Frame Relay Logical Port
123
+ Information table.""",
124
+ }, # row
125
+ "frLportNumPlan" : {
126
+ "nodetype" : "column",
127
+ "moduleName" : "FRNETSERV-MIB",
128
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.1",
129
+ "status" : "current",
130
+ "syntax" : {
131
+ "type" : {
132
+ "basetype" : "Enumeration",
133
+ "other" : {
134
+ "nodetype" : "namednumber",
135
+ "number" : "1"
136
+ },
137
+ "e164" : {
138
+ "nodetype" : "namednumber",
139
+ "number" : "2"
140
+ },
141
+ "x121" : {
142
+ "nodetype" : "namednumber",
143
+ "number" : "3"
144
+ },
145
+ "none" : {
146
+ "nodetype" : "namednumber",
147
+ "number" : "4"
148
+ },
149
+ },
150
+ },
151
+ "access" : "readonly",
152
+ "description" :
153
+ """The value of this object identifies the network
154
+ address numbering plan for this UNI/NNI logical
155
+ port. The network address is the object
156
+ ifPhysAddress. The value none(4) implies that
157
+ there is no ifPhysAddress. The FRS agent will
158
+ return an octet string of zero length for
159
+ ifPhysAddress. The value other(1) means that an
160
+ address has been assigned to this interface, but
161
+ the numbering plan is not enumerated here.""",
162
+ "reference" :
163
+ """E.164 [29]
164
+ X.121 [30]""",
165
+ }, # column
166
+ "frLportContact" : {
167
+ "nodetype" : "column",
168
+ "moduleName" : "FRNETSERV-MIB",
169
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.2",
170
+ "status" : "current",
171
+ "syntax" : {
172
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
173
+ },
174
+ "access" : "readonly",
175
+ "description" :
176
+ """The value of this object identifies the network
177
+ contact for this UNI/NNI logical port.""",
178
+ }, # column
179
+ "frLportLocation" : {
180
+ "nodetype" : "column",
181
+ "moduleName" : "FRNETSERV-MIB",
182
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.3",
183
+ "status" : "current",
184
+ "syntax" : {
185
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
186
+ },
187
+ "access" : "readonly",
188
+ "description" :
189
+ """The value of this object identifies the frame
190
+ relay network location for this UNI/NNI logical
191
+ port.""",
192
+ }, # column
193
+ "frLportType" : {
194
+ "nodetype" : "column",
195
+ "moduleName" : "FRNETSERV-MIB",
196
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.4",
197
+ "status" : "current",
198
+ "syntax" : {
199
+ "type" : {
200
+ "basetype" : "Enumeration",
201
+ "uni" : {
202
+ "nodetype" : "namednumber",
203
+ "number" : "1"
204
+ },
205
+ "nni" : {
206
+ "nodetype" : "namednumber",
207
+ "number" : "2"
208
+ },
209
+ },
210
+ },
211
+ "access" : "readonly",
212
+ "description" :
213
+ """The value of this object identifies the type of
214
+ network interface for this logical port.""",
215
+ }, # column
216
+ "frLportAddrDLCILen" : {
217
+ "nodetype" : "column",
218
+ "moduleName" : "FRNETSERV-MIB",
219
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.5",
220
+ "status" : "current",
221
+ "syntax" : {
222
+ "type" : {
223
+ "basetype" : "Enumeration",
224
+ "twoOctets10Bits" : {
225
+ "nodetype" : "namednumber",
226
+ "number" : "1"
227
+ },
228
+ "threeOctets10Bits" : {
229
+ "nodetype" : "namednumber",
230
+ "number" : "2"
231
+ },
232
+ "threeOctets16Bits" : {
233
+ "nodetype" : "namednumber",
234
+ "number" : "3"
235
+ },
236
+ "fourOctets17Bits" : {
237
+ "nodetype" : "namednumber",
238
+ "number" : "4"
239
+ },
240
+ "fourOctets23Bits" : {
241
+ "nodetype" : "namednumber",
242
+ "number" : "5"
243
+ },
244
+ },
245
+ },
246
+ "access" : "readonly",
247
+ "units" : "Octets",
248
+ "description" :
249
+ """The value of this object identifies the Q.922
250
+ Address field length and DLCI length for this
251
+ UNI/NNI logical port.""",
252
+ "reference" :
253
+ """Q.922 [25]""",
254
+ }, # column
255
+ "frLportVCSigProtocol" : {
256
+ "nodetype" : "column",
257
+ "moduleName" : "FRNETSERV-MIB",
258
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.6",
259
+ "status" : "current",
260
+ "syntax" : {
261
+ "type" : {
262
+ "basetype" : "Enumeration",
263
+ "none" : {
264
+ "nodetype" : "namednumber",
265
+ "number" : "1"
266
+ },
267
+ "lmi" : {
268
+ "nodetype" : "namednumber",
269
+ "number" : "2"
270
+ },
271
+ "ansiT1617D" : {
272
+ "nodetype" : "namednumber",
273
+ "number" : "3"
274
+ },
275
+ "ansiT1617B" : {
276
+ "nodetype" : "namednumber",
277
+ "number" : "4"
278
+ },
279
+ "ccittQ933A" : {
280
+ "nodetype" : "namednumber",
281
+ "number" : "5"
282
+ },
283
+ },
284
+ },
285
+ "access" : "readonly",
286
+ "description" :
287
+ """The value of this object identifies the Local
288
+ In-Channel Signaling Protocol that is used for
289
+ this frame relay UNI/NNI logical port.
290
+
291
+ none(1): Interface does not use a PVC
292
+ signaling protocol
293
+
294
+ lmi(2): Interface operates the Stratacom/
295
+ Nortel/DEC Local Management
296
+ Interface Specification protocol
297
+
298
+ ansiT1617D(3): Interface operates the ANSI T1.617
299
+ Annex D PVC status protocol
300
+
301
+
302
+ ansiT1617B(4): Interface operates the ANSI
303
+ T1.617
304
+ Annex B procedures
305
+
306
+ ccittQ933A(5): Interface operates the ITU Q.933
307
+ Annex A PVC status protocol""",
308
+ "reference" :
309
+ """LMI [24]
310
+ T1.617 Annex D [17],
311
+ Q.933 Annex A [22]""",
312
+ }, # column
313
+ "frLportVCSigPointer" : {
314
+ "nodetype" : "column",
315
+ "moduleName" : "FRNETSERV-MIB",
316
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.7",
317
+ "status" : "deprecated",
318
+ "syntax" : {
319
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
320
+ },
321
+ "access" : "readonly",
322
+ "description" :
323
+ """The value of this object is used as a pointer to
324
+ the table that contains the Local In-Channel
325
+ Signaling Protocol parameters and errors for this
326
+ UNI/NNI logical port.
327
+
328
+ This object has been deprecated to reflect the
329
+ fact that the local in-channel signaling
330
+ parameters are accessed from a single table
331
+ (frMgtVCSigTable) that includes parameters for all
332
+ possible signaling protocols. Early design
333
+ anticipated multiple tables, one for each
334
+ signaling protocol.""",
335
+ }, # column
336
+ "frLportDLCIIndexValue" : {
337
+ "nodetype" : "column",
338
+ "moduleName" : "FRNETSERV-MIB",
339
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.8",
340
+ "status" : "current",
341
+ "syntax" : {
342
+ "type" : {
343
+ "basetype" : "Integer32",
344
+ "ranges" : [
345
+ {
346
+ "min" : "16",
347
+ "max" : "4194303"
348
+ },
349
+ ],
350
+ "range" : {
351
+ "min" : "16",
352
+ "max" : "4194303"
353
+ },
354
+ },
355
+ },
356
+ "access" : "readonly",
357
+ "description" :
358
+ """This object contains a hint to be used for
359
+ frPVCEndptDLCIIndex when creating entries in the
360
+ frPVCEndptTable. The SYNTAX of this object
361
+ matches the SYNTAX of the frPVCEndptDLCIIndex - an
362
+ object that is restricted to legal Q.922 DLCI
363
+ values for the size of the address field.
364
+
365
+ The value 0 indicates that no unassigned entries
366
+ are available.
367
+
368
+ To obtain the frPVCEndptDLCIIndex value for a new
369
+ entry, the manager issues a management protocol
370
+ retrieval operation to obtain the current value of
371
+
372
+
373
+ this object. After each retrieval, the agent must
374
+ modify the value to the next unassigned index to
375
+ prevent assignment of the same value to multiple
376
+ management systems.
377
+
378
+ A management system should repeat the read to
379
+ obtain a new value should an attempt to create the
380
+ new row using the previously returned hint fail.""",
381
+ "reference" :
382
+ """Q.922 [25]""",
383
+ }, # column
384
+ "frLportTypeAdmin" : {
385
+ "nodetype" : "column",
386
+ "moduleName" : "FRNETSERV-MIB",
387
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.9",
388
+ "status" : "current",
389
+ "syntax" : {
390
+ "type" : {
391
+ "basetype" : "Enumeration",
392
+ "uni" : {
393
+ "nodetype" : "namednumber",
394
+ "number" : "1"
395
+ },
396
+ "nni" : {
397
+ "nodetype" : "namednumber",
398
+ "number" : "2"
399
+ },
400
+ },
401
+ },
402
+ "access" : "readwrite",
403
+ "description" :
404
+ """The value of this object desired identifies the
405
+ type of network interface for this logical port.""",
406
+ }, # column
407
+ "frLportVCSigProtocolAdmin" : {
408
+ "nodetype" : "column",
409
+ "moduleName" : "FRNETSERV-MIB",
410
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.10",
411
+ "status" : "current",
412
+ "syntax" : {
413
+ "type" : {
414
+ "basetype" : "Enumeration",
415
+ "none" : {
416
+ "nodetype" : "namednumber",
417
+ "number" : "1"
418
+ },
419
+ "lmi" : {
420
+ "nodetype" : "namednumber",
421
+ "number" : "2"
422
+ },
423
+ "ansiT1617D" : {
424
+ "nodetype" : "namednumber",
425
+ "number" : "3"
426
+ },
427
+ "ansiT1617B" : {
428
+ "nodetype" : "namednumber",
429
+ "number" : "4"
430
+ },
431
+ "ccittQ933A" : {
432
+ "nodetype" : "namednumber",
433
+ "number" : "5"
434
+ },
435
+ },
436
+ },
437
+ "access" : "readwrite",
438
+ "description" :
439
+ """The value of this object identifies the desired
440
+ Local In-Channel Signaling Protocol that is used
441
+ for this frame relay UNI/NNI logical port. This
442
+ value must be made the active protocol as soon as
443
+ possible on the device.
444
+
445
+ Refer to frLportVCSigProtocol for a description of
446
+ each signaling protocol choices.""",
447
+ "reference" :
448
+ """LMI [24]
449
+ T1.617 Annex D [17],
450
+ Q.933 Annex A [22]""",
451
+ }, # column
452
+ "frLportFragControl" : {
453
+ "nodetype" : "column",
454
+ "moduleName" : "FRNETSERV-MIB",
455
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.11",
456
+ "status" : "current",
457
+ "syntax" : {
458
+ "type" : {
459
+ "basetype" : "Enumeration",
460
+ "on" : {
461
+ "nodetype" : "namednumber",
462
+ "number" : "1"
463
+ },
464
+ "off" : {
465
+ "nodetype" : "namednumber",
466
+ "number" : "2"
467
+ },
468
+ },
469
+ },
470
+ "access" : "readwrite",
471
+ "default" : "off",
472
+ "description" :
473
+ """This object controls the transmission and
474
+ reception of fragmentation frames for this UNI or
475
+ NNI interface.
476
+
477
+ on(1) Frames are fragmented using the interface
478
+ fragmentation format
479
+ Note: The customer side of the interface
480
+ must also be configured to fragment
481
+ frames.
482
+
483
+ off(2) Frames are not fragmented using the
484
+ interface fragmentation format.""",
485
+ "reference" :
486
+ """FRF.12 [21]""",
487
+ }, # column
488
+ "frLportFragSize" : {
489
+ "nodetype" : "column",
490
+ "moduleName" : "FRNETSERV-MIB",
491
+ "oid" : "1.3.6.1.2.1.10.44.1.1.1.12",
492
+ "status" : "current",
493
+ "syntax" : {
494
+ "type" : {
495
+ "basetype" : "Integer32",
496
+ "ranges" : [
497
+ {
498
+ "min" : "0",
499
+ "max" : "4096"
500
+ },
501
+ ],
502
+ "range" : {
503
+ "min" : "0",
504
+ "max" : "4096"
505
+ },
506
+ },
507
+ },
508
+ "access" : "readwrite",
509
+ "default" : "0",
510
+ "units" : "Octets",
511
+ "description" :
512
+ """The value of this object is the size in octets of
513
+ the maximum size of each fragment to be sent when
514
+ fragmenting. This object is only used by the
515
+ fragmentation transmitter, and the two sides of
516
+ the interface may differ. The fragment size
517
+ includes the octets for the frame relay header,
518
+ the UI octet, the NLPID, the fragmentation header,
519
+ and the fragment payload. If frLportFragControl is
520
+ set to off, this value should be zero.""",
521
+ "reference" :
522
+ """FRF.12 [21]""",
523
+ }, # column
524
+ "frMgtVCSigTable" : {
525
+ "nodetype" : "table",
526
+ "moduleName" : "FRNETSERV-MIB",
527
+ "oid" : "1.3.6.1.2.1.10.44.1.2",
528
+ "status" : "current",
529
+ "description" :
530
+ """The Frame Relay Management VC Signaling
531
+ Parameters and Errors table.""",
532
+ }, # table
533
+ "frMgtVCSigEntry" : {
534
+ "nodetype" : "row",
535
+ "moduleName" : "FRNETSERV-MIB",
536
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1",
537
+ "status" : "current",
538
+ "linkage" : [
539
+ "ifIndex",
540
+ ],
541
+ "description" :
542
+ """An entry in the Frame Relay Management VC
543
+ Signaling Parameters Errors table.""",
544
+ }, # row
545
+ "frMgtVCSigProced" : {
546
+ "nodetype" : "column",
547
+ "moduleName" : "FRNETSERV-MIB",
548
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.1",
549
+ "status" : "current",
550
+ "syntax" : {
551
+ "type" : {
552
+ "basetype" : "Enumeration",
553
+ "u2nnet" : {
554
+ "nodetype" : "namednumber",
555
+ "number" : "1"
556
+ },
557
+ "bidirect" : {
558
+ "nodetype" : "namednumber",
559
+ "number" : "2"
560
+ },
561
+ "u2nuser" : {
562
+ "nodetype" : "namednumber",
563
+ "number" : "3"
564
+ },
565
+ },
566
+ },
567
+ "access" : "readonly",
568
+ "description" :
569
+ """The value of this object identifies the local
570
+ in-channel signaling procedural role that is used
571
+ for this UNI/NNI logical port. Bidirectional
572
+ procedures implies that both user-side and
573
+ network-side procedural roles are used.
574
+
575
+ u2nnet(1) Logical port operates user to network
576
+ procedure in the role of the network
577
+ side
578
+
579
+ bidirect(2) Logical port operates the
580
+ bidirectional procedure (both user
581
+ and network side roles)
582
+
583
+ u2nuser(3) Logical port operates user to network
584
+ procedure in the role of the user
585
+ side""",
586
+ "reference" :
587
+ """Q.933 Annex A [22],
588
+ T1.617 Annex D [17]""",
589
+ }, # column
590
+ "frMgtVCSigUserN391" : {
591
+ "nodetype" : "column",
592
+ "moduleName" : "FRNETSERV-MIB",
593
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.2",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : {
597
+ "basetype" : "Integer32",
598
+ "ranges" : [
599
+ {
600
+ "min" : "1",
601
+ "max" : "255"
602
+ },
603
+ ],
604
+ "range" : {
605
+ "min" : "1",
606
+ "max" : "255"
607
+ },
608
+ },
609
+ },
610
+ "access" : "readonly",
611
+ "default" : "6",
612
+ "units" : "Polls",
613
+ "description" :
614
+ """The value of this object identifies the User-side
615
+ N391 full status polling cycle value for this
616
+ UNI/NNI logical port. If the logical port is not
617
+ performing user-side (bidirectional) procedures,
618
+ then this object is not instantiated and an
619
+ attempt to read will result in the noSuchInstance
620
+ exception response.""",
621
+ "reference" :
622
+ """Q.933 Annex A [22],
623
+ T1.617 Annex D [17]""",
624
+ }, # column
625
+ "frMgtVCSigUserN392" : {
626
+ "nodetype" : "column",
627
+ "moduleName" : "FRNETSERV-MIB",
628
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.3",
629
+ "status" : "current",
630
+ "syntax" : {
631
+ "type" : {
632
+ "basetype" : "Integer32",
633
+ "ranges" : [
634
+ {
635
+ "min" : "1",
636
+ "max" : "10"
637
+ },
638
+ ],
639
+ "range" : {
640
+ "min" : "1",
641
+ "max" : "10"
642
+ },
643
+ },
644
+ },
645
+ "access" : "readonly",
646
+ "default" : "3",
647
+ "units" : "Events",
648
+ "description" :
649
+ """The value of this object identifies the User-side
650
+ N392 error threshold value for this UNI/NNI
651
+ logical port. If the logical port is not
652
+ performing user-side (bidirectional) procedures,
653
+ then this object is not instantiated.""",
654
+ "reference" :
655
+ """Q.933 Annex A [22],
656
+ T1.617 Annex D [17]""",
657
+ }, # column
658
+ "frMgtVCSigUserN393" : {
659
+ "nodetype" : "column",
660
+ "moduleName" : "FRNETSERV-MIB",
661
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.4",
662
+ "status" : "current",
663
+ "syntax" : {
664
+ "type" : {
665
+ "basetype" : "Integer32",
666
+ "ranges" : [
667
+ {
668
+ "min" : "1",
669
+ "max" : "10"
670
+ },
671
+ ],
672
+ "range" : {
673
+ "min" : "1",
674
+ "max" : "10"
675
+ },
676
+ },
677
+ },
678
+ "access" : "readonly",
679
+ "default" : "4",
680
+ "units" : "Events",
681
+ "description" :
682
+ """The value of this object identifies the User-side
683
+ N393 monitored events count value for this UNI/NNI
684
+ logical port. If the logical port is not
685
+ performing user-side (bidirectional) procedures,
686
+ then this object is not instantiated.""",
687
+ "reference" :
688
+ """Q.933 Annex A [22],
689
+ T1.617 Annex D [17]""",
690
+ }, # column
691
+ "frMgtVCSigUserT391" : {
692
+ "nodetype" : "column",
693
+ "moduleName" : "FRNETSERV-MIB",
694
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.5",
695
+ "status" : "current",
696
+ "syntax" : {
697
+ "type" : {
698
+ "basetype" : "Integer32",
699
+ "ranges" : [
700
+ {
701
+ "min" : "5",
702
+ "max" : "30"
703
+ },
704
+ ],
705
+ "range" : {
706
+ "min" : "5",
707
+ "max" : "30"
708
+ },
709
+ },
710
+ },
711
+ "access" : "readonly",
712
+ "default" : "10",
713
+ "units" : "Seconds",
714
+ "description" :
715
+ """The value of this object identifies the User-side
716
+ T391 link integrity verification polling timer
717
+ value for this UNI/NNI logical port. If the
718
+ logical port is not performing user-side
719
+ procedures, then this object is not instantiated.""",
720
+ "reference" :
721
+ """Q.933 Annex A [22],
722
+ T1.617 Annex D [17]""",
723
+ }, # column
724
+ "frMgtVCSigNetN392" : {
725
+ "nodetype" : "column",
726
+ "moduleName" : "FRNETSERV-MIB",
727
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.6",
728
+ "status" : "current",
729
+ "syntax" : {
730
+ "type" : {
731
+ "basetype" : "Integer32",
732
+ "ranges" : [
733
+ {
734
+ "min" : "1",
735
+ "max" : "10"
736
+ },
737
+ ],
738
+ "range" : {
739
+ "min" : "1",
740
+ "max" : "10"
741
+ },
742
+ },
743
+ },
744
+ "access" : "readonly",
745
+ "default" : "3",
746
+ "units" : "Events",
747
+ "description" :
748
+ """The value of this object identifies the Network-
749
+ side N392 error threshold value (nN2 for LMI) for
750
+ this UNI/NNI logical port. If the logical port is
751
+ not performing network-side procedures, then this
752
+ object is not instantiated.""",
753
+ "reference" :
754
+ """Q.933 Annex A [22],
755
+ T1.617 Annex D [17],
756
+ LMI [24]""",
757
+ }, # column
758
+ "frMgtVCSigNetN393" : {
759
+ "nodetype" : "column",
760
+ "moduleName" : "FRNETSERV-MIB",
761
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.7",
762
+ "status" : "current",
763
+ "syntax" : {
764
+ "type" : {
765
+ "basetype" : "Integer32",
766
+ "ranges" : [
767
+ {
768
+ "min" : "1",
769
+ "max" : "10"
770
+ },
771
+ ],
772
+ "range" : {
773
+ "min" : "1",
774
+ "max" : "10"
775
+ },
776
+ },
777
+ },
778
+ "access" : "readonly",
779
+ "default" : "4",
780
+ "units" : "Events",
781
+ "description" :
782
+ """The value of this object identifies the Network-
783
+ side N393 monitored events count value (nN3 for
784
+ LMI) for this UNI/NNI logical port. If the
785
+ logical port is not performing network-side
786
+ procedures, then this object is not instantiated.""",
787
+ "reference" :
788
+ """Q.933 Annex A [22],
789
+ T1.617 Annex D [17],
790
+ LMI [24]""",
791
+ }, # column
792
+ "frMgtVCSigNetT392" : {
793
+ "nodetype" : "column",
794
+ "moduleName" : "FRNETSERV-MIB",
795
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.8",
796
+ "status" : "current",
797
+ "syntax" : {
798
+ "type" : {
799
+ "basetype" : "Integer32",
800
+ "ranges" : [
801
+ {
802
+ "min" : "5",
803
+ "max" : "30"
804
+ },
805
+ ],
806
+ "range" : {
807
+ "min" : "5",
808
+ "max" : "30"
809
+ },
810
+ },
811
+ },
812
+ "access" : "readonly",
813
+ "default" : "15",
814
+ "units" : "Seconds",
815
+ "description" :
816
+ """The value of this object identifies the Network-
817
+ side T392 polling verification timer value (nT2
818
+ for LMI) for this UNI/NNI logical port. If the
819
+ logical port is not performing network-side
820
+ procedures, then this object is not instantiated.""",
821
+ "reference" :
822
+ """Q.933 Annex A [22],
823
+ T1.617 Annex D [17],
824
+ LMI [24]""",
825
+ }, # column
826
+ "frMgtVCSigNetnN4" : {
827
+ "nodetype" : "column",
828
+ "moduleName" : "FRNETSERV-MIB",
829
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.9",
830
+ "status" : "current",
831
+ "syntax" : {
832
+ "type" : {
833
+ "basetype" : "Integer32",
834
+ "ranges" : [
835
+ {
836
+ "min" : "5",
837
+ "max" : "5"
838
+ },
839
+ ],
840
+ "range" : {
841
+ "min" : "5",
842
+ "max" : "5"
843
+ },
844
+ },
845
+ },
846
+ "access" : "readonly",
847
+ "units" : "Events",
848
+ "description" :
849
+ """The value of this object identifies the Network-
850
+ side nN4 maximum status enquires received value
851
+ for this UNI/NNI logical port. If the logical
852
+ port is not performing network-side procedures or
853
+ is not performing LMI procedures, then this object
854
+ is not instantiated.
855
+
856
+ This object applies only to LMI and always has a
857
+ value of 5.""",
858
+ "reference" :
859
+ """LMI [24]""",
860
+ }, # column
861
+ "frMgtVCSigNetnT3" : {
862
+ "nodetype" : "column",
863
+ "moduleName" : "FRNETSERV-MIB",
864
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.10",
865
+ "status" : "current",
866
+ "syntax" : {
867
+ "type" : {
868
+ "basetype" : "Integer32",
869
+ "ranges" : [
870
+ {
871
+ "min" : "5",
872
+ "max" : "5"
873
+ },
874
+ {
875
+ "min" : "10",
876
+ "max" : "10"
877
+ },
878
+ {
879
+ "min" : "15",
880
+ "max" : "15"
881
+ },
882
+ {
883
+ "min" : "20",
884
+ "max" : "20"
885
+ },
886
+ {
887
+ "min" : "25",
888
+ "max" : "25"
889
+ },
890
+ {
891
+ "min" : "30",
892
+ "max" : "30"
893
+ },
894
+ ],
895
+ "range" : {
896
+ "min" : "5",
897
+ "max" : "30"
898
+ },
899
+ },
900
+ },
901
+ "access" : "readonly",
902
+ "default" : "20",
903
+ "units" : "Seconds",
904
+ "description" :
905
+ """The value of this object identifies the Network-
906
+ side nT3 timer (for nN4 status enquires received)
907
+ value for this UNI/NNI logical port. If the
908
+ logical port is not performing network-side
909
+ procedures or is not performing LMI procedures,
910
+ then this object is not instantiated.
911
+
912
+ This object applies only to LMI.""",
913
+ "reference" :
914
+ """LMI [24]""",
915
+ }, # column
916
+ "frMgtVCSigUserLinkRelErrors" : {
917
+ "nodetype" : "column",
918
+ "moduleName" : "FRNETSERV-MIB",
919
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.11",
920
+ "status" : "current",
921
+ "syntax" : {
922
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
923
+ },
924
+ "access" : "readonly",
925
+ "units" : "Errors",
926
+ "description" :
927
+ """The number of user-side local in-channel
928
+ signaling link reliability errors (i.e., non-
929
+ receipt of Status/Status Enquiry messages or
930
+ invalid sequence numbers in a Link Integrity
931
+ Verification Information Element) for this UNI/NNI
932
+ logical port. If the logical port is not
933
+
934
+
935
+ performing user-side procedures, then this object
936
+ is not instantiated.""",
937
+ }, # column
938
+ "frMgtVCSigUserProtErrors" : {
939
+ "nodetype" : "column",
940
+ "moduleName" : "FRNETSERV-MIB",
941
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.12",
942
+ "status" : "current",
943
+ "syntax" : {
944
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
945
+ },
946
+ "access" : "readonly",
947
+ "units" : "Errors",
948
+ "description" :
949
+ """The number of user-side local in-channel
950
+ signaling protocol errors (i.e., protocol
951
+ discriminator, unnumbered information, message
952
+ type, call reference, and mandatory information
953
+ element errors) for this UNI/NNI logical port. If
954
+ the logical port is not performing user-side
955
+ procedures, then this object is not instantiated.""",
956
+ }, # column
957
+ "frMgtVCSigUserChanInactive" : {
958
+ "nodetype" : "column",
959
+ "moduleName" : "FRNETSERV-MIB",
960
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.13",
961
+ "status" : "current",
962
+ "syntax" : {
963
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
964
+ },
965
+ "access" : "readonly",
966
+ "units" : "Events",
967
+ "description" :
968
+ """The number of times the user-side channel was
969
+ declared inactive (i.e., N392 errors in N393
970
+ events) for this UNI/NNI logical port. If the
971
+ logical port is not performing user-side
972
+ procedures, then this object is not instantiated.""",
973
+ }, # column
974
+ "frMgtVCSigNetLinkRelErrors" : {
975
+ "nodetype" : "column",
976
+ "moduleName" : "FRNETSERV-MIB",
977
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.14",
978
+ "status" : "current",
979
+ "syntax" : {
980
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
981
+ },
982
+ "access" : "readonly",
983
+ "units" : "Errors",
984
+ "description" :
985
+ """The number of network-side local in-channel
986
+ signaling link reliability errors (i.e., non-
987
+ receipt of Status/Status Enquiry messages or
988
+ invalid sequence numbers in a Link Integrity
989
+ Verification Information Element) for this UNI/NNI
990
+ logical port.""",
991
+ }, # column
992
+ "frMgtVCSigNetProtErrors" : {
993
+ "nodetype" : "column",
994
+ "moduleName" : "FRNETSERV-MIB",
995
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.15",
996
+ "status" : "current",
997
+ "syntax" : {
998
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
999
+ },
1000
+ "access" : "readonly",
1001
+ "units" : "Errors",
1002
+ "description" :
1003
+ """The number of network-side local in-channel
1004
+ signaling protocol errors (i.e., protocol
1005
+ discriminator, message type, call reference, and
1006
+ mandatory information element errors) for this
1007
+ UNI/NNI logical port.""",
1008
+ }, # column
1009
+ "frMgtVCSigNetChanInactive" : {
1010
+ "nodetype" : "column",
1011
+ "moduleName" : "FRNETSERV-MIB",
1012
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.16",
1013
+ "status" : "current",
1014
+ "syntax" : {
1015
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1016
+ },
1017
+ "access" : "readonly",
1018
+ "units" : "Events",
1019
+ "description" :
1020
+ """The number of times the network-side channel was
1021
+ declared inactive (i.e., N392 errors in N393
1022
+ events) for this UNI/NNI logical port.""",
1023
+ }, # column
1024
+ "frMgtVCSigProcedAdmin" : {
1025
+ "nodetype" : "column",
1026
+ "moduleName" : "FRNETSERV-MIB",
1027
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.17",
1028
+ "status" : "current",
1029
+ "syntax" : {
1030
+ "type" : {
1031
+ "basetype" : "Enumeration",
1032
+ "u2nnet" : {
1033
+ "nodetype" : "namednumber",
1034
+ "number" : "1"
1035
+ },
1036
+ "bidirect" : {
1037
+ "nodetype" : "namednumber",
1038
+ "number" : "2"
1039
+ },
1040
+ "u2nuser" : {
1041
+ "nodetype" : "namednumber",
1042
+ "number" : "3"
1043
+ },
1044
+ },
1045
+ },
1046
+ "access" : "readwrite",
1047
+ "default" : "u2nnet",
1048
+ "description" :
1049
+ """The value of this object identifies the local
1050
+ in-channel signaling procedural role that is used
1051
+ for this UNI/NNI logical port. Bidirectional
1052
+ procedures implies that both user-side and
1053
+ network-side procedural roles are used.
1054
+
1055
+ u2nnet(1) Logical port operates user to network
1056
+ procedure in the role of the network
1057
+ side
1058
+
1059
+ bidirect(2) Logical port operates the
1060
+ bidirectional procedure (both user
1061
+ and network side roles)
1062
+
1063
+ u2nuser(3) Logical port operates user to network
1064
+ procedure in the role of the user
1065
+ side""",
1066
+ "reference" :
1067
+ """Q.933 Annex A [22],
1068
+ T1.617 Annex D [17]""",
1069
+ }, # column
1070
+ "frMgtVCSigUserN391Admin" : {
1071
+ "nodetype" : "column",
1072
+ "moduleName" : "FRNETSERV-MIB",
1073
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.18",
1074
+ "status" : "current",
1075
+ "syntax" : {
1076
+ "type" : {
1077
+ "basetype" : "Integer32",
1078
+ "ranges" : [
1079
+ {
1080
+ "min" : "1",
1081
+ "max" : "255"
1082
+ },
1083
+ ],
1084
+ "range" : {
1085
+ "min" : "1",
1086
+ "max" : "255"
1087
+ },
1088
+ },
1089
+ },
1090
+ "access" : "readwrite",
1091
+ "units" : "Polls",
1092
+ "description" :
1093
+ """The value of this object identifies the desired
1094
+ User-side N391 full status polling cycle value for
1095
+ this UNI/NNI logical port. If the logical port is
1096
+ not performing user-side (bidirectional)
1097
+ procedures, then this object is not instantiated.""",
1098
+ "reference" :
1099
+ """Q.933 Annex A [22],
1100
+ T1.617 Annex D [17]""",
1101
+ }, # column
1102
+ "frMgtVCSigUserN392Admin" : {
1103
+ "nodetype" : "column",
1104
+ "moduleName" : "FRNETSERV-MIB",
1105
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.19",
1106
+ "status" : "current",
1107
+ "syntax" : {
1108
+ "type" : {
1109
+ "basetype" : "Integer32",
1110
+ "ranges" : [
1111
+ {
1112
+ "min" : "1",
1113
+ "max" : "10"
1114
+ },
1115
+ ],
1116
+ "range" : {
1117
+ "min" : "1",
1118
+ "max" : "10"
1119
+ },
1120
+ },
1121
+ },
1122
+ "access" : "readwrite",
1123
+ "units" : "Events",
1124
+ "description" :
1125
+ """The value of this object identifies the desired
1126
+ User-side N392 error threshold value for this
1127
+ UNI/NNI logical port. If the logical port is not
1128
+ performing user-side (bidirectional) procedures,
1129
+ then this object is not instantiated.""",
1130
+ "reference" :
1131
+ """Q.933 Annex A [22],
1132
+ T1.617 Annex D [17]""",
1133
+ }, # column
1134
+ "frMgtVCSigUserN393Admin" : {
1135
+ "nodetype" : "column",
1136
+ "moduleName" : "FRNETSERV-MIB",
1137
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.20",
1138
+ "status" : "current",
1139
+ "syntax" : {
1140
+ "type" : {
1141
+ "basetype" : "Integer32",
1142
+ "ranges" : [
1143
+ {
1144
+ "min" : "1",
1145
+ "max" : "10"
1146
+ },
1147
+ ],
1148
+ "range" : {
1149
+ "min" : "1",
1150
+ "max" : "10"
1151
+ },
1152
+ },
1153
+ },
1154
+ "access" : "readwrite",
1155
+ "units" : "Events",
1156
+ "description" :
1157
+ """The value of this object identifies the desired
1158
+ User-side N393 monitored events count value for
1159
+ this UNI/NNI logical port. If the logical port is
1160
+ not performing user-side (bidirectional)
1161
+ procedures, then this object is not instantiated.""",
1162
+ "reference" :
1163
+ """Q.933 Annex A [22],
1164
+ T1.617 Annex D [17]""",
1165
+ }, # column
1166
+ "frMgtVCSigUserT391Admin" : {
1167
+ "nodetype" : "column",
1168
+ "moduleName" : "FRNETSERV-MIB",
1169
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.21",
1170
+ "status" : "current",
1171
+ "syntax" : {
1172
+ "type" : {
1173
+ "basetype" : "Integer32",
1174
+ "ranges" : [
1175
+ {
1176
+ "min" : "5",
1177
+ "max" : "30"
1178
+ },
1179
+ ],
1180
+ "range" : {
1181
+ "min" : "5",
1182
+ "max" : "30"
1183
+ },
1184
+ },
1185
+ },
1186
+ "access" : "readwrite",
1187
+ "units" : "Seconds",
1188
+ "description" :
1189
+ """The value of this object identifies the desired
1190
+ User-side T391 link integrity verification polling
1191
+ timer value for this UNI/NNI logical port. If the
1192
+ logical port is not performing user-side
1193
+ procedures, then this object is not instantiated.""",
1194
+ "reference" :
1195
+ """Q.933 Annex A [22],
1196
+ T1.617 Annex D [17]""",
1197
+ }, # column
1198
+ "frMgtVCSigNetN392Admin" : {
1199
+ "nodetype" : "column",
1200
+ "moduleName" : "FRNETSERV-MIB",
1201
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.22",
1202
+ "status" : "current",
1203
+ "syntax" : {
1204
+ "type" : {
1205
+ "basetype" : "Integer32",
1206
+ "ranges" : [
1207
+ {
1208
+ "min" : "1",
1209
+ "max" : "10"
1210
+ },
1211
+ ],
1212
+ "range" : {
1213
+ "min" : "1",
1214
+ "max" : "10"
1215
+ },
1216
+ },
1217
+ },
1218
+ "access" : "readwrite",
1219
+ "units" : "Events",
1220
+ "description" :
1221
+ """The value of this object identifies the desired
1222
+ Network-side N392 error threshold value (nN2 for
1223
+ LMI) for this UNI/NNI logical port. If the
1224
+ logical port is not performing network-side
1225
+ procedures, then this object is not instantiated.""",
1226
+ "reference" :
1227
+ """Q.933 Annex A [22],
1228
+ T1.617 Annex D [17],
1229
+ LMI [24]""",
1230
+ }, # column
1231
+ "frMgtVCSigNetN393Admin" : {
1232
+ "nodetype" : "column",
1233
+ "moduleName" : "FRNETSERV-MIB",
1234
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.23",
1235
+ "status" : "current",
1236
+ "syntax" : {
1237
+ "type" : {
1238
+ "basetype" : "Integer32",
1239
+ "ranges" : [
1240
+ {
1241
+ "min" : "1",
1242
+ "max" : "10"
1243
+ },
1244
+ ],
1245
+ "range" : {
1246
+ "min" : "1",
1247
+ "max" : "10"
1248
+ },
1249
+ },
1250
+ },
1251
+ "access" : "readwrite",
1252
+ "units" : "Events",
1253
+ "description" :
1254
+ """The value of this object identifies the desired
1255
+ Network-side N393 monitored events count value
1256
+ (nN3 for LMI) for this UNI/NNI logical port. If
1257
+ the logical port is not performing network-side
1258
+ procedures, then this object is not instantiated.""",
1259
+ "reference" :
1260
+ """Q.933 Annex A [22],
1261
+ T1.617 Annex D [17],
1262
+ LMI [24]""",
1263
+ }, # column
1264
+ "frMgtVCSigNetT392Admin" : {
1265
+ "nodetype" : "column",
1266
+ "moduleName" : "FRNETSERV-MIB",
1267
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.24",
1268
+ "status" : "current",
1269
+ "syntax" : {
1270
+ "type" : {
1271
+ "basetype" : "Integer32",
1272
+ "ranges" : [
1273
+ {
1274
+ "min" : "5",
1275
+ "max" : "30"
1276
+ },
1277
+ ],
1278
+ "range" : {
1279
+ "min" : "5",
1280
+ "max" : "30"
1281
+ },
1282
+ },
1283
+ },
1284
+ "access" : "readwrite",
1285
+ "units" : "Seconds",
1286
+ "description" :
1287
+ """The value of this object identifies the desired
1288
+ Network-side T392 polling verification timer value
1289
+ (nT2 for LMI) for this UNI/NNI logical port. If
1290
+ the logical port is not performing network-side
1291
+ procedures, then this object is not instantiated.""",
1292
+ "reference" :
1293
+ """Q.933 Annex A [22],
1294
+ T1.617 Annex D [17],
1295
+ LMI [24]""",
1296
+ }, # column
1297
+ "frMgtVCSigNetnT3Admin" : {
1298
+ "nodetype" : "column",
1299
+ "moduleName" : "FRNETSERV-MIB",
1300
+ "oid" : "1.3.6.1.2.1.10.44.1.2.1.25",
1301
+ "status" : "current",
1302
+ "syntax" : {
1303
+ "type" : {
1304
+ "basetype" : "Integer32",
1305
+ "ranges" : [
1306
+ {
1307
+ "min" : "5",
1308
+ "max" : "5"
1309
+ },
1310
+ {
1311
+ "min" : "10",
1312
+ "max" : "10"
1313
+ },
1314
+ {
1315
+ "min" : "15",
1316
+ "max" : "15"
1317
+ },
1318
+ {
1319
+ "min" : "20",
1320
+ "max" : "20"
1321
+ },
1322
+ {
1323
+ "min" : "25",
1324
+ "max" : "25"
1325
+ },
1326
+ {
1327
+ "min" : "30",
1328
+ "max" : "30"
1329
+ },
1330
+ ],
1331
+ "range" : {
1332
+ "min" : "5",
1333
+ "max" : "30"
1334
+ },
1335
+ },
1336
+ },
1337
+ "access" : "readwrite",
1338
+ "units" : "Seconds",
1339
+ "description" :
1340
+ """The value of this object identifies the desired
1341
+ Network-side nT3 timer (for nN4 status enquires
1342
+ received) value for this UNI/NNI logical port. If
1343
+ the logical port is not performing network-side
1344
+ procedures or is not performing LMI procedures,
1345
+ then this object is not instantiated. This object
1346
+ applies only to LMI.""",
1347
+ "reference" :
1348
+ """LMI [24]""",
1349
+ }, # column
1350
+ "frPVCEndptTable" : {
1351
+ "nodetype" : "table",
1352
+ "moduleName" : "FRNETSERV-MIB",
1353
+ "oid" : "1.3.6.1.2.1.10.44.1.3",
1354
+ "status" : "current",
1355
+ "description" :
1356
+ """The Frame Relay PVC End-Point table. This table
1357
+ is used to model a PVC end-point. This table
1358
+ contains the traffic parameters and statistics for
1359
+ a PVC end-point.
1360
+
1361
+ This table is used to identify the traffic
1362
+ parameters for a bi-directional PVC segment end-
1363
+
1364
+
1365
+ point, and it also provides statistics for a PVC
1366
+ segment end-point.
1367
+
1368
+ A PVC segment end-point is identified by a UNI/NNI
1369
+ logical port index value and DLCI index value.
1370
+
1371
+ If the frame relay service provider allows the
1372
+ frame relay CNM subscriber to create, modify or
1373
+ delete PVCs using SNMP, then this table is used to
1374
+ identify and reserve the requested traffic
1375
+ parameters of each PVC segment end-point. The
1376
+ Connection table is used to 'connect' the end-
1377
+ points together. Not all implementations will
1378
+ support the capability of
1379
+ creating/modifying/deleting PVCs using SNMP as a
1380
+ feature of frame relay CNM service.
1381
+
1382
+ Uni-directional PVCs are modeled with zero valued
1383
+ traffic parameters in one of the directions (In or
1384
+ Out direction) in this table.
1385
+
1386
+ To create a PVC, the following procedures shall be
1387
+ followed:
1388
+
1389
+ 1) Create the entries for the PVC segment
1390
+ endpoints in the frPVCEndptTable by specifying
1391
+ the traffic parameters for the bi-directional
1392
+ PVC segment endpoints. As shown in figure 2, a
1393
+ point-to-point PVC has two endpoints, thus two
1394
+ entries in this table. Uni-directional PVCs
1395
+ are modeled with zero valued traffic
1396
+ parameters in one direction; all the `In'
1397
+ direction parameters for one frame relay PVC
1398
+ End-point or all the `Out' direction
1399
+ parameters for the other frame relay PVC
1400
+ Endpoint.
1401
+
1402
+ In _____________________________ Out
1403
+ >>>>>>| |>>>>>>>>
1404
+ ______| Frame Relay Network |________
1405
+ Out | | In
1406
+ <<<<<<|_____________________________|<<<<<<<<
1407
+ Frame Relay Frame Relay
1408
+ PVC PVC
1409
+ Endpoint Endpoint
1410
+
1411
+ Figure 2, PVC Terminology
1412
+
1413
+
1414
+
1415
+ 2) Go to the Frame Relay Connection Group.""",
1416
+ }, # table
1417
+ "frPVCEndptEntry" : {
1418
+ "nodetype" : "row",
1419
+ "moduleName" : "FRNETSERV-MIB",
1420
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1",
1421
+ "create" : "true",
1422
+ "status" : "current",
1423
+ "linkage" : [
1424
+ "ifIndex",
1425
+ "frPVCEndptDLCIIndex",
1426
+ ],
1427
+ "description" :
1428
+ """An entry in the Frame Relay PVC Endpoint table.""",
1429
+ }, # row
1430
+ "frPVCEndptDLCIIndex" : {
1431
+ "nodetype" : "column",
1432
+ "moduleName" : "FRNETSERV-MIB",
1433
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.1",
1434
+ "status" : "current",
1435
+ "syntax" : {
1436
+ "type" : {
1437
+ "basetype" : "Integer32",
1438
+ "ranges" : [
1439
+ {
1440
+ "min" : "16",
1441
+ "max" : "4194303"
1442
+ },
1443
+ ],
1444
+ "range" : {
1445
+ "min" : "16",
1446
+ "max" : "4194303"
1447
+ },
1448
+ },
1449
+ },
1450
+ "access" : "noaccess",
1451
+ "description" :
1452
+ """The value of this object is equal to the DLCI
1453
+ value for this PVC end-point.
1454
+
1455
+ The values are restricted to the legal range for
1456
+ the size of address field supported by the logical
1457
+ port (frLportAddrDLCILen).""",
1458
+ "reference" :
1459
+ """Q.922 [25]""",
1460
+ }, # column
1461
+ "frPVCEndptInMaxFrameSize" : {
1462
+ "nodetype" : "column",
1463
+ "moduleName" : "FRNETSERV-MIB",
1464
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.2",
1465
+ "status" : "current",
1466
+ "syntax" : {
1467
+ "type" : {
1468
+ "basetype" : "Integer32",
1469
+ "ranges" : [
1470
+ {
1471
+ "min" : "1",
1472
+ "max" : "4096"
1473
+ },
1474
+ ],
1475
+ "range" : {
1476
+ "min" : "1",
1477
+ "max" : "4096"
1478
+ },
1479
+ },
1480
+ },
1481
+ "access" : "readwrite",
1482
+ "default" : "1600",
1483
+ "units" : "Octets",
1484
+ "description" :
1485
+ """The value of this object is the size in octets of
1486
+ the largest frame relay information field for this
1487
+ PVC end-point in the ingress direction (into the
1488
+ frame relay network). The value of
1489
+ frPVCEndptInMaxFrameSize must be less than or
1490
+ equal to the corresponding ifMtu for this frame
1491
+ relay UNI/NNI logical port.""",
1492
+ "reference" :
1493
+ """FRF.1 [31]
1494
+ Q.922 [25]
1495
+ Q.933 [22]""",
1496
+ }, # column
1497
+ "frPVCEndptInBc" : {
1498
+ "nodetype" : "column",
1499
+ "moduleName" : "FRNETSERV-MIB",
1500
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.3",
1501
+ "status" : "current",
1502
+ "syntax" : {
1503
+ "type" : {
1504
+ "basetype" : "Integer32",
1505
+ "ranges" : [
1506
+ {
1507
+ "min" : "1",
1508
+ "max" : "2147483647"
1509
+ },
1510
+ ],
1511
+ "range" : {
1512
+ "min" : "1",
1513
+ "max" : "2147483647"
1514
+ },
1515
+ },
1516
+ },
1517
+ "access" : "readwrite",
1518
+ "units" : "Bits",
1519
+ "description" :
1520
+ """The value of this object is equal to the
1521
+ committed burst size (Bc) parameter (measured in
1522
+ bits) for this PVC end-point in the ingress
1523
+ direction (into the frame relay network).
1524
+
1525
+ Note that the max value of this range is lower
1526
+ than the max value allowed by Q.933 (16383 *
1527
+ 10**6).
1528
+
1529
+
1530
+
1531
+ Note that the value is encoded in bits whilst the
1532
+ Q.933 Link layer core parameters information
1533
+ element encodes this information using octet
1534
+ units.""",
1535
+ "reference" :
1536
+ """Q.933 [22]""",
1537
+ }, # column
1538
+ "frPVCEndptInBe" : {
1539
+ "nodetype" : "column",
1540
+ "moduleName" : "FRNETSERV-MIB",
1541
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.4",
1542
+ "status" : "current",
1543
+ "syntax" : {
1544
+ "type" : {
1545
+ "basetype" : "Integer32",
1546
+ "ranges" : [
1547
+ {
1548
+ "min" : "1",
1549
+ "max" : "2147483647"
1550
+ },
1551
+ ],
1552
+ "range" : {
1553
+ "min" : "1",
1554
+ "max" : "2147483647"
1555
+ },
1556
+ },
1557
+ },
1558
+ "access" : "readwrite",
1559
+ "units" : "Bits",
1560
+ "description" :
1561
+ """The value of this object is equal to the excess
1562
+ burst size (Be) parameter (measured in bits) for
1563
+ this PVC end-point in the ingress direction (into
1564
+ the frame relay network).
1565
+
1566
+ Note that the max value of this range is lower
1567
+ than the max value allowed by Q.933 (16383 *
1568
+ 10**6).
1569
+
1570
+ Note that the value is encoded in bits whilst the
1571
+ Q.933 Link layer core parameters information
1572
+ element encodes this information using octet
1573
+ units.""",
1574
+ "reference" :
1575
+ """Q.933 [22]""",
1576
+ }, # column
1577
+ "frPVCEndptInCIR" : {
1578
+ "nodetype" : "column",
1579
+ "moduleName" : "FRNETSERV-MIB",
1580
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.5",
1581
+ "status" : "current",
1582
+ "syntax" : {
1583
+ "type" : {
1584
+ "basetype" : "Integer32",
1585
+ "ranges" : [
1586
+ {
1587
+ "min" : "1",
1588
+ "max" : "2147483647"
1589
+ },
1590
+ ],
1591
+ "range" : {
1592
+ "min" : "1",
1593
+ "max" : "2147483647"
1594
+ },
1595
+ },
1596
+ },
1597
+ "access" : "readwrite",
1598
+ "units" : "Bits per Second",
1599
+ "description" :
1600
+ """The value of this object is equal to the
1601
+ committed information rate (CIR) parameter
1602
+ (measured in bits per second) for this PVC end-
1603
+ point in the ingress direction (into the frame
1604
+ relay network).
1605
+
1606
+ Note that the max value of this range is lower
1607
+ than the max value allowed by Q.933 (2047 *
1608
+ 10**6).""",
1609
+ "reference" :
1610
+ """Q.933 [22]""",
1611
+ }, # column
1612
+ "frPVCEndptOutMaxFrameSize" : {
1613
+ "nodetype" : "column",
1614
+ "moduleName" : "FRNETSERV-MIB",
1615
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.6",
1616
+ "status" : "current",
1617
+ "syntax" : {
1618
+ "type" : {
1619
+ "basetype" : "Integer32",
1620
+ "ranges" : [
1621
+ {
1622
+ "min" : "1",
1623
+ "max" : "4096"
1624
+ },
1625
+ ],
1626
+ "range" : {
1627
+ "min" : "1",
1628
+ "max" : "4096"
1629
+ },
1630
+ },
1631
+ },
1632
+ "access" : "readwrite",
1633
+ "default" : "1600",
1634
+ "units" : "Octets",
1635
+ "description" :
1636
+ """The value of this object is the size in octets of
1637
+ the largest frame relay information field for this
1638
+ PVC end-point in the egress direction (out of the
1639
+ frame relay network). The value of
1640
+ frPVCEndptOutMaxFrameSize must be less than or
1641
+ equal to the corresponding ifMtu for this frame
1642
+ relay UNI/NNI logical port.""",
1643
+ "reference" :
1644
+ """FRF.1 [31]
1645
+ Q.922 [25]
1646
+ Q.933 [22]""",
1647
+ }, # column
1648
+ "frPVCEndptOutBc" : {
1649
+ "nodetype" : "column",
1650
+ "moduleName" : "FRNETSERV-MIB",
1651
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.7",
1652
+ "status" : "current",
1653
+ "syntax" : {
1654
+ "type" : {
1655
+ "basetype" : "Integer32",
1656
+ "ranges" : [
1657
+ {
1658
+ "min" : "1",
1659
+ "max" : "2147483647"
1660
+ },
1661
+ ],
1662
+ "range" : {
1663
+ "min" : "1",
1664
+ "max" : "2147483647"
1665
+ },
1666
+ },
1667
+ },
1668
+ "access" : "readwrite",
1669
+ "units" : "Bits",
1670
+ "description" :
1671
+ """The value of this object is equal to the
1672
+ committed burst size (Bc) parameter (measured in
1673
+ bits) for this PVC end-point in the egress
1674
+ direction (out of the frame relay network).
1675
+
1676
+ Note that the max value of this range is lower
1677
+ than the max value allowed by Q.933 (16383 *
1678
+ 10**6).
1679
+
1680
+ Note that the value is encoded in bits whilst the
1681
+ Q.933 Link layer core parameters information
1682
+ element encodes this information using octet
1683
+ units.""",
1684
+ "reference" :
1685
+ """Q.933 [22]""",
1686
+ }, # column
1687
+ "frPVCEndptOutBe" : {
1688
+ "nodetype" : "column",
1689
+ "moduleName" : "FRNETSERV-MIB",
1690
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.8",
1691
+ "status" : "current",
1692
+ "syntax" : {
1693
+ "type" : {
1694
+ "basetype" : "Integer32",
1695
+ "ranges" : [
1696
+ {
1697
+ "min" : "1",
1698
+ "max" : "2147483647"
1699
+ },
1700
+ ],
1701
+ "range" : {
1702
+ "min" : "1",
1703
+ "max" : "2147483647"
1704
+ },
1705
+ },
1706
+ },
1707
+ "access" : "readwrite",
1708
+ "units" : "Bits",
1709
+ "description" :
1710
+ """The value of this object is equal to the excess
1711
+ burst size (Be) parameter (measured in bits) for
1712
+
1713
+
1714
+ this PVC end-point in the egress direction (out of
1715
+ the frame relay network).
1716
+
1717
+ Note that the max value of this range is lower
1718
+ than the max value allowed by Q.933 (16383 *
1719
+ 10**6).
1720
+
1721
+ Note that the value is encoded in bits whilst the
1722
+ Q.933 Link layer core parameters information
1723
+ element encodes this information using octet
1724
+ units.""",
1725
+ "reference" :
1726
+ """Q.933 [22]""",
1727
+ }, # column
1728
+ "frPVCEndptOutCIR" : {
1729
+ "nodetype" : "column",
1730
+ "moduleName" : "FRNETSERV-MIB",
1731
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.9",
1732
+ "status" : "current",
1733
+ "syntax" : {
1734
+ "type" : {
1735
+ "basetype" : "Integer32",
1736
+ "ranges" : [
1737
+ {
1738
+ "min" : "1",
1739
+ "max" : "2147483647"
1740
+ },
1741
+ ],
1742
+ "range" : {
1743
+ "min" : "1",
1744
+ "max" : "2147483647"
1745
+ },
1746
+ },
1747
+ },
1748
+ "access" : "readwrite",
1749
+ "units" : "Bits per Second",
1750
+ "description" :
1751
+ """The value of this object is equal to the
1752
+ committed information rate (CIR) parameter
1753
+ (measured in bits per second) for this PVC end-
1754
+ point in the egress direction (out of the frame
1755
+ relay network).
1756
+
1757
+ Note that the max value of this range is lower
1758
+ than the max value allowed by Q.933 (2047 *
1759
+ 10**6).""",
1760
+ "reference" :
1761
+ """Q.933 [22]""",
1762
+ }, # column
1763
+ "frPVCEndptConnectIdentifier" : {
1764
+ "nodetype" : "column",
1765
+ "moduleName" : "FRNETSERV-MIB",
1766
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.10",
1767
+ "status" : "current",
1768
+ "syntax" : {
1769
+ "type" : {
1770
+ "basetype" : "Integer32",
1771
+ "ranges" : [
1772
+ {
1773
+ "min" : "0",
1774
+ "max" : "2147483647"
1775
+ },
1776
+ ],
1777
+ "range" : {
1778
+ "min" : "0",
1779
+ "max" : "2147483647"
1780
+ },
1781
+ },
1782
+ },
1783
+ "access" : "readonly",
1784
+ "description" :
1785
+ """This object is used to associate PVC end-points
1786
+ as being part of one PVC segment connection. This
1787
+ value of this object is equal to the value of
1788
+ frPVCConnectIndex, which is used as one of the
1789
+ indices into the frPVCConnectTable.
1790
+
1791
+ A connection that has been cross-connected via the
1792
+ FR/ATM PVC Service IWF cross-connect table will
1793
+ return the value zero when this object is read. In
1794
+ case of these interworked connections, the
1795
+ frPVCEndptAtmIwfConnIndex object must be accessed
1796
+
1797
+
1798
+ to select the entry in the FR/ATM PVC Service IWF
1799
+ cross-connect table.
1800
+
1801
+ The value of this object is provided by the agent,
1802
+ after the associated entries in the
1803
+ frPVCConnectTable or frAtmIwfConnectionTable have
1804
+ been created.""",
1805
+ }, # column
1806
+ "frPVCEndptRowStatus" : {
1807
+ "nodetype" : "column",
1808
+ "moduleName" : "FRNETSERV-MIB",
1809
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.11",
1810
+ "status" : "current",
1811
+ "syntax" : {
1812
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1813
+ },
1814
+ "access" : "readwrite",
1815
+ "description" :
1816
+ """This object is used to create new rows in this
1817
+ table, modify existing rows, and to delete
1818
+ existing rows. To create a new PVC, the entries
1819
+ for the PVC segment end-points in the
1820
+ frPVCEndptTable must first be created. Next, the
1821
+ frPVCConnectTable is used to associate the frame
1822
+ relay PVC segment end-points. In order for the
1823
+ manager to have the necessary error diagnostics,
1824
+ the frPVCEndptRowStatus object must initially be
1825
+ set to `createAndWait(5)'. While the
1826
+ frPVCEndptRowStatus object is in the
1827
+ `createAndWait(5)' state, the manager can set each
1828
+ columnar object and get the necessary error
1829
+ diagnostics. The frPVCEndptRowStatus object may
1830
+ not be set to `active(1)' unless the following
1831
+ columnar objects exist in this row:
1832
+ frPVCEndptInMaxFrameSize, frPVCEndptInBc,
1833
+ frPVCEndptInBe, frPVCEndptInCIR,
1834
+ frPVCEndptOutMaxFrameSize, frPVCEndptOutBc,
1835
+ frPVCEndptOutBe, and frPVCEndptOutCIR.""",
1836
+ }, # column
1837
+ "frPVCEndptRcvdSigStatus" : {
1838
+ "nodetype" : "column",
1839
+ "moduleName" : "FRNETSERV-MIB",
1840
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.12",
1841
+ "status" : "current",
1842
+ "syntax" : {
1843
+ "type" : {
1844
+ "basetype" : "Enumeration",
1845
+ "deleted" : {
1846
+ "nodetype" : "namednumber",
1847
+ "number" : "1"
1848
+ },
1849
+ "active" : {
1850
+ "nodetype" : "namednumber",
1851
+ "number" : "2"
1852
+ },
1853
+ "inactive" : {
1854
+ "nodetype" : "namednumber",
1855
+ "number" : "3"
1856
+ },
1857
+ "none" : {
1858
+ "nodetype" : "namednumber",
1859
+ "number" : "4"
1860
+ },
1861
+ },
1862
+ },
1863
+ "access" : "readonly",
1864
+ "description" :
1865
+ """The value of this object identifies the PVC
1866
+ status received via the local in-channel signaling
1867
+
1868
+
1869
+ procedures for this PVC end-point. This object is
1870
+ only pertinent for interfaces that perform the
1871
+ bidirectional procedures.
1872
+
1873
+ Each value has the following meaning:
1874
+ deleted(1): This PVC is not listed in the full
1875
+ status reports received from the
1876
+ user device. The object retains
1877
+ this value for as long as the PVC
1878
+ is not listed in the full status
1879
+ reports
1880
+
1881
+ active(2): This PVC is reported as active, or
1882
+ operational, by the user device.
1883
+
1884
+ inactive(3): This PVC is reported as inactive,
1885
+ or non-operational, by the user
1886
+ device.
1887
+
1888
+ none(4): This interface is only using the
1889
+ network-side in-channel signaling
1890
+ procedures, so this object does
1891
+ not apply.""",
1892
+ }, # column
1893
+ "frPVCEndptInFrames" : {
1894
+ "nodetype" : "column",
1895
+ "moduleName" : "FRNETSERV-MIB",
1896
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.13",
1897
+ "status" : "current",
1898
+ "syntax" : {
1899
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1900
+ },
1901
+ "access" : "readonly",
1902
+ "units" : "Frames",
1903
+ "description" :
1904
+ """The number of frames received by the network
1905
+ (ingress) for this PVC end-point. This includes
1906
+ any frames discarded by the network due to
1907
+ submitting more than Bc + Be data or due to any
1908
+ network congestion recovery procedures.""",
1909
+ }, # column
1910
+ "frPVCEndptOutFrames" : {
1911
+ "nodetype" : "column",
1912
+ "moduleName" : "FRNETSERV-MIB",
1913
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.14",
1914
+ "status" : "current",
1915
+ "syntax" : {
1916
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1917
+ },
1918
+ "access" : "readonly",
1919
+ "units" : "Frames",
1920
+ "description" :
1921
+ """The number of frames sent by the network (egress)
1922
+ regardless of whether they are Bc or Be frames for
1923
+ this PVC end-point.""",
1924
+ }, # column
1925
+ "frPVCEndptInDEFrames" : {
1926
+ "nodetype" : "column",
1927
+ "moduleName" : "FRNETSERV-MIB",
1928
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.15",
1929
+ "status" : "current",
1930
+ "syntax" : {
1931
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1932
+ },
1933
+ "access" : "readonly",
1934
+ "units" : "Frames",
1935
+ "description" :
1936
+ """The number of frames received by the network
1937
+ (ingress) with the DE bit set to (1) for this PVC
1938
+ end-point.""",
1939
+ }, # column
1940
+ "frPVCEndptInExcessFrames" : {
1941
+ "nodetype" : "column",
1942
+ "moduleName" : "FRNETSERV-MIB",
1943
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.16",
1944
+ "status" : "current",
1945
+ "syntax" : {
1946
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1947
+ },
1948
+ "access" : "readonly",
1949
+ "units" : "Frames",
1950
+ "description" :
1951
+ """The number of frames received by the network
1952
+ (ingress) for this PVC end-point which were
1953
+ treated as excess traffic. Frames which are sent
1954
+ to the network with DE set to zero are treated as
1955
+ excess when more than Bc bits are submitted to the
1956
+ network during the Committed Information Rate
1957
+ Measurement Interval (Tc). Excess traffic may or
1958
+ may not be discarded at the ingress if more than
1959
+ Bc + Be bits are submitted to the network during
1960
+ Tc. Traffic discarded at the ingress is not
1961
+ recorded in frPVCEndptInExcessFrames. Frames
1962
+ which are sent to the network with DE set to one
1963
+ are also treated as excess traffic.""",
1964
+ }, # column
1965
+ "frPVCEndptOutExcessFrames" : {
1966
+ "nodetype" : "column",
1967
+ "moduleName" : "FRNETSERV-MIB",
1968
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.17",
1969
+ "status" : "current",
1970
+ "syntax" : {
1971
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1972
+ },
1973
+ "access" : "readonly",
1974
+ "units" : "Frames",
1975
+ "description" :
1976
+ """The number of frames sent by the network (egress)
1977
+ for this PVC end-point which were treated as
1978
+ excess traffic. (The DE bit may be set to one.)""",
1979
+ }, # column
1980
+ "frPVCEndptInDiscards" : {
1981
+ "nodetype" : "column",
1982
+ "moduleName" : "FRNETSERV-MIB",
1983
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.18",
1984
+ "status" : "current",
1985
+ "syntax" : {
1986
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1987
+ },
1988
+ "access" : "readonly",
1989
+ "units" : "Frames",
1990
+ "description" :
1991
+ """The number of frames received by the network
1992
+ (ingress) that were discarded due to traffic
1993
+ enforcement for this PVC end-point. Congestion
1994
+ discards are not counted in this object.""",
1995
+ }, # column
1996
+ "frPVCEndptInOctets" : {
1997
+ "nodetype" : "column",
1998
+ "moduleName" : "FRNETSERV-MIB",
1999
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.19",
2000
+ "status" : "current",
2001
+ "syntax" : {
2002
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2003
+ },
2004
+ "access" : "readonly",
2005
+ "units" : "Octets",
2006
+ "description" :
2007
+ """The number of octets received by the network
2008
+ (ingress) for this PVC end-point. This counter
2009
+ should only count octets from the beginning of the
2010
+ frame relay header field to the end of user data.
2011
+ If the network supporting frame relay can not
2012
+ count octets, then this count should be an
2013
+ approximation.""",
2014
+ }, # column
2015
+ "frPVCEndptOutOctets" : {
2016
+ "nodetype" : "column",
2017
+ "moduleName" : "FRNETSERV-MIB",
2018
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.20",
2019
+ "status" : "current",
2020
+ "syntax" : {
2021
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2022
+ },
2023
+ "access" : "readonly",
2024
+ "units" : "Octets",
2025
+ "description" :
2026
+ """The number of octets sent by the network (egress)
2027
+ for this PVC end-point. This counter should only
2028
+ count octets from the beginning of the frame relay
2029
+ header field to the end of user data. If the
2030
+ network supporting frame relay can not count
2031
+ octets, then this count should be an
2032
+ approximation.""",
2033
+ }, # column
2034
+ "frPVCEndptInDiscardsDESet" : {
2035
+ "nodetype" : "column",
2036
+ "moduleName" : "FRNETSERV-MIB",
2037
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.21",
2038
+ "status" : "current",
2039
+ "syntax" : {
2040
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2041
+ },
2042
+ "access" : "readonly",
2043
+ "units" : "Frames",
2044
+ "description" :
2045
+ """The number of frames received by the network
2046
+ (ingress) that were discarded with the DE bit set
2047
+ due to traffic enforcement for this PVC end-point.
2048
+ Congestion discards are not counted in this
2049
+ object.""",
2050
+ }, # column
2051
+ "frPVCEndptInFramesFECNSet" : {
2052
+ "nodetype" : "column",
2053
+ "moduleName" : "FRNETSERV-MIB",
2054
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.22",
2055
+ "status" : "current",
2056
+ "syntax" : {
2057
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2058
+ },
2059
+ "access" : "readonly",
2060
+ "units" : "Frames",
2061
+ "description" :
2062
+ """The number of frames received by the network
2063
+ (ingress) that have the FECN bit set for this PVC
2064
+ end-point.""",
2065
+ }, # column
2066
+ "frPVCEndptOutFramesFECNSet" : {
2067
+ "nodetype" : "column",
2068
+ "moduleName" : "FRNETSERV-MIB",
2069
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.23",
2070
+ "status" : "current",
2071
+ "syntax" : {
2072
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2073
+ },
2074
+ "access" : "readonly",
2075
+ "units" : "Frames",
2076
+ "description" :
2077
+ """The number of frames sent by the network (egress)
2078
+ that have the FECN bit set for this PVC end-
2079
+ point.""",
2080
+ }, # column
2081
+ "frPVCEndptInFramesBECNSet" : {
2082
+ "nodetype" : "column",
2083
+ "moduleName" : "FRNETSERV-MIB",
2084
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.24",
2085
+ "status" : "current",
2086
+ "syntax" : {
2087
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2088
+ },
2089
+ "access" : "readonly",
2090
+ "units" : "Frames",
2091
+ "description" :
2092
+ """The number of frames received by the network
2093
+ (ingress) that have the BECN bit set for this PVC
2094
+ end-point.""",
2095
+ }, # column
2096
+ "frPVCEndptOutFramesBECNSet" : {
2097
+ "nodetype" : "column",
2098
+ "moduleName" : "FRNETSERV-MIB",
2099
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.25",
2100
+ "status" : "current",
2101
+ "syntax" : {
2102
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2103
+ },
2104
+ "access" : "readonly",
2105
+ "units" : "Frames",
2106
+ "description" :
2107
+ """The number of frames sent by the network (egress)
2108
+ that have the BECN bit set for this PVC end-
2109
+ point.""",
2110
+ }, # column
2111
+ "frPVCEndptInCongDiscards" : {
2112
+ "nodetype" : "column",
2113
+ "moduleName" : "FRNETSERV-MIB",
2114
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.26",
2115
+ "status" : "current",
2116
+ "syntax" : {
2117
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2118
+ },
2119
+ "access" : "readonly",
2120
+ "units" : "Frames",
2121
+ "description" :
2122
+ """The number of frames received by the network
2123
+ (ingress) that were discarded due to input buffer
2124
+ congestion, rather than traffic enforcement, for
2125
+ this PVC end-point.""",
2126
+ }, # column
2127
+ "frPVCEndptInDECongDiscards" : {
2128
+ "nodetype" : "column",
2129
+ "moduleName" : "FRNETSERV-MIB",
2130
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.27",
2131
+ "status" : "current",
2132
+ "syntax" : {
2133
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2134
+ },
2135
+ "access" : "readonly",
2136
+ "units" : "Frames",
2137
+ "description" :
2138
+ """The number of frames counted by
2139
+ frPVCEndptInCongDiscards with the DE bit set to
2140
+ (1).""",
2141
+ }, # column
2142
+ "frPVCEndptOutCongDiscards" : {
2143
+ "nodetype" : "column",
2144
+ "moduleName" : "FRNETSERV-MIB",
2145
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.28",
2146
+ "status" : "current",
2147
+ "syntax" : {
2148
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2149
+ },
2150
+ "access" : "readonly",
2151
+ "units" : "Frames",
2152
+ "description" :
2153
+ """The number of frames sent by the network (egress)
2154
+ that were discarded due to output buffer
2155
+ congestion for this PVC end-point.""",
2156
+ }, # column
2157
+ "frPVCEndptOutDECongDiscards" : {
2158
+ "nodetype" : "column",
2159
+ "moduleName" : "FRNETSERV-MIB",
2160
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.29",
2161
+ "status" : "current",
2162
+ "syntax" : {
2163
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2164
+ },
2165
+ "access" : "readonly",
2166
+ "units" : "Frames",
2167
+ "description" :
2168
+ """The number of frames counted by
2169
+ frPVCEndptOutCongDiscards with the DE bit set to
2170
+ (1).""",
2171
+ }, # column
2172
+ "frPVCEndptOutDEFrames" : {
2173
+ "nodetype" : "column",
2174
+ "moduleName" : "FRNETSERV-MIB",
2175
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.30",
2176
+ "status" : "current",
2177
+ "syntax" : {
2178
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2179
+ },
2180
+ "access" : "readonly",
2181
+ "units" : "Frames",
2182
+ "description" :
2183
+ """The number of frames sent by the network (egress)
2184
+ with the DE bit set to (1) for this PVC end-
2185
+ point.""",
2186
+ }, # column
2187
+ "frPVCEndptAtmIwfConnIndex" : {
2188
+ "nodetype" : "column",
2189
+ "moduleName" : "FRNETSERV-MIB",
2190
+ "oid" : "1.3.6.1.2.1.10.44.1.3.1.31",
2191
+ "status" : "current",
2192
+ "syntax" : {
2193
+ "type" : {
2194
+ "basetype" : "Integer32",
2195
+ "ranges" : [
2196
+ {
2197
+ "min" : "0",
2198
+ "max" : "2147483647"
2199
+ },
2200
+ ],
2201
+ "range" : {
2202
+ "min" : "0",
2203
+ "max" : "2147483647"
2204
+ },
2205
+ },
2206
+ },
2207
+ "access" : "readonly",
2208
+ "description" :
2209
+ """This object contains the index value of the
2210
+ FR/ATM cross-connect table entry used to link the
2211
+ frame relay PVC with an ATM PVC.
2212
+
2213
+ Each row of the frPVCEndptTable that is not
2214
+ cross-connected with an ATM PVC must return the
2215
+ value zero when this object is read.
2216
+
2217
+ The value of this object is initialized by the
2218
+ agent after the associated entries in the
2219
+ frAtmIwfConnectionTable have been created.
2220
+
2221
+ The value of this object is reset to zero
2222
+ following destruction of the associated entry in
2223
+ the frAtmIwfConnectionTable""",
2224
+ }, # column
2225
+ "frPVCConnectIndexValue" : {
2226
+ "nodetype" : "scalar",
2227
+ "moduleName" : "FRNETSERV-MIB",
2228
+ "oid" : "1.3.6.1.2.1.10.44.1.4",
2229
+ "status" : "current",
2230
+ "syntax" : {
2231
+ "type" : {
2232
+ "basetype" : "Integer32",
2233
+ "ranges" : [
2234
+ {
2235
+ "min" : "0",
2236
+ "max" : "2147483647"
2237
+ },
2238
+ ],
2239
+ "range" : {
2240
+ "min" : "0",
2241
+ "max" : "2147483647"
2242
+ },
2243
+ },
2244
+ },
2245
+ "access" : "readonly",
2246
+ "description" :
2247
+ """This object returns a hint to be used for
2248
+ frPVCConnectIndex when creating entries in the
2249
+ frPVCConnectTable.
2250
+
2251
+ The value 0 indicates that no unassigned entries
2252
+ are available.
2253
+
2254
+ To obtain the frPVCConnectIndex value for a new
2255
+ entry, the manager issues a management protocol
2256
+ retrieval operation to obtain the current value of
2257
+ this object. After each retrieval, the agent must
2258
+
2259
+
2260
+ modify the value to the next unassigned index to
2261
+ prevent assignment of the same value to multiple
2262
+ management systems.
2263
+
2264
+ A management system should repeat the read to
2265
+ obtain a new value should an attempt to create the
2266
+ new row using the previously returned hint fail.""",
2267
+ }, # scalar
2268
+ "frPVCConnectTable" : {
2269
+ "nodetype" : "table",
2270
+ "moduleName" : "FRNETSERV-MIB",
2271
+ "oid" : "1.3.6.1.2.1.10.44.1.5",
2272
+ "status" : "current",
2273
+ "description" :
2274
+ """The Frame Relay PVC Connect Table is used to
2275
+ model the bi-directional PVC segment flows
2276
+ including: point-to-point PVCs, point-to-
2277
+ multipoint PVCs, and multipoint-to-multipoint
2278
+ PVCs.
2279
+
2280
+ This table has read-create access and is used to
2281
+ associate PVC end-points together as belonging to
2282
+ one connection. The frPVCConnectIndex is used to
2283
+ associate all the bi-directional flows. Not all
2284
+ implementations will support the capability of
2285
+ creating/modifying/deleting PVCs using SNMP as a
2286
+ feature of frame relay CNM service.
2287
+
2288
+ Once the entries in the frPVCEndptTable are
2289
+ created, the following step are used to associate
2290
+ the PVC end-points as belonging to one PVC
2291
+ connection:
2292
+
2293
+ 1) Obtain a unique frPVCConnectIndex
2294
+ using the frPVCConnectIndexValue object.
2295
+
2296
+ 2) Connect the PVC segment endpoints together
2297
+ with the applicable frPVCConnectIndex value
2298
+ obtained via frPVCConnectIndexValue. The
2299
+ entries in this table are created by using
2300
+ the frPVCConnectRowStatus object.
2301
+
2302
+ 3) The agent will provide the value of the
2303
+ corresponding instances of
2304
+ frPVCEndptConnectIdentifier with the
2305
+ frPVCConnectIndex value.
2306
+
2307
+ 4) Set frPVCConnectAdminStatus to `active(1)' in
2308
+
2309
+
2310
+ all rows for this PVC segment to turn the
2311
+ PVC on.
2312
+
2313
+ For example, the Frame Relay PVC Connection Group
2314
+ models a bi-directional, point-to-point PVC
2315
+ segment as one entry in this table.
2316
+
2317
+ Frame Relay Frame Relay
2318
+ Network Network
2319
+ Low Port High Port
2320
+ __________________________________
2321
+ | |
2322
+ _____| >> from low to high PVC flow >> |_____
2323
+ | << from high to low PVC flow << |
2324
+ |__________________________________|
2325
+
2326
+ The terms low and high are chosen to represent
2327
+ numerical ordering of a PVC segment's endpoints
2328
+ for representation in this table. That is, the
2329
+ endpoint with the lower value of ifIndex is termed
2330
+ 'low', while the opposite endpoint of the segment
2331
+ is termed 'high'. This terminology is to provide
2332
+ directional information; for example the
2333
+ frPVCConnectL2hOperStatus and
2334
+ frPVCConnectH2lOperStatus as illustrated above.
2335
+
2336
+ If the Frame Relay Connection table is used to
2337
+ model a unidirectional PVC, then one direction
2338
+ (either from low to high or from high to low) has
2339
+ its Operational Status equal to down.
2340
+
2341
+ A PVC segment is a portion of a PVC that traverses
2342
+ one Frame Relay Network, and a PVC segment is
2343
+ identified by its two end-points (UNI/NNI logical
2344
+ port index value and DLCI index value) through one
2345
+ Frame Relay Network.""",
2346
+ }, # table
2347
+ "frPVCConnectEntry" : {
2348
+ "nodetype" : "row",
2349
+ "moduleName" : "FRNETSERV-MIB",
2350
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1",
2351
+ "create" : "true",
2352
+ "status" : "current",
2353
+ "linkage" : [
2354
+ "frPVCConnectIndex",
2355
+ "frPVCConnectLowIfIndex",
2356
+ "frPVCConnectLowDLCIIndex",
2357
+ "frPVCConnectHighIfIndex",
2358
+ "frPVCConnectHighDLCIIndex",
2359
+ ],
2360
+ "description" :
2361
+ """An entry in the Frame Relay PVC Connect table.
2362
+ This entry is used to model a PVC segment in two
2363
+ directions.""",
2364
+ }, # row
2365
+ "frPVCConnectIndex" : {
2366
+ "nodetype" : "column",
2367
+ "moduleName" : "FRNETSERV-MIB",
2368
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.1",
2369
+ "status" : "current",
2370
+ "syntax" : {
2371
+ "type" : {
2372
+ "basetype" : "Integer32",
2373
+ "ranges" : [
2374
+ {
2375
+ "min" : "0",
2376
+ "max" : "2147483647"
2377
+ },
2378
+ ],
2379
+ "range" : {
2380
+ "min" : "0",
2381
+ "max" : "2147483647"
2382
+ },
2383
+ },
2384
+ },
2385
+ "access" : "noaccess",
2386
+ "description" :
2387
+ """The value of this object is equal to the
2388
+ frPVCConnectIndexValue obtained to uniquely
2389
+ identify this PVC segment connection.""",
2390
+ }, # column
2391
+ "frPVCConnectLowIfIndex" : {
2392
+ "nodetype" : "column",
2393
+ "moduleName" : "FRNETSERV-MIB",
2394
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.2",
2395
+ "status" : "current",
2396
+ "syntax" : {
2397
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2398
+ },
2399
+ "access" : "noaccess",
2400
+ "description" :
2401
+ """The value of this object is equal to IF-MIB
2402
+ ifIndex value of the UNI/NNI logical port for this
2403
+ PVC segment. The term low implies that this PVC
2404
+ segment end-point has the numerically lower
2405
+ ifIndex value than the connected/associated PVC
2406
+ segment end-point.
2407
+
2408
+ RFC 1604 permitted a zero value for this object to
2409
+ identify termination at a non-frame relay
2410
+ interface. However, this cross-connect table is
2411
+ limited to frame relay connections. See the frame
2412
+
2413
+
2414
+ relay/ATM IWF MIB [28] for the cross-connect table
2415
+ used for those types of connections.""",
2416
+ }, # column
2417
+ "frPVCConnectLowDLCIIndex" : {
2418
+ "nodetype" : "column",
2419
+ "moduleName" : "FRNETSERV-MIB",
2420
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.3",
2421
+ "status" : "current",
2422
+ "syntax" : {
2423
+ "type" : {
2424
+ "basetype" : "Integer32",
2425
+ "ranges" : [
2426
+ {
2427
+ "min" : "16",
2428
+ "max" : "4194303"
2429
+ },
2430
+ ],
2431
+ "range" : {
2432
+ "min" : "16",
2433
+ "max" : "4194303"
2434
+ },
2435
+ },
2436
+ },
2437
+ "access" : "noaccess",
2438
+ "description" :
2439
+ """The value of this object is equal to the DLCI
2440
+ value for this end-point of the PVC segment.""",
2441
+ "reference" :
2442
+ """Q.922 [25]""",
2443
+ }, # column
2444
+ "frPVCConnectHighIfIndex" : {
2445
+ "nodetype" : "column",
2446
+ "moduleName" : "FRNETSERV-MIB",
2447
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.4",
2448
+ "status" : "current",
2449
+ "syntax" : {
2450
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2451
+ },
2452
+ "access" : "noaccess",
2453
+ "description" :
2454
+ """The value of this object is equal to IF-MIB
2455
+ ifIndex value for the UNI/NNI logical port for
2456
+ this PVC segment. The term high implies that this
2457
+ PVC segment end-point has the numerically higher
2458
+ ifIndex value than the connected/associated PVC
2459
+ segment end-point.""",
2460
+ }, # column
2461
+ "frPVCConnectHighDLCIIndex" : {
2462
+ "nodetype" : "column",
2463
+ "moduleName" : "FRNETSERV-MIB",
2464
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.5",
2465
+ "status" : "current",
2466
+ "syntax" : {
2467
+ "type" : {
2468
+ "basetype" : "Integer32",
2469
+ "ranges" : [
2470
+ {
2471
+ "min" : "16",
2472
+ "max" : "4194303"
2473
+ },
2474
+ ],
2475
+ "range" : {
2476
+ "min" : "16",
2477
+ "max" : "4194303"
2478
+ },
2479
+ },
2480
+ },
2481
+ "access" : "noaccess",
2482
+ "description" :
2483
+ """The value of this object is equal to the egress
2484
+ DLCI value for this end-point of the PVC segment.""",
2485
+ "reference" :
2486
+ """Q.922 [25]""",
2487
+ }, # column
2488
+ "frPVCConnectAdminStatus" : {
2489
+ "nodetype" : "column",
2490
+ "moduleName" : "FRNETSERV-MIB",
2491
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.6",
2492
+ "status" : "current",
2493
+ "syntax" : {
2494
+ "type" : {
2495
+ "basetype" : "Enumeration",
2496
+ "active" : {
2497
+ "nodetype" : "namednumber",
2498
+ "number" : "1"
2499
+ },
2500
+ "inactive" : {
2501
+ "nodetype" : "namednumber",
2502
+ "number" : "2"
2503
+ },
2504
+ "testing" : {
2505
+ "nodetype" : "namednumber",
2506
+ "number" : "3"
2507
+ },
2508
+ },
2509
+ },
2510
+ "access" : "readwrite",
2511
+ "description" :
2512
+ """The value of this object identifies the desired
2513
+ administrative status of this bi-directional PVC
2514
+
2515
+
2516
+ segment. The active(1) state means the PVC
2517
+ segment is currently operational; the inactive(2)
2518
+ state means the PVC segment is currently not
2519
+ operational; the testing(3) state means the PVC
2520
+ segment is currently undergoing a test. This
2521
+ state is set by an administrative entity. This
2522
+ value affects the PVC status indicated across the
2523
+ ingress NNI/UNI of both end-points of the bi-
2524
+ directional PVC segment. When a PVC segment
2525
+ connection is created using this table, this
2526
+ object is initially set to `inactive(2)'. After
2527
+ the frPVCConnectRowStatus object is set to
2528
+ `active(1)' (and the corresponding/associated
2529
+ entries in the frPVCEndptTable have their
2530
+ frPVCEndptRowStatus object set to `active(1)'),
2531
+ the frPVCConnectAdminStatus object may be set to
2532
+ `active(1)' to turn on the PVC segment
2533
+ connection.""",
2534
+ }, # column
2535
+ "frPVCConnectL2hOperStatus" : {
2536
+ "nodetype" : "column",
2537
+ "moduleName" : "FRNETSERV-MIB",
2538
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.7",
2539
+ "status" : "current",
2540
+ "syntax" : {
2541
+ "type" : {
2542
+ "basetype" : "Enumeration",
2543
+ "active" : {
2544
+ "nodetype" : "namednumber",
2545
+ "number" : "1"
2546
+ },
2547
+ "inactive" : {
2548
+ "nodetype" : "namednumber",
2549
+ "number" : "2"
2550
+ },
2551
+ "testing" : {
2552
+ "nodetype" : "namednumber",
2553
+ "number" : "3"
2554
+ },
2555
+ "unknown" : {
2556
+ "nodetype" : "namednumber",
2557
+ "number" : "4"
2558
+ },
2559
+ },
2560
+ },
2561
+ "access" : "readonly",
2562
+ "description" :
2563
+ """The value of this object identifies the current
2564
+ operational status of the PVC segment connection
2565
+ in one direction; (i.e., in the low to high
2566
+ direction). This value affects the PVC status
2567
+ indicated across the ingress NNI/UNI (low side) of
2568
+ the PVC segment.
2569
+
2570
+ The values mean:
2571
+
2572
+ active(1) - PVC is currently operational
2573
+
2574
+ inactive(2) - PVC is currently not operational.
2575
+ This may be because of an underlying
2576
+ LMI or DS1 failure.
2577
+
2578
+ testing(3) - PVC is currently undergoing a test.
2579
+ This may be because of an underlying
2580
+ frLport or DS1 undergoing a test.
2581
+
2582
+
2583
+ unknown(4) - the status of the PVC currently can
2584
+ not be determined.""",
2585
+ }, # column
2586
+ "frPVCConnectH2lOperStatus" : {
2587
+ "nodetype" : "column",
2588
+ "moduleName" : "FRNETSERV-MIB",
2589
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.8",
2590
+ "status" : "current",
2591
+ "syntax" : {
2592
+ "type" : {
2593
+ "basetype" : "Enumeration",
2594
+ "active" : {
2595
+ "nodetype" : "namednumber",
2596
+ "number" : "1"
2597
+ },
2598
+ "inactive" : {
2599
+ "nodetype" : "namednumber",
2600
+ "number" : "2"
2601
+ },
2602
+ "testing" : {
2603
+ "nodetype" : "namednumber",
2604
+ "number" : "3"
2605
+ },
2606
+ "unknown" : {
2607
+ "nodetype" : "namednumber",
2608
+ "number" : "4"
2609
+ },
2610
+ },
2611
+ },
2612
+ "access" : "readonly",
2613
+ "description" :
2614
+ """The value of this object identifies the current
2615
+ operational status of the PVC segment connection
2616
+ in one direction; (i.e., in the high to low
2617
+ direction).. This value affects the PVC status
2618
+ indicated across the ingress NNI/UNI (high side)
2619
+ of the PVC segment.
2620
+
2621
+ The values mean:
2622
+
2623
+ active(1) - PVC is currently operational
2624
+
2625
+ inactive(2) - PVC is currently not operational.
2626
+ This may be because of an underlying
2627
+ LMI or DS1 failure.
2628
+
2629
+ testing(3) - PVC is currently undergoing a test.
2630
+ This may be because of an underlying
2631
+ frLport or DS1 undergoing a test.
2632
+
2633
+ unknown(4) - the status of the PVC currently can
2634
+ not be determined.""",
2635
+ }, # column
2636
+ "frPVCConnectL2hLastChange" : {
2637
+ "nodetype" : "column",
2638
+ "moduleName" : "FRNETSERV-MIB",
2639
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.9",
2640
+ "status" : "current",
2641
+ "syntax" : {
2642
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2643
+ },
2644
+ "access" : "readonly",
2645
+ "description" :
2646
+ """The value of the Interface MIB's sysUpTime object
2647
+ at the time this PVC segment entered its current
2648
+ operational state in the low to high direction.
2649
+ If the current state was entered prior to the last
2650
+ re-initialization of the FRS agent, then this
2651
+ object contains a zero value.""",
2652
+ }, # column
2653
+ "frPVCConnectH2lLastChange" : {
2654
+ "nodetype" : "column",
2655
+ "moduleName" : "FRNETSERV-MIB",
2656
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.10",
2657
+ "status" : "current",
2658
+ "syntax" : {
2659
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2660
+ },
2661
+ "access" : "readonly",
2662
+ "description" :
2663
+ """The value of the Interface MIB's sysUpTime object
2664
+ at the time this PVC segment entered its current
2665
+ operational state in the high to low direction.
2666
+ If the current state was entered prior to the last
2667
+ re-initialization of the FRS agent, then this
2668
+ object contains a zero value.""",
2669
+ }, # column
2670
+ "frPVCConnectRowStatus" : {
2671
+ "nodetype" : "column",
2672
+ "moduleName" : "FRNETSERV-MIB",
2673
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.11",
2674
+ "status" : "current",
2675
+ "syntax" : {
2676
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2677
+ },
2678
+ "access" : "readwrite",
2679
+ "description" :
2680
+ """The status of this entry in the
2681
+ frPVCConnectTable. This variable is used to
2682
+ create new connections for the PVC end-points and
2683
+ to change existing connections of the PVC end-
2684
+ points. This object must be initially set to
2685
+ `createAndWait(5)'. In this state, the agent
2686
+ checks the parameters in the associated entries in
2687
+ the frPVCEndptTable to verify that the PVC end-
2688
+ points can be connected (i.e., the In parameters
2689
+ for one PVC end-point are equal to the Out
2690
+ parameters for the other PVC end-point). This
2691
+ object can not be set to `active(1)' unless the
2692
+ following columnar object exists in this row:
2693
+ frPVCConnectAdminStatus. The agent also supplies
2694
+ the associated value of frPVCConnectIndex for the
2695
+ frPVCEndptConnectIdentifier instances. To turn on
2696
+ a PVC segment connection, the
2697
+ frPVCConnectAdminStatus is set to `active(1)'.""",
2698
+ }, # column
2699
+ "frPVCConnectUserName" : {
2700
+ "nodetype" : "column",
2701
+ "moduleName" : "FRNETSERV-MIB",
2702
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.12",
2703
+ "status" : "current",
2704
+ "syntax" : {
2705
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2706
+ },
2707
+ "access" : "readwrite",
2708
+ "description" :
2709
+ """This is a service user assigned textual
2710
+ representation of a PVC.""",
2711
+ }, # column
2712
+ "frPVCConnectProviderName" : {
2713
+ "nodetype" : "column",
2714
+ "moduleName" : "FRNETSERV-MIB",
2715
+ "oid" : "1.3.6.1.2.1.10.44.1.5.1.13",
2716
+ "status" : "current",
2717
+ "syntax" : {
2718
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2719
+ },
2720
+ "access" : "readwrite",
2721
+ "description" :
2722
+ """This is a system supplied textual representation
2723
+ of PVC. It is assigned by the service provider.""",
2724
+ }, # column
2725
+ "frAccountPVCTable" : {
2726
+ "nodetype" : "table",
2727
+ "moduleName" : "FRNETSERV-MIB",
2728
+ "oid" : "1.3.6.1.2.1.10.44.1.6",
2729
+ "status" : "current",
2730
+ "description" :
2731
+ """The Frame Relay Accounting PVC table. This table
2732
+ is used to perform accounting on a PVC segment
2733
+ end-point basis.""",
2734
+ }, # table
2735
+ "frAccountPVCEntry" : {
2736
+ "nodetype" : "row",
2737
+ "moduleName" : "FRNETSERV-MIB",
2738
+ "oid" : "1.3.6.1.2.1.10.44.1.6.1",
2739
+ "status" : "current",
2740
+ "linkage" : [
2741
+ "ifIndex",
2742
+ "frAccountPVCDLCIIndex",
2743
+ ],
2744
+ "description" :
2745
+ """An entry in the Frame Relay Accounting PVC
2746
+ table.""",
2747
+ }, # row
2748
+ "frAccountPVCDLCIIndex" : {
2749
+ "nodetype" : "column",
2750
+ "moduleName" : "FRNETSERV-MIB",
2751
+ "oid" : "1.3.6.1.2.1.10.44.1.6.1.1",
2752
+ "status" : "current",
2753
+ "syntax" : {
2754
+ "type" : {
2755
+ "basetype" : "Integer32",
2756
+ "ranges" : [
2757
+ {
2758
+ "min" : "16",
2759
+ "max" : "4194303"
2760
+ },
2761
+ ],
2762
+ "range" : {
2763
+ "min" : "16",
2764
+ "max" : "4194303"
2765
+ },
2766
+ },
2767
+ },
2768
+ "access" : "noaccess",
2769
+ "description" :
2770
+ """The value of this object is equal to the DLCI
2771
+
2772
+
2773
+ value for this PVC segment end-point.""",
2774
+ "reference" :
2775
+ """Q.922 [25]""",
2776
+ }, # column
2777
+ "frAccountPVCSegmentSize" : {
2778
+ "nodetype" : "column",
2779
+ "moduleName" : "FRNETSERV-MIB",
2780
+ "oid" : "1.3.6.1.2.1.10.44.1.6.1.2",
2781
+ "status" : "current",
2782
+ "syntax" : {
2783
+ "type" : { "module" :"", "name" : "Integer32"},
2784
+ },
2785
+ "access" : "readonly",
2786
+ "units" : "Octets",
2787
+ "description" :
2788
+ """The value of this object is equal to the Segment
2789
+ Size for this PVC segment end-point.""",
2790
+ }, # column
2791
+ "frAccountPVCInSegments" : {
2792
+ "nodetype" : "column",
2793
+ "moduleName" : "FRNETSERV-MIB",
2794
+ "oid" : "1.3.6.1.2.1.10.44.1.6.1.3",
2795
+ "status" : "current",
2796
+ "syntax" : {
2797
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2798
+ },
2799
+ "access" : "readonly",
2800
+ "units" : "Segments",
2801
+ "description" :
2802
+ """The value of this object is equal to the number
2803
+ of segments received by this PVC segment end-
2804
+ point.""",
2805
+ }, # column
2806
+ "frAccountPVCOutSegments" : {
2807
+ "nodetype" : "column",
2808
+ "moduleName" : "FRNETSERV-MIB",
2809
+ "oid" : "1.3.6.1.2.1.10.44.1.6.1.4",
2810
+ "status" : "current",
2811
+ "syntax" : {
2812
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2813
+ },
2814
+ "access" : "readonly",
2815
+ "units" : "Segments",
2816
+ "description" :
2817
+ """The value of this object is equal to the number
2818
+ of segments sent by this PVC segment end-point.""",
2819
+ }, # column
2820
+ "frAccountLportTable" : {
2821
+ "nodetype" : "table",
2822
+ "moduleName" : "FRNETSERV-MIB",
2823
+ "oid" : "1.3.6.1.2.1.10.44.1.7",
2824
+ "status" : "current",
2825
+ "description" :
2826
+ """The Frame Relay Accounting Logical Port table.
2827
+ This table is used to perform accounting on a
2828
+ UNI/NNI Logical Port basis.""",
2829
+ }, # table
2830
+ "frAccountLportEntry" : {
2831
+ "nodetype" : "row",
2832
+ "moduleName" : "FRNETSERV-MIB",
2833
+ "oid" : "1.3.6.1.2.1.10.44.1.7.1",
2834
+ "status" : "current",
2835
+ "linkage" : [
2836
+ "ifIndex",
2837
+ ],
2838
+ "description" :
2839
+ """An entry in the Frame Relay Accounting Logical
2840
+ Port table.""",
2841
+ }, # row
2842
+ "frAccountLportSegmentSize" : {
2843
+ "nodetype" : "column",
2844
+ "moduleName" : "FRNETSERV-MIB",
2845
+ "oid" : "1.3.6.1.2.1.10.44.1.7.1.1",
2846
+ "status" : "current",
2847
+ "syntax" : {
2848
+ "type" : { "module" :"", "name" : "Integer32"},
2849
+ },
2850
+ "access" : "readonly",
2851
+ "units" : "Octets",
2852
+ "description" :
2853
+ """The value of this object is equal to the Segment
2854
+ Size for this UNI/NNI logical port.""",
2855
+ }, # column
2856
+ "frAccountLportInSegments" : {
2857
+ "nodetype" : "column",
2858
+ "moduleName" : "FRNETSERV-MIB",
2859
+ "oid" : "1.3.6.1.2.1.10.44.1.7.1.2",
2860
+ "status" : "current",
2861
+ "syntax" : {
2862
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2863
+ },
2864
+ "access" : "readonly",
2865
+ "units" : "Segments",
2866
+ "description" :
2867
+ """The value of this object is equal to the number
2868
+ of segments received by this UNI/NNI logical
2869
+ port.""",
2870
+ }, # column
2871
+ "frAccountLportOutSegments" : {
2872
+ "nodetype" : "column",
2873
+ "moduleName" : "FRNETSERV-MIB",
2874
+ "oid" : "1.3.6.1.2.1.10.44.1.7.1.3",
2875
+ "status" : "current",
2876
+ "syntax" : {
2877
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2878
+ },
2879
+ "access" : "readonly",
2880
+ "units" : "Segments",
2881
+ "description" :
2882
+ """The value of this object is equal to the number
2883
+
2884
+
2885
+ of segments sent by this UNI/NNI logical port.""",
2886
+ }, # column
2887
+ "frnetservTraps" : {
2888
+ "nodetype" : "node",
2889
+ "moduleName" : "FRNETSERV-MIB",
2890
+ "oid" : "1.3.6.1.2.1.10.44.2",
2891
+ }, # node
2892
+ "frnetservTrapsPrefix" : {
2893
+ "nodetype" : "node",
2894
+ "moduleName" : "FRNETSERV-MIB",
2895
+ "oid" : "1.3.6.1.2.1.10.44.2.0",
2896
+ }, # node
2897
+ "frnetservConformance" : {
2898
+ "nodetype" : "node",
2899
+ "moduleName" : "FRNETSERV-MIB",
2900
+ "oid" : "1.3.6.1.2.1.10.44.3",
2901
+ }, # node
2902
+ "frnetservGroups" : {
2903
+ "nodetype" : "node",
2904
+ "moduleName" : "FRNETSERV-MIB",
2905
+ "oid" : "1.3.6.1.2.1.10.44.3.1",
2906
+ }, # node
2907
+ "frnetservCompliances" : {
2908
+ "nodetype" : "node",
2909
+ "moduleName" : "FRNETSERV-MIB",
2910
+ "oid" : "1.3.6.1.2.1.10.44.3.2",
2911
+ }, # node
2912
+ }, # nodes
2913
+
2914
+ "notifications" : {
2915
+ "frPVCConnectStatusNotif" : {
2916
+ "nodetype" : "notification",
2917
+ "moduleName" : "FRNETSERV-MIB",
2918
+ "oid" : "1.3.6.1.2.1.10.44.2.0.2",
2919
+ "status" : "current",
2920
+ "objects" : {
2921
+ "frPVCConnectL2hOperStatus" : {
2922
+ "nodetype" : "object",
2923
+ "module" : "FRNETSERV-MIB"
2924
+ },
2925
+ "frPVCConnectH2lOperStatus" : {
2926
+ "nodetype" : "object",
2927
+ "module" : "FRNETSERV-MIB"
2928
+ },
2929
+ "frPVCEndptRcvdSigStatus" : {
2930
+ "nodetype" : "object",
2931
+ "module" : "FRNETSERV-MIB"
2932
+ },
2933
+ },
2934
+ "description" :
2935
+ """This notification indicates that the indicated
2936
+ PVC has changed state.
2937
+
2938
+ This notification is not sent if an FR-UNI changes
2939
+ state; a linkDown or linkUp notification should be
2940
+ sent instead. The first instance of
2941
+ frPVCEndptRcvdSigStatus is for the endpoint with
2942
+ LowIfIndex, LowDLCIIndex. The second instance of
2943
+ frPVCEndptRcvdSigStatus is for the endpoint with
2944
+ HighIfIndex, HighDLCIIndex""",
2945
+ }, # notification
2946
+ "frPVCConnectStatusChange" : {
2947
+ "nodetype" : "notification",
2948
+ "moduleName" : "FRNETSERV-MIB",
2949
+ "oid" : "1.3.6.1.2.1.10.44.2.1",
2950
+ "status" : "deprecated",
2951
+ "objects" : {
2952
+ "frPVCConnectIndex" : {
2953
+ "nodetype" : "object",
2954
+ "module" : "FRNETSERV-MIB"
2955
+ },
2956
+ "frPVCConnectLowIfIndex" : {
2957
+ "nodetype" : "object",
2958
+ "module" : "FRNETSERV-MIB"
2959
+ },
2960
+ "frPVCConnectLowDLCIIndex" : {
2961
+ "nodetype" : "object",
2962
+ "module" : "FRNETSERV-MIB"
2963
+ },
2964
+ "frPVCConnectHighIfIndex" : {
2965
+ "nodetype" : "object",
2966
+ "module" : "FRNETSERV-MIB"
2967
+ },
2968
+ "frPVCConnectHighDLCIIndex" : {
2969
+ "nodetype" : "object",
2970
+ "module" : "FRNETSERV-MIB"
2971
+ },
2972
+ "frPVCConnectL2hOperStatus" : {
2973
+ "nodetype" : "object",
2974
+ "module" : "FRNETSERV-MIB"
2975
+ },
2976
+ "frPVCConnectH2lOperStatus" : {
2977
+ "nodetype" : "object",
2978
+ "module" : "FRNETSERV-MIB"
2979
+ },
2980
+ "frPVCEndptRcvdSigStatus" : {
2981
+ "nodetype" : "object",
2982
+ "module" : "FRNETSERV-MIB"
2983
+ },
2984
+ },
2985
+ "description" :
2986
+ """Refer to the description of the
2987
+ frPVCConnectStatusNotif notification that has
2988
+ replaced this notification. The notification is
2989
+ deprecated due to the incorrect inclusion of index
2990
+ values and to take advantage of the trap prefix
2991
+ for automatic conversion from SMIv2 to SMIv1 by
2992
+ making the one but last sub-ID a zero (i.e. the
2993
+ so-called trap prefix).""",
2994
+ }, # notification
2995
+ }, # notifications
2996
+
2997
+ "groups" : {
2998
+ "frnetservLportGroup" : {
2999
+ "nodetype" : "group",
3000
+ "moduleName" : "FRNETSERV-MIB",
3001
+ "oid" : "1.3.6.1.2.1.10.44.3.1.1",
3002
+ "status" : "deprecated",
3003
+ "members" : {
3004
+ "frLportNumPlan" : {
3005
+ "nodetype" : "member",
3006
+ "module" : "FRNETSERV-MIB"
3007
+ },
3008
+ "frLportContact" : {
3009
+ "nodetype" : "member",
3010
+ "module" : "FRNETSERV-MIB"
3011
+ },
3012
+ "frLportLocation" : {
3013
+ "nodetype" : "member",
3014
+ "module" : "FRNETSERV-MIB"
3015
+ },
3016
+ "frLportType" : {
3017
+ "nodetype" : "member",
3018
+ "module" : "FRNETSERV-MIB"
3019
+ },
3020
+ "frLportAddrDLCILen" : {
3021
+ "nodetype" : "member",
3022
+ "module" : "FRNETSERV-MIB"
3023
+ },
3024
+ "frLportVCSigProtocol" : {
3025
+ "nodetype" : "member",
3026
+ "module" : "FRNETSERV-MIB"
3027
+ },
3028
+ "frLportVCSigPointer" : {
3029
+ "nodetype" : "member",
3030
+ "module" : "FRNETSERV-MIB"
3031
+ },
3032
+ }, # members
3033
+ "description" :
3034
+ """A collection of objects providing information
3035
+ applicable to a Frame Relay Logical Port. This
3036
+ group has been deprecated to eliminate reference
3037
+
3038
+
3039
+ to the object frLportVCSigPointer.
3040
+
3041
+ Use the new group frnetservLportGroup2 as a
3042
+ replacement for this group.""",
3043
+ }, # group
3044
+ "frnetservMgtVCSigGroup" : {
3045
+ "nodetype" : "group",
3046
+ "moduleName" : "FRNETSERV-MIB",
3047
+ "oid" : "1.3.6.1.2.1.10.44.3.1.2",
3048
+ "status" : "current",
3049
+ "members" : {
3050
+ "frMgtVCSigProced" : {
3051
+ "nodetype" : "member",
3052
+ "module" : "FRNETSERV-MIB"
3053
+ },
3054
+ "frMgtVCSigUserN391" : {
3055
+ "nodetype" : "member",
3056
+ "module" : "FRNETSERV-MIB"
3057
+ },
3058
+ "frMgtVCSigUserN392" : {
3059
+ "nodetype" : "member",
3060
+ "module" : "FRNETSERV-MIB"
3061
+ },
3062
+ "frMgtVCSigUserN393" : {
3063
+ "nodetype" : "member",
3064
+ "module" : "FRNETSERV-MIB"
3065
+ },
3066
+ "frMgtVCSigUserT391" : {
3067
+ "nodetype" : "member",
3068
+ "module" : "FRNETSERV-MIB"
3069
+ },
3070
+ "frMgtVCSigNetN392" : {
3071
+ "nodetype" : "member",
3072
+ "module" : "FRNETSERV-MIB"
3073
+ },
3074
+ "frMgtVCSigNetN393" : {
3075
+ "nodetype" : "member",
3076
+ "module" : "FRNETSERV-MIB"
3077
+ },
3078
+ "frMgtVCSigNetT392" : {
3079
+ "nodetype" : "member",
3080
+ "module" : "FRNETSERV-MIB"
3081
+ },
3082
+ "frMgtVCSigNetnN4" : {
3083
+ "nodetype" : "member",
3084
+ "module" : "FRNETSERV-MIB"
3085
+ },
3086
+ "frMgtVCSigNetnT3" : {
3087
+ "nodetype" : "member",
3088
+ "module" : "FRNETSERV-MIB"
3089
+ },
3090
+ "frMgtVCSigUserLinkRelErrors" : {
3091
+ "nodetype" : "member",
3092
+ "module" : "FRNETSERV-MIB"
3093
+ },
3094
+ "frMgtVCSigUserProtErrors" : {
3095
+ "nodetype" : "member",
3096
+ "module" : "FRNETSERV-MIB"
3097
+ },
3098
+ "frMgtVCSigUserChanInactive" : {
3099
+ "nodetype" : "member",
3100
+ "module" : "FRNETSERV-MIB"
3101
+ },
3102
+ "frMgtVCSigNetLinkRelErrors" : {
3103
+ "nodetype" : "member",
3104
+ "module" : "FRNETSERV-MIB"
3105
+ },
3106
+ "frMgtVCSigNetProtErrors" : {
3107
+ "nodetype" : "member",
3108
+ "module" : "FRNETSERV-MIB"
3109
+ },
3110
+ "frMgtVCSigNetChanInactive" : {
3111
+ "nodetype" : "member",
3112
+ "module" : "FRNETSERV-MIB"
3113
+ },
3114
+ }, # members
3115
+ "description" :
3116
+ """A collection of objects providing information
3117
+ applicable to the Local In-Channel Signaling
3118
+ Procedures used for a UNI/NNI logical port.""",
3119
+ }, # group
3120
+ "frnetservPVCEndptGroup" : {
3121
+ "nodetype" : "group",
3122
+ "moduleName" : "FRNETSERV-MIB",
3123
+ "oid" : "1.3.6.1.2.1.10.44.3.1.3",
3124
+ "status" : "current",
3125
+ "members" : {
3126
+ "frPVCConnectIndexValue" : {
3127
+ "nodetype" : "member",
3128
+ "module" : "FRNETSERV-MIB"
3129
+ },
3130
+ "frPVCEndptInMaxFrameSize" : {
3131
+ "nodetype" : "member",
3132
+ "module" : "FRNETSERV-MIB"
3133
+ },
3134
+ "frPVCEndptInBc" : {
3135
+ "nodetype" : "member",
3136
+ "module" : "FRNETSERV-MIB"
3137
+ },
3138
+ "frPVCEndptInBe" : {
3139
+ "nodetype" : "member",
3140
+ "module" : "FRNETSERV-MIB"
3141
+ },
3142
+ "frPVCEndptInCIR" : {
3143
+ "nodetype" : "member",
3144
+ "module" : "FRNETSERV-MIB"
3145
+ },
3146
+ "frPVCEndptOutMaxFrameSize" : {
3147
+ "nodetype" : "member",
3148
+ "module" : "FRNETSERV-MIB"
3149
+ },
3150
+ "frPVCEndptOutBc" : {
3151
+ "nodetype" : "member",
3152
+ "module" : "FRNETSERV-MIB"
3153
+ },
3154
+ "frPVCEndptOutBe" : {
3155
+ "nodetype" : "member",
3156
+ "module" : "FRNETSERV-MIB"
3157
+ },
3158
+ "frPVCEndptOutCIR" : {
3159
+ "nodetype" : "member",
3160
+ "module" : "FRNETSERV-MIB"
3161
+ },
3162
+ "frPVCEndptConnectIdentifier" : {
3163
+ "nodetype" : "member",
3164
+ "module" : "FRNETSERV-MIB"
3165
+ },
3166
+ "frPVCEndptRowStatus" : {
3167
+ "nodetype" : "member",
3168
+ "module" : "FRNETSERV-MIB"
3169
+ },
3170
+ "frPVCEndptRcvdSigStatus" : {
3171
+ "nodetype" : "member",
3172
+ "module" : "FRNETSERV-MIB"
3173
+ },
3174
+ "frPVCEndptInFrames" : {
3175
+ "nodetype" : "member",
3176
+ "module" : "FRNETSERV-MIB"
3177
+ },
3178
+ "frPVCEndptOutFrames" : {
3179
+ "nodetype" : "member",
3180
+ "module" : "FRNETSERV-MIB"
3181
+ },
3182
+ "frPVCEndptInDEFrames" : {
3183
+ "nodetype" : "member",
3184
+ "module" : "FRNETSERV-MIB"
3185
+ },
3186
+ "frPVCEndptInExcessFrames" : {
3187
+ "nodetype" : "member",
3188
+ "module" : "FRNETSERV-MIB"
3189
+ },
3190
+ "frPVCEndptOutExcessFrames" : {
3191
+ "nodetype" : "member",
3192
+ "module" : "FRNETSERV-MIB"
3193
+ },
3194
+ "frPVCEndptInDiscards" : {
3195
+ "nodetype" : "member",
3196
+ "module" : "FRNETSERV-MIB"
3197
+ },
3198
+ "frPVCEndptInOctets" : {
3199
+ "nodetype" : "member",
3200
+ "module" : "FRNETSERV-MIB"
3201
+ },
3202
+ "frPVCEndptOutOctets" : {
3203
+ "nodetype" : "member",
3204
+ "module" : "FRNETSERV-MIB"
3205
+ },
3206
+ }, # members
3207
+ "description" :
3208
+ """A collection of objects providing information
3209
+ applicable to a Frame Relay PVC end-point.""",
3210
+ }, # group
3211
+ "frnetservPVCConnectGroup" : {
3212
+ "nodetype" : "group",
3213
+ "moduleName" : "FRNETSERV-MIB",
3214
+ "oid" : "1.3.6.1.2.1.10.44.3.1.4",
3215
+ "status" : "current",
3216
+ "members" : {
3217
+ "frPVCConnectAdminStatus" : {
3218
+ "nodetype" : "member",
3219
+ "module" : "FRNETSERV-MIB"
3220
+ },
3221
+ "frPVCConnectL2hOperStatus" : {
3222
+ "nodetype" : "member",
3223
+ "module" : "FRNETSERV-MIB"
3224
+ },
3225
+ "frPVCConnectH2lOperStatus" : {
3226
+ "nodetype" : "member",
3227
+ "module" : "FRNETSERV-MIB"
3228
+ },
3229
+ "frPVCConnectL2hLastChange" : {
3230
+ "nodetype" : "member",
3231
+ "module" : "FRNETSERV-MIB"
3232
+ },
3233
+ "frPVCConnectH2lLastChange" : {
3234
+ "nodetype" : "member",
3235
+ "module" : "FRNETSERV-MIB"
3236
+ },
3237
+ "frPVCConnectRowStatus" : {
3238
+ "nodetype" : "member",
3239
+ "module" : "FRNETSERV-MIB"
3240
+ },
3241
+ }, # members
3242
+ "description" :
3243
+ """A collection of objects providing information
3244
+ applicable to a Frame Relay PVC connection.""",
3245
+ }, # group
3246
+ "frnetservAccountPVCGroup" : {
3247
+ "nodetype" : "group",
3248
+ "moduleName" : "FRNETSERV-MIB",
3249
+ "oid" : "1.3.6.1.2.1.10.44.3.1.5",
3250
+ "status" : "current",
3251
+ "members" : {
3252
+ "frAccountPVCSegmentSize" : {
3253
+ "nodetype" : "member",
3254
+ "module" : "FRNETSERV-MIB"
3255
+ },
3256
+ "frAccountPVCInSegments" : {
3257
+ "nodetype" : "member",
3258
+ "module" : "FRNETSERV-MIB"
3259
+ },
3260
+ "frAccountPVCOutSegments" : {
3261
+ "nodetype" : "member",
3262
+ "module" : "FRNETSERV-MIB"
3263
+ },
3264
+ }, # members
3265
+ "description" :
3266
+ """A collection of objects providing accounting
3267
+ information application to a Frame Relay PVC end-
3268
+ point.""",
3269
+ }, # group
3270
+ "frnetservAccountLportGroup" : {
3271
+ "nodetype" : "group",
3272
+ "moduleName" : "FRNETSERV-MIB",
3273
+ "oid" : "1.3.6.1.2.1.10.44.3.1.6",
3274
+ "status" : "current",
3275
+ "members" : {
3276
+ "frAccountLportSegmentSize" : {
3277
+ "nodetype" : "member",
3278
+ "module" : "FRNETSERV-MIB"
3279
+ },
3280
+ "frAccountLportInSegments" : {
3281
+ "nodetype" : "member",
3282
+ "module" : "FRNETSERV-MIB"
3283
+ },
3284
+ "frAccountLportOutSegments" : {
3285
+ "nodetype" : "member",
3286
+ "module" : "FRNETSERV-MIB"
3287
+ },
3288
+ }, # members
3289
+ "description" :
3290
+ """A collection of objects providing accounting
3291
+ information application to a Frame Relay logical
3292
+ port.""",
3293
+ }, # group
3294
+ "frnetservLportGroup2" : {
3295
+ "nodetype" : "group",
3296
+ "moduleName" : "FRNETSERV-MIB",
3297
+ "oid" : "1.3.6.1.2.1.10.44.3.1.7",
3298
+ "status" : "current",
3299
+ "members" : {
3300
+ "frLportNumPlan" : {
3301
+ "nodetype" : "member",
3302
+ "module" : "FRNETSERV-MIB"
3303
+ },
3304
+ "frLportContact" : {
3305
+ "nodetype" : "member",
3306
+ "module" : "FRNETSERV-MIB"
3307
+ },
3308
+ "frLportLocation" : {
3309
+ "nodetype" : "member",
3310
+ "module" : "FRNETSERV-MIB"
3311
+ },
3312
+ "frLportType" : {
3313
+ "nodetype" : "member",
3314
+ "module" : "FRNETSERV-MIB"
3315
+ },
3316
+ "frLportAddrDLCILen" : {
3317
+ "nodetype" : "member",
3318
+ "module" : "FRNETSERV-MIB"
3319
+ },
3320
+ "frLportVCSigProtocol" : {
3321
+ "nodetype" : "member",
3322
+ "module" : "FRNETSERV-MIB"
3323
+ },
3324
+ "frLportFragControl" : {
3325
+ "nodetype" : "member",
3326
+ "module" : "FRNETSERV-MIB"
3327
+ },
3328
+ "frLportFragSize" : {
3329
+ "nodetype" : "member",
3330
+ "module" : "FRNETSERV-MIB"
3331
+ },
3332
+ }, # members
3333
+ "description" :
3334
+ """A collection of objects providing information
3335
+ applicable to a Frame Relay Logical Port.
3336
+
3337
+ This new version of the Logical Port Group
3338
+ eliminates the frLportVCSigPointer and adds
3339
+ support for fragmentation.""",
3340
+ }, # group
3341
+ "frnetservPVCEndptGroup2" : {
3342
+ "nodetype" : "group",
3343
+ "moduleName" : "FRNETSERV-MIB",
3344
+ "oid" : "1.3.6.1.2.1.10.44.3.1.8",
3345
+ "status" : "current",
3346
+ "members" : {
3347
+ "frPVCEndptInDiscardsDESet" : {
3348
+ "nodetype" : "member",
3349
+ "module" : "FRNETSERV-MIB"
3350
+ },
3351
+ "frPVCEndptInFramesFECNSet" : {
3352
+ "nodetype" : "member",
3353
+ "module" : "FRNETSERV-MIB"
3354
+ },
3355
+ "frPVCEndptOutFramesFECNSet" : {
3356
+ "nodetype" : "member",
3357
+ "module" : "FRNETSERV-MIB"
3358
+ },
3359
+ "frPVCEndptInFramesBECNSet" : {
3360
+ "nodetype" : "member",
3361
+ "module" : "FRNETSERV-MIB"
3362
+ },
3363
+ "frPVCEndptOutFramesBECNSet" : {
3364
+ "nodetype" : "member",
3365
+ "module" : "FRNETSERV-MIB"
3366
+ },
3367
+ "frPVCEndptInCongDiscards" : {
3368
+ "nodetype" : "member",
3369
+ "module" : "FRNETSERV-MIB"
3370
+ },
3371
+ "frPVCEndptInDECongDiscards" : {
3372
+ "nodetype" : "member",
3373
+ "module" : "FRNETSERV-MIB"
3374
+ },
3375
+ "frPVCEndptOutCongDiscards" : {
3376
+ "nodetype" : "member",
3377
+ "module" : "FRNETSERV-MIB"
3378
+ },
3379
+ "frPVCEndptOutDECongDiscards" : {
3380
+ "nodetype" : "member",
3381
+ "module" : "FRNETSERV-MIB"
3382
+ },
3383
+ "frPVCEndptOutDEFrames" : {
3384
+ "nodetype" : "member",
3385
+ "module" : "FRNETSERV-MIB"
3386
+ },
3387
+ "frPVCEndptAtmIwfConnIndex" : {
3388
+ "nodetype" : "member",
3389
+ "module" : "FRNETSERV-MIB"
3390
+ },
3391
+ }, # members
3392
+ "description" :
3393
+ """Additions to the PVC end-point group. These
3394
+ additions provide new frame counters to track
3395
+ frame loss. In addition, the new FR/ATM IWF MIB
3396
+ cross-connect index is included.""",
3397
+ }, # group
3398
+ "frnetservPVCConnectNamesGroup" : {
3399
+ "nodetype" : "group",
3400
+ "moduleName" : "FRNETSERV-MIB",
3401
+ "oid" : "1.3.6.1.2.1.10.44.3.1.9",
3402
+ "status" : "current",
3403
+ "members" : {
3404
+ "frPVCConnectUserName" : {
3405
+ "nodetype" : "member",
3406
+ "module" : "FRNETSERV-MIB"
3407
+ },
3408
+ "frPVCConnectProviderName" : {
3409
+ "nodetype" : "member",
3410
+ "module" : "FRNETSERV-MIB"
3411
+ },
3412
+ }, # members
3413
+ "description" :
3414
+ """Additions to the PVC Connect Group.""",
3415
+ }, # group
3416
+ "frnetservLportAdminGroup" : {
3417
+ "nodetype" : "group",
3418
+ "moduleName" : "FRNETSERV-MIB",
3419
+ "oid" : "1.3.6.1.2.1.10.44.3.1.10",
3420
+ "status" : "current",
3421
+ "members" : {
3422
+ "frLportDLCIIndexValue" : {
3423
+ "nodetype" : "member",
3424
+ "module" : "FRNETSERV-MIB"
3425
+ },
3426
+ "frLportTypeAdmin" : {
3427
+ "nodetype" : "member",
3428
+ "module" : "FRNETSERV-MIB"
3429
+ },
3430
+ "frLportVCSigProtocolAdmin" : {
3431
+ "nodetype" : "member",
3432
+ "module" : "FRNETSERV-MIB"
3433
+ },
3434
+ }, # members
3435
+ "description" :
3436
+ """Administrative (R/W) objects for creating a
3437
+ switch logical port.""",
3438
+ }, # group
3439
+ "frnetservMgtVCSigAdminGroup" : {
3440
+ "nodetype" : "group",
3441
+ "moduleName" : "FRNETSERV-MIB",
3442
+ "oid" : "1.3.6.1.2.1.10.44.3.1.11",
3443
+ "status" : "current",
3444
+ "members" : {
3445
+ "frMgtVCSigProcedAdmin" : {
3446
+ "nodetype" : "member",
3447
+ "module" : "FRNETSERV-MIB"
3448
+ },
3449
+ "frMgtVCSigUserN391Admin" : {
3450
+ "nodetype" : "member",
3451
+ "module" : "FRNETSERV-MIB"
3452
+ },
3453
+ "frMgtVCSigUserN392Admin" : {
3454
+ "nodetype" : "member",
3455
+ "module" : "FRNETSERV-MIB"
3456
+ },
3457
+ "frMgtVCSigUserN393Admin" : {
3458
+ "nodetype" : "member",
3459
+ "module" : "FRNETSERV-MIB"
3460
+ },
3461
+ "frMgtVCSigUserT391Admin" : {
3462
+ "nodetype" : "member",
3463
+ "module" : "FRNETSERV-MIB"
3464
+ },
3465
+ "frMgtVCSigNetN392Admin" : {
3466
+ "nodetype" : "member",
3467
+ "module" : "FRNETSERV-MIB"
3468
+ },
3469
+ "frMgtVCSigNetN393Admin" : {
3470
+ "nodetype" : "member",
3471
+ "module" : "FRNETSERV-MIB"
3472
+ },
3473
+ "frMgtVCSigNetT392Admin" : {
3474
+ "nodetype" : "member",
3475
+ "module" : "FRNETSERV-MIB"
3476
+ },
3477
+ "frMgtVCSigNetnT3Admin" : {
3478
+ "nodetype" : "member",
3479
+ "module" : "FRNETSERV-MIB"
3480
+ },
3481
+ }, # members
3482
+ "description" :
3483
+ """A collection of objects providing information
3484
+ applicable to the Local In-Channel Signaling
3485
+ Procedures used for a UNI/NNI logical port.""",
3486
+ }, # group
3487
+ "frnetservPVCNotifGroup" : {
3488
+ "nodetype" : "group",
3489
+ "moduleName" : "FRNETSERV-MIB",
3490
+ "oid" : "1.3.6.1.2.1.10.44.3.1.12",
3491
+ "status" : "deprecated",
3492
+ "members" : {
3493
+ "frPVCConnectStatusChange" : {
3494
+ "nodetype" : "member",
3495
+ "module" : "FRNETSERV-MIB"
3496
+ },
3497
+ }, # members
3498
+ "description" :
3499
+ """Deprecated notification group. The
3500
+ frPVCConnectStatusChange notification was flawed
3501
+ because it included redundant indexes and was not
3502
+ properly encoded for SMIv1 conversion.""",
3503
+ }, # group
3504
+ "frnetservPVCNotifGroup2" : {
3505
+ "nodetype" : "group",
3506
+ "moduleName" : "FRNETSERV-MIB",
3507
+ "oid" : "1.3.6.1.2.1.10.44.3.1.13",
3508
+ "status" : "current",
3509
+ "members" : {
3510
+ "frPVCConnectStatusNotif" : {
3511
+ "nodetype" : "member",
3512
+ "module" : "FRNETSERV-MIB"
3513
+ },
3514
+ }, # members
3515
+ "description" :
3516
+ """A collection of notifications that apply to frame
3517
+ relay PVC Connections """,
3518
+ }, # group
3519
+ }, # groups
3520
+
3521
+ "compliances" : {
3522
+ "frnetservCompliance" : {
3523
+ "nodetype" : "compliance",
3524
+ "moduleName" : "FRNETSERV-MIB",
3525
+ "oid" : "1.3.6.1.2.1.10.44.3.2.1",
3526
+ "status" : "deprecated",
3527
+ "description" :
3528
+ """The compliance statement for SNMP entities which
3529
+ have Frame Relay Network Service Interfaces.
3530
+
3531
+ This compliance statement has been deprecated in
3532
+ favor of frnetservCompliance2. The new compliance
3533
+ module expands the mandatory groups to include
3534
+ notification and other new objects.""",
3535
+ "requires" : {
3536
+ "frnetservLportGroup" : {
3537
+ "nodetype" : "mandatory",
3538
+ "module" : "FRNETSERV-MIB"
3539
+ },
3540
+ "frnetservMgtVCSigGroup" : {
3541
+ "nodetype" : "mandatory",
3542
+ "module" : "FRNETSERV-MIB"
3543
+ },
3544
+ "frnetservPVCEndptGroup" : {
3545
+ "nodetype" : "mandatory",
3546
+ "module" : "FRNETSERV-MIB"
3547
+ },
3548
+ "frnetservPVCConnectGroup" : {
3549
+ "nodetype" : "mandatory",
3550
+ "module" : "FRNETSERV-MIB"
3551
+ },
3552
+ "frnetservAccountPVCGroup" : {
3553
+ "nodetype" : "optional",
3554
+ "module" : "FRNETSERV-MIB",
3555
+ "description" :
3556
+ """This group is optional for Frame Relay
3557
+ interfaces. It is mandatory if and only if
3558
+ accounting is performed on a PVC basis this Frame
3559
+ Relay interface.""",
3560
+ },
3561
+ "frnetservAccountLportGroup" : {
3562
+ "nodetype" : "optional",
3563
+ "module" : "FRNETSERV-MIB",
3564
+ "description" :
3565
+ """This group is optional for Frame Relay
3566
+ interfaces. It is mandatory if and only if
3567
+ accounting is performed on a logical port basis
3568
+ this Frame Relay interface.""",
3569
+ },
3570
+ }, # requires
3571
+ "refinements" : {
3572
+ "frPVCEndptInMaxFrameSize" : {
3573
+ "module" : "FRNETSERV-MIB",
3574
+ "access" : "readonly",
3575
+ "description" :
3576
+ """Write access is not required.""",
3577
+ },
3578
+ "frPVCEndptInBc" : {
3579
+ "module" : "FRNETSERV-MIB",
3580
+ "access" : "readonly",
3581
+ "description" :
3582
+ """Write access is not required.""",
3583
+ },
3584
+ "frPVCEndptInBe" : {
3585
+ "module" : "FRNETSERV-MIB",
3586
+ "access" : "readonly",
3587
+ "description" :
3588
+ """Write access is not required.""",
3589
+ },
3590
+ "frPVCEndptInCIR" : {
3591
+ "module" : "FRNETSERV-MIB",
3592
+ "access" : "readonly",
3593
+ "description" :
3594
+ """Write access is not required.""",
3595
+ },
3596
+ "frPVCEndptOutMaxFrameSize" : {
3597
+ "module" : "FRNETSERV-MIB",
3598
+ "access" : "readonly",
3599
+ "description" :
3600
+ """Write access is not required.""",
3601
+ },
3602
+ "frPVCEndptOutBc" : {
3603
+ "module" : "FRNETSERV-MIB",
3604
+ "access" : "readonly",
3605
+ "description" :
3606
+ """Write access is not required.""",
3607
+ },
3608
+ "frPVCEndptOutBe" : {
3609
+ "module" : "FRNETSERV-MIB",
3610
+ "access" : "readonly",
3611
+ "description" :
3612
+ """Write access is not required.""",
3613
+ },
3614
+ "frPVCEndptOutCIR" : {
3615
+ "module" : "FRNETSERV-MIB",
3616
+ "access" : "readonly",
3617
+ "description" :
3618
+ """Write access is not required.""",
3619
+ },
3620
+ "frPVCEndptRowStatus" : {
3621
+ "module" : "FRNETSERV-MIB",
3622
+ "syntax" : {
3623
+ "type" : {
3624
+ "basetype" : "Enumeration",
3625
+ "parent module" : {
3626
+ "name" : "SNMPv2-TC",
3627
+ "type" : "RowStatus",
3628
+ },
3629
+ "active" : {
3630
+ "nodetype" : "namednumber",
3631
+ "number" : "1"
3632
+ },
3633
+ },
3634
+ }, # syntax
3635
+ "access" : "readonly",
3636
+ "description" :
3637
+ """Write access is not required, and only one of the
3638
+ six enumerated values for the RowStatus textual
3639
+ convention need be supported, specifically:
3640
+ active(1).""",
3641
+ },
3642
+ "frPVCConnectAdminStatus" : {
3643
+ "module" : "FRNETSERV-MIB",
3644
+ "access" : "readonly",
3645
+ "description" :
3646
+ """Write access is not required.""",
3647
+ },
3648
+ "frPVCConnectRowStatus" : {
3649
+ "module" : "FRNETSERV-MIB",
3650
+ "syntax" : {
3651
+ "type" : {
3652
+ "basetype" : "Enumeration",
3653
+ "parent module" : {
3654
+ "name" : "SNMPv2-TC",
3655
+ "type" : "RowStatus",
3656
+ },
3657
+ "active" : {
3658
+ "nodetype" : "namednumber",
3659
+ "number" : "1"
3660
+ },
3661
+ },
3662
+ }, # syntax
3663
+ "access" : "readonly",
3664
+ "description" :
3665
+ """Write access is not required, and only one of the
3666
+ six enumerated values for the RowStatus textual
3667
+ convention need be supported, specifically:
3668
+ active(1).""",
3669
+ },
3670
+ }, # refinements
3671
+
3672
+ }, # compliance
3673
+ "frnetservCompliance2" : {
3674
+ "nodetype" : "compliance",
3675
+ "moduleName" : "FRNETSERV-MIB",
3676
+ "oid" : "1.3.6.1.2.1.10.44.3.2.2",
3677
+ "status" : "current",
3678
+ "description" :
3679
+ """The compliance statement for SNMP entities which
3680
+ have Frame Relay Network Service Interfaces.
3681
+
3682
+ The distinction between 'service' and 'switch' is
3683
+ that a 'switch' is configured via this MIB.
3684
+ Hence, the various read/write objects have write
3685
+ capability. A 'service' represents a passive
3686
+ monitor-only customer network management
3687
+ interface. The various read/write objects are
3688
+ restricted to read-only capability.""",
3689
+ "requires" : {
3690
+ "frnetservLportGroup2" : {
3691
+ "nodetype" : "mandatory",
3692
+ "module" : "FRNETSERV-MIB"
3693
+ },
3694
+ "frnetservMgtVCSigGroup" : {
3695
+ "nodetype" : "mandatory",
3696
+ "module" : "FRNETSERV-MIB"
3697
+ },
3698
+ "frnetservPVCEndptGroup" : {
3699
+ "nodetype" : "mandatory",
3700
+ "module" : "FRNETSERV-MIB"
3701
+ },
3702
+ "frnetservPVCEndptGroup2" : {
3703
+ "nodetype" : "mandatory",
3704
+ "module" : "FRNETSERV-MIB"
3705
+ },
3706
+ "frnetservPVCConnectGroup" : {
3707
+ "nodetype" : "mandatory",
3708
+ "module" : "FRNETSERV-MIB"
3709
+ },
3710
+ "frnetservPVCConnectNamesGroup" : {
3711
+ "nodetype" : "mandatory",
3712
+ "module" : "FRNETSERV-MIB"
3713
+ },
3714
+ "frnetservPVCNotifGroup2" : {
3715
+ "nodetype" : "mandatory",
3716
+ "module" : "FRNETSERV-MIB"
3717
+ },
3718
+ "frnetservAccountPVCGroup" : {
3719
+ "nodetype" : "optional",
3720
+ "module" : "FRNETSERV-MIB",
3721
+ "description" :
3722
+ """This group is optional for frame relay
3723
+ interfaces. It is mandatory if and only if
3724
+ accounting is performed on a PVC basis this frame
3725
+ relay interface.""",
3726
+ },
3727
+ "frnetservAccountLportGroup" : {
3728
+ "nodetype" : "optional",
3729
+ "module" : "FRNETSERV-MIB",
3730
+ "description" :
3731
+ """This group is optional for frame relay
3732
+ interfaces. It is mandatory if and only if
3733
+ accounting is performed on a logical port basis
3734
+ this frame relay interface.""",
3735
+ },
3736
+ }, # requires
3737
+ "refinements" : {
3738
+ "frPVCEndptInMaxFrameSize" : {
3739
+ "module" : "FRNETSERV-MIB",
3740
+ "access" : "readonly",
3741
+ "description" :
3742
+ """Write access is not required.""",
3743
+ },
3744
+ "frPVCEndptInBc" : {
3745
+ "module" : "FRNETSERV-MIB",
3746
+ "access" : "readonly",
3747
+ "description" :
3748
+ """Write access is not required.""",
3749
+ },
3750
+ "frPVCEndptInBe" : {
3751
+ "module" : "FRNETSERV-MIB",
3752
+ "access" : "readonly",
3753
+ "description" :
3754
+ """Write access is not required.""",
3755
+ },
3756
+ "frPVCEndptInCIR" : {
3757
+ "module" : "FRNETSERV-MIB",
3758
+ "access" : "readonly",
3759
+ "description" :
3760
+ """Write access is not required.""",
3761
+ },
3762
+ "frPVCEndptOutMaxFrameSize" : {
3763
+ "module" : "FRNETSERV-MIB",
3764
+ "access" : "readonly",
3765
+ "description" :
3766
+ """Write access is not required.""",
3767
+ },
3768
+ "frPVCEndptOutBc" : {
3769
+ "module" : "FRNETSERV-MIB",
3770
+ "access" : "readonly",
3771
+ "description" :
3772
+ """Write access is not required.""",
3773
+ },
3774
+ "frPVCEndptOutBe" : {
3775
+ "module" : "FRNETSERV-MIB",
3776
+ "access" : "readonly",
3777
+ "description" :
3778
+ """Write access is not required.""",
3779
+ },
3780
+ "frPVCEndptOutCIR" : {
3781
+ "module" : "FRNETSERV-MIB",
3782
+ "access" : "readonly",
3783
+ "description" :
3784
+ """Write access is not required.""",
3785
+ },
3786
+ "frPVCEndptRowStatus" : {
3787
+ "module" : "FRNETSERV-MIB",
3788
+ "syntax" : {
3789
+ "type" : {
3790
+ "basetype" : "Enumeration",
3791
+ "parent module" : {
3792
+ "name" : "SNMPv2-TC",
3793
+ "type" : "RowStatus",
3794
+ },
3795
+ "active" : {
3796
+ "nodetype" : "namednumber",
3797
+ "number" : "1"
3798
+ },
3799
+ },
3800
+ }, # syntax
3801
+ "access" : "readonly",
3802
+ "description" :
3803
+ """Write access is not required, and only one of the
3804
+ six enumerated values for the RowStatus textual
3805
+ convention need be supported, specifically:
3806
+ active(1).""",
3807
+ },
3808
+ "frPVCConnectAdminStatus" : {
3809
+ "module" : "FRNETSERV-MIB",
3810
+ "access" : "readonly",
3811
+ "description" :
3812
+ """Write access is not required.""",
3813
+ },
3814
+ "frPVCConnectRowStatus" : {
3815
+ "module" : "FRNETSERV-MIB",
3816
+ "syntax" : {
3817
+ "type" : {
3818
+ "basetype" : "Enumeration",
3819
+ "parent module" : {
3820
+ "name" : "SNMPv2-TC",
3821
+ "type" : "RowStatus",
3822
+ },
3823
+ "active" : {
3824
+ "nodetype" : "namednumber",
3825
+ "number" : "1"
3826
+ },
3827
+ },
3828
+ }, # syntax
3829
+ "access" : "readonly",
3830
+ "description" :
3831
+ """Write access is not required, and only one of the
3832
+ six enumerated values for the RowStatus textual
3833
+ convention need be supported, specifically:
3834
+ active(1).""",
3835
+ },
3836
+ "frLportFragControl" : {
3837
+ "module" : "FRNETSERV-MIB",
3838
+ "access" : "readonly",
3839
+ "description" :
3840
+ """Write access is not required.""",
3841
+ },
3842
+ "frLportFragSize" : {
3843
+ "module" : "FRNETSERV-MIB",
3844
+ "access" : "readonly",
3845
+ "description" :
3846
+ """Write access is not required.""",
3847
+ },
3848
+ "frPVCConnectUserName" : {
3849
+ "module" : "FRNETSERV-MIB",
3850
+ "access" : "readonly",
3851
+ "description" :
3852
+ """Write access is not required.""",
3853
+ },
3854
+ "frPVCConnectProviderName" : {
3855
+ "module" : "FRNETSERV-MIB",
3856
+ "access" : "readonly",
3857
+ "description" :
3858
+ """Write access is not required.""",
3859
+ },
3860
+ }, # refinements
3861
+
3862
+ }, # compliance
3863
+ "frnetSwitchCompliance" : {
3864
+ "nodetype" : "compliance",
3865
+ "moduleName" : "FRNETSERV-MIB",
3866
+ "oid" : "1.3.6.1.2.1.10.44.3.2.3",
3867
+ "status" : "current",
3868
+ "description" :
3869
+ """The compliance statement for SNMP entities which
3870
+ have Frame Relay Network Switch objects.
3871
+
3872
+ The distinction between 'service' and 'switch' is
3873
+ that a 'switch' is configured via this MIB.
3874
+
3875
+
3876
+ Hence, the various read/write objects have write
3877
+ capability. A 'service' represents a passive
3878
+ monitor-only customer network management
3879
+ interface. The various read/write objects are
3880
+ restricted to read-only capability.""",
3881
+ "requires" : {
3882
+ "frnetservLportGroup2" : {
3883
+ "nodetype" : "mandatory",
3884
+ "module" : "FRNETSERV-MIB"
3885
+ },
3886
+ "frnetservLportAdminGroup" : {
3887
+ "nodetype" : "mandatory",
3888
+ "module" : "FRNETSERV-MIB"
3889
+ },
3890
+ "frnetservMgtVCSigGroup" : {
3891
+ "nodetype" : "mandatory",
3892
+ "module" : "FRNETSERV-MIB"
3893
+ },
3894
+ "frnetservMgtVCSigAdminGroup" : {
3895
+ "nodetype" : "mandatory",
3896
+ "module" : "FRNETSERV-MIB"
3897
+ },
3898
+ "frnetservPVCEndptGroup" : {
3899
+ "nodetype" : "mandatory",
3900
+ "module" : "FRNETSERV-MIB"
3901
+ },
3902
+ "frnetservPVCEndptGroup2" : {
3903
+ "nodetype" : "mandatory",
3904
+ "module" : "FRNETSERV-MIB"
3905
+ },
3906
+ "frnetservPVCConnectGroup" : {
3907
+ "nodetype" : "mandatory",
3908
+ "module" : "FRNETSERV-MIB"
3909
+ },
3910
+ "frnetservPVCConnectNamesGroup" : {
3911
+ "nodetype" : "mandatory",
3912
+ "module" : "FRNETSERV-MIB"
3913
+ },
3914
+ "frnetservPVCNotifGroup2" : {
3915
+ "nodetype" : "mandatory",
3916
+ "module" : "FRNETSERV-MIB"
3917
+ },
3918
+ "frnetservAccountPVCGroup" : {
3919
+ "nodetype" : "optional",
3920
+ "module" : "FRNETSERV-MIB",
3921
+ "description" :
3922
+ """This group is optional for frame relay
3923
+ interfaces. It is mandatory if and only if
3924
+ accounting is performed on a PVC basis this frame
3925
+ relay interface.""",
3926
+ },
3927
+ "frnetservAccountLportGroup" : {
3928
+ "nodetype" : "optional",
3929
+ "module" : "FRNETSERV-MIB",
3930
+ "description" :
3931
+ """This group is optional for frame relay
3932
+ interfaces. It is mandatory if and only if
3933
+ accounting is performed on a logical port basis
3934
+ this frame relay interface.""",
3935
+ },
3936
+ }, # requires
3937
+ }, # compliance
3938
+ }, # compliances
3939
+
3940
+ }