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,3820 @@
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 RFC1382-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RFC1382-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RFC1382-MIB",
11
+
12
+ "RFC1382-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
19
+ {"module" : "RFC1155-SMI", "name" : "Gauge"},
20
+ {"module" : "RFC1155-SMI", "name" : "TimeTicks"},
21
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
22
+ {"module" : "RFC1213-MIB", "name" : "DisplayString"},
23
+ {"module" : "RFC1213-MIB", "name" : "transmission"},
24
+ {"module" : "RFC-1215", "name" : "TRAP-TYPE"},
25
+ {"module" : "RFC1271-MIB", "name" : "EntryStatus"},
26
+ {"module" : "RFC1381-MIB", "name" : "PositiveInteger"},
27
+ {"module" : "RFC1381-MIB", "name" : "IfIndexType"},
28
+ ),
29
+
30
+ "typedefs" : {
31
+ "X121Address" : {
32
+ "basetype" : "OctetString",
33
+ "ranges" : [
34
+ {
35
+ "min" : "0",
36
+ "max" : "17"
37
+ },
38
+ ],
39
+ "range" : {
40
+ "min" : "0",
41
+ "max" : "17"
42
+ },
43
+ },
44
+ }, # typedefs
45
+
46
+ "nodes" : {
47
+ "x25" : {
48
+ "nodetype" : "node",
49
+ "moduleName" : "RFC1382-MIB",
50
+ "oid" : "1.3.6.1.2.1.10.5",
51
+ }, # node
52
+ "x25AdmnTable" : {
53
+ "nodetype" : "table",
54
+ "moduleName" : "RFC1382-MIB",
55
+ "oid" : "1.3.6.1.2.1.10.5.1",
56
+ "status" : "current",
57
+ "description" :
58
+ """This table contains the administratively
59
+ set configuration parameters for an X.25
60
+ Packet Level Entity (PLE).
61
+
62
+ Most of the objects in this table have
63
+ corresponding objects in the x25OperTable.
64
+ This table contains the values as last set
65
+ by the administrator. The x25OperTable
66
+ contains the values actually in use by an
67
+ X.25 PLE.
68
+
69
+ Changing an administrative value may or may
70
+ not change a current operating value. The
71
+ operating value may not change until the
72
+ interface is restarted. Some
73
+ implementations may change the values
74
+ immediately upon changing the administrative
75
+ table. All implementations are required to
76
+ load the values from the administrative
77
+ table when initializing a PLE.""",
78
+ }, # table
79
+ "x25AdmnEntry" : {
80
+ "nodetype" : "row",
81
+ "moduleName" : "RFC1382-MIB",
82
+ "oid" : "1.3.6.1.2.1.10.5.1.1",
83
+ "status" : "current",
84
+ "linkage" : [
85
+ "x25AdmnIndex",
86
+ ],
87
+ "description" :
88
+ """Entries of x25AdmnTable.""",
89
+ }, # row
90
+ "x25AdmnIndex" : {
91
+ "nodetype" : "column",
92
+ "moduleName" : "RFC1382-MIB",
93
+ "oid" : "1.3.6.1.2.1.10.5.1.1.1",
94
+ "status" : "current",
95
+ "syntax" : {
96
+ "type" : { "module" :"RFC1381-MIB", "name" : "IfIndexType"},
97
+ },
98
+ "access" : "readonly",
99
+ "description" :
100
+ """The ifIndex value for the X.25 Interface.""",
101
+ }, # column
102
+ "x25AdmnInterfaceMode" : {
103
+ "nodetype" : "column",
104
+ "moduleName" : "RFC1382-MIB",
105
+ "oid" : "1.3.6.1.2.1.10.5.1.1.2",
106
+ "status" : "current",
107
+ "syntax" : {
108
+ "type" : {
109
+ "basetype" : "Enumeration",
110
+ "dte" : {
111
+ "nodetype" : "namednumber",
112
+ "number" : "1"
113
+ },
114
+ "dce" : {
115
+ "nodetype" : "namednumber",
116
+ "number" : "2"
117
+ },
118
+ "dxe" : {
119
+ "nodetype" : "namednumber",
120
+ "number" : "3"
121
+ },
122
+ },
123
+ },
124
+ "access" : "readwrite",
125
+ "description" :
126
+ """Identifies DCE/DTE mode in which the
127
+ interface operates. A value of dxe
128
+ indicates the mode will be determined by XID
129
+ negotiation.""",
130
+ "reference" :
131
+ """10733 5.9 interfaceMode""",
132
+ }, # column
133
+ "x25AdmnMaxActiveCircuits" : {
134
+ "nodetype" : "column",
135
+ "moduleName" : "RFC1382-MIB",
136
+ "oid" : "1.3.6.1.2.1.10.5.1.1.3",
137
+ "status" : "current",
138
+ "syntax" : {
139
+ "type" : {
140
+ "basetype" : "Integer32",
141
+ "ranges" : [
142
+ {
143
+ "min" : "0",
144
+ "max" : "4096"
145
+ },
146
+ ],
147
+ "range" : {
148
+ "min" : "0",
149
+ "max" : "4096"
150
+ },
151
+ },
152
+ },
153
+ "access" : "readwrite",
154
+ "description" :
155
+ """The maximum number of circuits this PLE can
156
+ support; including PVCs.""",
157
+ "reference" :
158
+ """10733 5.9 maxActiveCircuits;
159
+ See ISO 8208, Section 3.7""",
160
+ }, # column
161
+ "x25AdmnPacketSequencing" : {
162
+ "nodetype" : "column",
163
+ "moduleName" : "RFC1382-MIB",
164
+ "oid" : "1.3.6.1.2.1.10.5.1.1.4",
165
+ "status" : "current",
166
+ "syntax" : {
167
+ "type" : {
168
+ "basetype" : "Enumeration",
169
+ "modulo8" : {
170
+ "nodetype" : "namednumber",
171
+ "number" : "1"
172
+ },
173
+ "modulo128" : {
174
+ "nodetype" : "namednumber",
175
+ "number" : "2"
176
+ },
177
+ },
178
+ },
179
+ "access" : "readwrite",
180
+ "description" :
181
+ """The modulus of the packet sequence number
182
+ space.""",
183
+ "reference" :
184
+ """10733 extendedPacketSequencing;
185
+ See ISO 8208 Section 7.1.1""",
186
+ }, # column
187
+ "x25AdmnRestartTimer" : {
188
+ "nodetype" : "column",
189
+ "moduleName" : "RFC1382-MIB",
190
+ "oid" : "1.3.6.1.2.1.10.5.1.1.5",
191
+ "status" : "current",
192
+ "syntax" : {
193
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
194
+ },
195
+ "access" : "readwrite",
196
+ "description" :
197
+ """The T20 restart timer in milliseconds.""",
198
+ "reference" :
199
+ """10733 5.9 restartTime
200
+ See ISO 8208 Section 4.1, table 26""",
201
+ }, # column
202
+ "x25AdmnCallTimer" : {
203
+ "nodetype" : "column",
204
+ "moduleName" : "RFC1382-MIB",
205
+ "oid" : "1.3.6.1.2.1.10.5.1.1.6",
206
+ "status" : "current",
207
+ "syntax" : {
208
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
209
+ },
210
+ "access" : "readwrite",
211
+ "description" :
212
+ """The T21 Call timer in milliseconds.""",
213
+ "reference" :
214
+ """10733 callTime;
215
+ See ISO 8208 Section 5.2.1, table 26""",
216
+ }, # column
217
+ "x25AdmnResetTimer" : {
218
+ "nodetype" : "column",
219
+ "moduleName" : "RFC1382-MIB",
220
+ "oid" : "1.3.6.1.2.1.10.5.1.1.7",
221
+ "status" : "current",
222
+ "syntax" : {
223
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
224
+ },
225
+ "access" : "readwrite",
226
+ "description" :
227
+ """The T22 Reset timer in milliseconds.""",
228
+ "reference" :
229
+ """10733 resetTime;
230
+ See ISO 8208 Section 8.1, table 26""",
231
+ }, # column
232
+ "x25AdmnClearTimer" : {
233
+ "nodetype" : "column",
234
+ "moduleName" : "RFC1382-MIB",
235
+ "oid" : "1.3.6.1.2.1.10.5.1.1.8",
236
+ "status" : "current",
237
+ "syntax" : {
238
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
239
+ },
240
+ "access" : "readwrite",
241
+ "description" :
242
+ """The T23 Clear timer in milliseconds.""",
243
+ "reference" :
244
+ """10733 clearTime;
245
+ See ISO 8208 Section 5.5.1, table 26""",
246
+ }, # column
247
+ "x25AdmnWindowTimer" : {
248
+ "nodetype" : "column",
249
+ "moduleName" : "RFC1382-MIB",
250
+ "oid" : "1.3.6.1.2.1.10.5.1.1.9",
251
+ "status" : "current",
252
+ "syntax" : {
253
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
254
+ },
255
+ "access" : "readwrite",
256
+ "description" :
257
+ """The T24 window status transmission timer in
258
+ milliseconds. A value of 2147483647
259
+ indicates no window timer in use.""",
260
+ "reference" :
261
+ """10733 5.10.1 windowTime (opt);
262
+ See ISO 8208 Section 11.2.2, table 26""",
263
+ }, # column
264
+ "x25AdmnDataRxmtTimer" : {
265
+ "nodetype" : "column",
266
+ "moduleName" : "RFC1382-MIB",
267
+ "oid" : "1.3.6.1.2.1.10.5.1.1.10",
268
+ "status" : "current",
269
+ "syntax" : {
270
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
271
+ },
272
+ "access" : "readwrite",
273
+ "description" :
274
+ """The T25 data retransmission timer in
275
+ milliseconds. A value of 2147483647
276
+ indicates no data retransmission timer in
277
+ use.""",
278
+ "reference" :
279
+ """10733 5.10.1 dataRetransmissionTime (opt);
280
+ See ISO 8208 Section 11.2.1, table 26""",
281
+ }, # column
282
+ "x25AdmnInterruptTimer" : {
283
+ "nodetype" : "column",
284
+ "moduleName" : "RFC1382-MIB",
285
+ "oid" : "1.3.6.1.2.1.10.5.1.1.11",
286
+ "status" : "current",
287
+ "syntax" : {
288
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
289
+ },
290
+ "access" : "readwrite",
291
+ "description" :
292
+ """The T26 interrupt timer in milliseconds. A
293
+ value of 2147483647 indicates no interrupt
294
+ timer in use.""",
295
+ "reference" :
296
+ """10733 interruptTime;
297
+ See ISO 8208 Section 6.8.1, table 26""",
298
+ }, # column
299
+ "x25AdmnRejectTimer" : {
300
+ "nodetype" : "column",
301
+ "moduleName" : "RFC1382-MIB",
302
+ "oid" : "1.3.6.1.2.1.10.5.1.1.12",
303
+ "status" : "current",
304
+ "syntax" : {
305
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
306
+ },
307
+ "access" : "readwrite",
308
+ "description" :
309
+ """The T27 Reject retransmission timer in
310
+ milliseconds. A value of 2147483647
311
+ indicates no reject timer in use.""",
312
+ "reference" :
313
+ """10733 5.10.1 dataRejectTime (opt);
314
+ See ISO 8208 Section 13.4.1, table 26""",
315
+ }, # column
316
+ "x25AdmnRegistrationRequestTimer" : {
317
+ "nodetype" : "column",
318
+ "moduleName" : "RFC1382-MIB",
319
+ "oid" : "1.3.6.1.2.1.10.5.1.1.13",
320
+ "status" : "current",
321
+ "syntax" : {
322
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
323
+ },
324
+ "access" : "readwrite",
325
+ "description" :
326
+ """The T28 registration timer in milliseconds.
327
+ A value of 2147483647 indicates no
328
+ registration timer in use.""",
329
+ "reference" :
330
+ """10733 5.8.1 registrationRequestTime (opt)
331
+ See ISO 8208 Section 13.1.1.1, table 26""",
332
+ }, # column
333
+ "x25AdmnMinimumRecallTimer" : {
334
+ "nodetype" : "column",
335
+ "moduleName" : "RFC1382-MIB",
336
+ "oid" : "1.3.6.1.2.1.10.5.1.1.14",
337
+ "status" : "current",
338
+ "syntax" : {
339
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
340
+ },
341
+ "access" : "readwrite",
342
+ "description" :
343
+ """Minimum time interval between unsuccessful
344
+ call attempts in milliseconds.""",
345
+ "reference" :
346
+ """10733 5.9 minimum RecallTimer""",
347
+ }, # column
348
+ "x25AdmnRestartCount" : {
349
+ "nodetype" : "column",
350
+ "moduleName" : "RFC1382-MIB",
351
+ "oid" : "1.3.6.1.2.1.10.5.1.1.15",
352
+ "status" : "current",
353
+ "syntax" : {
354
+ "type" : {
355
+ "basetype" : "Integer32",
356
+ "ranges" : [
357
+ {
358
+ "min" : "0",
359
+ "max" : "65535"
360
+ },
361
+ ],
362
+ "range" : {
363
+ "min" : "0",
364
+ "max" : "65535"
365
+ },
366
+ },
367
+ },
368
+ "access" : "readwrite",
369
+ "description" :
370
+ """The R20 restart retransmission count.""",
371
+ "reference" :
372
+ """10733 5.9 restartCount;
373
+ See ISO 8208 Section 4.1, table 27""",
374
+ }, # column
375
+ "x25AdmnResetCount" : {
376
+ "nodetype" : "column",
377
+ "moduleName" : "RFC1382-MIB",
378
+ "oid" : "1.3.6.1.2.1.10.5.1.1.16",
379
+ "status" : "current",
380
+ "syntax" : {
381
+ "type" : {
382
+ "basetype" : "Integer32",
383
+ "ranges" : [
384
+ {
385
+ "min" : "0",
386
+ "max" : "65535"
387
+ },
388
+ ],
389
+ "range" : {
390
+ "min" : "0",
391
+ "max" : "65535"
392
+ },
393
+ },
394
+ },
395
+ "access" : "readwrite",
396
+ "description" :
397
+ """The r22 Reset retransmission count.""",
398
+ "reference" :
399
+ """10733 resetCount;
400
+ See section ISO 8208 8.1, table 27""",
401
+ }, # column
402
+ "x25AdmnClearCount" : {
403
+ "nodetype" : "column",
404
+ "moduleName" : "RFC1382-MIB",
405
+ "oid" : "1.3.6.1.2.1.10.5.1.1.17",
406
+ "status" : "current",
407
+ "syntax" : {
408
+ "type" : {
409
+ "basetype" : "Integer32",
410
+ "ranges" : [
411
+ {
412
+ "min" : "0",
413
+ "max" : "65535"
414
+ },
415
+ ],
416
+ "range" : {
417
+ "min" : "0",
418
+ "max" : "65535"
419
+ },
420
+ },
421
+ },
422
+ "access" : "readwrite",
423
+ "description" :
424
+ """The r23 Clear retransmission count.""",
425
+ "reference" :
426
+ """10733 clearCount;
427
+ See ISO 8208 Section 5.5.1, table 27""",
428
+ }, # column
429
+ "x25AdmnDataRxmtCount" : {
430
+ "nodetype" : "column",
431
+ "moduleName" : "RFC1382-MIB",
432
+ "oid" : "1.3.6.1.2.1.10.5.1.1.18",
433
+ "status" : "current",
434
+ "syntax" : {
435
+ "type" : {
436
+ "basetype" : "Integer32",
437
+ "ranges" : [
438
+ {
439
+ "min" : "0",
440
+ "max" : "65535"
441
+ },
442
+ ],
443
+ "range" : {
444
+ "min" : "0",
445
+ "max" : "65535"
446
+ },
447
+ },
448
+ },
449
+ "access" : "readwrite",
450
+ "description" :
451
+ """The R25 Data retransmission count. This
452
+ value is irrelevant if the
453
+ x25AdmnDataRxmtTimer indicates no timer in
454
+ use.""",
455
+ "reference" :
456
+ """10733 5.10.1 dataRetransmissionCount (opt)
457
+ See ISO 8208 Section 11.2.1, table 27""",
458
+ }, # column
459
+ "x25AdmnRejectCount" : {
460
+ "nodetype" : "column",
461
+ "moduleName" : "RFC1382-MIB",
462
+ "oid" : "1.3.6.1.2.1.10.5.1.1.19",
463
+ "status" : "current",
464
+ "syntax" : {
465
+ "type" : {
466
+ "basetype" : "Integer32",
467
+ "ranges" : [
468
+ {
469
+ "min" : "0",
470
+ "max" : "65535"
471
+ },
472
+ ],
473
+ "range" : {
474
+ "min" : "0",
475
+ "max" : "65535"
476
+ },
477
+ },
478
+ },
479
+ "access" : "readwrite",
480
+ "description" :
481
+ """The R27 reject retransmission count. This
482
+ value is irrelevant if the
483
+ x25AdmnRejectTimer indicates no timer in
484
+ use.""",
485
+ "reference" :
486
+ """10733 5.10.1 dataRejectCount (opt)""",
487
+ }, # column
488
+ "x25AdmnRegistrationRequestCount" : {
489
+ "nodetype" : "column",
490
+ "moduleName" : "RFC1382-MIB",
491
+ "oid" : "1.3.6.1.2.1.10.5.1.1.20",
492
+ "status" : "current",
493
+ "syntax" : {
494
+ "type" : {
495
+ "basetype" : "Integer32",
496
+ "ranges" : [
497
+ {
498
+ "min" : "0",
499
+ "max" : "65535"
500
+ },
501
+ ],
502
+ "range" : {
503
+ "min" : "0",
504
+ "max" : "65535"
505
+ },
506
+ },
507
+ },
508
+ "access" : "readwrite",
509
+ "description" :
510
+ """The R28 Registration retransmission Count.
511
+ This value is irrelevant if the
512
+ x25AdmnRegistrationRequestTimer indicates no
513
+ timer in use.""",
514
+ "reference" :
515
+ """10733 5.8.1 registrationRequestCount (opt);
516
+ See ISO 8208 Section 13.1.1.1, table 27""",
517
+ }, # column
518
+ "x25AdmnNumberPVCs" : {
519
+ "nodetype" : "column",
520
+ "moduleName" : "RFC1382-MIB",
521
+ "oid" : "1.3.6.1.2.1.10.5.1.1.21",
522
+ "status" : "current",
523
+ "syntax" : {
524
+ "type" : {
525
+ "basetype" : "Integer32",
526
+ "ranges" : [
527
+ {
528
+ "min" : "0",
529
+ "max" : "4096"
530
+ },
531
+ ],
532
+ "range" : {
533
+ "min" : "0",
534
+ "max" : "4096"
535
+ },
536
+ },
537
+ },
538
+ "access" : "readwrite",
539
+ "description" :
540
+ """The number of PVC configured for this PLE.
541
+ The PVCs use channel numbers from 1 to this
542
+ number.""",
543
+ }, # column
544
+ "x25AdmnDefCallParamId" : {
545
+ "nodetype" : "column",
546
+ "moduleName" : "RFC1382-MIB",
547
+ "oid" : "1.3.6.1.2.1.10.5.1.1.22",
548
+ "status" : "current",
549
+ "syntax" : {
550
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
551
+ },
552
+ "access" : "readwrite",
553
+ "description" :
554
+ """This identifies the instance of the
555
+ x25CallParmIndex for the entry in the
556
+ x25CallParmTable which contains the default
557
+ call parameters for this PLE.""",
558
+ }, # column
559
+ "x25AdmnLocalAddress" : {
560
+ "nodetype" : "column",
561
+ "moduleName" : "RFC1382-MIB",
562
+ "oid" : "1.3.6.1.2.1.10.5.1.1.23",
563
+ "status" : "current",
564
+ "syntax" : {
565
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
566
+ },
567
+ "access" : "readwrite",
568
+ "description" :
569
+ """The local address for this PLE subnetwork.
570
+ A zero length address maybe returned by PLEs
571
+ that only support PVCs.""",
572
+ "reference" :
573
+ """10733 5.9 localDTEAddress""",
574
+ }, # column
575
+ "x25AdmnProtocolVersionSupported" : {
576
+ "nodetype" : "column",
577
+ "moduleName" : "RFC1382-MIB",
578
+ "oid" : "1.3.6.1.2.1.10.5.1.1.24",
579
+ "status" : "current",
580
+ "syntax" : {
581
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
582
+ },
583
+ "access" : "readwrite",
584
+ "description" :
585
+ """Identifies the version of the X.25 protocol
586
+ this interface should support. Object
587
+ identifiers for common versions are defined
588
+ below in the x25ProtocolVersion subtree.""",
589
+ "reference" :
590
+ """10733 5.9 protocolVersionSupported""",
591
+ }, # column
592
+ "x25OperTable" : {
593
+ "nodetype" : "table",
594
+ "moduleName" : "RFC1382-MIB",
595
+ "oid" : "1.3.6.1.2.1.10.5.2",
596
+ "status" : "current",
597
+ "description" :
598
+ """The operation parameters in use by the X.25
599
+ PLE.""",
600
+ }, # table
601
+ "x25OperEntry" : {
602
+ "nodetype" : "row",
603
+ "moduleName" : "RFC1382-MIB",
604
+ "oid" : "1.3.6.1.2.1.10.5.2.1",
605
+ "status" : "current",
606
+ "linkage" : [
607
+ "x25OperIndex",
608
+ ],
609
+ "description" :
610
+ """Entries of x25OperTable.""",
611
+ }, # row
612
+ "x25OperIndex" : {
613
+ "nodetype" : "column",
614
+ "moduleName" : "RFC1382-MIB",
615
+ "oid" : "1.3.6.1.2.1.10.5.2.1.1",
616
+ "status" : "current",
617
+ "syntax" : {
618
+ "type" : { "module" :"RFC1381-MIB", "name" : "IfIndexType"},
619
+ },
620
+ "access" : "readonly",
621
+ "description" :
622
+ """The ifIndex value for the X.25 interface.""",
623
+ }, # column
624
+ "x25OperInterfaceMode" : {
625
+ "nodetype" : "column",
626
+ "moduleName" : "RFC1382-MIB",
627
+ "oid" : "1.3.6.1.2.1.10.5.2.1.2",
628
+ "status" : "current",
629
+ "syntax" : {
630
+ "type" : {
631
+ "basetype" : "Enumeration",
632
+ "dte" : {
633
+ "nodetype" : "namednumber",
634
+ "number" : "1"
635
+ },
636
+ "dce" : {
637
+ "nodetype" : "namednumber",
638
+ "number" : "2"
639
+ },
640
+ "dxe" : {
641
+ "nodetype" : "namednumber",
642
+ "number" : "3"
643
+ },
644
+ },
645
+ },
646
+ "access" : "readonly",
647
+ "description" :
648
+ """Identifies DCE/DTE mode in which the
649
+ interface operates. A value of dxe
650
+ indicates the role will be determined by XID
651
+ negotiation at the Link Layer and that
652
+ negotiation has not yet taken place.""",
653
+ "reference" :
654
+ """10733 5.9 interfaceMode""",
655
+ }, # column
656
+ "x25OperMaxActiveCircuits" : {
657
+ "nodetype" : "column",
658
+ "moduleName" : "RFC1382-MIB",
659
+ "oid" : "1.3.6.1.2.1.10.5.2.1.3",
660
+ "status" : "current",
661
+ "syntax" : {
662
+ "type" : {
663
+ "basetype" : "Integer32",
664
+ "ranges" : [
665
+ {
666
+ "min" : "0",
667
+ "max" : "4096"
668
+ },
669
+ ],
670
+ "range" : {
671
+ "min" : "0",
672
+ "max" : "4096"
673
+ },
674
+ },
675
+ },
676
+ "access" : "readonly",
677
+ "description" :
678
+ """Maximum number of circuits this PLE can
679
+ support.""",
680
+ "reference" :
681
+ """10733 5.9 maxActiveCircuits
682
+ See ISO 8208, Section 3.7""",
683
+ }, # column
684
+ "x25OperPacketSequencing" : {
685
+ "nodetype" : "column",
686
+ "moduleName" : "RFC1382-MIB",
687
+ "oid" : "1.3.6.1.2.1.10.5.2.1.4",
688
+ "status" : "current",
689
+ "syntax" : {
690
+ "type" : {
691
+ "basetype" : "Enumeration",
692
+ "modulo8" : {
693
+ "nodetype" : "namednumber",
694
+ "number" : "1"
695
+ },
696
+ "modulo128" : {
697
+ "nodetype" : "namednumber",
698
+ "number" : "2"
699
+ },
700
+ },
701
+ },
702
+ "access" : "readonly",
703
+ "description" :
704
+ """The modulus of the packet sequence number
705
+ space.""",
706
+ "reference" :
707
+ """10733 extendedPacketSequencing;
708
+ See ISO 8208 Section 7.1.1""",
709
+ }, # column
710
+ "x25OperRestartTimer" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "RFC1382-MIB",
713
+ "oid" : "1.3.6.1.2.1.10.5.2.1.5",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
717
+ },
718
+ "access" : "readonly",
719
+ "description" :
720
+ """The T20 restart timer in milliseconds.""",
721
+ "reference" :
722
+ """10733 5.9 restartTime;
723
+ See ISO 8208 Section 4.1, table 26""",
724
+ }, # column
725
+ "x25OperCallTimer" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "RFC1382-MIB",
728
+ "oid" : "1.3.6.1.2.1.10.5.2.1.6",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
732
+ },
733
+ "access" : "readonly",
734
+ "description" :
735
+ """The T21 Call timer in milliseconds.""",
736
+ "reference" :
737
+ """10733 callTime;
738
+ See ISO 8208 Section 5.2.1, table 26""",
739
+ }, # column
740
+ "x25OperResetTimer" : {
741
+ "nodetype" : "column",
742
+ "moduleName" : "RFC1382-MIB",
743
+ "oid" : "1.3.6.1.2.1.10.5.2.1.7",
744
+ "status" : "current",
745
+ "syntax" : {
746
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
747
+ },
748
+ "access" : "readonly",
749
+ "description" :
750
+ """The T22 Reset timer in milliseconds.""",
751
+ "reference" :
752
+ """10733 resetTime;
753
+ See ISO 8208 Section 8.1, table 26""",
754
+ }, # column
755
+ "x25OperClearTimer" : {
756
+ "nodetype" : "column",
757
+ "moduleName" : "RFC1382-MIB",
758
+ "oid" : "1.3.6.1.2.1.10.5.2.1.8",
759
+ "status" : "current",
760
+ "syntax" : {
761
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
762
+ },
763
+ "access" : "readonly",
764
+ "description" :
765
+ """The T23 Clear timer in milliseconds.""",
766
+ "reference" :
767
+ """10733 clearTime;
768
+ See ISO 8208 Section 5.5.1, table 26""",
769
+ }, # column
770
+ "x25OperWindowTimer" : {
771
+ "nodetype" : "column",
772
+ "moduleName" : "RFC1382-MIB",
773
+ "oid" : "1.3.6.1.2.1.10.5.2.1.9",
774
+ "status" : "current",
775
+ "syntax" : {
776
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
777
+ },
778
+ "access" : "readonly",
779
+ "description" :
780
+ """The T24 window status transmission timer
781
+ milliseconds. A value of 2147483647
782
+ indicates no window timer in use.""",
783
+ "reference" :
784
+ """10733 5.10.1 windowTime (opt);
785
+ See ISO 8208 Section 11.2.2, table 26""",
786
+ }, # column
787
+ "x25OperDataRxmtTimer" : {
788
+ "nodetype" : "column",
789
+ "moduleName" : "RFC1382-MIB",
790
+ "oid" : "1.3.6.1.2.1.10.5.2.1.10",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
794
+ },
795
+ "access" : "readonly",
796
+ "description" :
797
+ """The T25 Data Retransmission timer in
798
+ milliseconds. A value of 2147483647
799
+ indicates no data retransmission timer in
800
+ use.""",
801
+ "reference" :
802
+ """10733 5.10.1 dataRetransmissionTime (opt);
803
+ See ISO 8208 Section 11.2.1, table 26""",
804
+ }, # column
805
+ "x25OperInterruptTimer" : {
806
+ "nodetype" : "column",
807
+ "moduleName" : "RFC1382-MIB",
808
+ "oid" : "1.3.6.1.2.1.10.5.2.1.11",
809
+ "status" : "current",
810
+ "syntax" : {
811
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
812
+ },
813
+ "access" : "readonly",
814
+ "description" :
815
+ """The T26 Interrupt timer in milliseconds. A
816
+ value of 2147483647 indicates interrupts are
817
+ not being used.""",
818
+ "reference" :
819
+ """10733 interruptTime;
820
+ See ISO 8208 Section 6.8.1, table 26""",
821
+ }, # column
822
+ "x25OperRejectTimer" : {
823
+ "nodetype" : "column",
824
+ "moduleName" : "RFC1382-MIB",
825
+ "oid" : "1.3.6.1.2.1.10.5.2.1.12",
826
+ "status" : "current",
827
+ "syntax" : {
828
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
829
+ },
830
+ "access" : "readonly",
831
+ "description" :
832
+ """The T27 Reject retransmission timer in
833
+ milliseconds. A value of 2147483647
834
+ indicates no reject timer in use.""",
835
+ "reference" :
836
+ """10733 5.10.1 dataRejectTime (opt);
837
+ See ISO 8208 Section 13.4.1, table 26""",
838
+ }, # column
839
+ "x25OperRegistrationRequestTimer" : {
840
+ "nodetype" : "column",
841
+ "moduleName" : "RFC1382-MIB",
842
+ "oid" : "1.3.6.1.2.1.10.5.2.1.13",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
846
+ },
847
+ "access" : "readonly",
848
+ "description" :
849
+ """The T28 registration timer in milliseconds.
850
+ A value of 2147483647 indicates no
851
+ registration timer in use.""",
852
+ "reference" :
853
+ """10733 5.8.1 registrationRequestTime (opt);
854
+ See ISO 8208 Section 13.1.1.1, table 26""",
855
+ }, # column
856
+ "x25OperMinimumRecallTimer" : {
857
+ "nodetype" : "column",
858
+ "moduleName" : "RFC1382-MIB",
859
+ "oid" : "1.3.6.1.2.1.10.5.2.1.14",
860
+ "status" : "current",
861
+ "syntax" : {
862
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
863
+ },
864
+ "access" : "readonly",
865
+ "description" :
866
+ """Minimum time interval between unsuccessful
867
+ call attempts in milliseconds.""",
868
+ "reference" :
869
+ """10733 5.9 minimum RecallTimer""",
870
+ }, # column
871
+ "x25OperRestartCount" : {
872
+ "nodetype" : "column",
873
+ "moduleName" : "RFC1382-MIB",
874
+ "oid" : "1.3.6.1.2.1.10.5.2.1.15",
875
+ "status" : "current",
876
+ "syntax" : {
877
+ "type" : {
878
+ "basetype" : "Integer32",
879
+ "ranges" : [
880
+ {
881
+ "min" : "0",
882
+ "max" : "65535"
883
+ },
884
+ ],
885
+ "range" : {
886
+ "min" : "0",
887
+ "max" : "65535"
888
+ },
889
+ },
890
+ },
891
+ "access" : "readonly",
892
+ "description" :
893
+ """The R20 restart retransmission count.""",
894
+ "reference" :
895
+ """10733 5.9 restartCount
896
+ See ISO 8208 Section 4.1, table 27""",
897
+ }, # column
898
+ "x25OperResetCount" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "RFC1382-MIB",
901
+ "oid" : "1.3.6.1.2.1.10.5.2.1.16",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : {
905
+ "basetype" : "Integer32",
906
+ "ranges" : [
907
+ {
908
+ "min" : "0",
909
+ "max" : "65535"
910
+ },
911
+ ],
912
+ "range" : {
913
+ "min" : "0",
914
+ "max" : "65535"
915
+ },
916
+ },
917
+ },
918
+ "access" : "readonly",
919
+ "description" :
920
+ """The r22 Reset retransmission count.""",
921
+ "reference" :
922
+ """10733 resetCount;
923
+ See section ISO 8208 8.1, table 27""",
924
+ }, # column
925
+ "x25OperClearCount" : {
926
+ "nodetype" : "column",
927
+ "moduleName" : "RFC1382-MIB",
928
+ "oid" : "1.3.6.1.2.1.10.5.2.1.17",
929
+ "status" : "current",
930
+ "syntax" : {
931
+ "type" : {
932
+ "basetype" : "Integer32",
933
+ "ranges" : [
934
+ {
935
+ "min" : "0",
936
+ "max" : "65535"
937
+ },
938
+ ],
939
+ "range" : {
940
+ "min" : "0",
941
+ "max" : "65535"
942
+ },
943
+ },
944
+ },
945
+ "access" : "readonly",
946
+ "description" :
947
+ """The r23 Clear retransmission count.""",
948
+ "reference" :
949
+ """10733 clearCount;
950
+ See ISO 8208 Section 5.5.1, table 27""",
951
+ }, # column
952
+ "x25OperDataRxmtCount" : {
953
+ "nodetype" : "column",
954
+ "moduleName" : "RFC1382-MIB",
955
+ "oid" : "1.3.6.1.2.1.10.5.2.1.18",
956
+ "status" : "current",
957
+ "syntax" : {
958
+ "type" : {
959
+ "basetype" : "Integer32",
960
+ "ranges" : [
961
+ {
962
+ "min" : "0",
963
+ "max" : "65535"
964
+ },
965
+ ],
966
+ "range" : {
967
+ "min" : "0",
968
+ "max" : "65535"
969
+ },
970
+ },
971
+ },
972
+ "access" : "readonly",
973
+ "description" :
974
+ """The R25 Data retransmission count. This
975
+ value is undefined if the
976
+ x25OperDataRxmtTimer indicates no timer in
977
+ use.""",
978
+ "reference" :
979
+ """10733 5.10.1 dataRetransmissionCount (opt);
980
+ See ISO 8208 Section 11.2.1, table 27""",
981
+ }, # column
982
+ "x25OperRejectCount" : {
983
+ "nodetype" : "column",
984
+ "moduleName" : "RFC1382-MIB",
985
+ "oid" : "1.3.6.1.2.1.10.5.2.1.19",
986
+ "status" : "current",
987
+ "syntax" : {
988
+ "type" : {
989
+ "basetype" : "Integer32",
990
+ "ranges" : [
991
+ {
992
+ "min" : "0",
993
+ "max" : "65535"
994
+ },
995
+ ],
996
+ "range" : {
997
+ "min" : "0",
998
+ "max" : "65535"
999
+ },
1000
+ },
1001
+ },
1002
+ "access" : "readonly",
1003
+ "description" :
1004
+ """The R27 reject retransmission count. This
1005
+ value is undefined if the x25OperRejectTimer
1006
+ indicates no timer in use.""",
1007
+ "reference" :
1008
+ """10733 5.10.1 dataRejectCount (opt)""",
1009
+ }, # column
1010
+ "x25OperRegistrationRequestCount" : {
1011
+ "nodetype" : "column",
1012
+ "moduleName" : "RFC1382-MIB",
1013
+ "oid" : "1.3.6.1.2.1.10.5.2.1.20",
1014
+ "status" : "current",
1015
+ "syntax" : {
1016
+ "type" : {
1017
+ "basetype" : "Integer32",
1018
+ "ranges" : [
1019
+ {
1020
+ "min" : "0",
1021
+ "max" : "65535"
1022
+ },
1023
+ ],
1024
+ "range" : {
1025
+ "min" : "0",
1026
+ "max" : "65535"
1027
+ },
1028
+ },
1029
+ },
1030
+ "access" : "readonly",
1031
+ "description" :
1032
+ """The R28 Registration retransmission Count.
1033
+ This value is undefined if the
1034
+ x25OperREgistrationRequestTimer indicates no
1035
+ timer in use.""",
1036
+ "reference" :
1037
+ """10733 5.8.1 registrationRequestCount (opt);
1038
+ See ISO 8208 Section 13.1.1.1, table 27""",
1039
+ }, # column
1040
+ "x25OperNumberPVCs" : {
1041
+ "nodetype" : "column",
1042
+ "moduleName" : "RFC1382-MIB",
1043
+ "oid" : "1.3.6.1.2.1.10.5.2.1.21",
1044
+ "status" : "current",
1045
+ "syntax" : {
1046
+ "type" : {
1047
+ "basetype" : "Integer32",
1048
+ "ranges" : [
1049
+ {
1050
+ "min" : "0",
1051
+ "max" : "4096"
1052
+ },
1053
+ ],
1054
+ "range" : {
1055
+ "min" : "0",
1056
+ "max" : "4096"
1057
+ },
1058
+ },
1059
+ },
1060
+ "access" : "readonly",
1061
+ "description" :
1062
+ """The number of PVC configured for this PLE.
1063
+ The PVCs use channel numbers from 1 to this
1064
+ number.""",
1065
+ }, # column
1066
+ "x25OperDefCallParamId" : {
1067
+ "nodetype" : "column",
1068
+ "moduleName" : "RFC1382-MIB",
1069
+ "oid" : "1.3.6.1.2.1.10.5.2.1.22",
1070
+ "status" : "current",
1071
+ "syntax" : {
1072
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1073
+ },
1074
+ "access" : "readonly",
1075
+ "description" :
1076
+ """This identifies the instance of the
1077
+ x25CallParmIndex for the entry in the
1078
+ x25CallParmTable that contains the default
1079
+ call parameters for this PLE.""",
1080
+ }, # column
1081
+ "x25OperLocalAddress" : {
1082
+ "nodetype" : "column",
1083
+ "moduleName" : "RFC1382-MIB",
1084
+ "oid" : "1.3.6.1.2.1.10.5.2.1.23",
1085
+ "status" : "current",
1086
+ "syntax" : {
1087
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
1088
+ },
1089
+ "access" : "readonly",
1090
+ "description" :
1091
+ """The local address for this PLE subnetwork.
1092
+ A zero length address maybe returned by PLEs
1093
+ that only support PVCs.""",
1094
+ "reference" :
1095
+ """10733 5.9 localDTEAddress""",
1096
+ }, # column
1097
+ "x25OperDataLinkId" : {
1098
+ "nodetype" : "column",
1099
+ "moduleName" : "RFC1382-MIB",
1100
+ "oid" : "1.3.6.1.2.1.10.5.2.1.24",
1101
+ "status" : "current",
1102
+ "syntax" : {
1103
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1104
+ },
1105
+ "access" : "readonly",
1106
+ "description" :
1107
+ """This identifies the instance of the index
1108
+ object in the first table of the most device
1109
+ specific MIB for the interface used by this
1110
+ PLE.""",
1111
+ }, # column
1112
+ "x25OperProtocolVersionSupported" : {
1113
+ "nodetype" : "column",
1114
+ "moduleName" : "RFC1382-MIB",
1115
+ "oid" : "1.3.6.1.2.1.10.5.2.1.25",
1116
+ "status" : "current",
1117
+ "syntax" : {
1118
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1119
+ },
1120
+ "access" : "readonly",
1121
+ "description" :
1122
+ """Identifies the version of the X.25 protocol
1123
+ this interface supports. Object identifiers
1124
+ for common versions are defined below in the
1125
+ x25ProtocolVersion subtree.""",
1126
+ "reference" :
1127
+ """10733 5.9 protocolVersionSupported""",
1128
+ }, # column
1129
+ "x25StatTable" : {
1130
+ "nodetype" : "table",
1131
+ "moduleName" : "RFC1382-MIB",
1132
+ "oid" : "1.3.6.1.2.1.10.5.3",
1133
+ "status" : "current",
1134
+ "description" :
1135
+ """Statistics information about this X.25
1136
+ PLE.""",
1137
+ }, # table
1138
+ "x25StatEntry" : {
1139
+ "nodetype" : "row",
1140
+ "moduleName" : "RFC1382-MIB",
1141
+ "oid" : "1.3.6.1.2.1.10.5.3.1",
1142
+ "status" : "current",
1143
+ "linkage" : [
1144
+ "x25StatIndex",
1145
+ ],
1146
+ "description" :
1147
+ """Entries of the x25StatTable.""",
1148
+ }, # row
1149
+ "x25StatIndex" : {
1150
+ "nodetype" : "column",
1151
+ "moduleName" : "RFC1382-MIB",
1152
+ "oid" : "1.3.6.1.2.1.10.5.3.1.1",
1153
+ "status" : "current",
1154
+ "syntax" : {
1155
+ "type" : { "module" :"RFC1381-MIB", "name" : "IfIndexType"},
1156
+ },
1157
+ "access" : "readonly",
1158
+ "description" :
1159
+ """The ifIndex value for the X.25 interface.""",
1160
+ }, # column
1161
+ "x25StatInCalls" : {
1162
+ "nodetype" : "column",
1163
+ "moduleName" : "RFC1382-MIB",
1164
+ "oid" : "1.3.6.1.2.1.10.5.3.1.2",
1165
+ "status" : "current",
1166
+ "syntax" : {
1167
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1168
+ },
1169
+ "access" : "readonly",
1170
+ "description" :
1171
+ """The number of incoming calls received.""",
1172
+ }, # column
1173
+ "x25StatInCallRefusals" : {
1174
+ "nodetype" : "column",
1175
+ "moduleName" : "RFC1382-MIB",
1176
+ "oid" : "1.3.6.1.2.1.10.5.3.1.3",
1177
+ "status" : "current",
1178
+ "syntax" : {
1179
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1180
+ },
1181
+ "access" : "readonly",
1182
+ "description" :
1183
+ """The number of incoming calls refused. This
1184
+ includes calls refused by the PLE and by
1185
+ higher layers. This also includes calls
1186
+ cleared because of restricted fast select.""",
1187
+ }, # column
1188
+ "x25StatInProviderInitiatedClears" : {
1189
+ "nodetype" : "column",
1190
+ "moduleName" : "RFC1382-MIB",
1191
+ "oid" : "1.3.6.1.2.1.10.5.3.1.4",
1192
+ "status" : "current",
1193
+ "syntax" : {
1194
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1195
+ },
1196
+ "access" : "readonly",
1197
+ "description" :
1198
+ """The number of clear requests with a cause
1199
+ code other than DTE initiated.""",
1200
+ "reference" :
1201
+ """10733 providerInitiatedDisconnect""",
1202
+ }, # column
1203
+ "x25StatInRemotelyInitiatedResets" : {
1204
+ "nodetype" : "column",
1205
+ "moduleName" : "RFC1382-MIB",
1206
+ "oid" : "1.3.6.1.2.1.10.5.3.1.5",
1207
+ "status" : "current",
1208
+ "syntax" : {
1209
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1210
+ },
1211
+ "access" : "readonly",
1212
+ "description" :
1213
+ """The number of reset requests received with
1214
+ cause code DTE initiated.""",
1215
+ "reference" :
1216
+ """10733 remotelyInitiatedResets""",
1217
+ }, # column
1218
+ "x25StatInProviderInitiatedResets" : {
1219
+ "nodetype" : "column",
1220
+ "moduleName" : "RFC1382-MIB",
1221
+ "oid" : "1.3.6.1.2.1.10.5.3.1.6",
1222
+ "status" : "current",
1223
+ "syntax" : {
1224
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1225
+ },
1226
+ "access" : "readonly",
1227
+ "description" :
1228
+ """The number of reset requests received with
1229
+ cause code other than DTE initiated.""",
1230
+ "reference" :
1231
+ """10733 ProviderInitiatedResets""",
1232
+ }, # column
1233
+ "x25StatInRestarts" : {
1234
+ "nodetype" : "column",
1235
+ "moduleName" : "RFC1382-MIB",
1236
+ "oid" : "1.3.6.1.2.1.10.5.3.1.7",
1237
+ "status" : "current",
1238
+ "syntax" : {
1239
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1240
+ },
1241
+ "access" : "readonly",
1242
+ "description" :
1243
+ """The number of remotely initiated (including
1244
+ provider initiated) restarts experienced by
1245
+ the PLE excluding the restart associated
1246
+ with bringing up the PLE interface. This
1247
+ only counts restarts received when the PLE
1248
+ already has an established connection with
1249
+ the remove PLE.""",
1250
+ "reference" :
1251
+ """10733 5.9 remotelyInitiatedRestarts""",
1252
+ }, # column
1253
+ "x25StatInDataPackets" : {
1254
+ "nodetype" : "column",
1255
+ "moduleName" : "RFC1382-MIB",
1256
+ "oid" : "1.3.6.1.2.1.10.5.3.1.8",
1257
+ "status" : "current",
1258
+ "syntax" : {
1259
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1260
+ },
1261
+ "access" : "readonly",
1262
+ "description" :
1263
+ """The number of data packets received.""",
1264
+ "reference" :
1265
+ """10733 5.9 dataPacketsReceived.""",
1266
+ }, # column
1267
+ "x25StatInAccusedOfProtocolErrors" : {
1268
+ "nodetype" : "column",
1269
+ "moduleName" : "RFC1382-MIB",
1270
+ "oid" : "1.3.6.1.2.1.10.5.3.1.9",
1271
+ "status" : "current",
1272
+ "syntax" : {
1273
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1274
+ },
1275
+ "access" : "readonly",
1276
+ "description" :
1277
+ """The number of packets received containing a
1278
+ procedure error cause code. These include
1279
+ clear, reset, restart, or diagnostic
1280
+ packets.""",
1281
+ "reference" :
1282
+ """CD 10733 5.9 accusedOfProtocolError""",
1283
+ }, # column
1284
+ "x25StatInInterrupts" : {
1285
+ "nodetype" : "column",
1286
+ "moduleName" : "RFC1382-MIB",
1287
+ "oid" : "1.3.6.1.2.1.10.5.3.1.10",
1288
+ "status" : "current",
1289
+ "syntax" : {
1290
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1291
+ },
1292
+ "access" : "readonly",
1293
+ "description" :
1294
+ """The number of interrupt packets received by
1295
+ the PLE or over the PVC/VC.""",
1296
+ "reference" :
1297
+ """10733 interruptPacketsReceived""",
1298
+ }, # column
1299
+ "x25StatOutCallAttempts" : {
1300
+ "nodetype" : "column",
1301
+ "moduleName" : "RFC1382-MIB",
1302
+ "oid" : "1.3.6.1.2.1.10.5.3.1.11",
1303
+ "status" : "current",
1304
+ "syntax" : {
1305
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1306
+ },
1307
+ "access" : "readonly",
1308
+ "description" :
1309
+ """The number of calls attempted.""",
1310
+ "reference" :
1311
+ """10733 5.9 callAttempts""",
1312
+ }, # column
1313
+ "x25StatOutCallFailures" : {
1314
+ "nodetype" : "column",
1315
+ "moduleName" : "RFC1382-MIB",
1316
+ "oid" : "1.3.6.1.2.1.10.5.3.1.12",
1317
+ "status" : "current",
1318
+ "syntax" : {
1319
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1320
+ },
1321
+ "access" : "readonly",
1322
+ "description" :
1323
+ """The number of call attempts which failed.
1324
+ This includes calls that were cleared
1325
+ because of restrictive fast select.""",
1326
+ }, # column
1327
+ "x25StatOutInterrupts" : {
1328
+ "nodetype" : "column",
1329
+ "moduleName" : "RFC1382-MIB",
1330
+ "oid" : "1.3.6.1.2.1.10.5.3.1.13",
1331
+ "status" : "current",
1332
+ "syntax" : {
1333
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1334
+ },
1335
+ "access" : "readonly",
1336
+ "description" :
1337
+ """The number of interrupt packets send by the
1338
+ PLE or over the PVC/VC.""",
1339
+ "reference" :
1340
+ """10733 InterruptPacketsSent""",
1341
+ }, # column
1342
+ "x25StatOutDataPackets" : {
1343
+ "nodetype" : "column",
1344
+ "moduleName" : "RFC1382-MIB",
1345
+ "oid" : "1.3.6.1.2.1.10.5.3.1.14",
1346
+ "status" : "current",
1347
+ "syntax" : {
1348
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1349
+ },
1350
+ "access" : "readonly",
1351
+ "description" :
1352
+ """The number of data packets sent by this
1353
+ PLE.""",
1354
+ "reference" :
1355
+ """10733 dataPacketSent""",
1356
+ }, # column
1357
+ "x25StatOutgoingCircuits" : {
1358
+ "nodetype" : "column",
1359
+ "moduleName" : "RFC1382-MIB",
1360
+ "oid" : "1.3.6.1.2.1.10.5.3.1.15",
1361
+ "status" : "current",
1362
+ "syntax" : {
1363
+ "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
1364
+ },
1365
+ "access" : "readonly",
1366
+ "description" :
1367
+ """The number of active outgoing circuits.
1368
+ This includes call requests sent but not yet
1369
+ confirmed. This does not count PVCs.""",
1370
+ }, # column
1371
+ "x25StatIncomingCircuits" : {
1372
+ "nodetype" : "column",
1373
+ "moduleName" : "RFC1382-MIB",
1374
+ "oid" : "1.3.6.1.2.1.10.5.3.1.16",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
1378
+ },
1379
+ "access" : "readonly",
1380
+ "description" :
1381
+ """The number of active Incoming Circuits.
1382
+ This includes call indications received but
1383
+ not yet acknowledged. This does not count
1384
+ PVCs.""",
1385
+ }, # column
1386
+ "x25StatTwowayCircuits" : {
1387
+ "nodetype" : "column",
1388
+ "moduleName" : "RFC1382-MIB",
1389
+ "oid" : "1.3.6.1.2.1.10.5.3.1.17",
1390
+ "status" : "current",
1391
+ "syntax" : {
1392
+ "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
1393
+ },
1394
+ "access" : "readonly",
1395
+ "description" :
1396
+ """The number of active two-way Circuits.
1397
+ This includes call requests sent but not yet
1398
+ confirmed. This does not count PVCs.""",
1399
+ }, # column
1400
+ "x25StatRestartTimeouts" : {
1401
+ "nodetype" : "column",
1402
+ "moduleName" : "RFC1382-MIB",
1403
+ "oid" : "1.3.6.1.2.1.10.5.3.1.18",
1404
+ "status" : "current",
1405
+ "syntax" : {
1406
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1407
+ },
1408
+ "access" : "readonly",
1409
+ "description" :
1410
+ """The number of times the T20 restart timer
1411
+ expired.""",
1412
+ "reference" :
1413
+ """10733 5.9 restartTimeouts""",
1414
+ }, # column
1415
+ "x25StatCallTimeouts" : {
1416
+ "nodetype" : "column",
1417
+ "moduleName" : "RFC1382-MIB",
1418
+ "oid" : "1.3.6.1.2.1.10.5.3.1.19",
1419
+ "status" : "current",
1420
+ "syntax" : {
1421
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1422
+ },
1423
+ "access" : "readonly",
1424
+ "description" :
1425
+ """The number of times the T21 call timer
1426
+ expired.""",
1427
+ "reference" :
1428
+ """10733 5.9 callTimeouts""",
1429
+ }, # column
1430
+ "x25StatResetTimeouts" : {
1431
+ "nodetype" : "column",
1432
+ "moduleName" : "RFC1382-MIB",
1433
+ "oid" : "1.3.6.1.2.1.10.5.3.1.20",
1434
+ "status" : "current",
1435
+ "syntax" : {
1436
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1437
+ },
1438
+ "access" : "readonly",
1439
+ "description" :
1440
+ """The number of times the T22 reset timer
1441
+ expired.""",
1442
+ "reference" :
1443
+ """10733 5.9 resetTimeouts""",
1444
+ }, # column
1445
+ "x25StatClearTimeouts" : {
1446
+ "nodetype" : "column",
1447
+ "moduleName" : "RFC1382-MIB",
1448
+ "oid" : "1.3.6.1.2.1.10.5.3.1.21",
1449
+ "status" : "current",
1450
+ "syntax" : {
1451
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1452
+ },
1453
+ "access" : "readonly",
1454
+ "description" :
1455
+ """The number of times the T23 clear timer
1456
+ expired.""",
1457
+ "reference" :
1458
+ """10733 5.9 clearTimeouts""",
1459
+ }, # column
1460
+ "x25StatDataRxmtTimeouts" : {
1461
+ "nodetype" : "column",
1462
+ "moduleName" : "RFC1382-MIB",
1463
+ "oid" : "1.3.6.1.2.1.10.5.3.1.22",
1464
+ "status" : "current",
1465
+ "syntax" : {
1466
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1467
+ },
1468
+ "access" : "readonly",
1469
+ "description" :
1470
+ """The number of times the T25 data timer
1471
+ expired.""",
1472
+ "reference" :
1473
+ """10733 5.9 dataRetransmissionsTimerExpiries""",
1474
+ }, # column
1475
+ "x25StatInterruptTimeouts" : {
1476
+ "nodetype" : "column",
1477
+ "moduleName" : "RFC1382-MIB",
1478
+ "oid" : "1.3.6.1.2.1.10.5.3.1.23",
1479
+ "status" : "current",
1480
+ "syntax" : {
1481
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1482
+ },
1483
+ "access" : "readonly",
1484
+ "description" :
1485
+ """The number of times the T26 interrupt timer
1486
+ expired.""",
1487
+ "reference" :
1488
+ """10733 5.9 interruptTimerExpires""",
1489
+ }, # column
1490
+ "x25StatRetryCountExceededs" : {
1491
+ "nodetype" : "column",
1492
+ "moduleName" : "RFC1382-MIB",
1493
+ "oid" : "1.3.6.1.2.1.10.5.3.1.24",
1494
+ "status" : "current",
1495
+ "syntax" : {
1496
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1497
+ },
1498
+ "access" : "readonly",
1499
+ "description" :
1500
+ """The number of times a retry counter was
1501
+ exhausted.""",
1502
+ "reference" :
1503
+ """10733 5.9 retryCountsExceeded""",
1504
+ }, # column
1505
+ "x25StatClearCountExceededs" : {
1506
+ "nodetype" : "column",
1507
+ "moduleName" : "RFC1382-MIB",
1508
+ "oid" : "1.3.6.1.2.1.10.5.3.1.25",
1509
+ "status" : "current",
1510
+ "syntax" : {
1511
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1512
+ },
1513
+ "access" : "readonly",
1514
+ "description" :
1515
+ """The number of times the R23 clear count was
1516
+ exceeded.""",
1517
+ "reference" :
1518
+ """10733 5.9 clearCountsExceeded""",
1519
+ }, # column
1520
+ "x25ChannelTable" : {
1521
+ "nodetype" : "table",
1522
+ "moduleName" : "RFC1382-MIB",
1523
+ "oid" : "1.3.6.1.2.1.10.5.4",
1524
+ "status" : "current",
1525
+ "description" :
1526
+ """These objects contain information about the
1527
+ channel number configuration in an X.25 PLE.
1528
+ These values are the configured values.
1529
+ changes in these values after the interfaces
1530
+ has started may not be reflected in the
1531
+ operating PLE.""",
1532
+ "reference" :
1533
+ """See ISO 8208, Section 3.7""",
1534
+ }, # table
1535
+ "x25ChannelEntry" : {
1536
+ "nodetype" : "row",
1537
+ "moduleName" : "RFC1382-MIB",
1538
+ "oid" : "1.3.6.1.2.1.10.5.4.1",
1539
+ "status" : "current",
1540
+ "linkage" : [
1541
+ "x25ChannelIndex",
1542
+ ],
1543
+ "description" :
1544
+ """Entries of x25ChannelTable.""",
1545
+ "reference" :
1546
+ """This provides the information available
1547
+ in 10733 logicalChannelAssignments.""",
1548
+ }, # row
1549
+ "x25ChannelIndex" : {
1550
+ "nodetype" : "column",
1551
+ "moduleName" : "RFC1382-MIB",
1552
+ "oid" : "1.3.6.1.2.1.10.5.4.1.1",
1553
+ "status" : "current",
1554
+ "syntax" : {
1555
+ "type" : { "module" :"RFC1381-MIB", "name" : "IfIndexType"},
1556
+ },
1557
+ "access" : "readonly",
1558
+ "description" :
1559
+ """The ifIndex value for the X.25 Interface.""",
1560
+ }, # column
1561
+ "x25ChannelLIC" : {
1562
+ "nodetype" : "column",
1563
+ "moduleName" : "RFC1382-MIB",
1564
+ "oid" : "1.3.6.1.2.1.10.5.4.1.2",
1565
+ "status" : "current",
1566
+ "syntax" : {
1567
+ "type" : {
1568
+ "basetype" : "Integer32",
1569
+ "ranges" : [
1570
+ {
1571
+ "min" : "0",
1572
+ "max" : "4095"
1573
+ },
1574
+ ],
1575
+ "range" : {
1576
+ "min" : "0",
1577
+ "max" : "4095"
1578
+ },
1579
+ },
1580
+ },
1581
+ "access" : "readwrite",
1582
+ "description" :
1583
+ """Lowest Incoming channel.""",
1584
+ }, # column
1585
+ "x25ChannelHIC" : {
1586
+ "nodetype" : "column",
1587
+ "moduleName" : "RFC1382-MIB",
1588
+ "oid" : "1.3.6.1.2.1.10.5.4.1.3",
1589
+ "status" : "current",
1590
+ "syntax" : {
1591
+ "type" : {
1592
+ "basetype" : "Integer32",
1593
+ "ranges" : [
1594
+ {
1595
+ "min" : "0",
1596
+ "max" : "4095"
1597
+ },
1598
+ ],
1599
+ "range" : {
1600
+ "min" : "0",
1601
+ "max" : "4095"
1602
+ },
1603
+ },
1604
+ },
1605
+ "access" : "readwrite",
1606
+ "description" :
1607
+ """Highest Incoming channel. A value of zero
1608
+ indicates no channels in this range.""",
1609
+ }, # column
1610
+ "x25ChannelLTC" : {
1611
+ "nodetype" : "column",
1612
+ "moduleName" : "RFC1382-MIB",
1613
+ "oid" : "1.3.6.1.2.1.10.5.4.1.4",
1614
+ "status" : "current",
1615
+ "syntax" : {
1616
+ "type" : {
1617
+ "basetype" : "Integer32",
1618
+ "ranges" : [
1619
+ {
1620
+ "min" : "0",
1621
+ "max" : "4095"
1622
+ },
1623
+ ],
1624
+ "range" : {
1625
+ "min" : "0",
1626
+ "max" : "4095"
1627
+ },
1628
+ },
1629
+ },
1630
+ "access" : "readwrite",
1631
+ "description" :
1632
+ """Lowest Two-way channel.""",
1633
+ }, # column
1634
+ "x25ChannelHTC" : {
1635
+ "nodetype" : "column",
1636
+ "moduleName" : "RFC1382-MIB",
1637
+ "oid" : "1.3.6.1.2.1.10.5.4.1.5",
1638
+ "status" : "current",
1639
+ "syntax" : {
1640
+ "type" : {
1641
+ "basetype" : "Integer32",
1642
+ "ranges" : [
1643
+ {
1644
+ "min" : "0",
1645
+ "max" : "4095"
1646
+ },
1647
+ ],
1648
+ "range" : {
1649
+ "min" : "0",
1650
+ "max" : "4095"
1651
+ },
1652
+ },
1653
+ },
1654
+ "access" : "readwrite",
1655
+ "description" :
1656
+ """Highest Two-way channel. A value of zero
1657
+ indicates no channels in this range.""",
1658
+ }, # column
1659
+ "x25ChannelLOC" : {
1660
+ "nodetype" : "column",
1661
+ "moduleName" : "RFC1382-MIB",
1662
+ "oid" : "1.3.6.1.2.1.10.5.4.1.6",
1663
+ "status" : "current",
1664
+ "syntax" : {
1665
+ "type" : {
1666
+ "basetype" : "Integer32",
1667
+ "ranges" : [
1668
+ {
1669
+ "min" : "0",
1670
+ "max" : "4095"
1671
+ },
1672
+ ],
1673
+ "range" : {
1674
+ "min" : "0",
1675
+ "max" : "4095"
1676
+ },
1677
+ },
1678
+ },
1679
+ "access" : "readwrite",
1680
+ "description" :
1681
+ """Lowest outgoing channel.""",
1682
+ }, # column
1683
+ "x25ChannelHOC" : {
1684
+ "nodetype" : "column",
1685
+ "moduleName" : "RFC1382-MIB",
1686
+ "oid" : "1.3.6.1.2.1.10.5.4.1.7",
1687
+ "status" : "current",
1688
+ "syntax" : {
1689
+ "type" : {
1690
+ "basetype" : "Integer32",
1691
+ "ranges" : [
1692
+ {
1693
+ "min" : "0",
1694
+ "max" : "4095"
1695
+ },
1696
+ ],
1697
+ "range" : {
1698
+ "min" : "0",
1699
+ "max" : "4095"
1700
+ },
1701
+ },
1702
+ },
1703
+ "access" : "readwrite",
1704
+ "description" :
1705
+ """Highest outgoing channel. A value of zero
1706
+ indicates no channels in this range.""",
1707
+ }, # column
1708
+ "x25CircuitTable" : {
1709
+ "nodetype" : "table",
1710
+ "moduleName" : "RFC1382-MIB",
1711
+ "oid" : "1.3.6.1.2.1.10.5.5",
1712
+ "status" : "current",
1713
+ "description" :
1714
+ """These objects contain general information
1715
+ about a specific circuit of an X.25 PLE.""",
1716
+ }, # table
1717
+ "x25CircuitEntry" : {
1718
+ "nodetype" : "row",
1719
+ "moduleName" : "RFC1382-MIB",
1720
+ "oid" : "1.3.6.1.2.1.10.5.5.1",
1721
+ "status" : "current",
1722
+ "linkage" : [
1723
+ "x25CircuitIndex",
1724
+ "x25CircuitChannel",
1725
+ ],
1726
+ "description" :
1727
+ """Entries of x25CircuitTable.""",
1728
+ }, # row
1729
+ "x25CircuitIndex" : {
1730
+ "nodetype" : "column",
1731
+ "moduleName" : "RFC1382-MIB",
1732
+ "oid" : "1.3.6.1.2.1.10.5.5.1.1",
1733
+ "status" : "current",
1734
+ "syntax" : {
1735
+ "type" : { "module" :"RFC1381-MIB", "name" : "IfIndexType"},
1736
+ },
1737
+ "access" : "readonly",
1738
+ "description" :
1739
+ """The ifIndex value for the X.25 Interface.""",
1740
+ }, # column
1741
+ "x25CircuitChannel" : {
1742
+ "nodetype" : "column",
1743
+ "moduleName" : "RFC1382-MIB",
1744
+ "oid" : "1.3.6.1.2.1.10.5.5.1.2",
1745
+ "status" : "current",
1746
+ "syntax" : {
1747
+ "type" : {
1748
+ "basetype" : "Integer32",
1749
+ "ranges" : [
1750
+ {
1751
+ "min" : "0",
1752
+ "max" : "4095"
1753
+ },
1754
+ ],
1755
+ "range" : {
1756
+ "min" : "0",
1757
+ "max" : "4095"
1758
+ },
1759
+ },
1760
+ },
1761
+ "access" : "readonly",
1762
+ "description" :
1763
+ """The channel number for this circuit.""",
1764
+ }, # column
1765
+ "x25CircuitStatus" : {
1766
+ "nodetype" : "column",
1767
+ "moduleName" : "RFC1382-MIB",
1768
+ "oid" : "1.3.6.1.2.1.10.5.5.1.3",
1769
+ "status" : "current",
1770
+ "syntax" : {
1771
+ "type" : {
1772
+ "basetype" : "Enumeration",
1773
+ "invalid" : {
1774
+ "nodetype" : "namednumber",
1775
+ "number" : "1"
1776
+ },
1777
+ "closed" : {
1778
+ "nodetype" : "namednumber",
1779
+ "number" : "2"
1780
+ },
1781
+ "calling" : {
1782
+ "nodetype" : "namednumber",
1783
+ "number" : "3"
1784
+ },
1785
+ "open" : {
1786
+ "nodetype" : "namednumber",
1787
+ "number" : "4"
1788
+ },
1789
+ "clearing" : {
1790
+ "nodetype" : "namednumber",
1791
+ "number" : "5"
1792
+ },
1793
+ "pvc" : {
1794
+ "nodetype" : "namednumber",
1795
+ "number" : "6"
1796
+ },
1797
+ "pvcResetting" : {
1798
+ "nodetype" : "namednumber",
1799
+ "number" : "7"
1800
+ },
1801
+ "startClear" : {
1802
+ "nodetype" : "namednumber",
1803
+ "number" : "8"
1804
+ },
1805
+ "startPvcResetting" : {
1806
+ "nodetype" : "namednumber",
1807
+ "number" : "9"
1808
+ },
1809
+ "other" : {
1810
+ "nodetype" : "namednumber",
1811
+ "number" : "10"
1812
+ },
1813
+ },
1814
+ },
1815
+ "access" : "readwrite",
1816
+ "description" :
1817
+ """This object reports the current status of
1818
+ the circuit.
1819
+
1820
+ An existing instance of this object can only
1821
+ be set to startClear, startPvcResetting, or
1822
+ invalid. An instance with the value calling
1823
+ or open can only be set to startClear and
1824
+ that action will start clearing the circuit.
1825
+ An instance with the value PVC can only be
1826
+ set to startPvcResetting or invalid and that
1827
+ action resets the PVC or deletes the circuit
1828
+ respectively. The values startClear or
1829
+ startPvcResetting will never be returned by
1830
+ an agent. An attempt to set the status of
1831
+ an existing instance to a value other than
1832
+ one of these values will result in an error.
1833
+
1834
+ A non-existing instance can be set to PVC to
1835
+ create a PVC if the implementation supports
1836
+ dynamic creation of PVCs. Some
1837
+ implementations may only allow creation and
1838
+ deletion of PVCs if the interface is down.
1839
+ Since the instance identifier will supply
1840
+ the PLE index and the channel number,
1841
+ setting this object alone supplies
1842
+ sufficient information to create the
1843
+ instance. All the DEFVAL clauses for the
1844
+ other objects of this table are appropriate
1845
+ for creating a PVC; PLEs creating entries
1846
+ for placed or accepted calls will use values
1847
+ appropriate for the call rather than the
1848
+ value of the DEFVAL clause. Two managers
1849
+ trying to create the same PVC can determine
1850
+ from the return code which manager succeeded
1851
+ and which failed (the failing manager fails
1852
+ because it can not set a value of PVC for an
1853
+ existing object).
1854
+ An entry in the closed or invalid state may
1855
+ be deleted or reused at the agent's
1856
+ convence. If the entry is kept in the
1857
+ closed state, the values of the parameters
1858
+ associated with the entry must be correct.
1859
+ Closed implies the values in the circuit
1860
+ table are correct.
1861
+
1862
+ The value of invalid indicates the other
1863
+ values in the table are invalid. Many
1864
+ agents may never return a value of invalid
1865
+ because they dynamically allocate and free
1866
+ unused table entries. An agent for a
1867
+ statically configured systems can return
1868
+ invalid to indicate the entry has not yet
1869
+ been used so the counters contain no
1870
+ information.""",
1871
+ "reference" :
1872
+ """See ISO 8208,
1873
+ table 33 for (p<n>) state table""",
1874
+ }, # column
1875
+ "x25CircuitEstablishTime" : {
1876
+ "nodetype" : "column",
1877
+ "moduleName" : "RFC1382-MIB",
1878
+ "oid" : "1.3.6.1.2.1.10.5.5.1.4",
1879
+ "status" : "current",
1880
+ "syntax" : {
1881
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
1882
+ },
1883
+ "access" : "readonly",
1884
+ "description" :
1885
+ """The value of sysUpTime when the channel was
1886
+ associated with this circuit. For outgoing
1887
+ SVCs, this is the time the first call packet
1888
+ was sent. For incoming SVCs, this is the
1889
+ time the call indication was received. For
1890
+ PVCs this is the time the PVC was able to
1891
+ pass data to a higher layer entity without
1892
+ loss of data.""",
1893
+ }, # column
1894
+ "x25CircuitDirection" : {
1895
+ "nodetype" : "column",
1896
+ "moduleName" : "RFC1382-MIB",
1897
+ "oid" : "1.3.6.1.2.1.10.5.5.1.5",
1898
+ "status" : "current",
1899
+ "syntax" : {
1900
+ "type" : {
1901
+ "basetype" : "Enumeration",
1902
+ "incoming" : {
1903
+ "nodetype" : "namednumber",
1904
+ "number" : "1"
1905
+ },
1906
+ "outgoing" : {
1907
+ "nodetype" : "namednumber",
1908
+ "number" : "2"
1909
+ },
1910
+ "pvc" : {
1911
+ "nodetype" : "namednumber",
1912
+ "number" : "3"
1913
+ },
1914
+ },
1915
+ },
1916
+ "access" : "readwrite",
1917
+ "default" : "pvc",
1918
+ "description" :
1919
+ """The direction of the call that established
1920
+ this circuit.""",
1921
+ "reference" :
1922
+ """10733 direction""",
1923
+ }, # column
1924
+ "x25CircuitInOctets" : {
1925
+ "nodetype" : "column",
1926
+ "moduleName" : "RFC1382-MIB",
1927
+ "oid" : "1.3.6.1.2.1.10.5.5.1.6",
1928
+ "status" : "current",
1929
+ "syntax" : {
1930
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1931
+ },
1932
+ "access" : "readonly",
1933
+ "description" :
1934
+ """The number of octets of user data delivered
1935
+ to upper layer.""",
1936
+ "reference" :
1937
+ """5.11 octetsReceivedCounter""",
1938
+ }, # column
1939
+ "x25CircuitInPdus" : {
1940
+ "nodetype" : "column",
1941
+ "moduleName" : "RFC1382-MIB",
1942
+ "oid" : "1.3.6.1.2.1.10.5.5.1.7",
1943
+ "status" : "current",
1944
+ "syntax" : {
1945
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1946
+ },
1947
+ "access" : "readonly",
1948
+ "description" :
1949
+ """The number of PDUs received for this
1950
+ circuit.""",
1951
+ "reference" :
1952
+ """10733 5.11 dataPacketsReceived""",
1953
+ }, # column
1954
+ "x25CircuitInRemotelyInitiatedResets" : {
1955
+ "nodetype" : "column",
1956
+ "moduleName" : "RFC1382-MIB",
1957
+ "oid" : "1.3.6.1.2.1.10.5.5.1.8",
1958
+ "status" : "current",
1959
+ "syntax" : {
1960
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1961
+ },
1962
+ "access" : "readonly",
1963
+ "description" :
1964
+ """The number of Resets received for this
1965
+ circuit with cause code of DTE initiated.""",
1966
+ "reference" :
1967
+ """10733 remotelyInitiatedResets""",
1968
+ }, # column
1969
+ "x25CircuitInProviderInitiatedResets" : {
1970
+ "nodetype" : "column",
1971
+ "moduleName" : "RFC1382-MIB",
1972
+ "oid" : "1.3.6.1.2.1.10.5.5.1.9",
1973
+ "status" : "current",
1974
+ "syntax" : {
1975
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1976
+ },
1977
+ "access" : "readonly",
1978
+ "description" :
1979
+ """The number of Resets received for this
1980
+ circuit with cause code other than DTE
1981
+ initiated.""",
1982
+ "reference" :
1983
+ """10733 ProviderInitiatedResets""",
1984
+ }, # column
1985
+ "x25CircuitInInterrupts" : {
1986
+ "nodetype" : "column",
1987
+ "moduleName" : "RFC1382-MIB",
1988
+ "oid" : "1.3.6.1.2.1.10.5.5.1.10",
1989
+ "status" : "current",
1990
+ "syntax" : {
1991
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1992
+ },
1993
+ "access" : "readonly",
1994
+ "description" :
1995
+ """The number of interrupt packets received
1996
+ for this circuit.""",
1997
+ "reference" :
1998
+ """10733 interruptPacketsReceived""",
1999
+ }, # column
2000
+ "x25CircuitOutOctets" : {
2001
+ "nodetype" : "column",
2002
+ "moduleName" : "RFC1382-MIB",
2003
+ "oid" : "1.3.6.1.2.1.10.5.5.1.11",
2004
+ "status" : "current",
2005
+ "syntax" : {
2006
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2007
+ },
2008
+ "access" : "readonly",
2009
+ "description" :
2010
+ """The number of octets of user data sent for
2011
+ this circuit.""",
2012
+ "reference" :
2013
+ """10733 5.11 octetsSentCounter""",
2014
+ }, # column
2015
+ "x25CircuitOutPdus" : {
2016
+ "nodetype" : "column",
2017
+ "moduleName" : "RFC1382-MIB",
2018
+ "oid" : "1.3.6.1.2.1.10.5.5.1.12",
2019
+ "status" : "current",
2020
+ "syntax" : {
2021
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2022
+ },
2023
+ "access" : "readonly",
2024
+ "description" :
2025
+ """The number of PDUs sent for this circuit.""",
2026
+ "reference" :
2027
+ """10733 5.11 dataPacketsSent""",
2028
+ }, # column
2029
+ "x25CircuitOutInterrupts" : {
2030
+ "nodetype" : "column",
2031
+ "moduleName" : "RFC1382-MIB",
2032
+ "oid" : "1.3.6.1.2.1.10.5.5.1.13",
2033
+ "status" : "current",
2034
+ "syntax" : {
2035
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2036
+ },
2037
+ "access" : "readonly",
2038
+ "description" :
2039
+ """The number of interrupt packets sent on
2040
+ this circuit.""",
2041
+ "reference" :
2042
+ """10733 interruptPacketsSent""",
2043
+ }, # column
2044
+ "x25CircuitDataRetransmissionTimeouts" : {
2045
+ "nodetype" : "column",
2046
+ "moduleName" : "RFC1382-MIB",
2047
+ "oid" : "1.3.6.1.2.1.10.5.5.1.14",
2048
+ "status" : "current",
2049
+ "syntax" : {
2050
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2051
+ },
2052
+ "access" : "readonly",
2053
+ "description" :
2054
+ """The number of times the T25 data
2055
+ retransmission timer expired for this
2056
+ circuit.""",
2057
+ "reference" :
2058
+ """10733 5.11 dataRetransmissionTimerExpiries""",
2059
+ }, # column
2060
+ "x25CircuitResetTimeouts" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "RFC1382-MIB",
2063
+ "oid" : "1.3.6.1.2.1.10.5.5.1.15",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2067
+ },
2068
+ "access" : "readonly",
2069
+ "description" :
2070
+ """The number of times the T22 reset timer
2071
+ expired for this circuit.""",
2072
+ "reference" :
2073
+ """10733 5.11 resetTimeouts""",
2074
+ }, # column
2075
+ "x25CircuitInterruptTimeouts" : {
2076
+ "nodetype" : "column",
2077
+ "moduleName" : "RFC1382-MIB",
2078
+ "oid" : "1.3.6.1.2.1.10.5.5.1.16",
2079
+ "status" : "current",
2080
+ "syntax" : {
2081
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2082
+ },
2083
+ "access" : "readonly",
2084
+ "description" :
2085
+ """The number of times the T26 Interrupt timer
2086
+ expired for this circuit.""",
2087
+ "reference" :
2088
+ """10733 interruptTimerExpiries""",
2089
+ }, # column
2090
+ "x25CircuitCallParamId" : {
2091
+ "nodetype" : "column",
2092
+ "moduleName" : "RFC1382-MIB",
2093
+ "oid" : "1.3.6.1.2.1.10.5.5.1.17",
2094
+ "status" : "current",
2095
+ "syntax" : {
2096
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
2097
+ },
2098
+ "access" : "readwrite",
2099
+ "default" : "0.0",
2100
+ "description" :
2101
+ """This identifies the instance of the
2102
+ x25CallParmIndex for the entry in the
2103
+ x25CallParmTable which contains the call
2104
+ parameters in use with this circuit. The
2105
+ entry referenced must contain the values
2106
+ that are currently in use by the circuit
2107
+ rather than proposed values. A value of
2108
+ NULL indicates the circuit is a PVC or is
2109
+ using all the default parameters.""",
2110
+ }, # column
2111
+ "x25CircuitCalledDteAddress" : {
2112
+ "nodetype" : "column",
2113
+ "moduleName" : "RFC1382-MIB",
2114
+ "oid" : "1.3.6.1.2.1.10.5.5.1.18",
2115
+ "status" : "current",
2116
+ "syntax" : {
2117
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
2118
+ },
2119
+ "access" : "readwrite",
2120
+ "default" : "",
2121
+ "description" :
2122
+ """For incoming calls, this is the called
2123
+ address from the call indication packet.
2124
+ For outgoing calls, this is the called
2125
+ address from the call confirmation packet.
2126
+ This will be zero length for PVCs.""",
2127
+ "reference" :
2128
+ """10733 calledDTEAddress""",
2129
+ }, # column
2130
+ "x25CircuitCallingDteAddress" : {
2131
+ "nodetype" : "column",
2132
+ "moduleName" : "RFC1382-MIB",
2133
+ "oid" : "1.3.6.1.2.1.10.5.5.1.19",
2134
+ "status" : "current",
2135
+ "syntax" : {
2136
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
2137
+ },
2138
+ "access" : "readwrite",
2139
+ "default" : "",
2140
+ "description" :
2141
+ """For incoming calls, this is the calling
2142
+ address from the call indication packet.
2143
+ For outgoing calls, this is the calling
2144
+ address from the call confirmation packet.
2145
+ This will be zero length for PVCs.""",
2146
+ "reference" :
2147
+ """10733 callingDTEAddress""",
2148
+ }, # column
2149
+ "x25CircuitOriginallyCalledAddress" : {
2150
+ "nodetype" : "column",
2151
+ "moduleName" : "RFC1382-MIB",
2152
+ "oid" : "1.3.6.1.2.1.10.5.5.1.20",
2153
+ "status" : "current",
2154
+ "syntax" : {
2155
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
2156
+ },
2157
+ "access" : "readwrite",
2158
+ "default" : "",
2159
+ "description" :
2160
+ """For incoming calls, this is the address in
2161
+ the call Redirection or Call Deflection
2162
+ Notification facility if the call was
2163
+ deflected or redirected, otherwise it will
2164
+ be called address from the call indication
2165
+ packet. For outgoing calls, this is the
2166
+ address from the call request packet. This
2167
+ will be zero length for PVCs.""",
2168
+ "reference" :
2169
+ """10733 originallyCalledAddress""",
2170
+ }, # column
2171
+ "x25CircuitDescr" : {
2172
+ "nodetype" : "column",
2173
+ "moduleName" : "RFC1382-MIB",
2174
+ "oid" : "1.3.6.1.2.1.10.5.5.1.21",
2175
+ "status" : "current",
2176
+ "syntax" : {
2177
+ "type" : {
2178
+ "basetype" : "OctetString",
2179
+ "parent module" : {
2180
+ "name" : "RFC1213-MIB",
2181
+ "type" : "DisplayString",
2182
+ },
2183
+ "ranges" : [
2184
+ {
2185
+ "min" : "0",
2186
+ "max" : "255"
2187
+ },
2188
+ ],
2189
+ "range" : {
2190
+ "min" : "0",
2191
+ "max" : "255"
2192
+ },
2193
+ },
2194
+ },
2195
+ "access" : "readwrite",
2196
+ "default" : "",
2197
+ "description" :
2198
+ """A descriptive string associated with this
2199
+ circuit. This provides a place for the
2200
+ agent to supply any descriptive information
2201
+ it knows about the use or owner of the
2202
+ circuit. The agent may return the process
2203
+ identifier and user name for the process
2204
+ using the circuit. Alternative the agent
2205
+ may return the name of the configuration
2206
+ entry that caused a bridge to establish the
2207
+ circuit. A zero length value indicates the
2208
+ agent doesn't have any additional
2209
+ information.""",
2210
+ }, # column
2211
+ "x25ClearedCircuitEntriesRequested" : {
2212
+ "nodetype" : "scalar",
2213
+ "moduleName" : "RFC1382-MIB",
2214
+ "oid" : "1.3.6.1.2.1.10.5.6",
2215
+ "status" : "current",
2216
+ "syntax" : {
2217
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
2218
+ },
2219
+ "access" : "readwrite",
2220
+ "description" :
2221
+ """The requested number of entries for the
2222
+ agent to keep in the x25ClearedCircuit
2223
+ table.""",
2224
+ }, # scalar
2225
+ "x25ClearedCircuitEntriesGranted" : {
2226
+ "nodetype" : "scalar",
2227
+ "moduleName" : "RFC1382-MIB",
2228
+ "oid" : "1.3.6.1.2.1.10.5.7",
2229
+ "status" : "current",
2230
+ "syntax" : {
2231
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
2232
+ },
2233
+ "access" : "readonly",
2234
+ "description" :
2235
+ """The actual number of entries the agent will
2236
+ keep in the x25ClearedCircuit Table.""",
2237
+ }, # scalar
2238
+ "x25ClearedCircuitTable" : {
2239
+ "nodetype" : "table",
2240
+ "moduleName" : "RFC1382-MIB",
2241
+ "oid" : "1.3.6.1.2.1.10.5.8",
2242
+ "status" : "current",
2243
+ "description" :
2244
+ """A table of entries about closed circuits.
2245
+ Entries must be made in this table whenever
2246
+ circuits are closed and the close request or
2247
+ close indication packet contains a clearing
2248
+ cause other than DTE Originated or a
2249
+ Diagnostic code field other than Higher
2250
+ Layer Initiated disconnection-normal. An
2251
+ agent may optionally make entries for normal
2252
+ closes (to record closing facilities or
2253
+ other information).
2254
+
2255
+ Agents will delete the oldest entry in the
2256
+ table when adding a new entry would exceed
2257
+ agent resources. Agents are required to
2258
+ keep the last entry put in the table and may
2259
+ keep more entries. The object
2260
+ x25OperClearEntriesGranted returns the
2261
+ maximum number of entries kept in the
2262
+ table.""",
2263
+ "reference" :
2264
+ """See ISO 8208 Section 12.2.3.1.1
2265
+ and 12.2.3.1.2""",
2266
+ }, # table
2267
+ "x25ClearedCircuitEntry" : {
2268
+ "nodetype" : "row",
2269
+ "moduleName" : "RFC1382-MIB",
2270
+ "oid" : "1.3.6.1.2.1.10.5.8.1",
2271
+ "status" : "current",
2272
+ "linkage" : [
2273
+ "x25ClearedCircuitIndex",
2274
+ ],
2275
+ "description" :
2276
+ """Information about a cleared circuit.""",
2277
+ }, # row
2278
+ "x25ClearedCircuitIndex" : {
2279
+ "nodetype" : "column",
2280
+ "moduleName" : "RFC1382-MIB",
2281
+ "oid" : "1.3.6.1.2.1.10.5.8.1.1",
2282
+ "status" : "current",
2283
+ "syntax" : {
2284
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
2285
+ },
2286
+ "access" : "readonly",
2287
+ "description" :
2288
+ """An index that uniquely distinguishes one
2289
+ entry in the clearedCircuitTable from
2290
+ another. This index will start at
2291
+ 2147483647 and will decrease by one for each
2292
+ new entry added to the table. Upon reaching
2293
+ one, the index will reset to 2147483647.
2294
+ Because the index starts at 2147483647 and
2295
+ decreases, a manager may do a getnext on
2296
+ entry zero and obtain the most recent entry.
2297
+ When the index has the value of 1, the next
2298
+ entry will delete all entries in the table
2299
+ and that entry will be numbered 2147483647.""",
2300
+ }, # column
2301
+ "x25ClearedCircuitPleIndex" : {
2302
+ "nodetype" : "column",
2303
+ "moduleName" : "RFC1382-MIB",
2304
+ "oid" : "1.3.6.1.2.1.10.5.8.1.2",
2305
+ "status" : "current",
2306
+ "syntax" : {
2307
+ "type" : { "module" :"RFC1381-MIB", "name" : "IfIndexType"},
2308
+ },
2309
+ "access" : "readonly",
2310
+ "description" :
2311
+ """The value of ifIndex for the PLE which
2312
+ cleared the circuit that created the entry.""",
2313
+ }, # column
2314
+ "x25ClearedCircuitTimeEstablished" : {
2315
+ "nodetype" : "column",
2316
+ "moduleName" : "RFC1382-MIB",
2317
+ "oid" : "1.3.6.1.2.1.10.5.8.1.3",
2318
+ "status" : "current",
2319
+ "syntax" : {
2320
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
2321
+ },
2322
+ "access" : "readonly",
2323
+ "description" :
2324
+ """The value of sysUpTime when the circuit was
2325
+ established. This will be the same value
2326
+ that was in the x25CircuitEstablishTime for
2327
+ the circuit.""",
2328
+ }, # column
2329
+ "x25ClearedCircuitTimeCleared" : {
2330
+ "nodetype" : "column",
2331
+ "moduleName" : "RFC1382-MIB",
2332
+ "oid" : "1.3.6.1.2.1.10.5.8.1.4",
2333
+ "status" : "current",
2334
+ "syntax" : {
2335
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
2336
+ },
2337
+ "access" : "readonly",
2338
+ "description" :
2339
+ """The value of sysUpTime when the circuit was
2340
+ cleared. For locally initiated clears, this
2341
+ will be the time when the clear confirmation
2342
+ was received. For remotely initiated
2343
+ clears, this will be the time when the clear
2344
+ indication was received.""",
2345
+ }, # column
2346
+ "x25ClearedCircuitChannel" : {
2347
+ "nodetype" : "column",
2348
+ "moduleName" : "RFC1382-MIB",
2349
+ "oid" : "1.3.6.1.2.1.10.5.8.1.5",
2350
+ "status" : "current",
2351
+ "syntax" : {
2352
+ "type" : {
2353
+ "basetype" : "Integer32",
2354
+ "ranges" : [
2355
+ {
2356
+ "min" : "0",
2357
+ "max" : "4095"
2358
+ },
2359
+ ],
2360
+ "range" : {
2361
+ "min" : "0",
2362
+ "max" : "4095"
2363
+ },
2364
+ },
2365
+ },
2366
+ "access" : "readonly",
2367
+ "description" :
2368
+ """The channel number for the circuit that was
2369
+ cleared.""",
2370
+ }, # column
2371
+ "x25ClearedCircuitClearingCause" : {
2372
+ "nodetype" : "column",
2373
+ "moduleName" : "RFC1382-MIB",
2374
+ "oid" : "1.3.6.1.2.1.10.5.8.1.6",
2375
+ "status" : "current",
2376
+ "syntax" : {
2377
+ "type" : {
2378
+ "basetype" : "Integer32",
2379
+ "ranges" : [
2380
+ {
2381
+ "min" : "0",
2382
+ "max" : "255"
2383
+ },
2384
+ ],
2385
+ "range" : {
2386
+ "min" : "0",
2387
+ "max" : "255"
2388
+ },
2389
+ },
2390
+ },
2391
+ "access" : "readonly",
2392
+ "description" :
2393
+ """The Clearing Cause from the clear request
2394
+ or clear indication packet that cleared the
2395
+ circuit.""",
2396
+ "reference" :
2397
+ """See ISO 8208 Section 12.2.3.1.1""",
2398
+ }, # column
2399
+ "x25ClearedCircuitDiagnosticCode" : {
2400
+ "nodetype" : "column",
2401
+ "moduleName" : "RFC1382-MIB",
2402
+ "oid" : "1.3.6.1.2.1.10.5.8.1.7",
2403
+ "status" : "current",
2404
+ "syntax" : {
2405
+ "type" : {
2406
+ "basetype" : "Integer32",
2407
+ "ranges" : [
2408
+ {
2409
+ "min" : "0",
2410
+ "max" : "255"
2411
+ },
2412
+ ],
2413
+ "range" : {
2414
+ "min" : "0",
2415
+ "max" : "255"
2416
+ },
2417
+ },
2418
+ },
2419
+ "access" : "readonly",
2420
+ "description" :
2421
+ """The Diagnostic Code from the clear request
2422
+ or clear indication packet that cleared the
2423
+ circuit.""",
2424
+ "reference" :
2425
+ """See ISO 8208 Section 12.2.3.1.2""",
2426
+ }, # column
2427
+ "x25ClearedCircuitInPdus" : {
2428
+ "nodetype" : "column",
2429
+ "moduleName" : "RFC1382-MIB",
2430
+ "oid" : "1.3.6.1.2.1.10.5.8.1.8",
2431
+ "status" : "current",
2432
+ "syntax" : {
2433
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2434
+ },
2435
+ "access" : "readonly",
2436
+ "description" :
2437
+ """The number of PDUs received on the
2438
+ circuit.""",
2439
+ }, # column
2440
+ "x25ClearedCircuitOutPdus" : {
2441
+ "nodetype" : "column",
2442
+ "moduleName" : "RFC1382-MIB",
2443
+ "oid" : "1.3.6.1.2.1.10.5.8.1.9",
2444
+ "status" : "current",
2445
+ "syntax" : {
2446
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2447
+ },
2448
+ "access" : "readonly",
2449
+ "description" :
2450
+ """The number of PDUs transmitted on the
2451
+ circuit.""",
2452
+ }, # column
2453
+ "x25ClearedCircuitCalledAddress" : {
2454
+ "nodetype" : "column",
2455
+ "moduleName" : "RFC1382-MIB",
2456
+ "oid" : "1.3.6.1.2.1.10.5.8.1.10",
2457
+ "status" : "current",
2458
+ "syntax" : {
2459
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
2460
+ },
2461
+ "access" : "readonly",
2462
+ "description" :
2463
+ """The called address from the cleared
2464
+ circuit.""",
2465
+ }, # column
2466
+ "x25ClearedCircuitCallingAddress" : {
2467
+ "nodetype" : "column",
2468
+ "moduleName" : "RFC1382-MIB",
2469
+ "oid" : "1.3.6.1.2.1.10.5.8.1.11",
2470
+ "status" : "current",
2471
+ "syntax" : {
2472
+ "type" : { "module" :"RFC1382-MIB", "name" : "X121Address"},
2473
+ },
2474
+ "access" : "readonly",
2475
+ "description" :
2476
+ """The calling address from the cleared
2477
+ circuit.""",
2478
+ }, # column
2479
+ "x25ClearedCircuitClearFacilities" : {
2480
+ "nodetype" : "column",
2481
+ "moduleName" : "RFC1382-MIB",
2482
+ "oid" : "1.3.6.1.2.1.10.5.8.1.12",
2483
+ "status" : "current",
2484
+ "syntax" : {
2485
+ "type" : {
2486
+ "basetype" : "OctetString",
2487
+ "ranges" : [
2488
+ {
2489
+ "min" : "0",
2490
+ "max" : "109"
2491
+ },
2492
+ ],
2493
+ "range" : {
2494
+ "min" : "0",
2495
+ "max" : "109"
2496
+ },
2497
+ },
2498
+ },
2499
+ "access" : "readonly",
2500
+ "description" :
2501
+ """The facilities field from the clear request
2502
+ or clear indication packet that cleared the
2503
+ circuit. A size of zero indicates no
2504
+ facilities were present.""",
2505
+ }, # column
2506
+ "x25CallParmTable" : {
2507
+ "nodetype" : "table",
2508
+ "moduleName" : "RFC1382-MIB",
2509
+ "oid" : "1.3.6.1.2.1.10.5.9",
2510
+ "status" : "current",
2511
+ "description" :
2512
+ """These objects contain the parameters that
2513
+ can be varied between X.25 calls. The
2514
+ entries in this table are independent of the
2515
+ PLE. There exists only one of these tables
2516
+ for the entire system. The indexes for the
2517
+ entries are independent of any PLE or any
2518
+ circuit. Other tables reference entries in
2519
+ this table. Entries in this table can be
2520
+ used for default PLE parameters, for
2521
+ parameters to use to place/answer a call,
2522
+ for the parameters currently in use for a
2523
+ circuit, or parameters that were used by a
2524
+ circuit.
2525
+
2526
+ The number of references to a given set of
2527
+ parameters can be found in the
2528
+ x25CallParmRefCount object sharing the same
2529
+ instance identifier with the parameters.
2530
+ The value of this reference count also
2531
+ affects the access of the objects in this
2532
+ table. An object in this table with the
2533
+ same instance identifier as the instance
2534
+ identifier of an x25CallParmRefCount must be
2535
+ consider associated with that reference
2536
+ count. An object with an associated
2537
+ reference count of zero can be written (if
2538
+ its ACCESS clause allows it). An object
2539
+ with an associated reference count greater
2540
+ than zero can not be written (regardless of
2541
+ the ACCESS clause). This ensures that a set
2542
+ of call parameters being referenced from
2543
+ another table can not be modified or changed
2544
+ in a ways inappropriate for continued use by
2545
+ that table.""",
2546
+ }, # table
2547
+ "x25CallParmEntry" : {
2548
+ "nodetype" : "row",
2549
+ "moduleName" : "RFC1382-MIB",
2550
+ "oid" : "1.3.6.1.2.1.10.5.9.1",
2551
+ "status" : "current",
2552
+ "linkage" : [
2553
+ "x25CallParmIndex",
2554
+ ],
2555
+ "description" :
2556
+ """Entries of x25CallParmTable.""",
2557
+ }, # row
2558
+ "x25CallParmIndex" : {
2559
+ "nodetype" : "column",
2560
+ "moduleName" : "RFC1382-MIB",
2561
+ "oid" : "1.3.6.1.2.1.10.5.9.1.1",
2562
+ "status" : "current",
2563
+ "syntax" : {
2564
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
2565
+ },
2566
+ "access" : "readonly",
2567
+ "description" :
2568
+ """A value that distinguishes this entry from
2569
+ another entry. Entries in this table are
2570
+ referenced from other objects which identify
2571
+ call parameters.
2572
+
2573
+ It is impossible to know which other objects
2574
+ in the MIB reference entries in the table by
2575
+ looking at this table. Because of this,
2576
+ changes to parameters must be accomplished
2577
+ by creating a new entry in this table and
2578
+ then changing the referencing table to
2579
+ identify the new entry.
2580
+
2581
+ Note that an agent will only use the values
2582
+ in this table when another table is changed
2583
+ to reference those values. The number of
2584
+ other tables that reference an index object
2585
+ in this table can be found in
2586
+ x25CallParmRefCount. The value of the
2587
+ reference count will affect the writability
2588
+ of the objects as explained above.
2589
+
2590
+ Entries in this table which have a reference
2591
+ count of zero maybe deleted at the convence
2592
+ of the agent. Care should be taken by the
2593
+ agent to give the NMS sufficient time to
2594
+ create a reference to newly created entries.
2595
+
2596
+ Should a Management Station not find a free
2597
+ index with which to create a new entry, it
2598
+ may feel free to delete entries with a
2599
+ reference count of zero. However in doing
2600
+ so the Management Station much realize it
2601
+ may impact other Management Stations.""",
2602
+ }, # column
2603
+ "x25CallParmStatus" : {
2604
+ "nodetype" : "column",
2605
+ "moduleName" : "RFC1382-MIB",
2606
+ "oid" : "1.3.6.1.2.1.10.5.9.1.2",
2607
+ "status" : "current",
2608
+ "syntax" : {
2609
+ "type" : { "module" :"RFC1271-MIB", "name" : "EntryStatus"},
2610
+ },
2611
+ "access" : "readwrite",
2612
+ "description" :
2613
+ """The status of this call parameter entry.
2614
+ See RFC 1271 for details of usage.""",
2615
+ }, # column
2616
+ "x25CallParmRefCount" : {
2617
+ "nodetype" : "column",
2618
+ "moduleName" : "RFC1382-MIB",
2619
+ "oid" : "1.3.6.1.2.1.10.5.9.1.3",
2620
+ "status" : "current",
2621
+ "syntax" : {
2622
+ "type" : { "module" :"RFC1381-MIB", "name" : "PositiveInteger"},
2623
+ },
2624
+ "access" : "readonly",
2625
+ "description" :
2626
+ """The number of references know by a
2627
+ management station to exist to this set of
2628
+ call parameters. This is the number of
2629
+ other objects that have returned a value of,
2630
+ and will return a value of, the index for
2631
+ this set of call parameters. Examples of
2632
+ such objects are the x25AdmnDefCallParamId,
2633
+ x25OperDataLinkId, or x25AdmnDefCallParamId
2634
+ objects defined above.""",
2635
+ }, # column
2636
+ "x25CallParmInPacketSize" : {
2637
+ "nodetype" : "column",
2638
+ "moduleName" : "RFC1382-MIB",
2639
+ "oid" : "1.3.6.1.2.1.10.5.9.1.4",
2640
+ "status" : "current",
2641
+ "syntax" : {
2642
+ "type" : {
2643
+ "basetype" : "Integer32",
2644
+ "ranges" : [
2645
+ {
2646
+ "min" : "0",
2647
+ "max" : "4096"
2648
+ },
2649
+ ],
2650
+ "range" : {
2651
+ "min" : "0",
2652
+ "max" : "4096"
2653
+ },
2654
+ },
2655
+ },
2656
+ "access" : "readwrite",
2657
+ "default" : "128",
2658
+ "description" :
2659
+ """The maximum receive packet size in octets
2660
+ for a circuit. A size of zero for a circuit
2661
+ means use the PLE default size. A size of
2662
+ zero for the PLE means use a default size of
2663
+ 128.""",
2664
+ "reference" :
2665
+ """10733 proposedPacketSize;
2666
+ See ISO 8208 Section 15.2.2.1.1""",
2667
+ }, # column
2668
+ "x25CallParmOutPacketSize" : {
2669
+ "nodetype" : "column",
2670
+ "moduleName" : "RFC1382-MIB",
2671
+ "oid" : "1.3.6.1.2.1.10.5.9.1.5",
2672
+ "status" : "current",
2673
+ "syntax" : {
2674
+ "type" : {
2675
+ "basetype" : "Integer32",
2676
+ "ranges" : [
2677
+ {
2678
+ "min" : "0",
2679
+ "max" : "4096"
2680
+ },
2681
+ ],
2682
+ "range" : {
2683
+ "min" : "0",
2684
+ "max" : "4096"
2685
+ },
2686
+ },
2687
+ },
2688
+ "access" : "readwrite",
2689
+ "default" : "128",
2690
+ "description" :
2691
+ """The maximum transmit packet size in octets
2692
+ for a circuit. A size of zero for a circuit
2693
+ means use the PLE default size. A size of
2694
+ zero for the PLE default means use a default
2695
+ size of 128.""",
2696
+ "reference" :
2697
+ """10733 proposedPacketSize;
2698
+ See ISO 8208 Section 15.2.2.1.1""",
2699
+ }, # column
2700
+ "x25CallParmInWindowSize" : {
2701
+ "nodetype" : "column",
2702
+ "moduleName" : "RFC1382-MIB",
2703
+ "oid" : "1.3.6.1.2.1.10.5.9.1.6",
2704
+ "status" : "current",
2705
+ "syntax" : {
2706
+ "type" : {
2707
+ "basetype" : "Integer32",
2708
+ "ranges" : [
2709
+ {
2710
+ "min" : "0",
2711
+ "max" : "127"
2712
+ },
2713
+ ],
2714
+ "range" : {
2715
+ "min" : "0",
2716
+ "max" : "127"
2717
+ },
2718
+ },
2719
+ },
2720
+ "access" : "readwrite",
2721
+ "default" : "2",
2722
+ "description" :
2723
+ """The receive window size for a circuit. A
2724
+ size of zero for a circuit means use the PLE
2725
+ default size. A size of zero for the PLE
2726
+ default means use 2.""",
2727
+ "reference" :
2728
+ """10733 proposedWindowSize;
2729
+ See ISO 8208 Section 15.2.2.1.2""",
2730
+ }, # column
2731
+ "x25CallParmOutWindowSize" : {
2732
+ "nodetype" : "column",
2733
+ "moduleName" : "RFC1382-MIB",
2734
+ "oid" : "1.3.6.1.2.1.10.5.9.1.7",
2735
+ "status" : "current",
2736
+ "syntax" : {
2737
+ "type" : {
2738
+ "basetype" : "Integer32",
2739
+ "ranges" : [
2740
+ {
2741
+ "min" : "0",
2742
+ "max" : "127"
2743
+ },
2744
+ ],
2745
+ "range" : {
2746
+ "min" : "0",
2747
+ "max" : "127"
2748
+ },
2749
+ },
2750
+ },
2751
+ "access" : "readwrite",
2752
+ "default" : "2",
2753
+ "description" :
2754
+ """The transmit window size for a circuit. A
2755
+ size of zero for a circuit means use the PLE
2756
+ default size. A size of zero for the PLE
2757
+ default means use 2.""",
2758
+ "reference" :
2759
+ """10733 proposedWindowSize;
2760
+ See ISO 8208 Section 15.2.2.1.2""",
2761
+ }, # column
2762
+ "x25CallParmAcceptReverseCharging" : {
2763
+ "nodetype" : "column",
2764
+ "moduleName" : "RFC1382-MIB",
2765
+ "oid" : "1.3.6.1.2.1.10.5.9.1.8",
2766
+ "status" : "current",
2767
+ "syntax" : {
2768
+ "type" : {
2769
+ "basetype" : "Enumeration",
2770
+ "default" : {
2771
+ "nodetype" : "namednumber",
2772
+ "number" : "1"
2773
+ },
2774
+ "accept" : {
2775
+ "nodetype" : "namednumber",
2776
+ "number" : "2"
2777
+ },
2778
+ "refuse" : {
2779
+ "nodetype" : "namednumber",
2780
+ "number" : "3"
2781
+ },
2782
+ "neverAccept" : {
2783
+ "nodetype" : "namednumber",
2784
+ "number" : "4"
2785
+ },
2786
+ },
2787
+ },
2788
+ "access" : "readwrite",
2789
+ "default" : "refuse",
2790
+ "description" :
2791
+ """An enumeration defining if the PLE will
2792
+ accept or refuse charges. A value of
2793
+ default for a circuit means use the PLE
2794
+ default value. A value of neverAccept is
2795
+ only used for the PLE default and indicates
2796
+ the PLE will never accept reverse charging.
2797
+ A value of default for a PLE default means
2798
+ refuse.""",
2799
+ "reference" :
2800
+ """10733 acceptReverseCharging""",
2801
+ }, # column
2802
+ "x25CallParmProposeReverseCharging" : {
2803
+ "nodetype" : "column",
2804
+ "moduleName" : "RFC1382-MIB",
2805
+ "oid" : "1.3.6.1.2.1.10.5.9.1.9",
2806
+ "status" : "current",
2807
+ "syntax" : {
2808
+ "type" : {
2809
+ "basetype" : "Enumeration",
2810
+ "default" : {
2811
+ "nodetype" : "namednumber",
2812
+ "number" : "1"
2813
+ },
2814
+ "reverse" : {
2815
+ "nodetype" : "namednumber",
2816
+ "number" : "2"
2817
+ },
2818
+ "local" : {
2819
+ "nodetype" : "namednumber",
2820
+ "number" : "3"
2821
+ },
2822
+ },
2823
+ },
2824
+ "access" : "readwrite",
2825
+ "default" : "local",
2826
+ "description" :
2827
+ """An enumeration defining if the PLE should
2828
+ propose reverse or local charging. The
2829
+ value of default for a circuit means use the
2830
+ PLE default. The value of default for the
2831
+ PLE default means use local.""",
2832
+ "reference" :
2833
+ """10733 proposedPacketSize;
2834
+ See ISO 8208 Section 15.2.2.6""",
2835
+ }, # column
2836
+ "x25CallParmFastSelect" : {
2837
+ "nodetype" : "column",
2838
+ "moduleName" : "RFC1382-MIB",
2839
+ "oid" : "1.3.6.1.2.1.10.5.9.1.10",
2840
+ "status" : "current",
2841
+ "syntax" : {
2842
+ "type" : {
2843
+ "basetype" : "Enumeration",
2844
+ "default" : {
2845
+ "nodetype" : "namednumber",
2846
+ "number" : "1"
2847
+ },
2848
+ "notSpecified" : {
2849
+ "nodetype" : "namednumber",
2850
+ "number" : "2"
2851
+ },
2852
+ "fastSelect" : {
2853
+ "nodetype" : "namednumber",
2854
+ "number" : "3"
2855
+ },
2856
+ "restrictedFastResponse" : {
2857
+ "nodetype" : "namednumber",
2858
+ "number" : "4"
2859
+ },
2860
+ "noFastSelect" : {
2861
+ "nodetype" : "namednumber",
2862
+ "number" : "5"
2863
+ },
2864
+ "noRestrictedFastResponse" : {
2865
+ "nodetype" : "namednumber",
2866
+ "number" : "6"
2867
+ },
2868
+ },
2869
+ },
2870
+ "access" : "readwrite",
2871
+ "default" : "noFastSelect",
2872
+ "description" :
2873
+ """Expresses preference for use of fast select
2874
+ facility. The value of default for a
2875
+ circuit is the PLE default. A value of
2876
+ default for the PLE means noFastSelect. A
2877
+ value of noFastSelect or
2878
+ noRestrictedFastResponse indicates a circuit
2879
+ may not use fast select or restricted fast
2880
+ response.""",
2881
+ "reference" :
2882
+ """10733 fastSelect;
2883
+ Sec ISO 8208 Section 15.2.2.6""",
2884
+ }, # column
2885
+ "x25CallParmInThruPutClasSize" : {
2886
+ "nodetype" : "column",
2887
+ "moduleName" : "RFC1382-MIB",
2888
+ "oid" : "1.3.6.1.2.1.10.5.9.1.11",
2889
+ "status" : "current",
2890
+ "syntax" : {
2891
+ "type" : {
2892
+ "basetype" : "Enumeration",
2893
+ "tcReserved1" : {
2894
+ "nodetype" : "namednumber",
2895
+ "number" : "1"
2896
+ },
2897
+ "tcReserved2" : {
2898
+ "nodetype" : "namednumber",
2899
+ "number" : "2"
2900
+ },
2901
+ "tc75" : {
2902
+ "nodetype" : "namednumber",
2903
+ "number" : "3"
2904
+ },
2905
+ "tc150" : {
2906
+ "nodetype" : "namednumber",
2907
+ "number" : "4"
2908
+ },
2909
+ "tc300" : {
2910
+ "nodetype" : "namednumber",
2911
+ "number" : "5"
2912
+ },
2913
+ "tc600" : {
2914
+ "nodetype" : "namednumber",
2915
+ "number" : "6"
2916
+ },
2917
+ "tc1200" : {
2918
+ "nodetype" : "namednumber",
2919
+ "number" : "7"
2920
+ },
2921
+ "tc2400" : {
2922
+ "nodetype" : "namednumber",
2923
+ "number" : "8"
2924
+ },
2925
+ "tc4800" : {
2926
+ "nodetype" : "namednumber",
2927
+ "number" : "9"
2928
+ },
2929
+ "tc9600" : {
2930
+ "nodetype" : "namednumber",
2931
+ "number" : "10"
2932
+ },
2933
+ "tc19200" : {
2934
+ "nodetype" : "namednumber",
2935
+ "number" : "11"
2936
+ },
2937
+ "tc48000" : {
2938
+ "nodetype" : "namednumber",
2939
+ "number" : "12"
2940
+ },
2941
+ "tc64000" : {
2942
+ "nodetype" : "namednumber",
2943
+ "number" : "13"
2944
+ },
2945
+ "tcReserved14" : {
2946
+ "nodetype" : "namednumber",
2947
+ "number" : "14"
2948
+ },
2949
+ "tcReserved15" : {
2950
+ "nodetype" : "namednumber",
2951
+ "number" : "15"
2952
+ },
2953
+ "tcReserved0" : {
2954
+ "nodetype" : "namednumber",
2955
+ "number" : "16"
2956
+ },
2957
+ "tcNone" : {
2958
+ "nodetype" : "namednumber",
2959
+ "number" : "17"
2960
+ },
2961
+ "tcDefault" : {
2962
+ "nodetype" : "namednumber",
2963
+ "number" : "18"
2964
+ },
2965
+ },
2966
+ },
2967
+ "access" : "readwrite",
2968
+ "default" : "tcNone",
2969
+ "description" :
2970
+ """The incoming throughput class to negotiate.
2971
+ A value of tcDefault for a circuit means use
2972
+ the PLE default. A value of tcDefault for
2973
+ the PLE default means tcNone. A value of
2974
+ tcNone means do not negotiate throughtput
2975
+ class.""",
2976
+ "reference" :
2977
+ """See ISO 8208 Section 15.2.2.2, table 18""",
2978
+ }, # column
2979
+ "x25CallParmOutThruPutClasSize" : {
2980
+ "nodetype" : "column",
2981
+ "moduleName" : "RFC1382-MIB",
2982
+ "oid" : "1.3.6.1.2.1.10.5.9.1.12",
2983
+ "status" : "current",
2984
+ "syntax" : {
2985
+ "type" : {
2986
+ "basetype" : "Enumeration",
2987
+ "tcReserved1" : {
2988
+ "nodetype" : "namednumber",
2989
+ "number" : "1"
2990
+ },
2991
+ "tcReserved2" : {
2992
+ "nodetype" : "namednumber",
2993
+ "number" : "2"
2994
+ },
2995
+ "tc75" : {
2996
+ "nodetype" : "namednumber",
2997
+ "number" : "3"
2998
+ },
2999
+ "tc150" : {
3000
+ "nodetype" : "namednumber",
3001
+ "number" : "4"
3002
+ },
3003
+ "tc300" : {
3004
+ "nodetype" : "namednumber",
3005
+ "number" : "5"
3006
+ },
3007
+ "tc600" : {
3008
+ "nodetype" : "namednumber",
3009
+ "number" : "6"
3010
+ },
3011
+ "tc1200" : {
3012
+ "nodetype" : "namednumber",
3013
+ "number" : "7"
3014
+ },
3015
+ "tc2400" : {
3016
+ "nodetype" : "namednumber",
3017
+ "number" : "8"
3018
+ },
3019
+ "tc4800" : {
3020
+ "nodetype" : "namednumber",
3021
+ "number" : "9"
3022
+ },
3023
+ "tc9600" : {
3024
+ "nodetype" : "namednumber",
3025
+ "number" : "10"
3026
+ },
3027
+ "tc19200" : {
3028
+ "nodetype" : "namednumber",
3029
+ "number" : "11"
3030
+ },
3031
+ "tc48000" : {
3032
+ "nodetype" : "namednumber",
3033
+ "number" : "12"
3034
+ },
3035
+ "tc64000" : {
3036
+ "nodetype" : "namednumber",
3037
+ "number" : "13"
3038
+ },
3039
+ "tcReserved14" : {
3040
+ "nodetype" : "namednumber",
3041
+ "number" : "14"
3042
+ },
3043
+ "tcReserved15" : {
3044
+ "nodetype" : "namednumber",
3045
+ "number" : "15"
3046
+ },
3047
+ "tcReserved0" : {
3048
+ "nodetype" : "namednumber",
3049
+ "number" : "16"
3050
+ },
3051
+ "tcNone" : {
3052
+ "nodetype" : "namednumber",
3053
+ "number" : "17"
3054
+ },
3055
+ "tcDefault" : {
3056
+ "nodetype" : "namednumber",
3057
+ "number" : "18"
3058
+ },
3059
+ },
3060
+ },
3061
+ "access" : "readwrite",
3062
+ "default" : "tcNone",
3063
+ "description" :
3064
+ """The outgoing throughput class to negotiate.
3065
+ A value of tcDefault for a circuit means use
3066
+ the PLE default. A value of tcDefault for
3067
+ the PLE default means use tcNone. A value
3068
+ of tcNone means do not negotiate throughtput
3069
+ class.""",
3070
+ "reference" :
3071
+ """See ISO 8208 Section 15.2.2.2, table 18""",
3072
+ }, # column
3073
+ "x25CallParmCug" : {
3074
+ "nodetype" : "column",
3075
+ "moduleName" : "RFC1382-MIB",
3076
+ "oid" : "1.3.6.1.2.1.10.5.9.1.13",
3077
+ "status" : "current",
3078
+ "syntax" : {
3079
+ "type" : {
3080
+ "basetype" : "OctetString",
3081
+ "parent module" : {
3082
+ "name" : "RFC1213-MIB",
3083
+ "type" : "DisplayString",
3084
+ },
3085
+ "ranges" : [
3086
+ {
3087
+ "min" : "0",
3088
+ "max" : "4"
3089
+ },
3090
+ ],
3091
+ "range" : {
3092
+ "min" : "0",
3093
+ "max" : "4"
3094
+ },
3095
+ },
3096
+ },
3097
+ "access" : "readwrite",
3098
+ "default" : "",
3099
+ "description" :
3100
+ """The Closed User Group to specify. This
3101
+ consists of two or four octets containing
3102
+ the characters 0 through 9. A zero length
3103
+ string indicates no facility requested. A
3104
+ string length of three containing the
3105
+ characters DEF for a circuit means use the
3106
+ PLE default, (the PLE default parameter may
3107
+ not reference an entry of DEF.)""",
3108
+ "reference" :
3109
+ """See ISO 8208 Section 15.2.2.3""",
3110
+ }, # column
3111
+ "x25CallParmCugoa" : {
3112
+ "nodetype" : "column",
3113
+ "moduleName" : "RFC1382-MIB",
3114
+ "oid" : "1.3.6.1.2.1.10.5.9.1.14",
3115
+ "status" : "current",
3116
+ "syntax" : {
3117
+ "type" : {
3118
+ "basetype" : "OctetString",
3119
+ "parent module" : {
3120
+ "name" : "RFC1213-MIB",
3121
+ "type" : "DisplayString",
3122
+ },
3123
+ "ranges" : [
3124
+ {
3125
+ "min" : "0",
3126
+ "max" : "4"
3127
+ },
3128
+ ],
3129
+ "range" : {
3130
+ "min" : "0",
3131
+ "max" : "4"
3132
+ },
3133
+ },
3134
+ },
3135
+ "access" : "readwrite",
3136
+ "default" : "",
3137
+ "description" :
3138
+ """The Closed User Group with Outgoing Access
3139
+ to specify. This consists of two or four
3140
+ octets containing the characters 0 through
3141
+ 9. A string length of three containing the
3142
+ characters DEF for a circuit means use the
3143
+ PLE default (the PLE default parameters may
3144
+ not reference an entry of DEF). A zero
3145
+ length string indicates no facility
3146
+ requested.""",
3147
+ "reference" :
3148
+ """See ISO 8208 Section 15.2.2.4""",
3149
+ }, # column
3150
+ "x25CallParmBcug" : {
3151
+ "nodetype" : "column",
3152
+ "moduleName" : "RFC1382-MIB",
3153
+ "oid" : "1.3.6.1.2.1.10.5.9.1.15",
3154
+ "status" : "current",
3155
+ "syntax" : {
3156
+ "type" : {
3157
+ "basetype" : "OctetString",
3158
+ "parent module" : {
3159
+ "name" : "RFC1213-MIB",
3160
+ "type" : "DisplayString",
3161
+ },
3162
+ "ranges" : [
3163
+ {
3164
+ "min" : "0",
3165
+ "max" : "3"
3166
+ },
3167
+ ],
3168
+ "range" : {
3169
+ "min" : "0",
3170
+ "max" : "3"
3171
+ },
3172
+ },
3173
+ },
3174
+ "access" : "readwrite",
3175
+ "default" : "",
3176
+ "description" :
3177
+ """The Bilateral Closed User Group to specify.
3178
+ This consists of two octets containing the
3179
+ characters 0 through 9. A string length of
3180
+ three containing the characters DEF for a
3181
+ circuit means use the PLE default (the PLE
3182
+ default parameter may not reference an entry
3183
+ of DEF). A zero length string indicates no
3184
+ facility requested.""",
3185
+ "reference" :
3186
+ """See ISO 8208 Section 15.2.2.5""",
3187
+ }, # column
3188
+ "x25CallParmNui" : {
3189
+ "nodetype" : "column",
3190
+ "moduleName" : "RFC1382-MIB",
3191
+ "oid" : "1.3.6.1.2.1.10.5.9.1.16",
3192
+ "status" : "current",
3193
+ "syntax" : {
3194
+ "type" : {
3195
+ "basetype" : "OctetString",
3196
+ "ranges" : [
3197
+ {
3198
+ "min" : "0",
3199
+ "max" : "108"
3200
+ },
3201
+ ],
3202
+ "range" : {
3203
+ "min" : "0",
3204
+ "max" : "108"
3205
+ },
3206
+ },
3207
+ },
3208
+ "access" : "readwrite",
3209
+ "default" : "",
3210
+ "description" :
3211
+ """The Network User Identifier facility. This
3212
+ is binary value to be included immediately
3213
+ after the length field. The PLE will supply
3214
+ the length octet. A zero length string
3215
+ indicates no facility requested. This value
3216
+ is ignored for the PLE default parameters
3217
+ entry.""",
3218
+ "reference" :
3219
+ """See ISO 8208 Section 15.2.2.7""",
3220
+ }, # column
3221
+ "x25CallParmChargingInfo" : {
3222
+ "nodetype" : "column",
3223
+ "moduleName" : "RFC1382-MIB",
3224
+ "oid" : "1.3.6.1.2.1.10.5.9.1.17",
3225
+ "status" : "current",
3226
+ "syntax" : {
3227
+ "type" : {
3228
+ "basetype" : "Enumeration",
3229
+ "default" : {
3230
+ "nodetype" : "namednumber",
3231
+ "number" : "1"
3232
+ },
3233
+ "noFacility" : {
3234
+ "nodetype" : "namednumber",
3235
+ "number" : "2"
3236
+ },
3237
+ "noChargingInfo" : {
3238
+ "nodetype" : "namednumber",
3239
+ "number" : "3"
3240
+ },
3241
+ "chargingInfo" : {
3242
+ "nodetype" : "namednumber",
3243
+ "number" : "4"
3244
+ },
3245
+ },
3246
+ },
3247
+ "access" : "readwrite",
3248
+ "default" : "noFacility",
3249
+ "description" :
3250
+ """The charging Information facility. A value
3251
+ of default for a circuit means use the PLE
3252
+ default. The value of default for the
3253
+ default PLE parameters means use noFacility.
3254
+ The value of noFacility means do not include
3255
+ a facility.""",
3256
+ "reference" :
3257
+ """See ISO 8208 Section 15.2.2.8""",
3258
+ }, # column
3259
+ "x25CallParmRpoa" : {
3260
+ "nodetype" : "column",
3261
+ "moduleName" : "RFC1382-MIB",
3262
+ "oid" : "1.3.6.1.2.1.10.5.9.1.18",
3263
+ "status" : "current",
3264
+ "syntax" : {
3265
+ "type" : {
3266
+ "basetype" : "OctetString",
3267
+ "parent module" : {
3268
+ "name" : "RFC1213-MIB",
3269
+ "type" : "DisplayString",
3270
+ },
3271
+ "ranges" : [
3272
+ {
3273
+ "min" : "0",
3274
+ "max" : "108"
3275
+ },
3276
+ ],
3277
+ "range" : {
3278
+ "min" : "0",
3279
+ "max" : "108"
3280
+ },
3281
+ },
3282
+ },
3283
+ "access" : "readwrite",
3284
+ "default" : "",
3285
+ "description" :
3286
+ """The RPOA facility. The octet string
3287
+ contains n * 4 sequences of the characters
3288
+ 0-9 to specify a facility with n entries.
3289
+ The octet string containing the 3 characters
3290
+ DEF for a circuit specifies use of the PLE
3291
+ default (the entry for the PLE default may
3292
+ not contain DEF). A zero length string
3293
+ indicates no facility requested.""",
3294
+ "reference" :
3295
+ """See ISO 8208, section 15.2.2.9""",
3296
+ }, # column
3297
+ "x25CallParmTrnstDly" : {
3298
+ "nodetype" : "column",
3299
+ "moduleName" : "RFC1382-MIB",
3300
+ "oid" : "1.3.6.1.2.1.10.5.9.1.19",
3301
+ "status" : "current",
3302
+ "syntax" : {
3303
+ "type" : {
3304
+ "basetype" : "Integer32",
3305
+ "ranges" : [
3306
+ {
3307
+ "min" : "0",
3308
+ "max" : "65537"
3309
+ },
3310
+ ],
3311
+ "range" : {
3312
+ "min" : "0",
3313
+ "max" : "65537"
3314
+ },
3315
+ },
3316
+ },
3317
+ "access" : "readwrite",
3318
+ "default" : "65536",
3319
+ "description" :
3320
+ """The Transit Delay Selection and Indication
3321
+ value. A value of 65536 indicates no
3322
+ facility requested. A value of 65537 for a
3323
+ circuit means use the PLE default (the PLE
3324
+ default parameters entry may not use the
3325
+ value 65537). The value 65535 may only be
3326
+ used to indicate the value in use by a
3327
+ circuit.""",
3328
+ "reference" :
3329
+ """See ISO 8208, Section 15.2.2.13""",
3330
+ }, # column
3331
+ "x25CallParmCallingExt" : {
3332
+ "nodetype" : "column",
3333
+ "moduleName" : "RFC1382-MIB",
3334
+ "oid" : "1.3.6.1.2.1.10.5.9.1.20",
3335
+ "status" : "current",
3336
+ "syntax" : {
3337
+ "type" : {
3338
+ "basetype" : "OctetString",
3339
+ "parent module" : {
3340
+ "name" : "RFC1213-MIB",
3341
+ "type" : "DisplayString",
3342
+ },
3343
+ "ranges" : [
3344
+ {
3345
+ "min" : "0",
3346
+ "max" : "40"
3347
+ },
3348
+ ],
3349
+ "range" : {
3350
+ "min" : "0",
3351
+ "max" : "40"
3352
+ },
3353
+ },
3354
+ },
3355
+ "access" : "readwrite",
3356
+ "default" : "",
3357
+ "description" :
3358
+ """The Calling Extension facility. This
3359
+ contains one of the following:
3360
+
3361
+ A sequence of hex digits with the value to
3362
+ be put in the facility. These digits will be
3363
+ converted to binary by the agent and put in
3364
+ the facility. These octets do not include
3365
+ the length octet.
3366
+
3367
+ A value containing the three character DEF
3368
+ for a circuit means use the PLE default,
3369
+ (the entry for the PLE default parameters
3370
+ may not use the value DEF).
3371
+
3372
+ A zero length string indicates no facility
3373
+ requested.""",
3374
+ "reference" :
3375
+ """See ISO 8208 Section 15.3.2.1""",
3376
+ }, # column
3377
+ "x25CallParmCalledExt" : {
3378
+ "nodetype" : "column",
3379
+ "moduleName" : "RFC1382-MIB",
3380
+ "oid" : "1.3.6.1.2.1.10.5.9.1.21",
3381
+ "status" : "current",
3382
+ "syntax" : {
3383
+ "type" : {
3384
+ "basetype" : "OctetString",
3385
+ "parent module" : {
3386
+ "name" : "RFC1213-MIB",
3387
+ "type" : "DisplayString",
3388
+ },
3389
+ "ranges" : [
3390
+ {
3391
+ "min" : "0",
3392
+ "max" : "40"
3393
+ },
3394
+ ],
3395
+ "range" : {
3396
+ "min" : "0",
3397
+ "max" : "40"
3398
+ },
3399
+ },
3400
+ },
3401
+ "access" : "readwrite",
3402
+ "default" : "",
3403
+ "description" :
3404
+ """The Called Extension facility. This
3405
+ contains one of the following:
3406
+
3407
+ A sequence of hex digits with the value to
3408
+ be put in the facility. These digits will be
3409
+ converted to binary by the agent and put in
3410
+ the facility. These octets do not include
3411
+ the length octet.
3412
+
3413
+ A value containing the three character DEF
3414
+ for a circuit means use the PLE default,
3415
+ (the entry for the PLE default parameters
3416
+ may not use the value DEF).
3417
+
3418
+ A zero length string indicates no facility
3419
+ requested.""",
3420
+ "reference" :
3421
+ """See ISO 8208 Section 15.3.2.2""",
3422
+ }, # column
3423
+ "x25CallParmInMinThuPutCls" : {
3424
+ "nodetype" : "column",
3425
+ "moduleName" : "RFC1382-MIB",
3426
+ "oid" : "1.3.6.1.2.1.10.5.9.1.22",
3427
+ "status" : "current",
3428
+ "syntax" : {
3429
+ "type" : {
3430
+ "basetype" : "Integer32",
3431
+ "ranges" : [
3432
+ {
3433
+ "min" : "0",
3434
+ "max" : "17"
3435
+ },
3436
+ ],
3437
+ "range" : {
3438
+ "min" : "0",
3439
+ "max" : "17"
3440
+ },
3441
+ },
3442
+ },
3443
+ "access" : "readwrite",
3444
+ "default" : "17",
3445
+ "description" :
3446
+ """The minimum input throughput Class. A
3447
+ value of 16 for a circuit means use the PLE
3448
+ default (the PLE parameters entry may not
3449
+ use this value). A value of 17 indicates no
3450
+ facility requested.""",
3451
+ "reference" :
3452
+ """See ISO 8208 Section 15.3.2.3""",
3453
+ }, # column
3454
+ "x25CallParmOutMinThuPutCls" : {
3455
+ "nodetype" : "column",
3456
+ "moduleName" : "RFC1382-MIB",
3457
+ "oid" : "1.3.6.1.2.1.10.5.9.1.23",
3458
+ "status" : "current",
3459
+ "syntax" : {
3460
+ "type" : {
3461
+ "basetype" : "Integer32",
3462
+ "ranges" : [
3463
+ {
3464
+ "min" : "0",
3465
+ "max" : "17"
3466
+ },
3467
+ ],
3468
+ "range" : {
3469
+ "min" : "0",
3470
+ "max" : "17"
3471
+ },
3472
+ },
3473
+ },
3474
+ "access" : "readwrite",
3475
+ "default" : "17",
3476
+ "description" :
3477
+ """The minimum output throughput Class. A
3478
+ value of 16 for a circuit means use the PLE
3479
+ default (the PLE parameters entry may not
3480
+ use this value). A value of 17 indicates no
3481
+ facility requested.""",
3482
+ "reference" :
3483
+ """See ISO 8208 Section 15.3.2.3""",
3484
+ }, # column
3485
+ "x25CallParmEndTrnsDly" : {
3486
+ "nodetype" : "column",
3487
+ "moduleName" : "RFC1382-MIB",
3488
+ "oid" : "1.3.6.1.2.1.10.5.9.1.24",
3489
+ "status" : "current",
3490
+ "syntax" : {
3491
+ "type" : {
3492
+ "basetype" : "OctetString",
3493
+ "ranges" : [
3494
+ {
3495
+ "min" : "0",
3496
+ "max" : "6"
3497
+ },
3498
+ ],
3499
+ "range" : {
3500
+ "min" : "0",
3501
+ "max" : "6"
3502
+ },
3503
+ },
3504
+ },
3505
+ "access" : "readwrite",
3506
+ "default" : "",
3507
+ "description" :
3508
+ """The End-to-End Transit Delay to negotiate.
3509
+ An octet string of length 2, 4, or 6
3510
+ contains the facility encoded as specified
3511
+ in ISO/IEC 8208 section 15.3.2.4. An octet
3512
+ string of length 3 containing the three
3513
+ character DEF for a circuit means use the
3514
+ PLE default (the entry for the PLE default
3515
+ can not contain the characters DEF). A zero
3516
+ length string indicates no facility
3517
+ requested.""",
3518
+ "reference" :
3519
+ """See ISO 8208 Section 15.3.2.4""",
3520
+ }, # column
3521
+ "x25CallParmPriority" : {
3522
+ "nodetype" : "column",
3523
+ "moduleName" : "RFC1382-MIB",
3524
+ "oid" : "1.3.6.1.2.1.10.5.9.1.25",
3525
+ "status" : "current",
3526
+ "syntax" : {
3527
+ "type" : {
3528
+ "basetype" : "OctetString",
3529
+ "ranges" : [
3530
+ {
3531
+ "min" : "0",
3532
+ "max" : "6"
3533
+ },
3534
+ ],
3535
+ "range" : {
3536
+ "min" : "0",
3537
+ "max" : "6"
3538
+ },
3539
+ },
3540
+ },
3541
+ "access" : "readwrite",
3542
+ "default" : "",
3543
+ "description" :
3544
+ """The priority facility to negotiate. The
3545
+ octet string encoded as specified in ISO/IEC
3546
+ 8208 section 15.3.2.5. A zero length string
3547
+ indicates no facility requested. The entry
3548
+ for the PLE default parameters must be zero
3549
+ length.""",
3550
+ "reference" :
3551
+ """See ISO 8208 Section 15.3.2.5""",
3552
+ }, # column
3553
+ "x25CallParmProtection" : {
3554
+ "nodetype" : "column",
3555
+ "moduleName" : "RFC1382-MIB",
3556
+ "oid" : "1.3.6.1.2.1.10.5.9.1.26",
3557
+ "status" : "current",
3558
+ "syntax" : {
3559
+ "type" : {
3560
+ "basetype" : "OctetString",
3561
+ "parent module" : {
3562
+ "name" : "RFC1213-MIB",
3563
+ "type" : "DisplayString",
3564
+ },
3565
+ "ranges" : [
3566
+ {
3567
+ "min" : "0",
3568
+ "max" : "108"
3569
+ },
3570
+ ],
3571
+ "range" : {
3572
+ "min" : "0",
3573
+ "max" : "108"
3574
+ },
3575
+ },
3576
+ },
3577
+ "access" : "readwrite",
3578
+ "default" : "",
3579
+ "description" :
3580
+ """A string contains the following:
3581
+ A hex string containing the value for the
3582
+ protection facility. This will be converted
3583
+ from hex to the octets actually in the
3584
+ packet by the agent. The agent will supply
3585
+ the length field and the length octet is not
3586
+ contained in this string.
3587
+
3588
+ An string containing the 3 characters DEF
3589
+ for a circuit means use the PLE default (the
3590
+ entry for the PLE default parameters may not
3591
+ use the value DEF).
3592
+
3593
+ A zero length string mean no facility
3594
+ requested.""",
3595
+ "reference" :
3596
+ """See ISO 8208 Section 15.3.2.5""",
3597
+ }, # column
3598
+ "x25CallParmExptData" : {
3599
+ "nodetype" : "column",
3600
+ "moduleName" : "RFC1382-MIB",
3601
+ "oid" : "1.3.6.1.2.1.10.5.9.1.27",
3602
+ "status" : "current",
3603
+ "syntax" : {
3604
+ "type" : {
3605
+ "basetype" : "Enumeration",
3606
+ "default" : {
3607
+ "nodetype" : "namednumber",
3608
+ "number" : "1"
3609
+ },
3610
+ "noExpeditedData" : {
3611
+ "nodetype" : "namednumber",
3612
+ "number" : "2"
3613
+ },
3614
+ "expeditedData" : {
3615
+ "nodetype" : "namednumber",
3616
+ "number" : "3"
3617
+ },
3618
+ },
3619
+ },
3620
+ "access" : "readwrite",
3621
+ "default" : "noExpeditedData",
3622
+ "description" :
3623
+ """The Expedited Data facility to negotiate.
3624
+ A value of default for a circuit means use
3625
+ the PLE default value. The entry for the
3626
+ PLE default parameters may not have the
3627
+ value default.""",
3628
+ "reference" :
3629
+ """See ISO 8208 Section 15.3.2.7""",
3630
+ }, # column
3631
+ "x25CallParmUserData" : {
3632
+ "nodetype" : "column",
3633
+ "moduleName" : "RFC1382-MIB",
3634
+ "oid" : "1.3.6.1.2.1.10.5.9.1.28",
3635
+ "status" : "current",
3636
+ "syntax" : {
3637
+ "type" : {
3638
+ "basetype" : "OctetString",
3639
+ "ranges" : [
3640
+ {
3641
+ "min" : "0",
3642
+ "max" : "128"
3643
+ },
3644
+ ],
3645
+ "range" : {
3646
+ "min" : "0",
3647
+ "max" : "128"
3648
+ },
3649
+ },
3650
+ },
3651
+ "access" : "readwrite",
3652
+ "default" : "",
3653
+ "description" :
3654
+ """The call user data as placed in the packet.
3655
+ A zero length string indicates no call user
3656
+ data. If both the circuit call parameters
3657
+ and the PLE default have call user data
3658
+ defined, the data from the circuit call
3659
+ parameters will be used. If only the PLE
3660
+ has data defined, the PLE entry will be
3661
+ used. If neither the circuit call
3662
+ parameters or the PLE default entry has a
3663
+ value, no call user data will be sent.""",
3664
+ "reference" :
3665
+ """See ISO 8208 Section 12.2.1.1.6, 12.2.1.2""",
3666
+ }, # column
3667
+ "x25CallParmCallingNetworkFacilities" : {
3668
+ "nodetype" : "column",
3669
+ "moduleName" : "RFC1382-MIB",
3670
+ "oid" : "1.3.6.1.2.1.10.5.9.1.29",
3671
+ "status" : "current",
3672
+ "syntax" : {
3673
+ "type" : {
3674
+ "basetype" : "OctetString",
3675
+ "ranges" : [
3676
+ {
3677
+ "min" : "0",
3678
+ "max" : "108"
3679
+ },
3680
+ ],
3681
+ "range" : {
3682
+ "min" : "0",
3683
+ "max" : "108"
3684
+ },
3685
+ },
3686
+ },
3687
+ "access" : "readwrite",
3688
+ "default" : "",
3689
+ "description" :
3690
+ """The calling network facilities. The
3691
+ facilities are encoded here exactly as
3692
+ encoded in the call packet. These
3693
+ facilities do not include the marker
3694
+ facility code.
3695
+
3696
+ A zero length string in the entry for the
3697
+ parameter to use when establishing a circuit
3698
+ means use the PLE default. A zero length
3699
+ string in the entry for PLE default
3700
+ parameters indicates no default facilities.""",
3701
+ "reference" :
3702
+ """See ISO 8206 Section 15.1, category b""",
3703
+ }, # column
3704
+ "x25CallParmCalledNetworkFacilities" : {
3705
+ "nodetype" : "column",
3706
+ "moduleName" : "RFC1382-MIB",
3707
+ "oid" : "1.3.6.1.2.1.10.5.9.1.30",
3708
+ "status" : "current",
3709
+ "syntax" : {
3710
+ "type" : {
3711
+ "basetype" : "OctetString",
3712
+ "ranges" : [
3713
+ {
3714
+ "min" : "0",
3715
+ "max" : "108"
3716
+ },
3717
+ ],
3718
+ "range" : {
3719
+ "min" : "0",
3720
+ "max" : "108"
3721
+ },
3722
+ },
3723
+ },
3724
+ "access" : "readwrite",
3725
+ "default" : "",
3726
+ "description" :
3727
+ """The called network facilities. The
3728
+ facilities are encoded here exactly as
3729
+ encoded in the call packet. These
3730
+ facilities do not include the marker
3731
+ facility code.
3732
+
3733
+ A zero length string in the entry for the
3734
+ parameter to use when establishing a circuit
3735
+ means use the PLE default. A zero length
3736
+ string in the entry for PLE default
3737
+ parameters indicates no default facilities.""",
3738
+ "reference" :
3739
+ """See ISO 8206 Section 15.1, category c""",
3740
+ }, # column
3741
+ "x25ProtocolVersion" : {
3742
+ "nodetype" : "node",
3743
+ "moduleName" : "RFC1382-MIB",
3744
+ "oid" : "1.3.6.1.2.1.10.5.10",
3745
+ }, # node
3746
+ "x25protocolCcittV1976" : {
3747
+ "nodetype" : "node",
3748
+ "moduleName" : "RFC1382-MIB",
3749
+ "oid" : "1.3.6.1.2.1.10.5.10.1",
3750
+ }, # node
3751
+ "x25protocolCcittV1980" : {
3752
+ "nodetype" : "node",
3753
+ "moduleName" : "RFC1382-MIB",
3754
+ "oid" : "1.3.6.1.2.1.10.5.10.2",
3755
+ }, # node
3756
+ "x25protocolCcittV1984" : {
3757
+ "nodetype" : "node",
3758
+ "moduleName" : "RFC1382-MIB",
3759
+ "oid" : "1.3.6.1.2.1.10.5.10.3",
3760
+ }, # node
3761
+ "x25protocolCcittV1988" : {
3762
+ "nodetype" : "node",
3763
+ "moduleName" : "RFC1382-MIB",
3764
+ "oid" : "1.3.6.1.2.1.10.5.10.4",
3765
+ }, # node
3766
+ "x25protocolIso8208V1987" : {
3767
+ "nodetype" : "node",
3768
+ "moduleName" : "RFC1382-MIB",
3769
+ "oid" : "1.3.6.1.2.1.10.5.10.5",
3770
+ }, # node
3771
+ "x25protocolIso8208V1989" : {
3772
+ "nodetype" : "node",
3773
+ "moduleName" : "RFC1382-MIB",
3774
+ "oid" : "1.3.6.1.2.1.10.5.10.6",
3775
+ }, # node
3776
+ }, # nodes
3777
+
3778
+ "notifications" : {
3779
+ "x25Restart" : {
3780
+ "nodetype" : "notification",
3781
+ "moduleName" : "RFC1382-MIB",
3782
+ "oid" : "1.3.6.1.2.1.10.5.0.1",
3783
+ "status" : "current",
3784
+ "objects" : {
3785
+ "x25OperIndex" : {
3786
+ "nodetype" : "object",
3787
+ "module" : "RFC1382-MIB"
3788
+ },
3789
+ },
3790
+ "description" :
3791
+ """This trap means the X.25 PLE sent or
3792
+ received a restart packet. The restart that
3793
+ brings up the link should not send a
3794
+ x25Restart trap so the interface should send
3795
+ a linkUp trap. Sending this trap means the
3796
+ agent does not send a linkDown and linkUp
3797
+ trap.""",
3798
+ }, # notification
3799
+ "x25Reset" : {
3800
+ "nodetype" : "notification",
3801
+ "moduleName" : "RFC1382-MIB",
3802
+ "oid" : "1.3.6.1.2.1.10.5.0.2",
3803
+ "status" : "current",
3804
+ "objects" : {
3805
+ "x25CircuitIndex" : {
3806
+ "nodetype" : "object",
3807
+ "module" : "RFC1382-MIB"
3808
+ },
3809
+ "x25CircuitChannel" : {
3810
+ "nodetype" : "object",
3811
+ "module" : "RFC1382-MIB"
3812
+ },
3813
+ },
3814
+ "description" :
3815
+ """If the PLE sends or receives a reset, the
3816
+ agent should send an x25Reset trap.""",
3817
+ }, # notification
3818
+ }, # notifications
3819
+
3820
+ }