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,4050 @@
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 L2TP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/L2TP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "L2TP-MIB",
11
+
12
+ "L2TP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF L2TP Working Group""",
17
+ "contact" :
18
+ """Evan Caves
19
+ Postal: Occam Networks
20
+ 77 Robin Hill Road
21
+ Santa Barbara, CA, 93117
22
+ Tel: +1 805692 2900
23
+ Email: evan@occamnetworks.com
24
+
25
+ Pat R. Calhoun
26
+
27
+
28
+
29
+ Postal: Black Storm Networks
30
+ 110 Nortech Parkway
31
+ San Jose, CA, 95143
32
+ Tel: +1 408 941-0500
33
+ Email: pcalhoun@bstormnetworks.com
34
+
35
+ Ross Wheeler
36
+ Postal: DoubleWide Software, Inc.
37
+ 2953 Bunker Hill Lane
38
+ Suite 101
39
+ Santa Clara, CA 95054
40
+ Tel: +1 6509260599
41
+ Email: ross@doublewidesoft.com
42
+
43
+ Layer Two Tunneling Protocol Extensions WG
44
+ Working Group Area: Internet
45
+ Working Group Name: l2tpext
46
+ General Discussion: l2tp@l2tp.net""",
47
+ "description" :
48
+ """The MIB module that describes managed objects of
49
+ general use by the Layer Two Transport Protocol.""",
50
+ "revisions" : (
51
+ {
52
+ "date" : "2002-08-23 00:00",
53
+ "description" :
54
+ """First revision, published as RFC 3371.""",
55
+ },
56
+ ),
57
+ "identity node" : "l2tp",
58
+ },
59
+
60
+ "imports" : (
61
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
62
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
63
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
64
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
65
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
66
+ {"module" : "SNMPv2-SMI", "name" : "transmission"},
67
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
68
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
69
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
70
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
71
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
72
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
73
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
74
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
75
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
76
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
77
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
78
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
79
+ ),
80
+
81
+ "typedefs" : {
82
+ "L2tpMilliSeconds" : {
83
+ "basetype" : "Integer32",
84
+ "status" : "current",
85
+ "ranges" : [
86
+ {
87
+ "min" : "0",
88
+ "max" : "2147483646"
89
+ },
90
+ ],
91
+ "range" : {
92
+ "min" : "0",
93
+ "max" : "2147483646"
94
+ },
95
+ "format" : "d-3",
96
+ "description" :
97
+ """A period of time measured in units of .001 of seconds
98
+ when used in conjunction with the DISPLAY-HINT will
99
+ show seconds and fractions of second with a resolution
100
+ of .001 of a second.""",
101
+ },
102
+ }, # typedefs
103
+
104
+ "nodes" : {
105
+ "l2tp" : {
106
+ "nodetype" : "node",
107
+ "moduleName" : "L2TP-MIB",
108
+ "oid" : "1.3.6.1.2.1.10.95",
109
+ "status" : "current",
110
+ }, # node
111
+ "l2tpNotifications" : {
112
+ "nodetype" : "node",
113
+ "moduleName" : "L2TP-MIB",
114
+ "oid" : "1.3.6.1.2.1.10.95.0",
115
+ }, # node
116
+ "l2tpObjects" : {
117
+ "nodetype" : "node",
118
+ "moduleName" : "L2TP-MIB",
119
+ "oid" : "1.3.6.1.2.1.10.95.1",
120
+ }, # node
121
+ "l2tpScalar" : {
122
+ "nodetype" : "node",
123
+ "moduleName" : "L2TP-MIB",
124
+ "oid" : "1.3.6.1.2.1.10.95.1.1",
125
+ }, # node
126
+ "l2tpConfig" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "L2TP-MIB",
129
+ "oid" : "1.3.6.1.2.1.10.95.1.1.1",
130
+ }, # node
131
+ "l2tpAdminState" : {
132
+ "nodetype" : "scalar",
133
+ "moduleName" : "L2TP-MIB",
134
+ "oid" : "1.3.6.1.2.1.10.95.1.1.1.1",
135
+ "status" : "current",
136
+ "syntax" : {
137
+ "type" : {
138
+ "basetype" : "Enumeration",
139
+ "enabled" : {
140
+ "nodetype" : "namednumber",
141
+ "number" : "1"
142
+ },
143
+ "disabled" : {
144
+ "nodetype" : "namednumber",
145
+ "number" : "2"
146
+ },
147
+ },
148
+ },
149
+ "access" : "readwrite",
150
+ "description" :
151
+ """This object defines the administrative state of
152
+ the L2TP protocol. Setting this object to
153
+ 'disabled' causes all tunnels to be immediately
154
+ disconnected and no further tunnels to be either
155
+ initiated or accepted. The value of this object
156
+ must be maintained in non-volatile memory.""",
157
+ }, # scalar
158
+ "l2tpDrainTunnels" : {
159
+ "nodetype" : "scalar",
160
+ "moduleName" : "L2TP-MIB",
161
+ "oid" : "1.3.6.1.2.1.10.95.1.1.1.2",
162
+ "status" : "current",
163
+ "syntax" : {
164
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
165
+ },
166
+ "access" : "readwrite",
167
+ "description" :
168
+ """Setting this object to 'true' will prevent any new
169
+ tunnels and/or sessions to be either initiated or
170
+ accepted but does NOT disconnect any active
171
+ tunnels/sessions. Setting this object to true(1)
172
+ causes all domains and their respective tunnels
173
+ to transition to the draining state. Note that
174
+ when this occurs the 'xxxDraining' status objects
175
+ of the domains and their tunnels should reflect
176
+ that they are 'draining'. Setting this object has
177
+ no affect on the domains or their tunnels
178
+ 'xxxDrainTunnels' configuration objects. To cancel
179
+ a drain this object should be set to false(2).
180
+ The object l2tpDrainingTunnels reflects
181
+ the current L2TP draining state. The value of
182
+ this object must be maintained in non-volatile
183
+ memory.""",
184
+ }, # scalar
185
+ "l2tpStats" : {
186
+ "nodetype" : "node",
187
+ "moduleName" : "L2TP-MIB",
188
+ "oid" : "1.3.6.1.2.1.10.95.1.1.2",
189
+ }, # node
190
+ "l2tpProtocolVersions" : {
191
+ "nodetype" : "scalar",
192
+ "moduleName" : "L2TP-MIB",
193
+ "oid" : "1.3.6.1.2.1.10.95.1.1.2.1",
194
+ "status" : "current",
195
+ "syntax" : {
196
+ "type" : {
197
+ "basetype" : "OctetString",
198
+ "ranges" : [
199
+ {
200
+ "min" : "2",
201
+ "max" : "256"
202
+ },
203
+ ],
204
+ "range" : {
205
+ "min" : "2",
206
+ "max" : "256"
207
+ },
208
+ },
209
+ },
210
+ "access" : "readonly",
211
+ "description" :
212
+ """Vector of supported L2TP protocol version and
213
+ revision numbers. Supported versions are identified
214
+ via a two octet pairing where the first octet indicates
215
+ the version and the second octet contains the revision.""",
216
+ }, # scalar
217
+ "l2tpVendorName" : {
218
+ "nodetype" : "scalar",
219
+ "moduleName" : "L2TP-MIB",
220
+ "oid" : "1.3.6.1.2.1.10.95.1.1.2.2",
221
+ "status" : "current",
222
+ "syntax" : {
223
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
224
+ },
225
+ "access" : "readonly",
226
+ "description" :
227
+ """This object identifies the Vendor name of the L2TP
228
+ protocol stack.""",
229
+ }, # scalar
230
+ "l2tpFirmwareRev" : {
231
+ "nodetype" : "scalar",
232
+ "moduleName" : "L2TP-MIB",
233
+ "oid" : "1.3.6.1.2.1.10.95.1.1.2.3",
234
+ "status" : "current",
235
+ "syntax" : {
236
+ "type" : { "module" :"", "name" : "Integer32"},
237
+ },
238
+ "access" : "readonly",
239
+ "description" :
240
+ """This object defines the firmware revision for the
241
+ L2TP protocol stack.""",
242
+ }, # scalar
243
+ "l2tpDrainingTunnels" : {
244
+ "nodetype" : "scalar",
245
+ "moduleName" : "L2TP-MIB",
246
+ "oid" : "1.3.6.1.2.1.10.95.1.1.2.4",
247
+ "status" : "current",
248
+ "syntax" : {
249
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
250
+ },
251
+ "access" : "readonly",
252
+ "description" :
253
+ """This object indicates if the local L2TP is draining
254
+ off sessions from all tunnels.""",
255
+ }, # scalar
256
+ "l2tpDomainConfigTable" : {
257
+ "nodetype" : "table",
258
+ "moduleName" : "L2TP-MIB",
259
+ "oid" : "1.3.6.1.2.1.10.95.1.2",
260
+ "status" : "current",
261
+ "description" :
262
+ """The L2TP Domain configuration table. This table
263
+ contains objects that can be used to configure
264
+ the operational characteristics of a tunnel
265
+ domain. There is a 1-1 correspondence between
266
+ conceptual rows of this table and conceptual
267
+ rows of the l2tpDomainStatsTable.""",
268
+ }, # table
269
+ "l2tpDomainConfigEntry" : {
270
+ "nodetype" : "row",
271
+ "moduleName" : "L2TP-MIB",
272
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1",
273
+ "create" : "true",
274
+ "status" : "current",
275
+ "linkage" : [
276
+ "l2tpDomainConfigId",
277
+ ],
278
+ "description" :
279
+ """An L2TP Domain configuration entry. An entry in this
280
+ table may correspond to a single endpoint or a group
281
+ of tunnel endpoints.""",
282
+ }, # row
283
+ "l2tpDomainConfigId" : {
284
+ "nodetype" : "column",
285
+ "moduleName" : "L2TP-MIB",
286
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.1",
287
+ "status" : "current",
288
+ "syntax" : {
289
+ "type" : {
290
+ "basetype" : "OctetString",
291
+ "parent module" : {
292
+ "name" : "SNMP-FRAMEWORK-MIB",
293
+ "type" : "SnmpAdminString",
294
+ },
295
+ "ranges" : [
296
+ {
297
+ "min" : "1",
298
+ "max" : "80"
299
+ },
300
+ ],
301
+ "range" : {
302
+ "min" : "1",
303
+ "max" : "80"
304
+ },
305
+ },
306
+ },
307
+ "access" : "noaccess",
308
+ "description" :
309
+ """The identifier, usually in the form of a Domain
310
+ Name (full or partial), describing a single tunnel
311
+ endpoint or a domain of tunnel endpoints. This is
312
+ typically used as a 'handle' to identify the
313
+ tunnel configuration requirements for both incoming
314
+ and outgoing tunnel connection attempts. Both the
315
+ LAC and LNS could use information provided in the
316
+ Host Name AVP attribute however the tunnel initiator
317
+ could use other means not specified to identify
318
+ the domain's tunnel configuration requirements.
319
+ For example; three rows in this table have
320
+ l2tpDomainConfigId values of 'lac1.isp.com',
321
+
322
+
323
+
324
+ 'isp.com' and 'com'. A tunnel endpoint then identifies
325
+ itself as 'lac1.isp.com' which would match the
326
+ 'lac1.isp.com' entry in this table. A second tunnel
327
+ endpoint then identifies itself as 'lac2.isp.com'.
328
+ This endpoint is then associated with the 'isp.com'
329
+ entry of this table.""",
330
+ }, # column
331
+ "l2tpDomainConfigAdminState" : {
332
+ "nodetype" : "column",
333
+ "moduleName" : "L2TP-MIB",
334
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.2",
335
+ "status" : "current",
336
+ "syntax" : {
337
+ "type" : {
338
+ "basetype" : "Enumeration",
339
+ "enabled" : {
340
+ "nodetype" : "namednumber",
341
+ "number" : "1"
342
+ },
343
+ "disabled" : {
344
+ "nodetype" : "namednumber",
345
+ "number" : "2"
346
+ },
347
+ },
348
+ },
349
+ "access" : "readwrite",
350
+ "default" : "enabled",
351
+ "description" :
352
+ """This object defines the administrative state of this
353
+ tunnel domain. Setting this object to disabled(2)
354
+ causes all tunnels to be immediately disconnected
355
+ and no further tunnels to be either initiated or
356
+ accepted. Note that all columnar objects corresponding
357
+ to this conceptual row cannot be modified when
358
+ the administrative state is enabled EXCEPT those
359
+ objects which specifically state otherwise.""",
360
+ }, # column
361
+ "l2tpDomainConfigDrainTunnels" : {
362
+ "nodetype" : "column",
363
+ "moduleName" : "L2TP-MIB",
364
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.3",
365
+ "status" : "current",
366
+ "syntax" : {
367
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
368
+ },
369
+ "access" : "readwrite",
370
+ "default" : "false",
371
+ "description" :
372
+ """Setting this object to 'true' will prevent any new
373
+ tunnels and/or sessions from being either initiated
374
+ or accepted but does NOT disconnect any active
375
+ tunnels/sessions for this tunnel domain. Setting
376
+ this object to true(1) causes all tunnels within
377
+ this domain to transition to the draining state.
378
+ Note that when this occurs the
379
+ l2tpTunnelStatsDrainingTunnel status objects of
380
+ all of this domain's tunnels should reflect that
381
+ they are 'draining'. Setting this object has no
382
+ effect on this domain's associated tunnels
383
+ l2tpTunnelConfigDrainTunnel configuration objects.
384
+ To cancel a drain this object should be set to
385
+ false(2). Setting this object to false(2) when
386
+ the L2TP object l2tpDrainTunnels is true(1) has
387
+ no affect, all domains and their tunnels will
388
+
389
+
390
+
391
+ continue to drain.""",
392
+ }, # column
393
+ "l2tpDomainConfigAuth" : {
394
+ "nodetype" : "column",
395
+ "moduleName" : "L2TP-MIB",
396
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.4",
397
+ "status" : "current",
398
+ "syntax" : {
399
+ "type" : {
400
+ "basetype" : "Enumeration",
401
+ "none" : {
402
+ "nodetype" : "namednumber",
403
+ "number" : "1"
404
+ },
405
+ "simple" : {
406
+ "nodetype" : "namednumber",
407
+ "number" : "2"
408
+ },
409
+ "challenge" : {
410
+ "nodetype" : "namednumber",
411
+ "number" : "3"
412
+ },
413
+ },
414
+ },
415
+ "access" : "readwrite",
416
+ "default" : "none",
417
+ "description" :
418
+ """This object describes how tunnel peers belonging
419
+ to this domain are to be authenticated. The value
420
+ simple(2) indicates that peers are authenticated
421
+ simply by their host name as described in the Host
422
+ Name AVP. The value challenge(3) indicates that
423
+ all peers are challenged to prove their identification.
424
+ This mechanism is described in the L2TP protocol.""",
425
+ "reference" :
426
+ """RFC 2661 Section 5.1""",
427
+ }, # column
428
+ "l2tpDomainConfigSecret" : {
429
+ "nodetype" : "column",
430
+ "moduleName" : "L2TP-MIB",
431
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.5",
432
+ "status" : "current",
433
+ "syntax" : {
434
+ "type" : {
435
+ "basetype" : "OctetString",
436
+ "parent module" : {
437
+ "name" : "SNMP-FRAMEWORK-MIB",
438
+ "type" : "SnmpAdminString",
439
+ },
440
+ "ranges" : [
441
+ {
442
+ "min" : "0",
443
+ "max" : "255"
444
+ },
445
+ ],
446
+ "range" : {
447
+ "min" : "0",
448
+ "max" : "255"
449
+ },
450
+ },
451
+ },
452
+ "access" : "readwrite",
453
+ "description" :
454
+ """This object is used to configure the shared secret
455
+ used during the tunnel authentication phase of
456
+ tunnel establishment. This object MUST be accessible
457
+ only via requests using both authentication and
458
+ privacy. The agent MUST report an empty string in
459
+ response to get, get-next and get-bulk requests.""",
460
+ }, # column
461
+ "l2tpDomainConfigTunnelSecurity" : {
462
+ "nodetype" : "column",
463
+ "moduleName" : "L2TP-MIB",
464
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.6",
465
+ "status" : "current",
466
+ "syntax" : {
467
+ "type" : {
468
+ "basetype" : "Enumeration",
469
+ "none" : {
470
+ "nodetype" : "namednumber",
471
+ "number" : "1"
472
+ },
473
+ "other" : {
474
+ "nodetype" : "namednumber",
475
+ "number" : "2"
476
+ },
477
+ "ipSec" : {
478
+ "nodetype" : "namednumber",
479
+ "number" : "3"
480
+ },
481
+ },
482
+ },
483
+ "access" : "readwrite",
484
+ "default" : "none",
485
+ "description" :
486
+ """This object defines whether this tunnel domain
487
+ requires that all tunnels are to be secured. The
488
+
489
+
490
+
491
+ value of ipsec(3) indicates that all tunnel packets,
492
+ control and session, have IP Security headers. The
493
+ type of IP Security headers (AH, ESP etc) and how
494
+ they are further described is outside the scope of
495
+ this document.""",
496
+ }, # column
497
+ "l2tpDomainConfigTunnelHelloInt" : {
498
+ "nodetype" : "column",
499
+ "moduleName" : "L2TP-MIB",
500
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.7",
501
+ "status" : "current",
502
+ "syntax" : {
503
+ "type" : {
504
+ "basetype" : "Integer32",
505
+ "ranges" : [
506
+ {
507
+ "min" : "0",
508
+ "max" : "3600"
509
+ },
510
+ ],
511
+ "range" : {
512
+ "min" : "0",
513
+ "max" : "3600"
514
+ },
515
+ },
516
+ },
517
+ "access" : "readwrite",
518
+ "default" : "60",
519
+ "units" : "seconds",
520
+ "description" :
521
+ """This object defines the interval in which Hello
522
+ (or keep-alive) packets are to be sent by local
523
+ peers belonging to this tunnel domain. The value
524
+ zero effectively disables the sending of Hello
525
+ packets. This object may be modified when the
526
+ administrative state is enabled for this conceptual
527
+ row.""",
528
+ }, # column
529
+ "l2tpDomainConfigTunnelIdleTO" : {
530
+ "nodetype" : "column",
531
+ "moduleName" : "L2TP-MIB",
532
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.8",
533
+ "status" : "current",
534
+ "syntax" : {
535
+ "type" : {
536
+ "basetype" : "Integer32",
537
+ "ranges" : [
538
+ {
539
+ "min" : "-1",
540
+ "max" : "86400"
541
+ },
542
+ ],
543
+ "range" : {
544
+ "min" : "-1",
545
+ "max" : "86400"
546
+ },
547
+ },
548
+ },
549
+ "access" : "readwrite",
550
+ "default" : "0",
551
+ "units" : "seconds",
552
+ "description" :
553
+ """This object defines the period of time that an
554
+ established tunnel belonging to this tunnel
555
+ domain with no active sessions will wait before
556
+ disconnecting the tunnel. A value of zero indicates
557
+ that the tunnel will disconnect immediately after the
558
+ last session disconnects. A value of -1 leaves the
559
+ tunnel up indefinitely. This object may be modified
560
+ when the administrative state is enabled for this
561
+ conceptual row.""",
562
+ }, # column
563
+ "l2tpDomainConfigControlRWS" : {
564
+ "nodetype" : "column",
565
+ "moduleName" : "L2TP-MIB",
566
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.9",
567
+ "status" : "current",
568
+ "syntax" : {
569
+ "type" : {
570
+ "basetype" : "Integer32",
571
+ "ranges" : [
572
+ {
573
+ "min" : "1",
574
+ "max" : "65535"
575
+ },
576
+ ],
577
+ "range" : {
578
+ "min" : "1",
579
+ "max" : "65535"
580
+ },
581
+ },
582
+ },
583
+ "access" : "readwrite",
584
+ "default" : "4",
585
+ "description" :
586
+ """This object defines the control channel receive
587
+
588
+
589
+
590
+ window size for tunnels belonging to this domain. It
591
+ specifies the maximum number of packets the tunnel
592
+ peer belonging to this domain can send without waiting
593
+ for an acknowledgement from this peer.""",
594
+ }, # column
595
+ "l2tpDomainConfigControlMaxRetx" : {
596
+ "nodetype" : "column",
597
+ "moduleName" : "L2TP-MIB",
598
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.10",
599
+ "status" : "current",
600
+ "syntax" : {
601
+ "type" : {
602
+ "basetype" : "Integer32",
603
+ "ranges" : [
604
+ {
605
+ "min" : "0",
606
+ "max" : "32"
607
+ },
608
+ ],
609
+ "range" : {
610
+ "min" : "0",
611
+ "max" : "32"
612
+ },
613
+ },
614
+ },
615
+ "access" : "readwrite",
616
+ "default" : "5",
617
+ "description" :
618
+ """This object defines the maximum number of retransmissions
619
+ which the L2TP stack will attempt for tunnels belonging
620
+ to this domain before assuming that the peer is no
621
+ longer responding.""",
622
+ }, # column
623
+ "l2tpDomainConfigControlMaxRetxTO" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "L2TP-MIB",
626
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.11",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : {
630
+ "basetype" : "Integer32",
631
+ "ranges" : [
632
+ {
633
+ "min" : "1",
634
+ "max" : "32"
635
+ },
636
+ ],
637
+ "range" : {
638
+ "min" : "1",
639
+ "max" : "32"
640
+ },
641
+ },
642
+ },
643
+ "access" : "readwrite",
644
+ "default" : "16",
645
+ "units" : "seconds",
646
+ "description" :
647
+ """This object defines the maximum retransmission timeout
648
+ interval which the L2TP stack will wait for tunnels
649
+ belonging to this domain before retransmitting a
650
+ control packet that has not been acknowledged.""",
651
+ }, # column
652
+ "l2tpDomainConfigPayloadSeq" : {
653
+ "nodetype" : "column",
654
+ "moduleName" : "L2TP-MIB",
655
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.12",
656
+ "status" : "current",
657
+ "syntax" : {
658
+ "type" : {
659
+ "basetype" : "Enumeration",
660
+ "onDemand" : {
661
+ "nodetype" : "namednumber",
662
+ "number" : "1"
663
+ },
664
+ "never" : {
665
+ "nodetype" : "namednumber",
666
+ "number" : "2"
667
+ },
668
+ "always" : {
669
+ "nodetype" : "namednumber",
670
+ "number" : "3"
671
+ },
672
+ },
673
+ },
674
+ "access" : "readwrite",
675
+ "default" : "onDemand",
676
+ "description" :
677
+ """This object determines whether or not session payload
678
+ packets will be requested to be sent with sequence
679
+ numbers from tunnel peers belonging to this domain.
680
+ The value onDemand(1) allows the L2TP implementation
681
+ to initiate payload sequencing when necessary based
682
+ on local information (e.g: during LCP/NCP negotiations
683
+ or for CCP). The value never(2) indicates that L2TP
684
+
685
+
686
+
687
+ will never initiate sequencing but will do sequencing
688
+ if asked. The value always(3) indicates that L2TP
689
+ will send the Sequencing Required AVP during session
690
+ establishment.""",
691
+ }, # column
692
+ "l2tpDomainConfigReassemblyTO" : {
693
+ "nodetype" : "column",
694
+ "moduleName" : "L2TP-MIB",
695
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.13",
696
+ "status" : "current",
697
+ "syntax" : {
698
+ "type" : { "module" :"L2TP-MIB", "name" : "L2tpMilliSeconds"},
699
+ },
700
+ "access" : "readwrite",
701
+ "default" : "0",
702
+ "description" :
703
+ """This object defines the number of milliseconds that
704
+ local peers of this tunnel domain will wait before
705
+ processing payload packets that were received out of
706
+ sequence (which are waiting for the packet(s) to put
707
+ them in sequence). A low value increases the chance
708
+ of delayed packets to be discarded (which MAY cause
709
+ the PPP decompression engine to reset) while a high
710
+ value may cause more queuing and possibly degrade
711
+ throughput if packets are truly lost. The default
712
+ value for this object is zero which will result in
713
+ all delayed packets being lost.""",
714
+ }, # column
715
+ "l2tpDomainConfigProxyPPPAuth" : {
716
+ "nodetype" : "column",
717
+ "moduleName" : "L2TP-MIB",
718
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.14",
719
+ "status" : "current",
720
+ "syntax" : {
721
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
722
+ },
723
+ "access" : "readwrite",
724
+ "default" : "true",
725
+ "description" :
726
+ """This object is used to configure the sending
727
+ or acceptance of the PPP Proxy Authentication
728
+ AVP's on the LAC or LNS.""",
729
+ }, # column
730
+ "l2tpDomainConfigStorageType" : {
731
+ "nodetype" : "column",
732
+ "moduleName" : "L2TP-MIB",
733
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.15",
734
+ "status" : "current",
735
+ "syntax" : {
736
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
737
+ },
738
+ "access" : "readwrite",
739
+ "description" :
740
+ """The storage type for this conceptual row.
741
+
742
+ Conceptual rows having the value 'permanent' must
743
+ allow write-access at a minimum to:
744
+
745
+ - l2tpDomainConfigAdminState and
746
+
747
+
748
+
749
+ l2tpDomainConfigDrainTunnels at all times
750
+ - l2tpDomainConfigSecret if l2tpDomainConfigAuth
751
+ has been configured as 'challenge'
752
+
753
+ It is an implementation issue to decide if a SET for
754
+ a readOnly or permanent row is accepted at all. In some
755
+ contexts this may make sense, in others it may not. If
756
+ a SET for a readOnly or permanent row is not accepted
757
+ at all, then a 'wrongValue' error must be returned.""",
758
+ }, # column
759
+ "l2tpDomainConfigStatus" : {
760
+ "nodetype" : "column",
761
+ "moduleName" : "L2TP-MIB",
762
+ "oid" : "1.3.6.1.2.1.10.95.1.2.1.16",
763
+ "status" : "current",
764
+ "syntax" : {
765
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
766
+ },
767
+ "access" : "readwrite",
768
+ "description" :
769
+ """The status of this Domain entry. Columnar objects
770
+ corresponding to this conceptual row may be modified
771
+ according to their description clauses when this
772
+ RowStatus object is 'active'.""",
773
+ }, # column
774
+ "l2tpDomainStatsTable" : {
775
+ "nodetype" : "table",
776
+ "moduleName" : "L2TP-MIB",
777
+ "oid" : "1.3.6.1.2.1.10.95.1.3",
778
+ "status" : "current",
779
+ "description" :
780
+ """The L2TP Domain Status and Statistics table. This
781
+ table contains objects that can be used to describe
782
+ the current status and statistics of a tunnel domain.
783
+ There is a 1-1 correspondence between conceptual
784
+ rows of this table and conceptual rows of the
785
+ l2tpDomainConfigTable.""",
786
+ }, # table
787
+ "l2tpDomainStatsEntry" : {
788
+ "nodetype" : "row",
789
+ "moduleName" : "L2TP-MIB",
790
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1",
791
+ "status" : "current",
792
+ "linkage" : [
793
+ { "L2TP-MIB" : {
794
+ "indexkind" : "augments",
795
+ "relatedNode" : "l2tpDomainConfigEntry",
796
+ }},
797
+ ],
798
+ "description" :
799
+ """An L2TP Domain Stats entry. An entry in this table
800
+ may correspond to a single endpoint or a group of
801
+ tunnel endpoints.""",
802
+ }, # row
803
+ "l2tpDomainStatsTotalTunnels" : {
804
+ "nodetype" : "column",
805
+ "moduleName" : "L2TP-MIB",
806
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.1",
807
+ "status" : "current",
808
+ "syntax" : {
809
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
810
+ },
811
+ "access" : "readonly",
812
+ "description" :
813
+ """This object returns the total number of tunnels
814
+ that have successfully reached the established
815
+ state for this tunnel domain.""",
816
+ }, # column
817
+ "l2tpDomainStatsFailedTunnels" : {
818
+ "nodetype" : "column",
819
+ "moduleName" : "L2TP-MIB",
820
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.2",
821
+ "status" : "current",
822
+ "syntax" : {
823
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
824
+ },
825
+ "access" : "readonly",
826
+ "description" :
827
+ """This object returns the number of tunnels that
828
+ failed (eg: connection timeout, unsupported
829
+ or malformed AVP's etc) to reach the established
830
+ state for this tunnel domain.""",
831
+ }, # column
832
+ "l2tpDomainStatsFailedAuths" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "L2TP-MIB",
835
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.3",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
839
+ },
840
+ "access" : "readonly",
841
+ "description" :
842
+ """This object returns the number of failed tunnel
843
+ connection attempts for this domain because the
844
+ tunnel peer failed authentication.""",
845
+ }, # column
846
+ "l2tpDomainStatsActiveTunnels" : {
847
+ "nodetype" : "column",
848
+ "moduleName" : "L2TP-MIB",
849
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.4",
850
+ "status" : "current",
851
+ "syntax" : {
852
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
853
+ },
854
+ "access" : "readonly",
855
+ "description" :
856
+ """This object returns the number of tunnels that
857
+ are currently active for this domain.""",
858
+ }, # column
859
+ "l2tpDomainStatsTotalSessions" : {
860
+ "nodetype" : "column",
861
+ "moduleName" : "L2TP-MIB",
862
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.5",
863
+ "status" : "current",
864
+ "syntax" : {
865
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
866
+ },
867
+ "access" : "readonly",
868
+ "description" :
869
+ """This object returns the total number of sessions
870
+ that have successfully reached the established
871
+ state for this tunnel domain.""",
872
+ }, # column
873
+ "l2tpDomainStatsFailedSessions" : {
874
+ "nodetype" : "column",
875
+ "moduleName" : "L2TP-MIB",
876
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.6",
877
+ "status" : "current",
878
+ "syntax" : {
879
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
880
+ },
881
+ "access" : "readonly",
882
+ "description" :
883
+ """This object returns the number of sessions that
884
+ failed (eg: connection timeout, unsupported
885
+ or malformed AVP's etc) to reach the established
886
+ state for this tunnel domain.""",
887
+ }, # column
888
+ "l2tpDomainStatsActiveSessions" : {
889
+ "nodetype" : "column",
890
+ "moduleName" : "L2TP-MIB",
891
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.7",
892
+ "status" : "current",
893
+ "syntax" : {
894
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
895
+ },
896
+ "access" : "readonly",
897
+ "description" :
898
+ """This object returns the number of sessions that
899
+ are currently active for this domain.""",
900
+ }, # column
901
+ "l2tpDomainStatsDrainingTunnels" : {
902
+ "nodetype" : "column",
903
+ "moduleName" : "L2TP-MIB",
904
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.8",
905
+ "status" : "current",
906
+ "syntax" : {
907
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
908
+ },
909
+ "access" : "readonly",
910
+ "description" :
911
+ """This object indicates if this domain is draining
912
+ off sessions from all tunnels.""",
913
+ }, # column
914
+ "l2tpDomainStatsControlRxOctets" : {
915
+ "nodetype" : "column",
916
+ "moduleName" : "L2TP-MIB",
917
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.9",
918
+ "status" : "current",
919
+ "syntax" : {
920
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
921
+ },
922
+ "access" : "readonly",
923
+ "description" :
924
+ """This object returns the number of control channel
925
+ octets received for this tunnel domain.""",
926
+ }, # column
927
+ "l2tpDomainStatsControlRxPkts" : {
928
+ "nodetype" : "column",
929
+ "moduleName" : "L2TP-MIB",
930
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.10",
931
+ "status" : "current",
932
+ "syntax" : {
933
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
934
+ },
935
+ "access" : "readonly",
936
+ "description" :
937
+ """This object returns the number of control packets
938
+ received for this tunnel domain.""",
939
+ }, # column
940
+ "l2tpDomainStatsControlTxOctets" : {
941
+ "nodetype" : "column",
942
+ "moduleName" : "L2TP-MIB",
943
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.11",
944
+ "status" : "current",
945
+ "syntax" : {
946
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
947
+ },
948
+ "access" : "readonly",
949
+ "description" :
950
+ """This object returns the number of control channel
951
+ octets that were transmitted to tunnel endpoints
952
+ for this domain.""",
953
+ }, # column
954
+ "l2tpDomainStatsControlTxPkts" : {
955
+ "nodetype" : "column",
956
+ "moduleName" : "L2TP-MIB",
957
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.12",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
961
+ },
962
+ "access" : "readonly",
963
+ "description" :
964
+ """This object returns the number of control packets
965
+ that were transmitted to tunnel endpoints for
966
+ this domain.""",
967
+ }, # column
968
+ "l2tpDomainStatsPayloadRxOctets" : {
969
+ "nodetype" : "column",
970
+ "moduleName" : "L2TP-MIB",
971
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.13",
972
+ "status" : "current",
973
+ "syntax" : {
974
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
975
+ },
976
+ "access" : "readonly",
977
+ "description" :
978
+ """This object returns the number of payload channel
979
+ octets that were received for this tunnel domain.""",
980
+ }, # column
981
+ "l2tpDomainStatsPayloadRxPkts" : {
982
+ "nodetype" : "column",
983
+ "moduleName" : "L2TP-MIB",
984
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.14",
985
+ "status" : "current",
986
+ "syntax" : {
987
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
988
+ },
989
+ "access" : "readonly",
990
+ "description" :
991
+ """This object returns the number of payload packets
992
+ that were received for this tunnel domain.""",
993
+ }, # column
994
+ "l2tpDomainStatsPayloadRxDiscs" : {
995
+ "nodetype" : "column",
996
+ "moduleName" : "L2TP-MIB",
997
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.15",
998
+ "status" : "current",
999
+ "syntax" : {
1000
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1001
+ },
1002
+ "access" : "readonly",
1003
+ "description" :
1004
+ """This object returns the number of received payload
1005
+ packets that were discarded by this tunnel domain.""",
1006
+ }, # column
1007
+ "l2tpDomainStatsPayloadTxOctets" : {
1008
+ "nodetype" : "column",
1009
+ "moduleName" : "L2TP-MIB",
1010
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.16",
1011
+ "status" : "current",
1012
+ "syntax" : {
1013
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1014
+ },
1015
+ "access" : "readonly",
1016
+ "description" :
1017
+ """This object returns the number of payload channel
1018
+ octets that were transmitted to tunnel peers
1019
+ within this tunnel domain.""",
1020
+ }, # column
1021
+ "l2tpDomainStatsPayloadTxPkts" : {
1022
+ "nodetype" : "column",
1023
+ "moduleName" : "L2TP-MIB",
1024
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.17",
1025
+ "status" : "current",
1026
+ "syntax" : {
1027
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1028
+ },
1029
+ "access" : "readonly",
1030
+ "description" :
1031
+ """This object returns the number of payload packets
1032
+ that were transmitted to tunnel peers within
1033
+ this tunnel domain.""",
1034
+ }, # column
1035
+ "l2tpDomainStatsControlHCRxOctets" : {
1036
+ "nodetype" : "column",
1037
+ "moduleName" : "L2TP-MIB",
1038
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.18",
1039
+ "status" : "current",
1040
+ "syntax" : {
1041
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1042
+ },
1043
+ "access" : "readonly",
1044
+ "description" :
1045
+ """This object is a 64-bit version of
1046
+ l2tpDomainStatsControlRxOctets.""",
1047
+ }, # column
1048
+ "l2tpDomainStatsControlHCRxPkts" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "L2TP-MIB",
1051
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.19",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1055
+ },
1056
+ "access" : "readonly",
1057
+ "description" :
1058
+ """This object is a 64-bit version of
1059
+ l2tpDomainStatsControlRxPkts.""",
1060
+ }, # column
1061
+ "l2tpDomainStatsControlHCTxOctets" : {
1062
+ "nodetype" : "column",
1063
+ "moduleName" : "L2TP-MIB",
1064
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.20",
1065
+ "status" : "current",
1066
+ "syntax" : {
1067
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1068
+ },
1069
+ "access" : "readonly",
1070
+ "description" :
1071
+ """This object is a 64-bit version of
1072
+ l2tpDomainStatsControlTxOctets.""",
1073
+ }, # column
1074
+ "l2tpDomainStatsControlHCTxPkts" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "L2TP-MIB",
1077
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.21",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1081
+ },
1082
+ "access" : "readonly",
1083
+ "description" :
1084
+ """This object is a 64-bit version of
1085
+ l2tpDomainStatsControlTxPkts.""",
1086
+ }, # column
1087
+ "l2tpDomainStatsPayloadHCRxOctets" : {
1088
+ "nodetype" : "column",
1089
+ "moduleName" : "L2TP-MIB",
1090
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.22",
1091
+ "status" : "current",
1092
+ "syntax" : {
1093
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1094
+ },
1095
+ "access" : "readonly",
1096
+ "description" :
1097
+ """This object is a 64-bit version of
1098
+ l2tpDomainStatsPayloadRxOctets.""",
1099
+ }, # column
1100
+ "l2tpDomainStatsPayloadHCRxPkts" : {
1101
+ "nodetype" : "column",
1102
+ "moduleName" : "L2TP-MIB",
1103
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.23",
1104
+ "status" : "current",
1105
+ "syntax" : {
1106
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1107
+ },
1108
+ "access" : "readonly",
1109
+ "description" :
1110
+ """This object is a 64-bit version of
1111
+ l2tpDomainStatsPayloadRxPkts.""",
1112
+ }, # column
1113
+ "l2tpDomainStatsPayloadHCRxDiscs" : {
1114
+ "nodetype" : "column",
1115
+ "moduleName" : "L2TP-MIB",
1116
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.24",
1117
+ "status" : "current",
1118
+ "syntax" : {
1119
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1120
+ },
1121
+ "access" : "readonly",
1122
+ "description" :
1123
+ """This object is a 64-bit version of
1124
+ l2tpDomainStatsPayloadRxDiscs.""",
1125
+ }, # column
1126
+ "l2tpDomainStatsPayloadHCTxOctets" : {
1127
+ "nodetype" : "column",
1128
+ "moduleName" : "L2TP-MIB",
1129
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.25",
1130
+ "status" : "current",
1131
+ "syntax" : {
1132
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1133
+ },
1134
+ "access" : "readonly",
1135
+ "description" :
1136
+ """This object is a 64-bit version of
1137
+ l2tpDomainStatsPayloadTxOctets.""",
1138
+ }, # column
1139
+ "l2tpDomainStatsPayloadHCTxPkts" : {
1140
+ "nodetype" : "column",
1141
+ "moduleName" : "L2TP-MIB",
1142
+ "oid" : "1.3.6.1.2.1.10.95.1.3.1.26",
1143
+ "status" : "current",
1144
+ "syntax" : {
1145
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1146
+ },
1147
+ "access" : "readonly",
1148
+ "description" :
1149
+ """This object is a 64-bit version of
1150
+ l2tpDomainStatsPayloadTxPkts.""",
1151
+ }, # column
1152
+ "l2tpTunnelConfigTable" : {
1153
+ "nodetype" : "table",
1154
+ "moduleName" : "L2TP-MIB",
1155
+ "oid" : "1.3.6.1.2.1.10.95.1.4",
1156
+ "status" : "current",
1157
+ "description" :
1158
+ """The L2TP tunnel configuration table. This
1159
+ table contains objects that can be used to
1160
+ (re)configure the operational characteristics
1161
+ of a single L2TP tunnel. There is a 1-1
1162
+ correspondence between conceptual rows of
1163
+ this table and conceptual rows of the
1164
+ l2tpTunnelStatsTable. Entries in this table
1165
+ have the same persistency characteristics as
1166
+ that of the tunnelConfigTable.""",
1167
+ "reference" :
1168
+ """RFC 2667""",
1169
+ }, # table
1170
+ "l2tpTunnelConfigEntry" : {
1171
+ "nodetype" : "row",
1172
+ "moduleName" : "L2TP-MIB",
1173
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1",
1174
+ "status" : "current",
1175
+ "linkage" : [
1176
+ "l2tpTunnelConfigIfIndex",
1177
+ ],
1178
+ "description" :
1179
+ """A L2TP tunnel interface configuration entry.
1180
+ Entries in this table come and go as a result
1181
+ of protocol interactions or on management
1182
+ operations. The latter occurs when a row is
1183
+ instantiated in the tunnelConfigTable row
1184
+ and the encapsulation method is 'l2tp'.""",
1185
+ "reference" :
1186
+ """RFC 2667""",
1187
+ }, # row
1188
+ "l2tpTunnelConfigIfIndex" : {
1189
+ "nodetype" : "column",
1190
+ "moduleName" : "L2TP-MIB",
1191
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.1",
1192
+ "status" : "current",
1193
+ "syntax" : {
1194
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1195
+ },
1196
+ "access" : "noaccess",
1197
+ "description" :
1198
+ """This value for this object is equal to the value
1199
+ of ifIndex of the Interfaces MIB for tunnel
1200
+ interfaces of type L2TP.""",
1201
+ }, # column
1202
+ "l2tpTunnelConfigDomainId" : {
1203
+ "nodetype" : "column",
1204
+ "moduleName" : "L2TP-MIB",
1205
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.2",
1206
+ "status" : "current",
1207
+ "syntax" : {
1208
+ "type" : {
1209
+ "basetype" : "OctetString",
1210
+ "parent module" : {
1211
+ "name" : "SNMP-FRAMEWORK-MIB",
1212
+ "type" : "SnmpAdminString",
1213
+ },
1214
+ "ranges" : [
1215
+ {
1216
+ "min" : "1",
1217
+ "max" : "80"
1218
+ },
1219
+ ],
1220
+ "range" : {
1221
+ "min" : "1",
1222
+ "max" : "80"
1223
+ },
1224
+ },
1225
+ },
1226
+ "access" : "readwrite",
1227
+ "description" :
1228
+ """The tunnel domain that this tunnel belongs
1229
+ to. A LNS tunnel endpoint will typically inherit
1230
+ this value from the endpoint domain table. A
1231
+ LAC may be provided with this information during
1232
+ tunnel setup. When a zero length string is returned
1233
+ this tunnel does not belong belong to any particular
1234
+ domain.""",
1235
+ }, # column
1236
+ "l2tpTunnelConfigAuth" : {
1237
+ "nodetype" : "column",
1238
+ "moduleName" : "L2TP-MIB",
1239
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.3",
1240
+ "status" : "current",
1241
+ "syntax" : {
1242
+ "type" : {
1243
+ "basetype" : "Enumeration",
1244
+ "none" : {
1245
+ "nodetype" : "namednumber",
1246
+ "number" : "1"
1247
+ },
1248
+ "simple" : {
1249
+ "nodetype" : "namednumber",
1250
+ "number" : "2"
1251
+ },
1252
+ "challenge" : {
1253
+ "nodetype" : "namednumber",
1254
+ "number" : "3"
1255
+ },
1256
+ },
1257
+ },
1258
+ "access" : "readwrite",
1259
+ "default" : "none",
1260
+ "description" :
1261
+ """This object describes how L2TP tunnel peers are
1262
+ to be authenticated. The value 'simple' indicates
1263
+ that peers are authenticated simply by their host
1264
+ name as described in the Host Name AVP. The value
1265
+ 'challenge' indicates that all peers are challenged
1266
+ to prove their identification. This mechanism is
1267
+ described in the L2TP protocol. This object cannot
1268
+ be modified when the tunnel is in a connecting or
1269
+ connected state.""",
1270
+ }, # column
1271
+ "l2tpTunnelConfigSecret" : {
1272
+ "nodetype" : "column",
1273
+ "moduleName" : "L2TP-MIB",
1274
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.4",
1275
+ "status" : "current",
1276
+ "syntax" : {
1277
+ "type" : {
1278
+ "basetype" : "OctetString",
1279
+ "parent module" : {
1280
+ "name" : "SNMP-FRAMEWORK-MIB",
1281
+ "type" : "SnmpAdminString",
1282
+ },
1283
+ "ranges" : [
1284
+ {
1285
+ "min" : "0",
1286
+ "max" : "255"
1287
+ },
1288
+ ],
1289
+ "range" : {
1290
+ "min" : "0",
1291
+ "max" : "255"
1292
+ },
1293
+ },
1294
+ },
1295
+ "access" : "readwrite",
1296
+ "description" :
1297
+ """This object is used to configure the shared secret
1298
+ used during the tunnel authentication phase of
1299
+
1300
+
1301
+
1302
+ tunnel establishment. This object cannot be modified
1303
+ when the tunnel is in a connecting or connected
1304
+ state. This object MUST be accessible only via
1305
+ requests using both authentication and privacy.
1306
+ The agent MUST report an empty string in response
1307
+ to get, get-next and get-bulk requests.""",
1308
+ }, # column
1309
+ "l2tpTunnelConfigSecurity" : {
1310
+ "nodetype" : "column",
1311
+ "moduleName" : "L2TP-MIB",
1312
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.5",
1313
+ "status" : "current",
1314
+ "syntax" : {
1315
+ "type" : {
1316
+ "basetype" : "Enumeration",
1317
+ "none" : {
1318
+ "nodetype" : "namednumber",
1319
+ "number" : "1"
1320
+ },
1321
+ "other" : {
1322
+ "nodetype" : "namednumber",
1323
+ "number" : "2"
1324
+ },
1325
+ "ipsec" : {
1326
+ "nodetype" : "namednumber",
1327
+ "number" : "3"
1328
+ },
1329
+ },
1330
+ },
1331
+ "access" : "readwrite",
1332
+ "default" : "none",
1333
+ "description" :
1334
+ """This object defines whether this tunnel is to be
1335
+ secured. The value of 'ipSec' indicates that all
1336
+ tunnel packets, control and session, have IP
1337
+ Security headers. The type of IP Security headers
1338
+ (AH, ESP etc) and how they are further described
1339
+ is outside the scope of this document. This object
1340
+ cannot be modified when the tunnel is in a connecting
1341
+ or connected state.""",
1342
+ }, # column
1343
+ "l2tpTunnelConfigHelloInterval" : {
1344
+ "nodetype" : "column",
1345
+ "moduleName" : "L2TP-MIB",
1346
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.6",
1347
+ "status" : "current",
1348
+ "syntax" : {
1349
+ "type" : {
1350
+ "basetype" : "Integer32",
1351
+ "ranges" : [
1352
+ {
1353
+ "min" : "0",
1354
+ "max" : "3600"
1355
+ },
1356
+ ],
1357
+ "range" : {
1358
+ "min" : "0",
1359
+ "max" : "3600"
1360
+ },
1361
+ },
1362
+ },
1363
+ "access" : "readwrite",
1364
+ "default" : "60",
1365
+ "units" : "seconds",
1366
+ "description" :
1367
+ """This object defines the interval in which Hello
1368
+ (or keep-alive) packets are to be sent to the
1369
+ tunnel peer. The value zero effectively disables
1370
+ the sending of Hello packets. Modifications to this
1371
+ object have immediate effect.""",
1372
+ }, # column
1373
+ "l2tpTunnelConfigIdleTimeout" : {
1374
+ "nodetype" : "column",
1375
+ "moduleName" : "L2TP-MIB",
1376
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.7",
1377
+ "status" : "current",
1378
+ "syntax" : {
1379
+ "type" : {
1380
+ "basetype" : "Integer32",
1381
+ "ranges" : [
1382
+ {
1383
+ "min" : "-1",
1384
+ "max" : "86400"
1385
+ },
1386
+ ],
1387
+ "range" : {
1388
+ "min" : "-1",
1389
+ "max" : "86400"
1390
+ },
1391
+ },
1392
+ },
1393
+ "access" : "readwrite",
1394
+ "default" : "0",
1395
+ "units" : "seconds",
1396
+ "description" :
1397
+ """This object defines the period of time that an
1398
+ established tunnel with no sessions will wait
1399
+ before disconnecting the tunnel. A value of
1400
+ zero indicates that the tunnel will disconnect
1401
+ immediately after the last session disconnects.
1402
+ A value of -1 leaves the tunnel up indefinitely.
1403
+ Modifications to this object have immediate
1404
+ effect.""",
1405
+ }, # column
1406
+ "l2tpTunnelConfigControlRWS" : {
1407
+ "nodetype" : "column",
1408
+ "moduleName" : "L2TP-MIB",
1409
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.8",
1410
+ "status" : "current",
1411
+ "syntax" : {
1412
+ "type" : {
1413
+ "basetype" : "Integer32",
1414
+ "ranges" : [
1415
+ {
1416
+ "min" : "1",
1417
+ "max" : "65535"
1418
+ },
1419
+ ],
1420
+ "range" : {
1421
+ "min" : "1",
1422
+ "max" : "65535"
1423
+ },
1424
+ },
1425
+ },
1426
+ "access" : "readwrite",
1427
+ "default" : "4",
1428
+ "description" :
1429
+ """This object defines the control channel receive
1430
+ window size. It specifies the maximum number of
1431
+ packets the tunnel peer can send without waiting
1432
+ for an acknowledgement from this peer. This object
1433
+ cannot be modified when the tunnel is in a con-
1434
+ necting or connected state.""",
1435
+ }, # column
1436
+ "l2tpTunnelConfigControlMaxRetx" : {
1437
+ "nodetype" : "column",
1438
+ "moduleName" : "L2TP-MIB",
1439
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.9",
1440
+ "status" : "current",
1441
+ "syntax" : {
1442
+ "type" : {
1443
+ "basetype" : "Integer32",
1444
+ "ranges" : [
1445
+ {
1446
+ "min" : "0",
1447
+ "max" : "32"
1448
+ },
1449
+ ],
1450
+ "range" : {
1451
+ "min" : "0",
1452
+ "max" : "32"
1453
+ },
1454
+ },
1455
+ },
1456
+ "access" : "readwrite",
1457
+ "default" : "5",
1458
+ "description" :
1459
+ """This object defines the number of retransmissions
1460
+ which the tunnel will attempt before assuming that
1461
+ the peer is no longer responding. A value of zero
1462
+ indicates that this peer will not attempt to
1463
+ retransmit an unacknowledged control packet.
1464
+ Modifications to this object have immediate
1465
+ effect.""",
1466
+ }, # column
1467
+ "l2tpTunnelConfigControlMaxRetxTO" : {
1468
+ "nodetype" : "column",
1469
+ "moduleName" : "L2TP-MIB",
1470
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.10",
1471
+ "status" : "current",
1472
+ "syntax" : {
1473
+ "type" : {
1474
+ "basetype" : "Integer32",
1475
+ "ranges" : [
1476
+ {
1477
+ "min" : "1",
1478
+ "max" : "32"
1479
+ },
1480
+ ],
1481
+ "range" : {
1482
+ "min" : "1",
1483
+ "max" : "32"
1484
+ },
1485
+ },
1486
+ },
1487
+ "access" : "readwrite",
1488
+ "default" : "16",
1489
+ "units" : "seconds",
1490
+ "description" :
1491
+ """This object defines the maximum retransmission timeout
1492
+ interval which the tunnel will wait before retrans-
1493
+
1494
+
1495
+
1496
+ mitting a control packet that has not been acknowledged.
1497
+ Modifications to this object have immediate effect.""",
1498
+ }, # column
1499
+ "l2tpTunnelConfigPayloadSeq" : {
1500
+ "nodetype" : "column",
1501
+ "moduleName" : "L2TP-MIB",
1502
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.11",
1503
+ "status" : "current",
1504
+ "syntax" : {
1505
+ "type" : {
1506
+ "basetype" : "Enumeration",
1507
+ "onDemand" : {
1508
+ "nodetype" : "namednumber",
1509
+ "number" : "1"
1510
+ },
1511
+ "never" : {
1512
+ "nodetype" : "namednumber",
1513
+ "number" : "2"
1514
+ },
1515
+ "always" : {
1516
+ "nodetype" : "namednumber",
1517
+ "number" : "3"
1518
+ },
1519
+ },
1520
+ },
1521
+ "access" : "readwrite",
1522
+ "default" : "onDemand",
1523
+ "description" :
1524
+ """This object determines whether or not session payload
1525
+ packets will be requested to be sent with sequence
1526
+ numbers from tunnel peers belonging to this domain.
1527
+ The value onDemand(1) allows the L2TP implementation
1528
+ to initiate payload sequencing when necessary based
1529
+ on local information (e.g: during LCP/NCP negotiations
1530
+ or for CCP). The value never(2) indicates that L2TP
1531
+ will never initiate sequencing but will do sequencing
1532
+ if asked. The value always(3) indicates that L2TP
1533
+ will send the Sequencing Required AVP during session
1534
+ establishment. Modifications to this object have
1535
+ immediate effect.""",
1536
+ }, # column
1537
+ "l2tpTunnelConfigReassemblyTO" : {
1538
+ "nodetype" : "column",
1539
+ "moduleName" : "L2TP-MIB",
1540
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.12",
1541
+ "status" : "current",
1542
+ "syntax" : {
1543
+ "type" : { "module" :"L2TP-MIB", "name" : "L2tpMilliSeconds"},
1544
+ },
1545
+ "access" : "readwrite",
1546
+ "default" : "0",
1547
+ "description" :
1548
+ """This object defines the number of milliseconds that
1549
+ this tunnel will wait before processing payload packets
1550
+ that were received out of sequence (which are waiting
1551
+ for the packet(s) to put them in sequence). A low value
1552
+ increases the chance of delayed packets to be discarded
1553
+ (which MAY cause the PPP decompression engine to
1554
+ reset) while a high value may cause more queuing and
1555
+ possibly degrade throughput if packets are truly lost.
1556
+ The default value for this object is zero which will
1557
+ result in all delayed packets being lost. Modifications
1558
+ to this object have immediate effect.""",
1559
+ }, # column
1560
+ "l2tpTunnelConfigTransport" : {
1561
+ "nodetype" : "column",
1562
+ "moduleName" : "L2TP-MIB",
1563
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.13",
1564
+ "status" : "current",
1565
+ "syntax" : {
1566
+ "type" : {
1567
+ "basetype" : "Enumeration",
1568
+ "other" : {
1569
+ "nodetype" : "namednumber",
1570
+ "number" : "1"
1571
+ },
1572
+ "none" : {
1573
+ "nodetype" : "namednumber",
1574
+ "number" : "2"
1575
+ },
1576
+ "udpIp" : {
1577
+ "nodetype" : "namednumber",
1578
+ "number" : "3"
1579
+ },
1580
+ "frameRelay" : {
1581
+ "nodetype" : "namednumber",
1582
+ "number" : "4"
1583
+ },
1584
+ "atm" : {
1585
+ "nodetype" : "namednumber",
1586
+ "number" : "5"
1587
+ },
1588
+ },
1589
+ },
1590
+ "access" : "readwrite",
1591
+ "description" :
1592
+ """This object defines the underlying transport media
1593
+ that is in use for this tunnel entry. Different tunnel
1594
+ transports may define MIB extensions to the L2TP tunnel
1595
+ table to realize the transport layer. For example if the
1596
+ value of this object is 'udpIp' then the value of ifIndex
1597
+ for this table may be used to determine state from the
1598
+ l2tpUdpStatsTable. This object cannot be modified when
1599
+ the tunnel is in a connecting or connected state.""",
1600
+ }, # column
1601
+ "l2tpTunnelConfigDrainTunnel" : {
1602
+ "nodetype" : "column",
1603
+ "moduleName" : "L2TP-MIB",
1604
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.14",
1605
+ "status" : "current",
1606
+ "syntax" : {
1607
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1608
+ },
1609
+ "access" : "readwrite",
1610
+ "default" : "false",
1611
+ "description" :
1612
+ """Setting this object to 'true' will prevent any new
1613
+ session from being either initiated or accepted but
1614
+ does NOT disconnect any active sessions for this
1615
+ tunnel. Note that when this occurs the
1616
+ l2tpTunnelStatsDrainingTunnel status object of
1617
+ this tunnel should reflect that it is 'draining'.
1618
+ To cancel a drain this object should be set to
1619
+ false(2). Setting this object to false(2) when
1620
+ the L2TP objects l2tpDrainTunnels or
1621
+ l2tpDomainConfigDrainTunnels is true(1) has
1622
+ no affect, this tunnels will continue to drain.""",
1623
+ }, # column
1624
+ "l2tpTunnelConfigProxyPPPAuth" : {
1625
+ "nodetype" : "column",
1626
+ "moduleName" : "L2TP-MIB",
1627
+ "oid" : "1.3.6.1.2.1.10.95.1.4.1.15",
1628
+ "status" : "current",
1629
+ "syntax" : {
1630
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1631
+ },
1632
+ "access" : "readwrite",
1633
+ "default" : "true",
1634
+ "description" :
1635
+ """This object is used to configure the sending
1636
+ or acceptance of the session PPP Proxy
1637
+ Authentication AVP's on the LAC or LNS.""",
1638
+ }, # column
1639
+ "l2tpTunnelStatsTable" : {
1640
+ "nodetype" : "table",
1641
+ "moduleName" : "L2TP-MIB",
1642
+ "oid" : "1.3.6.1.2.1.10.95.1.5",
1643
+ "status" : "current",
1644
+ "description" :
1645
+ """The L2TP tunnel status and statistics table. This
1646
+ table contains objects that can be used to describe
1647
+ the current status and statistics of a single L2TP
1648
+ tunnel. There is a 1-1 correspondence between
1649
+ conceptual rows of this table and conceptual rows of
1650
+ the l2tpTunnelConfigTable.""",
1651
+ }, # table
1652
+ "l2tpTunnelStatsEntry" : {
1653
+ "nodetype" : "row",
1654
+ "moduleName" : "L2TP-MIB",
1655
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1",
1656
+ "status" : "current",
1657
+ "linkage" : [
1658
+ { "L2TP-MIB" : {
1659
+ "indexkind" : "augments",
1660
+ "relatedNode" : "l2tpTunnelConfigEntry",
1661
+ }},
1662
+ ],
1663
+ "description" :
1664
+ """An L2TP tunnel interface stats entry.""",
1665
+ }, # row
1666
+ "l2tpTunnelStatsLocalTID" : {
1667
+ "nodetype" : "column",
1668
+ "moduleName" : "L2TP-MIB",
1669
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.1",
1670
+ "status" : "current",
1671
+ "syntax" : {
1672
+ "type" : {
1673
+ "basetype" : "Integer32",
1674
+ "ranges" : [
1675
+ {
1676
+ "min" : "0",
1677
+ "max" : "65535"
1678
+ },
1679
+ ],
1680
+ "range" : {
1681
+ "min" : "0",
1682
+ "max" : "65535"
1683
+ },
1684
+ },
1685
+ },
1686
+ "access" : "readonly",
1687
+ "description" :
1688
+ """This object contains the local tunnel Identifier.""",
1689
+ "reference" :
1690
+ """RFC 2661, Section 3.1""",
1691
+ }, # column
1692
+ "l2tpTunnelStatsRemoteTID" : {
1693
+ "nodetype" : "column",
1694
+ "moduleName" : "L2TP-MIB",
1695
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.2",
1696
+ "status" : "current",
1697
+ "syntax" : {
1698
+ "type" : {
1699
+ "basetype" : "Integer32",
1700
+ "ranges" : [
1701
+ {
1702
+ "min" : "0",
1703
+ "max" : "65535"
1704
+ },
1705
+ ],
1706
+ "range" : {
1707
+ "min" : "0",
1708
+ "max" : "65535"
1709
+ },
1710
+ },
1711
+ },
1712
+ "access" : "readonly",
1713
+ "description" :
1714
+ """This object contains the remote tunnel Identifier.""",
1715
+ "reference" :
1716
+ """RFC 2661, Section 3.1""",
1717
+ }, # column
1718
+ "l2tpTunnelStatsState" : {
1719
+ "nodetype" : "column",
1720
+ "moduleName" : "L2TP-MIB",
1721
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.3",
1722
+ "status" : "current",
1723
+ "syntax" : {
1724
+ "type" : {
1725
+ "basetype" : "Enumeration",
1726
+ "tunnelIdle" : {
1727
+ "nodetype" : "namednumber",
1728
+ "number" : "1"
1729
+ },
1730
+ "tunnelConnecting" : {
1731
+ "nodetype" : "namednumber",
1732
+ "number" : "2"
1733
+ },
1734
+ "tunnelEstablished" : {
1735
+ "nodetype" : "namednumber",
1736
+ "number" : "3"
1737
+ },
1738
+ "tunnelDisconnecting" : {
1739
+ "nodetype" : "namednumber",
1740
+ "number" : "4"
1741
+ },
1742
+ },
1743
+ },
1744
+ "access" : "readonly",
1745
+ "description" :
1746
+ """This field contains the current state of the
1747
+ control tunnel.""",
1748
+ }, # column
1749
+ "l2tpTunnelStatsInitiated" : {
1750
+ "nodetype" : "column",
1751
+ "moduleName" : "L2TP-MIB",
1752
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.4",
1753
+ "status" : "current",
1754
+ "syntax" : {
1755
+ "type" : {
1756
+ "basetype" : "Enumeration",
1757
+ "locally" : {
1758
+ "nodetype" : "namednumber",
1759
+ "number" : "1"
1760
+ },
1761
+ "remotely" : {
1762
+ "nodetype" : "namednumber",
1763
+ "number" : "2"
1764
+ },
1765
+ },
1766
+ },
1767
+ "access" : "readonly",
1768
+ "description" :
1769
+ """This object indicates whether the tunnel was
1770
+ initiated locally or by the remote tunnel peer.""",
1771
+ }, # column
1772
+ "l2tpTunnelStatsRemoteHostName" : {
1773
+ "nodetype" : "column",
1774
+ "moduleName" : "L2TP-MIB",
1775
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.5",
1776
+ "status" : "current",
1777
+ "syntax" : {
1778
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1779
+ },
1780
+ "access" : "readonly",
1781
+ "description" :
1782
+ """This object contains the host name as discovered
1783
+
1784
+
1785
+
1786
+ during the tunnel establishment phase (via the Host
1787
+ Name AVP) of the L2TP peer. If the tunnel is idle
1788
+ this object should maintain its value from the last
1789
+ time it was connected.""",
1790
+ }, # column
1791
+ "l2tpTunnelStatsRemoteVendorName" : {
1792
+ "nodetype" : "column",
1793
+ "moduleName" : "L2TP-MIB",
1794
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.6",
1795
+ "status" : "current",
1796
+ "syntax" : {
1797
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
1798
+ },
1799
+ "access" : "readonly",
1800
+ "description" :
1801
+ """This object identifies the vendor name of the peer's
1802
+ L2TP implementation. If the tunnel is idle this
1803
+ object should maintain its value from the last time
1804
+ it was connected.""",
1805
+ }, # column
1806
+ "l2tpTunnelStatsRemoteFirmwareRev" : {
1807
+ "nodetype" : "column",
1808
+ "moduleName" : "L2TP-MIB",
1809
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.7",
1810
+ "status" : "current",
1811
+ "syntax" : {
1812
+ "type" : { "module" :"", "name" : "Integer32"},
1813
+ },
1814
+ "access" : "readonly",
1815
+ "description" :
1816
+ """This object contains the tunnel peer's firmware
1817
+ revision number. If the tunnel is idle this object
1818
+ should maintain its value from the last time it
1819
+ was connected.""",
1820
+ }, # column
1821
+ "l2tpTunnelStatsRemoteProtocolVer" : {
1822
+ "nodetype" : "column",
1823
+ "moduleName" : "L2TP-MIB",
1824
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.8",
1825
+ "status" : "current",
1826
+ "syntax" : {
1827
+ "type" : {
1828
+ "basetype" : "OctetString",
1829
+ "ranges" : [
1830
+ {
1831
+ "min" : "2",
1832
+ "max" : "2"
1833
+ },
1834
+ ],
1835
+ "range" : {
1836
+ "min" : "2",
1837
+ "max" : "2"
1838
+ },
1839
+ },
1840
+ },
1841
+ "access" : "readonly",
1842
+ "description" :
1843
+ """This object describes the protocol version and
1844
+ revision of the tunnel peers implementation. The
1845
+ first octet contains the protocol version. The
1846
+ second octet contains the protocol revision.""",
1847
+ }, # column
1848
+ "l2tpTunnelStatsInitialRemoteRWS" : {
1849
+ "nodetype" : "column",
1850
+ "moduleName" : "L2TP-MIB",
1851
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.9",
1852
+ "status" : "current",
1853
+ "syntax" : {
1854
+ "type" : {
1855
+ "basetype" : "Integer32",
1856
+ "ranges" : [
1857
+ {
1858
+ "min" : "0",
1859
+ "max" : "65535"
1860
+ },
1861
+ ],
1862
+ "range" : {
1863
+ "min" : "0",
1864
+ "max" : "65535"
1865
+ },
1866
+ },
1867
+ },
1868
+ "access" : "readonly",
1869
+ "description" :
1870
+ """This object contains the initial remote peer's
1871
+ receive window size as indicated by the tunnel peer
1872
+ (in the RWS AVP) during the tunnel establishment
1873
+ phase. If the tunnel is idle this object should
1874
+
1875
+
1876
+
1877
+ maintain its value from the last time it was
1878
+ connected.""",
1879
+ }, # column
1880
+ "l2tpTunnelStatsBearerCaps" : {
1881
+ "nodetype" : "column",
1882
+ "moduleName" : "L2TP-MIB",
1883
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.10",
1884
+ "status" : "current",
1885
+ "syntax" : {
1886
+ "type" : {
1887
+ "basetype" : "Enumeration",
1888
+ "none" : {
1889
+ "nodetype" : "namednumber",
1890
+ "number" : "1"
1891
+ },
1892
+ "digital" : {
1893
+ "nodetype" : "namednumber",
1894
+ "number" : "2"
1895
+ },
1896
+ "analog" : {
1897
+ "nodetype" : "namednumber",
1898
+ "number" : "3"
1899
+ },
1900
+ "digitalAnalog" : {
1901
+ "nodetype" : "namednumber",
1902
+ "number" : "4"
1903
+ },
1904
+ },
1905
+ },
1906
+ "access" : "readonly",
1907
+ "description" :
1908
+ """This object describes the Bearer Capabilities of
1909
+ the tunnel peer. If the tunnel is idle this object
1910
+ should maintain its value from the last time it was
1911
+ connected.""",
1912
+ }, # column
1913
+ "l2tpTunnelStatsFramingCaps" : {
1914
+ "nodetype" : "column",
1915
+ "moduleName" : "L2TP-MIB",
1916
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.11",
1917
+ "status" : "current",
1918
+ "syntax" : {
1919
+ "type" : {
1920
+ "basetype" : "Enumeration",
1921
+ "none" : {
1922
+ "nodetype" : "namednumber",
1923
+ "number" : "1"
1924
+ },
1925
+ "sync" : {
1926
+ "nodetype" : "namednumber",
1927
+ "number" : "2"
1928
+ },
1929
+ "async" : {
1930
+ "nodetype" : "namednumber",
1931
+ "number" : "3"
1932
+ },
1933
+ "syncAsync" : {
1934
+ "nodetype" : "namednumber",
1935
+ "number" : "4"
1936
+ },
1937
+ },
1938
+ },
1939
+ "access" : "readonly",
1940
+ "description" :
1941
+ """This object describes the Framing Capabilities of
1942
+ the tunnel peer. If the tunnel is idle this object
1943
+ should maintain its value from the last time it was
1944
+ connected.""",
1945
+ }, # column
1946
+ "l2tpTunnelStatsControlRxPkts" : {
1947
+ "nodetype" : "column",
1948
+ "moduleName" : "L2TP-MIB",
1949
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.12",
1950
+ "status" : "current",
1951
+ "syntax" : {
1952
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1953
+ },
1954
+ "access" : "readonly",
1955
+ "description" :
1956
+ """This object contains the number of control packets
1957
+ received on the tunnel.""",
1958
+ }, # column
1959
+ "l2tpTunnelStatsControlRxZLB" : {
1960
+ "nodetype" : "column",
1961
+ "moduleName" : "L2TP-MIB",
1962
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.13",
1963
+ "status" : "current",
1964
+ "syntax" : {
1965
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1966
+ },
1967
+ "access" : "readonly",
1968
+ "description" :
1969
+ """This object returns a count of the number of Zero
1970
+ Length Body control packet acknowledgement packets
1971
+ that were received.""",
1972
+ }, # column
1973
+ "l2tpTunnelStatsControlOutOfSeq" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "L2TP-MIB",
1976
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.14",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1980
+ },
1981
+ "access" : "readonly",
1982
+ "description" :
1983
+ """This object returns a count of the number of
1984
+ control packets that were not received in the
1985
+ correct order (as per the sequence number)
1986
+ on this tunnel including out of window
1987
+ packets.""",
1988
+ }, # column
1989
+ "l2tpTunnelStatsControlOutOfWin" : {
1990
+ "nodetype" : "column",
1991
+ "moduleName" : "L2TP-MIB",
1992
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.15",
1993
+ "status" : "current",
1994
+ "syntax" : {
1995
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1996
+ },
1997
+ "access" : "readonly",
1998
+ "description" :
1999
+ """This object contains the number of control
2000
+ packets that were received outside of the
2001
+ offered receive window. It is implementation
2002
+ specific as to whether these packets are queued
2003
+ or discarded.""",
2004
+ }, # column
2005
+ "l2tpTunnelStatsControlTxPkts" : {
2006
+ "nodetype" : "column",
2007
+ "moduleName" : "L2TP-MIB",
2008
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.16",
2009
+ "status" : "current",
2010
+ "syntax" : {
2011
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2012
+ },
2013
+ "access" : "readonly",
2014
+ "description" :
2015
+ """This object contains the number of control
2016
+ packets that were transmitted to the tunnel
2017
+ peer.""",
2018
+ }, # column
2019
+ "l2tpTunnelStatsControlTxZLB" : {
2020
+ "nodetype" : "column",
2021
+ "moduleName" : "L2TP-MIB",
2022
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.17",
2023
+ "status" : "current",
2024
+ "syntax" : {
2025
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2026
+ },
2027
+ "access" : "readonly",
2028
+ "description" :
2029
+ """This object contains the number of Zero Length
2030
+ Body control packets transmitted to the tunnel
2031
+
2032
+
2033
+
2034
+ peer.""",
2035
+ }, # column
2036
+ "l2tpTunnelStatsControlAckTO" : {
2037
+ "nodetype" : "column",
2038
+ "moduleName" : "L2TP-MIB",
2039
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.18",
2040
+ "status" : "current",
2041
+ "syntax" : {
2042
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2043
+ },
2044
+ "access" : "readonly",
2045
+ "description" :
2046
+ """This object returns a count of the number of
2047
+ control packet timeouts due to the lack of a
2048
+ timely acknowledgement from the tunnel peer.""",
2049
+ }, # column
2050
+ "l2tpTunnelStatsCurrentRemoteRWS" : {
2051
+ "nodetype" : "column",
2052
+ "moduleName" : "L2TP-MIB",
2053
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.19",
2054
+ "status" : "current",
2055
+ "syntax" : {
2056
+ "type" : {
2057
+ "basetype" : "Unsigned32",
2058
+ "parent module" : {
2059
+ "name" : "SNMPv2-SMI",
2060
+ "type" : "Gauge32",
2061
+ },
2062
+ "ranges" : [
2063
+ {
2064
+ "min" : "0",
2065
+ "max" : "65535"
2066
+ },
2067
+ ],
2068
+ "range" : {
2069
+ "min" : "0",
2070
+ "max" : "65535"
2071
+ },
2072
+ },
2073
+ },
2074
+ "access" : "readonly",
2075
+ "description" :
2076
+ """This object contains the current remote receive
2077
+ window size as determined by the local flow
2078
+ control mechanism employed.""",
2079
+ }, # column
2080
+ "l2tpTunnelStatsTxSeq" : {
2081
+ "nodetype" : "column",
2082
+ "moduleName" : "L2TP-MIB",
2083
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.20",
2084
+ "status" : "current",
2085
+ "syntax" : {
2086
+ "type" : {
2087
+ "basetype" : "Integer32",
2088
+ "ranges" : [
2089
+ {
2090
+ "min" : "0",
2091
+ "max" : "65535"
2092
+ },
2093
+ ],
2094
+ "range" : {
2095
+ "min" : "0",
2096
+ "max" : "65535"
2097
+ },
2098
+ },
2099
+ },
2100
+ "access" : "readonly",
2101
+ "description" :
2102
+ """This object contains the next send sequence number
2103
+ for the control channel.""",
2104
+ }, # column
2105
+ "l2tpTunnelStatsTxSeqAck" : {
2106
+ "nodetype" : "column",
2107
+ "moduleName" : "L2TP-MIB",
2108
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.21",
2109
+ "status" : "current",
2110
+ "syntax" : {
2111
+ "type" : {
2112
+ "basetype" : "Integer32",
2113
+ "ranges" : [
2114
+ {
2115
+ "min" : "0",
2116
+ "max" : "65535"
2117
+ },
2118
+ ],
2119
+ "range" : {
2120
+ "min" : "0",
2121
+ "max" : "65535"
2122
+ },
2123
+ },
2124
+ },
2125
+ "access" : "readonly",
2126
+ "description" :
2127
+ """This object contains the send sequence number that
2128
+ the tunnel peer has acknowledged for the control
2129
+ channel. The flow control state can be determined
2130
+ by subtracting the l2tpTunnelStatsTxSeq from
2131
+ l2tpTunnelStatsTxSeqAck and comparing this value
2132
+ to l2tpTunnelStatsCurrentRemoteRWS (taking into
2133
+ consideration sequence number wraps).""",
2134
+ }, # column
2135
+ "l2tpTunnelStatsRxSeq" : {
2136
+ "nodetype" : "column",
2137
+ "moduleName" : "L2TP-MIB",
2138
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.22",
2139
+ "status" : "current",
2140
+ "syntax" : {
2141
+ "type" : {
2142
+ "basetype" : "Integer32",
2143
+ "ranges" : [
2144
+ {
2145
+ "min" : "0",
2146
+ "max" : "65535"
2147
+ },
2148
+ ],
2149
+ "range" : {
2150
+ "min" : "0",
2151
+ "max" : "65535"
2152
+ },
2153
+ },
2154
+ },
2155
+ "access" : "readonly",
2156
+ "description" :
2157
+ """This object contains the next receive sequence
2158
+ number expected to be received on this control
2159
+ channel.""",
2160
+ }, # column
2161
+ "l2tpTunnelStatsRxSeqAck" : {
2162
+ "nodetype" : "column",
2163
+ "moduleName" : "L2TP-MIB",
2164
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.23",
2165
+ "status" : "current",
2166
+ "syntax" : {
2167
+ "type" : {
2168
+ "basetype" : "Integer32",
2169
+ "ranges" : [
2170
+ {
2171
+ "min" : "0",
2172
+ "max" : "65535"
2173
+ },
2174
+ ],
2175
+ "range" : {
2176
+ "min" : "0",
2177
+ "max" : "65535"
2178
+ },
2179
+ },
2180
+ },
2181
+ "access" : "readonly",
2182
+ "description" :
2183
+ """This object contains the last receive sequence
2184
+ number that was acknowledged back to the tunnel
2185
+ peer for the control channel.""",
2186
+ }, # column
2187
+ "l2tpTunnelStatsTotalSessions" : {
2188
+ "nodetype" : "column",
2189
+ "moduleName" : "L2TP-MIB",
2190
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.24",
2191
+ "status" : "current",
2192
+ "syntax" : {
2193
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2194
+ },
2195
+ "access" : "readonly",
2196
+ "description" :
2197
+ """This object contains the total number of sessions
2198
+ that this tunnel has successfully connected through
2199
+ to its tunnel peer since this tunnel was created.""",
2200
+ }, # column
2201
+ "l2tpTunnelStatsFailedSessions" : {
2202
+ "nodetype" : "column",
2203
+ "moduleName" : "L2TP-MIB",
2204
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.25",
2205
+ "status" : "current",
2206
+ "syntax" : {
2207
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2208
+ },
2209
+ "access" : "readonly",
2210
+ "description" :
2211
+ """This object contains the total number of sessions
2212
+ that were initiated but failed to reach the
2213
+ established phase.""",
2214
+ }, # column
2215
+ "l2tpTunnelStatsActiveSessions" : {
2216
+ "nodetype" : "column",
2217
+ "moduleName" : "L2TP-MIB",
2218
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.26",
2219
+ "status" : "current",
2220
+ "syntax" : {
2221
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2222
+ },
2223
+ "access" : "readonly",
2224
+ "description" :
2225
+ """This object contains the total number of sessions
2226
+ in the established state for this tunnel.""",
2227
+ }, # column
2228
+ "l2tpTunnelStatsLastResultCode" : {
2229
+ "nodetype" : "column",
2230
+ "moduleName" : "L2TP-MIB",
2231
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.27",
2232
+ "status" : "current",
2233
+ "syntax" : {
2234
+ "type" : {
2235
+ "basetype" : "Integer32",
2236
+ "ranges" : [
2237
+ {
2238
+ "min" : "0",
2239
+ "max" : "65535"
2240
+ },
2241
+ ],
2242
+ "range" : {
2243
+ "min" : "0",
2244
+ "max" : "65535"
2245
+ },
2246
+ },
2247
+ },
2248
+ "access" : "readonly",
2249
+ "description" :
2250
+ """This object contains the last value of the result
2251
+ code as described in the Result Code AVP which
2252
+ caused the tunnel to disconnect.""",
2253
+ }, # column
2254
+ "l2tpTunnelStatsLastErrorCode" : {
2255
+ "nodetype" : "column",
2256
+ "moduleName" : "L2TP-MIB",
2257
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.28",
2258
+ "status" : "current",
2259
+ "syntax" : {
2260
+ "type" : {
2261
+ "basetype" : "Integer32",
2262
+ "ranges" : [
2263
+ {
2264
+ "min" : "0",
2265
+ "max" : "65535"
2266
+ },
2267
+ ],
2268
+ "range" : {
2269
+ "min" : "0",
2270
+ "max" : "65535"
2271
+ },
2272
+ },
2273
+ },
2274
+ "access" : "readonly",
2275
+ "description" :
2276
+ """This object contains the last value of the error
2277
+ code as described in the Result Code AVP which
2278
+ caused the tunnel to disconnect.""",
2279
+ }, # column
2280
+ "l2tpTunnelStatsLastErrorMessage" : {
2281
+ "nodetype" : "column",
2282
+ "moduleName" : "L2TP-MIB",
2283
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.29",
2284
+ "status" : "current",
2285
+ "syntax" : {
2286
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2287
+ },
2288
+ "access" : "readonly",
2289
+ "description" :
2290
+ """This object contains the last value of the optional
2291
+ message as described in the Result Code AVP which
2292
+ caused the tunnel to disconnect.""",
2293
+ }, # column
2294
+ "l2tpTunnelStatsDrainingTunnel" : {
2295
+ "nodetype" : "column",
2296
+ "moduleName" : "L2TP-MIB",
2297
+ "oid" : "1.3.6.1.2.1.10.95.1.5.1.30",
2298
+ "status" : "current",
2299
+ "syntax" : {
2300
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2301
+ },
2302
+ "access" : "readonly",
2303
+ "description" :
2304
+ """This object indicates if this tunnel is draining
2305
+ off sessions. This object will return false(2) when
2306
+ the tunnel is not draining sessions or after the
2307
+ last session has disconnected when the tunnel is in
2308
+ the draining state.""",
2309
+ }, # column
2310
+ "l2tpSessionStatsTable" : {
2311
+ "nodetype" : "table",
2312
+ "moduleName" : "L2TP-MIB",
2313
+ "oid" : "1.3.6.1.2.1.10.95.1.7",
2314
+ "status" : "current",
2315
+ "description" :
2316
+ """The L2TP session status and statistics table. This
2317
+ table contains the objects that can be used to
2318
+ describe the current status and statistics of a
2319
+ single L2TP tunneled session.""",
2320
+ }, # table
2321
+ "l2tpSessionStatsEntry" : {
2322
+ "nodetype" : "row",
2323
+ "moduleName" : "L2TP-MIB",
2324
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1",
2325
+ "status" : "current",
2326
+ "linkage" : [
2327
+ "l2tpSessionStatsTunnelIfIndex",
2328
+ "l2tpSessionStatsLocalSID",
2329
+ ],
2330
+ "description" :
2331
+ """An L2TP session interface stats entry.""",
2332
+ }, # row
2333
+ "l2tpSessionStatsTunnelIfIndex" : {
2334
+ "nodetype" : "column",
2335
+ "moduleName" : "L2TP-MIB",
2336
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.1",
2337
+ "status" : "current",
2338
+ "syntax" : {
2339
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2340
+ },
2341
+ "access" : "noaccess",
2342
+ "description" :
2343
+ """This object identifies the session's associated
2344
+ L2TP tunnel ifIndex value.""",
2345
+ }, # column
2346
+ "l2tpSessionStatsIfIndex" : {
2347
+ "nodetype" : "column",
2348
+ "moduleName" : "L2TP-MIB",
2349
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.2",
2350
+ "status" : "current",
2351
+ "syntax" : {
2352
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2353
+ },
2354
+ "access" : "readonly",
2355
+ "description" :
2356
+ """This object identifies the ifIndex value of the
2357
+ interface from which PPP packets are being tunneled.
2358
+ For example this could be a DS0 ifIndex on a
2359
+ LAC or it would be the PPP ifIndex on the LNS.""",
2360
+ }, # column
2361
+ "l2tpSessionStatsLocalSID" : {
2362
+ "nodetype" : "column",
2363
+ "moduleName" : "L2TP-MIB",
2364
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.3",
2365
+ "status" : "current",
2366
+ "syntax" : {
2367
+ "type" : {
2368
+ "basetype" : "Integer32",
2369
+ "ranges" : [
2370
+ {
2371
+ "min" : "1",
2372
+ "max" : "65535"
2373
+ },
2374
+ ],
2375
+ "range" : {
2376
+ "min" : "1",
2377
+ "max" : "65535"
2378
+ },
2379
+ },
2380
+ },
2381
+ "access" : "noaccess",
2382
+ "description" :
2383
+ """This object contains the local assigned session
2384
+ identifier for this session.""",
2385
+ "reference" :
2386
+ """RFC 2661, Section 3.1""",
2387
+ }, # column
2388
+ "l2tpSessionStatsRemoteSID" : {
2389
+ "nodetype" : "column",
2390
+ "moduleName" : "L2TP-MIB",
2391
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.4",
2392
+ "status" : "current",
2393
+ "syntax" : {
2394
+ "type" : {
2395
+ "basetype" : "Integer32",
2396
+ "ranges" : [
2397
+ {
2398
+ "min" : "0",
2399
+ "max" : "65535"
2400
+ },
2401
+ ],
2402
+ "range" : {
2403
+ "min" : "0",
2404
+ "max" : "65535"
2405
+ },
2406
+ },
2407
+ },
2408
+ "access" : "readonly",
2409
+ "description" :
2410
+ """This object contains the remote assigned session
2411
+ identifier for this session. When a session is
2412
+ starting this value may be zero until the remote
2413
+ tunnel endpoint has responded.""",
2414
+ "reference" :
2415
+ """RFC 2661, Section 3.1""",
2416
+ }, # column
2417
+ "l2tpSessionStatsUserName" : {
2418
+ "nodetype" : "column",
2419
+ "moduleName" : "L2TP-MIB",
2420
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.5",
2421
+ "status" : "current",
2422
+ "syntax" : {
2423
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2424
+ },
2425
+ "access" : "readonly",
2426
+ "description" :
2427
+ """This object identifies the peer session name on
2428
+ this interface. This is typically the login name
2429
+ of the remote user. If the user name is unknown to
2430
+ the local tunnel peer then this object will contain
2431
+ a null string.""",
2432
+ }, # column
2433
+ "l2tpSessionStatsState" : {
2434
+ "nodetype" : "column",
2435
+ "moduleName" : "L2TP-MIB",
2436
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.6",
2437
+ "status" : "current",
2438
+ "syntax" : {
2439
+ "type" : {
2440
+ "basetype" : "Enumeration",
2441
+ "sessionIdle" : {
2442
+ "nodetype" : "namednumber",
2443
+ "number" : "1"
2444
+ },
2445
+ "sessionConnecting" : {
2446
+ "nodetype" : "namednumber",
2447
+ "number" : "2"
2448
+ },
2449
+ "sessionEstablished" : {
2450
+ "nodetype" : "namednumber",
2451
+ "number" : "3"
2452
+ },
2453
+ "sessionDisconnecting" : {
2454
+ "nodetype" : "namednumber",
2455
+ "number" : "4"
2456
+ },
2457
+ },
2458
+ },
2459
+ "access" : "readonly",
2460
+ "description" :
2461
+ """This object contains the current state of the
2462
+ session.""",
2463
+ }, # column
2464
+ "l2tpSessionStatsCallType" : {
2465
+ "nodetype" : "column",
2466
+ "moduleName" : "L2TP-MIB",
2467
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.7",
2468
+ "status" : "current",
2469
+ "syntax" : {
2470
+ "type" : {
2471
+ "basetype" : "Enumeration",
2472
+ "lacIncoming" : {
2473
+ "nodetype" : "namednumber",
2474
+ "number" : "1"
2475
+ },
2476
+ "lnsIncoming" : {
2477
+ "nodetype" : "namednumber",
2478
+ "number" : "2"
2479
+ },
2480
+ "lacOutgoing" : {
2481
+ "nodetype" : "namednumber",
2482
+ "number" : "3"
2483
+ },
2484
+ "lnsOutgoing" : {
2485
+ "nodetype" : "namednumber",
2486
+ "number" : "4"
2487
+ },
2488
+ },
2489
+ },
2490
+ "access" : "readonly",
2491
+ "description" :
2492
+ """This object indicates the type of call and the
2493
+ role this tunnel peer is providing for this
2494
+ session. For example, lacIncoming(1) indicates
2495
+ that this tunnel peer is acting as a LAC and
2496
+ generated a Incoming-Call-Request to the tunnel
2497
+ peer (the LNS). Note that tunnel peers can be
2498
+ both LAC and LNS simultaneously.""",
2499
+ }, # column
2500
+ "l2tpSessionStatsCallSerialNumber" : {
2501
+ "nodetype" : "column",
2502
+ "moduleName" : "L2TP-MIB",
2503
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.8",
2504
+ "status" : "current",
2505
+ "syntax" : {
2506
+ "type" : { "module" :"", "name" : "Unsigned32"},
2507
+ },
2508
+ "access" : "readonly",
2509
+ "description" :
2510
+ """This object contains the serial number that has
2511
+ been assigned to this session.""",
2512
+ }, # column
2513
+ "l2tpSessionStatsTxConnectSpeed" : {
2514
+ "nodetype" : "column",
2515
+ "moduleName" : "L2TP-MIB",
2516
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.9",
2517
+ "status" : "current",
2518
+ "syntax" : {
2519
+ "type" : { "module" :"", "name" : "Unsigned32"},
2520
+ },
2521
+ "access" : "readonly",
2522
+ "units" : "bits per second",
2523
+ "description" :
2524
+ """This object returns the last known transmit
2525
+ baud rate for this session.""",
2526
+ }, # column
2527
+ "l2tpSessionStatsRxConnectSpeed" : {
2528
+ "nodetype" : "column",
2529
+ "moduleName" : "L2TP-MIB",
2530
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.10",
2531
+ "status" : "current",
2532
+ "syntax" : {
2533
+ "type" : { "module" :"", "name" : "Unsigned32"},
2534
+ },
2535
+ "access" : "readonly",
2536
+ "units" : "bits per second",
2537
+ "description" :
2538
+ """This object returns the last known receive
2539
+ baud rate for this session established.""",
2540
+ }, # column
2541
+ "l2tpSessionStatsCallBearerType" : {
2542
+ "nodetype" : "column",
2543
+ "moduleName" : "L2TP-MIB",
2544
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.11",
2545
+ "status" : "current",
2546
+ "syntax" : {
2547
+ "type" : {
2548
+ "basetype" : "Enumeration",
2549
+ "none" : {
2550
+ "nodetype" : "namednumber",
2551
+ "number" : "1"
2552
+ },
2553
+ "digital" : {
2554
+ "nodetype" : "namednumber",
2555
+ "number" : "2"
2556
+ },
2557
+ "analog" : {
2558
+ "nodetype" : "namednumber",
2559
+ "number" : "3"
2560
+ },
2561
+ },
2562
+ },
2563
+ "access" : "readonly",
2564
+ "description" :
2565
+ """This object describes the bearer type of this
2566
+ session.""",
2567
+ }, # column
2568
+ "l2tpSessionStatsFramingType" : {
2569
+ "nodetype" : "column",
2570
+ "moduleName" : "L2TP-MIB",
2571
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.12",
2572
+ "status" : "current",
2573
+ "syntax" : {
2574
+ "type" : {
2575
+ "basetype" : "Enumeration",
2576
+ "none" : {
2577
+ "nodetype" : "namednumber",
2578
+ "number" : "1"
2579
+ },
2580
+ "sync" : {
2581
+ "nodetype" : "namednumber",
2582
+ "number" : "2"
2583
+ },
2584
+ "async" : {
2585
+ "nodetype" : "namednumber",
2586
+ "number" : "3"
2587
+ },
2588
+ },
2589
+ },
2590
+ "access" : "readonly",
2591
+ "description" :
2592
+ """This object describes the framing type of this
2593
+ session.""",
2594
+ }, # column
2595
+ "l2tpSessionStatsPhysChanId" : {
2596
+ "nodetype" : "column",
2597
+ "moduleName" : "L2TP-MIB",
2598
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.13",
2599
+ "status" : "current",
2600
+ "syntax" : {
2601
+ "type" : { "module" :"", "name" : "Unsigned32"},
2602
+ },
2603
+ "access" : "readonly",
2604
+ "description" :
2605
+ """This object contains the physical channel
2606
+ identifier for the session.""",
2607
+ }, # column
2608
+ "l2tpSessionStatsDNIS" : {
2609
+ "nodetype" : "column",
2610
+ "moduleName" : "L2TP-MIB",
2611
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.14",
2612
+ "status" : "current",
2613
+ "syntax" : {
2614
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2615
+ },
2616
+ "access" : "readonly",
2617
+ "description" :
2618
+ """This object identifies the Dialed Number
2619
+ Information String that the LAC obtained from
2620
+ the network for the session. If no DNIS was
2621
+ provided then a null string will be returned.""",
2622
+ }, # column
2623
+ "l2tpSessionStatsCLID" : {
2624
+ "nodetype" : "column",
2625
+ "moduleName" : "L2TP-MIB",
2626
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.15",
2627
+ "status" : "current",
2628
+ "syntax" : {
2629
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2630
+ },
2631
+ "access" : "readonly",
2632
+ "description" :
2633
+ """This object identifies the Calling Line ID
2634
+ that the LAC obtained from the network for
2635
+ the session. If no CLID was provided then a
2636
+ null string will be returned.""",
2637
+ }, # column
2638
+ "l2tpSessionStatsSubAddress" : {
2639
+ "nodetype" : "column",
2640
+ "moduleName" : "L2TP-MIB",
2641
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.16",
2642
+ "status" : "current",
2643
+ "syntax" : {
2644
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2645
+ },
2646
+ "access" : "readonly",
2647
+ "description" :
2648
+ """This object identifies the Sub Address that
2649
+ the LAC obtained from the network for the
2650
+ session. If no Sub Address was provided then
2651
+ a null string will be returned.""",
2652
+ }, # column
2653
+ "l2tpSessionStatsPrivateGroupID" : {
2654
+ "nodetype" : "column",
2655
+ "moduleName" : "L2TP-MIB",
2656
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.17",
2657
+ "status" : "current",
2658
+ "syntax" : {
2659
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
2660
+ },
2661
+ "access" : "readonly",
2662
+ "description" :
2663
+ """This object identifies the Private Group
2664
+ Identifier used for this tunneled session.
2665
+ If no Private Group Identifier was provided
2666
+ then a null string will be returned.""",
2667
+ }, # column
2668
+ "l2tpSessionStatsProxyLcp" : {
2669
+ "nodetype" : "column",
2670
+ "moduleName" : "L2TP-MIB",
2671
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.18",
2672
+ "status" : "current",
2673
+ "syntax" : {
2674
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2675
+ },
2676
+ "access" : "readonly",
2677
+ "description" :
2678
+ """Indicates whether the LAC performed proxy LCP
2679
+ for this session.""",
2680
+ }, # column
2681
+ "l2tpSessionStatsAuthMethod" : {
2682
+ "nodetype" : "column",
2683
+ "moduleName" : "L2TP-MIB",
2684
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.19",
2685
+ "status" : "current",
2686
+ "syntax" : {
2687
+ "type" : {
2688
+ "basetype" : "Enumeration",
2689
+ "none" : {
2690
+ "nodetype" : "namednumber",
2691
+ "number" : "1"
2692
+ },
2693
+ "text" : {
2694
+ "nodetype" : "namednumber",
2695
+ "number" : "2"
2696
+ },
2697
+ "pppChap" : {
2698
+ "nodetype" : "namednumber",
2699
+ "number" : "3"
2700
+ },
2701
+ "pppPap" : {
2702
+ "nodetype" : "namednumber",
2703
+ "number" : "4"
2704
+ },
2705
+ "pppEap" : {
2706
+ "nodetype" : "namednumber",
2707
+ "number" : "5"
2708
+ },
2709
+ "pppMsChapV1" : {
2710
+ "nodetype" : "namednumber",
2711
+ "number" : "6"
2712
+ },
2713
+ "pppMsChapV2" : {
2714
+ "nodetype" : "namednumber",
2715
+ "number" : "7"
2716
+ },
2717
+ "other" : {
2718
+ "nodetype" : "namednumber",
2719
+ "number" : "8"
2720
+ },
2721
+ },
2722
+ },
2723
+ "access" : "readonly",
2724
+ "description" :
2725
+ """This object contains the proxy authentication
2726
+ method employed by the LAC for the session. If
2727
+ l2tpSessionProxyLcp is false(2) this object
2728
+ should not be interpreted.""",
2729
+ }, # column
2730
+ "l2tpSessionStatsSequencingState" : {
2731
+ "nodetype" : "column",
2732
+ "moduleName" : "L2TP-MIB",
2733
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.20",
2734
+ "status" : "current",
2735
+ "syntax" : {
2736
+ "type" : {
2737
+ "basetype" : "Enumeration",
2738
+ "none" : {
2739
+ "nodetype" : "namednumber",
2740
+ "number" : "1"
2741
+ },
2742
+ "remote" : {
2743
+ "nodetype" : "namednumber",
2744
+ "number" : "2"
2745
+ },
2746
+ "local" : {
2747
+ "nodetype" : "namednumber",
2748
+ "number" : "3"
2749
+ },
2750
+ "both" : {
2751
+ "nodetype" : "namednumber",
2752
+ "number" : "4"
2753
+ },
2754
+ },
2755
+ },
2756
+ "access" : "readonly",
2757
+ "description" :
2758
+ """This object defines which tunnel peers have
2759
+ requested payload sequencing. The value of
2760
+ both(4) indicates that both peers have requested
2761
+ payload sequencing.""",
2762
+ }, # column
2763
+ "l2tpSessionStatsOutSequence" : {
2764
+ "nodetype" : "column",
2765
+ "moduleName" : "L2TP-MIB",
2766
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.21",
2767
+ "status" : "current",
2768
+ "syntax" : {
2769
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2770
+ },
2771
+ "access" : "readonly",
2772
+ "description" :
2773
+ """This object returns the total number of packets
2774
+ received for this session which were received out
2775
+ of sequence.""",
2776
+ }, # column
2777
+ "l2tpSessionStatsReassemblyTO" : {
2778
+ "nodetype" : "column",
2779
+ "moduleName" : "L2TP-MIB",
2780
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.22",
2781
+ "status" : "current",
2782
+ "syntax" : {
2783
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2784
+ },
2785
+ "access" : "readonly",
2786
+ "description" :
2787
+ """This object returns the number of reassembly
2788
+ timeouts that have occurred for this session.""",
2789
+ }, # column
2790
+ "l2tpSessionStatsTxSeq" : {
2791
+ "nodetype" : "column",
2792
+ "moduleName" : "L2TP-MIB",
2793
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.23",
2794
+ "status" : "current",
2795
+ "syntax" : {
2796
+ "type" : {
2797
+ "basetype" : "Integer32",
2798
+ "ranges" : [
2799
+ {
2800
+ "min" : "0",
2801
+ "max" : "65535"
2802
+ },
2803
+ ],
2804
+ "range" : {
2805
+ "min" : "0",
2806
+ "max" : "65535"
2807
+ },
2808
+ },
2809
+ },
2810
+ "access" : "readonly",
2811
+ "description" :
2812
+ """This object contains the next send sequence number
2813
+ for for this session.""",
2814
+ }, # column
2815
+ "l2tpSessionStatsRxSeq" : {
2816
+ "nodetype" : "column",
2817
+ "moduleName" : "L2TP-MIB",
2818
+ "oid" : "1.3.6.1.2.1.10.95.1.7.1.24",
2819
+ "status" : "current",
2820
+ "syntax" : {
2821
+ "type" : {
2822
+ "basetype" : "Integer32",
2823
+ "ranges" : [
2824
+ {
2825
+ "min" : "0",
2826
+ "max" : "65535"
2827
+ },
2828
+ ],
2829
+ "range" : {
2830
+ "min" : "0",
2831
+ "max" : "65535"
2832
+ },
2833
+ },
2834
+ },
2835
+ "access" : "readonly",
2836
+ "description" :
2837
+ """This object contains the next receive sequence
2838
+ number expected to be received on this session.""",
2839
+ }, # column
2840
+ "l2tpTunnelMapTable" : {
2841
+ "nodetype" : "table",
2842
+ "moduleName" : "L2TP-MIB",
2843
+ "oid" : "1.3.6.1.2.1.10.95.1.8",
2844
+ "status" : "current",
2845
+ "description" :
2846
+ """The L2TP Tunnel index mapping table. This table
2847
+ is intended to assist management applications
2848
+ to quickly determine what the ifIndex value is
2849
+ for a given local tunnel identifier.""",
2850
+ }, # table
2851
+ "l2tpTunnelMapEntry" : {
2852
+ "nodetype" : "row",
2853
+ "moduleName" : "L2TP-MIB",
2854
+ "oid" : "1.3.6.1.2.1.10.95.1.8.1",
2855
+ "status" : "current",
2856
+ "linkage" : [
2857
+ "l2tpTunnelMapLocalTID",
2858
+ ],
2859
+ "description" :
2860
+ """An L2TP tunnel index map entry.""",
2861
+ }, # row
2862
+ "l2tpTunnelMapLocalTID" : {
2863
+ "nodetype" : "column",
2864
+ "moduleName" : "L2TP-MIB",
2865
+ "oid" : "1.3.6.1.2.1.10.95.1.8.1.1",
2866
+ "status" : "current",
2867
+ "syntax" : {
2868
+ "type" : {
2869
+ "basetype" : "Integer32",
2870
+ "ranges" : [
2871
+ {
2872
+ "min" : "1",
2873
+ "max" : "65535"
2874
+ },
2875
+ ],
2876
+ "range" : {
2877
+ "min" : "1",
2878
+ "max" : "65535"
2879
+ },
2880
+ },
2881
+ },
2882
+ "access" : "noaccess",
2883
+ "description" :
2884
+ """This object contains the local tunnel Identifier.""",
2885
+ "reference" :
2886
+ """RFC 2661, Section 3.1""",
2887
+ }, # column
2888
+ "l2tpTunnelMapIfIndex" : {
2889
+ "nodetype" : "column",
2890
+ "moduleName" : "L2TP-MIB",
2891
+ "oid" : "1.3.6.1.2.1.10.95.1.8.1.2",
2892
+ "status" : "current",
2893
+ "syntax" : {
2894
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2895
+ },
2896
+ "access" : "readonly",
2897
+ "description" :
2898
+ """This value for this object is equal to the value
2899
+ of ifIndex of the Interfaces MIB for tunnel
2900
+ interfaces of type L2TP.""",
2901
+ }, # column
2902
+ "l2tpSessionMapTable" : {
2903
+ "nodetype" : "table",
2904
+ "moduleName" : "L2TP-MIB",
2905
+ "oid" : "1.3.6.1.2.1.10.95.1.9",
2906
+ "status" : "current",
2907
+ "description" :
2908
+ """The L2TP Session index mapping table. This table
2909
+ is intended to assist management applications
2910
+ to map interfaces to a tunnel and session
2911
+ identifier.""",
2912
+ }, # table
2913
+ "l2tpSessionMapEntry" : {
2914
+ "nodetype" : "row",
2915
+ "moduleName" : "L2TP-MIB",
2916
+ "oid" : "1.3.6.1.2.1.10.95.1.9.1",
2917
+ "create" : "true",
2918
+ "status" : "current",
2919
+ "linkage" : [
2920
+ "l2tpSessionMapIfIndex",
2921
+ ],
2922
+ "description" :
2923
+ """An L2TP Session index map entry.""",
2924
+ }, # row
2925
+ "l2tpSessionMapIfIndex" : {
2926
+ "nodetype" : "column",
2927
+ "moduleName" : "L2TP-MIB",
2928
+ "oid" : "1.3.6.1.2.1.10.95.1.9.1.1",
2929
+ "status" : "current",
2930
+ "syntax" : {
2931
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2932
+ },
2933
+ "access" : "noaccess",
2934
+ "description" :
2935
+ """This object identifies the ifIndex value of the
2936
+ interface which is receiving or sending its packets
2937
+ over an L2TP tunnel. For example this could be a DS0
2938
+ ifIndex on a LAC or a PPP ifIndex on the LNS.""",
2939
+ }, # column
2940
+ "l2tpSessionMapTunnelIfIndex" : {
2941
+ "nodetype" : "column",
2942
+ "moduleName" : "L2TP-MIB",
2943
+ "oid" : "1.3.6.1.2.1.10.95.1.9.1.2",
2944
+ "status" : "current",
2945
+ "syntax" : {
2946
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2947
+ },
2948
+ "access" : "readwrite",
2949
+ "description" :
2950
+ """This object identifies the sessions associated
2951
+ L2TP tunnel ifIndex value. When this object is
2952
+ set it provides a binding between a particular
2953
+ interface identified by l2tpSessionMapIfIndex
2954
+ to a particular tunnel.""",
2955
+ }, # column
2956
+ "l2tpSessionMapLocalSID" : {
2957
+ "nodetype" : "column",
2958
+ "moduleName" : "L2TP-MIB",
2959
+ "oid" : "1.3.6.1.2.1.10.95.1.9.1.3",
2960
+ "status" : "current",
2961
+ "syntax" : {
2962
+ "type" : {
2963
+ "basetype" : "Integer32",
2964
+ "ranges" : [
2965
+ {
2966
+ "min" : "1",
2967
+ "max" : "65535"
2968
+ },
2969
+ ],
2970
+ "range" : {
2971
+ "min" : "1",
2972
+ "max" : "65535"
2973
+ },
2974
+ },
2975
+ },
2976
+ "access" : "readonly",
2977
+ "description" :
2978
+ """This object contains the local assigned session
2979
+ identifier for this session.""",
2980
+ "reference" :
2981
+ """RFC 2661, Section 3.1""",
2982
+ }, # column
2983
+ "l2tpSessionMapStatus" : {
2984
+ "nodetype" : "column",
2985
+ "moduleName" : "L2TP-MIB",
2986
+ "oid" : "1.3.6.1.2.1.10.95.1.9.1.4",
2987
+ "status" : "current",
2988
+ "syntax" : {
2989
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2990
+ },
2991
+ "access" : "readwrite",
2992
+ "description" :
2993
+ """The status of this session map entry.""",
2994
+ }, # column
2995
+ "l2tpTransports" : {
2996
+ "nodetype" : "node",
2997
+ "moduleName" : "L2TP-MIB",
2998
+ "oid" : "1.3.6.1.2.1.10.95.3",
2999
+ }, # node
3000
+ "l2tpTransportIpUdp" : {
3001
+ "nodetype" : "node",
3002
+ "moduleName" : "L2TP-MIB",
3003
+ "oid" : "1.3.6.1.2.1.10.95.3.1",
3004
+ }, # node
3005
+ "l2tpIpUdpObjects" : {
3006
+ "nodetype" : "node",
3007
+ "moduleName" : "L2TP-MIB",
3008
+ "oid" : "1.3.6.1.2.1.10.95.3.1.1",
3009
+ }, # node
3010
+ "l2tpUdpStatsTable" : {
3011
+ "nodetype" : "table",
3012
+ "moduleName" : "L2TP-MIB",
3013
+ "oid" : "1.3.6.1.2.1.10.95.3.1.1.2",
3014
+ "status" : "current",
3015
+ "description" :
3016
+ """The L2TP UDP/IP transport stats table. This table
3017
+ contains objects that can be used to describe the
3018
+ current status and statistics of the UDP/IP L2TP
3019
+ tunnel transport.""",
3020
+ }, # table
3021
+ "l2tpUdpStatsEntry" : {
3022
+ "nodetype" : "row",
3023
+ "moduleName" : "L2TP-MIB",
3024
+ "oid" : "1.3.6.1.2.1.10.95.3.1.1.2.1",
3025
+ "status" : "current",
3026
+ "linkage" : [
3027
+ "l2tpUdpStatsIfIndex",
3028
+ ],
3029
+ "description" :
3030
+ """An L2TP UDP/IP transport stats entry.""",
3031
+ }, # row
3032
+ "l2tpUdpStatsIfIndex" : {
3033
+ "nodetype" : "column",
3034
+ "moduleName" : "L2TP-MIB",
3035
+ "oid" : "1.3.6.1.2.1.10.95.3.1.1.2.1.1",
3036
+ "status" : "current",
3037
+ "syntax" : {
3038
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
3039
+ },
3040
+ "access" : "noaccess",
3041
+ "description" :
3042
+ """This value for this object is equal to the
3043
+ value of ifIndex of the Interfaces MIB for
3044
+ tunnel interfaces of type L2TP and which have
3045
+ a L2TP transport of UDP/IP.""",
3046
+ }, # column
3047
+ "l2tpUdpStatsPeerPort" : {
3048
+ "nodetype" : "column",
3049
+ "moduleName" : "L2TP-MIB",
3050
+ "oid" : "1.3.6.1.2.1.10.95.3.1.1.2.1.2",
3051
+ "status" : "current",
3052
+ "syntax" : {
3053
+ "type" : {
3054
+ "basetype" : "Integer32",
3055
+ "ranges" : [
3056
+ {
3057
+ "min" : "0",
3058
+ "max" : "65535"
3059
+ },
3060
+ ],
3061
+ "range" : {
3062
+ "min" : "0",
3063
+ "max" : "65535"
3064
+ },
3065
+ },
3066
+ },
3067
+ "access" : "readonly",
3068
+ "description" :
3069
+ """This object reflects the peer's UDP port number
3070
+ used for this tunnel. When not known a value of
3071
+ zero should be returned.""",
3072
+ }, # column
3073
+ "l2tpUdpStatsLocalPort" : {
3074
+ "nodetype" : "column",
3075
+ "moduleName" : "L2TP-MIB",
3076
+ "oid" : "1.3.6.1.2.1.10.95.3.1.1.2.1.3",
3077
+ "status" : "current",
3078
+ "syntax" : {
3079
+ "type" : {
3080
+ "basetype" : "Integer32",
3081
+ "ranges" : [
3082
+ {
3083
+ "min" : "0",
3084
+ "max" : "65535"
3085
+ },
3086
+ ],
3087
+ "range" : {
3088
+ "min" : "0",
3089
+ "max" : "65535"
3090
+ },
3091
+ },
3092
+ },
3093
+ "access" : "readonly",
3094
+ "description" :
3095
+ """This object reflects the local UDP port number
3096
+ that this tunnel is bound to.""",
3097
+ }, # column
3098
+ "l2tpIpUdpTraps" : {
3099
+ "nodetype" : "node",
3100
+ "moduleName" : "L2TP-MIB",
3101
+ "oid" : "1.3.6.1.2.1.10.95.3.1.2",
3102
+ }, # node
3103
+ "l2tpConformance" : {
3104
+ "nodetype" : "node",
3105
+ "moduleName" : "L2TP-MIB",
3106
+ "oid" : "1.3.6.1.2.1.10.95.4",
3107
+ }, # node
3108
+ "l2tpGroups" : {
3109
+ "nodetype" : "node",
3110
+ "moduleName" : "L2TP-MIB",
3111
+ "oid" : "1.3.6.1.2.1.10.95.4.1",
3112
+ }, # node
3113
+ "l2tpCompliances" : {
3114
+ "nodetype" : "node",
3115
+ "moduleName" : "L2TP-MIB",
3116
+ "oid" : "1.3.6.1.2.1.10.95.4.2",
3117
+ }, # node
3118
+ }, # nodes
3119
+
3120
+ "notifications" : {
3121
+ "l2tpTunnelAuthFailure" : {
3122
+ "nodetype" : "notification",
3123
+ "moduleName" : "L2TP-MIB",
3124
+ "oid" : "1.3.6.1.2.1.10.95.0.1",
3125
+ "status" : "current",
3126
+ "objects" : {
3127
+ "l2tpTunnelStatsInitiated" : {
3128
+ "nodetype" : "object",
3129
+ "module" : "L2TP-MIB"
3130
+ },
3131
+ "l2tpTunnelStatsRemoteHostName" : {
3132
+ "nodetype" : "object",
3133
+ "module" : "L2TP-MIB"
3134
+ },
3135
+ },
3136
+ "description" :
3137
+ """A l2tpTunnelAuthFailure trap signifies that an
3138
+ attempt to establish a tunnel to a remote peer
3139
+ has failed authentication.""",
3140
+ }, # notification
3141
+ }, # notifications
3142
+
3143
+ "groups" : {
3144
+ "l2tpConfigGroup" : {
3145
+ "nodetype" : "group",
3146
+ "moduleName" : "L2TP-MIB",
3147
+ "oid" : "1.3.6.1.2.1.10.95.4.1.1",
3148
+ "status" : "current",
3149
+ "members" : {
3150
+ "l2tpAdminState" : {
3151
+ "nodetype" : "member",
3152
+ "module" : "L2TP-MIB"
3153
+ },
3154
+ "l2tpDrainTunnels" : {
3155
+ "nodetype" : "member",
3156
+ "module" : "L2TP-MIB"
3157
+ },
3158
+ "l2tpTunnelConfigDomainId" : {
3159
+ "nodetype" : "member",
3160
+ "module" : "L2TP-MIB"
3161
+ },
3162
+ "l2tpTunnelConfigHelloInterval" : {
3163
+ "nodetype" : "member",
3164
+ "module" : "L2TP-MIB"
3165
+ },
3166
+ "l2tpTunnelConfigIdleTimeout" : {
3167
+ "nodetype" : "member",
3168
+ "module" : "L2TP-MIB"
3169
+ },
3170
+ "l2tpTunnelConfigControlRWS" : {
3171
+ "nodetype" : "member",
3172
+ "module" : "L2TP-MIB"
3173
+ },
3174
+ "l2tpTunnelConfigControlMaxRetx" : {
3175
+ "nodetype" : "member",
3176
+ "module" : "L2TP-MIB"
3177
+ },
3178
+ "l2tpTunnelConfigControlMaxRetxTO" : {
3179
+ "nodetype" : "member",
3180
+ "module" : "L2TP-MIB"
3181
+ },
3182
+ "l2tpTunnelConfigPayloadSeq" : {
3183
+ "nodetype" : "member",
3184
+ "module" : "L2TP-MIB"
3185
+ },
3186
+ "l2tpTunnelConfigReassemblyTO" : {
3187
+ "nodetype" : "member",
3188
+ "module" : "L2TP-MIB"
3189
+ },
3190
+ "l2tpTunnelConfigTransport" : {
3191
+ "nodetype" : "member",
3192
+ "module" : "L2TP-MIB"
3193
+ },
3194
+ "l2tpTunnelConfigDrainTunnel" : {
3195
+ "nodetype" : "member",
3196
+ "module" : "L2TP-MIB"
3197
+ },
3198
+ "l2tpTunnelConfigProxyPPPAuth" : {
3199
+ "nodetype" : "member",
3200
+ "module" : "L2TP-MIB"
3201
+ },
3202
+ }, # members
3203
+ "description" :
3204
+ """A collection of objects providing configuration
3205
+ information of the L2TP protocol, tunnels and
3206
+ sessions.""",
3207
+ }, # group
3208
+ "l2tpStatsGroup" : {
3209
+ "nodetype" : "group",
3210
+ "moduleName" : "L2TP-MIB",
3211
+ "oid" : "1.3.6.1.2.1.10.95.4.1.2",
3212
+ "status" : "current",
3213
+ "members" : {
3214
+ "l2tpProtocolVersions" : {
3215
+ "nodetype" : "member",
3216
+ "module" : "L2TP-MIB"
3217
+ },
3218
+ "l2tpVendorName" : {
3219
+ "nodetype" : "member",
3220
+ "module" : "L2TP-MIB"
3221
+ },
3222
+ "l2tpFirmwareRev" : {
3223
+ "nodetype" : "member",
3224
+ "module" : "L2TP-MIB"
3225
+ },
3226
+ "l2tpDrainingTunnels" : {
3227
+ "nodetype" : "member",
3228
+ "module" : "L2TP-MIB"
3229
+ },
3230
+ "l2tpTunnelStatsLocalTID" : {
3231
+ "nodetype" : "member",
3232
+ "module" : "L2TP-MIB"
3233
+ },
3234
+ "l2tpTunnelStatsRemoteTID" : {
3235
+ "nodetype" : "member",
3236
+ "module" : "L2TP-MIB"
3237
+ },
3238
+ "l2tpTunnelStatsState" : {
3239
+ "nodetype" : "member",
3240
+ "module" : "L2TP-MIB"
3241
+ },
3242
+ "l2tpTunnelStatsInitiated" : {
3243
+ "nodetype" : "member",
3244
+ "module" : "L2TP-MIB"
3245
+ },
3246
+ "l2tpTunnelStatsRemoteHostName" : {
3247
+ "nodetype" : "member",
3248
+ "module" : "L2TP-MIB"
3249
+ },
3250
+ "l2tpTunnelStatsRemoteVendorName" : {
3251
+ "nodetype" : "member",
3252
+ "module" : "L2TP-MIB"
3253
+ },
3254
+ "l2tpTunnelStatsRemoteFirmwareRev" : {
3255
+ "nodetype" : "member",
3256
+ "module" : "L2TP-MIB"
3257
+ },
3258
+ "l2tpTunnelStatsRemoteProtocolVer" : {
3259
+ "nodetype" : "member",
3260
+ "module" : "L2TP-MIB"
3261
+ },
3262
+ "l2tpTunnelStatsInitialRemoteRWS" : {
3263
+ "nodetype" : "member",
3264
+ "module" : "L2TP-MIB"
3265
+ },
3266
+ "l2tpTunnelStatsBearerCaps" : {
3267
+ "nodetype" : "member",
3268
+ "module" : "L2TP-MIB"
3269
+ },
3270
+ "l2tpTunnelStatsFramingCaps" : {
3271
+ "nodetype" : "member",
3272
+ "module" : "L2TP-MIB"
3273
+ },
3274
+ "l2tpTunnelStatsControlRxPkts" : {
3275
+ "nodetype" : "member",
3276
+ "module" : "L2TP-MIB"
3277
+ },
3278
+ "l2tpTunnelStatsControlRxZLB" : {
3279
+ "nodetype" : "member",
3280
+ "module" : "L2TP-MIB"
3281
+ },
3282
+ "l2tpTunnelStatsControlOutOfSeq" : {
3283
+ "nodetype" : "member",
3284
+ "module" : "L2TP-MIB"
3285
+ },
3286
+ "l2tpTunnelStatsControlOutOfWin" : {
3287
+ "nodetype" : "member",
3288
+ "module" : "L2TP-MIB"
3289
+ },
3290
+ "l2tpTunnelStatsControlTxPkts" : {
3291
+ "nodetype" : "member",
3292
+ "module" : "L2TP-MIB"
3293
+ },
3294
+ "l2tpTunnelStatsControlTxZLB" : {
3295
+ "nodetype" : "member",
3296
+ "module" : "L2TP-MIB"
3297
+ },
3298
+ "l2tpTunnelStatsControlAckTO" : {
3299
+ "nodetype" : "member",
3300
+ "module" : "L2TP-MIB"
3301
+ },
3302
+ "l2tpTunnelStatsCurrentRemoteRWS" : {
3303
+ "nodetype" : "member",
3304
+ "module" : "L2TP-MIB"
3305
+ },
3306
+ "l2tpTunnelStatsTxSeq" : {
3307
+ "nodetype" : "member",
3308
+ "module" : "L2TP-MIB"
3309
+ },
3310
+ "l2tpTunnelStatsTxSeqAck" : {
3311
+ "nodetype" : "member",
3312
+ "module" : "L2TP-MIB"
3313
+ },
3314
+ "l2tpTunnelStatsRxSeq" : {
3315
+ "nodetype" : "member",
3316
+ "module" : "L2TP-MIB"
3317
+ },
3318
+ "l2tpTunnelStatsRxSeqAck" : {
3319
+ "nodetype" : "member",
3320
+ "module" : "L2TP-MIB"
3321
+ },
3322
+ "l2tpTunnelStatsTotalSessions" : {
3323
+ "nodetype" : "member",
3324
+ "module" : "L2TP-MIB"
3325
+ },
3326
+ "l2tpTunnelStatsFailedSessions" : {
3327
+ "nodetype" : "member",
3328
+ "module" : "L2TP-MIB"
3329
+ },
3330
+ "l2tpTunnelStatsActiveSessions" : {
3331
+ "nodetype" : "member",
3332
+ "module" : "L2TP-MIB"
3333
+ },
3334
+ "l2tpTunnelStatsLastResultCode" : {
3335
+ "nodetype" : "member",
3336
+ "module" : "L2TP-MIB"
3337
+ },
3338
+ "l2tpTunnelStatsLastErrorCode" : {
3339
+ "nodetype" : "member",
3340
+ "module" : "L2TP-MIB"
3341
+ },
3342
+ "l2tpTunnelStatsLastErrorMessage" : {
3343
+ "nodetype" : "member",
3344
+ "module" : "L2TP-MIB"
3345
+ },
3346
+ "l2tpTunnelStatsDrainingTunnel" : {
3347
+ "nodetype" : "member",
3348
+ "module" : "L2TP-MIB"
3349
+ },
3350
+ "l2tpSessionStatsIfIndex" : {
3351
+ "nodetype" : "member",
3352
+ "module" : "L2TP-MIB"
3353
+ },
3354
+ "l2tpSessionStatsRemoteSID" : {
3355
+ "nodetype" : "member",
3356
+ "module" : "L2TP-MIB"
3357
+ },
3358
+ "l2tpSessionStatsUserName" : {
3359
+ "nodetype" : "member",
3360
+ "module" : "L2TP-MIB"
3361
+ },
3362
+ "l2tpSessionStatsState" : {
3363
+ "nodetype" : "member",
3364
+ "module" : "L2TP-MIB"
3365
+ },
3366
+ "l2tpSessionStatsCallType" : {
3367
+ "nodetype" : "member",
3368
+ "module" : "L2TP-MIB"
3369
+ },
3370
+ "l2tpSessionStatsCallSerialNumber" : {
3371
+ "nodetype" : "member",
3372
+ "module" : "L2TP-MIB"
3373
+ },
3374
+ "l2tpSessionStatsTxConnectSpeed" : {
3375
+ "nodetype" : "member",
3376
+ "module" : "L2TP-MIB"
3377
+ },
3378
+ "l2tpSessionStatsRxConnectSpeed" : {
3379
+ "nodetype" : "member",
3380
+ "module" : "L2TP-MIB"
3381
+ },
3382
+ "l2tpSessionStatsCallBearerType" : {
3383
+ "nodetype" : "member",
3384
+ "module" : "L2TP-MIB"
3385
+ },
3386
+ "l2tpSessionStatsFramingType" : {
3387
+ "nodetype" : "member",
3388
+ "module" : "L2TP-MIB"
3389
+ },
3390
+ "l2tpSessionStatsPhysChanId" : {
3391
+ "nodetype" : "member",
3392
+ "module" : "L2TP-MIB"
3393
+ },
3394
+ "l2tpSessionStatsDNIS" : {
3395
+ "nodetype" : "member",
3396
+ "module" : "L2TP-MIB"
3397
+ },
3398
+ "l2tpSessionStatsCLID" : {
3399
+ "nodetype" : "member",
3400
+ "module" : "L2TP-MIB"
3401
+ },
3402
+ "l2tpSessionStatsSubAddress" : {
3403
+ "nodetype" : "member",
3404
+ "module" : "L2TP-MIB"
3405
+ },
3406
+ "l2tpSessionStatsPrivateGroupID" : {
3407
+ "nodetype" : "member",
3408
+ "module" : "L2TP-MIB"
3409
+ },
3410
+ "l2tpSessionStatsProxyLcp" : {
3411
+ "nodetype" : "member",
3412
+ "module" : "L2TP-MIB"
3413
+ },
3414
+ "l2tpSessionStatsAuthMethod" : {
3415
+ "nodetype" : "member",
3416
+ "module" : "L2TP-MIB"
3417
+ },
3418
+ "l2tpSessionStatsSequencingState" : {
3419
+ "nodetype" : "member",
3420
+ "module" : "L2TP-MIB"
3421
+ },
3422
+ "l2tpSessionStatsOutSequence" : {
3423
+ "nodetype" : "member",
3424
+ "module" : "L2TP-MIB"
3425
+ },
3426
+ "l2tpSessionStatsReassemblyTO" : {
3427
+ "nodetype" : "member",
3428
+ "module" : "L2TP-MIB"
3429
+ },
3430
+ "l2tpSessionStatsTxSeq" : {
3431
+ "nodetype" : "member",
3432
+ "module" : "L2TP-MIB"
3433
+ },
3434
+ "l2tpSessionStatsRxSeq" : {
3435
+ "nodetype" : "member",
3436
+ "module" : "L2TP-MIB"
3437
+ },
3438
+ }, # members
3439
+ "description" :
3440
+ """A collection of objects providing status and
3441
+ statistics of the L2TP protocol, tunnels and
3442
+ sessions.""",
3443
+ }, # group
3444
+ "l2tpIpUdpGroup" : {
3445
+ "nodetype" : "group",
3446
+ "moduleName" : "L2TP-MIB",
3447
+ "oid" : "1.3.6.1.2.1.10.95.4.1.3",
3448
+ "status" : "current",
3449
+ "members" : {
3450
+ "l2tpUdpStatsPeerPort" : {
3451
+ "nodetype" : "member",
3452
+ "module" : "L2TP-MIB"
3453
+ },
3454
+ "l2tpUdpStatsLocalPort" : {
3455
+ "nodetype" : "member",
3456
+ "module" : "L2TP-MIB"
3457
+ },
3458
+ }, # members
3459
+ "description" :
3460
+ """A collection of objects providing status and
3461
+ statistics of the L2TP UDP/IP transport layer.""",
3462
+ }, # group
3463
+ "l2tpDomainGroup" : {
3464
+ "nodetype" : "group",
3465
+ "moduleName" : "L2TP-MIB",
3466
+ "oid" : "1.3.6.1.2.1.10.95.4.1.4",
3467
+ "status" : "current",
3468
+ "members" : {
3469
+ "l2tpDomainConfigAdminState" : {
3470
+ "nodetype" : "member",
3471
+ "module" : "L2TP-MIB"
3472
+ },
3473
+ "l2tpDomainConfigDrainTunnels" : {
3474
+ "nodetype" : "member",
3475
+ "module" : "L2TP-MIB"
3476
+ },
3477
+ "l2tpDomainConfigTunnelHelloInt" : {
3478
+ "nodetype" : "member",
3479
+ "module" : "L2TP-MIB"
3480
+ },
3481
+ "l2tpDomainConfigTunnelIdleTO" : {
3482
+ "nodetype" : "member",
3483
+ "module" : "L2TP-MIB"
3484
+ },
3485
+ "l2tpDomainConfigControlRWS" : {
3486
+ "nodetype" : "member",
3487
+ "module" : "L2TP-MIB"
3488
+ },
3489
+ "l2tpDomainConfigControlMaxRetx" : {
3490
+ "nodetype" : "member",
3491
+ "module" : "L2TP-MIB"
3492
+ },
3493
+ "l2tpDomainConfigControlMaxRetxTO" : {
3494
+ "nodetype" : "member",
3495
+ "module" : "L2TP-MIB"
3496
+ },
3497
+ "l2tpDomainConfigPayloadSeq" : {
3498
+ "nodetype" : "member",
3499
+ "module" : "L2TP-MIB"
3500
+ },
3501
+ "l2tpDomainConfigReassemblyTO" : {
3502
+ "nodetype" : "member",
3503
+ "module" : "L2TP-MIB"
3504
+ },
3505
+ "l2tpDomainConfigProxyPPPAuth" : {
3506
+ "nodetype" : "member",
3507
+ "module" : "L2TP-MIB"
3508
+ },
3509
+ "l2tpDomainConfigStorageType" : {
3510
+ "nodetype" : "member",
3511
+ "module" : "L2TP-MIB"
3512
+ },
3513
+ "l2tpDomainConfigStatus" : {
3514
+ "nodetype" : "member",
3515
+ "module" : "L2TP-MIB"
3516
+ },
3517
+ "l2tpDomainStatsTotalTunnels" : {
3518
+ "nodetype" : "member",
3519
+ "module" : "L2TP-MIB"
3520
+ },
3521
+ "l2tpDomainStatsFailedTunnels" : {
3522
+ "nodetype" : "member",
3523
+ "module" : "L2TP-MIB"
3524
+ },
3525
+ "l2tpDomainStatsFailedAuths" : {
3526
+ "nodetype" : "member",
3527
+ "module" : "L2TP-MIB"
3528
+ },
3529
+ "l2tpDomainStatsActiveTunnels" : {
3530
+ "nodetype" : "member",
3531
+ "module" : "L2TP-MIB"
3532
+ },
3533
+ "l2tpDomainStatsTotalSessions" : {
3534
+ "nodetype" : "member",
3535
+ "module" : "L2TP-MIB"
3536
+ },
3537
+ "l2tpDomainStatsFailedSessions" : {
3538
+ "nodetype" : "member",
3539
+ "module" : "L2TP-MIB"
3540
+ },
3541
+ "l2tpDomainStatsActiveSessions" : {
3542
+ "nodetype" : "member",
3543
+ "module" : "L2TP-MIB"
3544
+ },
3545
+ "l2tpDomainStatsDrainingTunnels" : {
3546
+ "nodetype" : "member",
3547
+ "module" : "L2TP-MIB"
3548
+ },
3549
+ "l2tpDomainStatsControlRxOctets" : {
3550
+ "nodetype" : "member",
3551
+ "module" : "L2TP-MIB"
3552
+ },
3553
+ "l2tpDomainStatsControlRxPkts" : {
3554
+ "nodetype" : "member",
3555
+ "module" : "L2TP-MIB"
3556
+ },
3557
+ "l2tpDomainStatsControlTxOctets" : {
3558
+ "nodetype" : "member",
3559
+ "module" : "L2TP-MIB"
3560
+ },
3561
+ "l2tpDomainStatsControlTxPkts" : {
3562
+ "nodetype" : "member",
3563
+ "module" : "L2TP-MIB"
3564
+ },
3565
+ "l2tpDomainStatsPayloadRxOctets" : {
3566
+ "nodetype" : "member",
3567
+ "module" : "L2TP-MIB"
3568
+ },
3569
+ "l2tpDomainStatsPayloadRxPkts" : {
3570
+ "nodetype" : "member",
3571
+ "module" : "L2TP-MIB"
3572
+ },
3573
+ "l2tpDomainStatsPayloadRxDiscs" : {
3574
+ "nodetype" : "member",
3575
+ "module" : "L2TP-MIB"
3576
+ },
3577
+ "l2tpDomainStatsPayloadTxOctets" : {
3578
+ "nodetype" : "member",
3579
+ "module" : "L2TP-MIB"
3580
+ },
3581
+ "l2tpDomainStatsPayloadTxPkts" : {
3582
+ "nodetype" : "member",
3583
+ "module" : "L2TP-MIB"
3584
+ },
3585
+ }, # members
3586
+ "description" :
3587
+ """A collection of objects providing configuration,
3588
+ status and statistics of L2TP tunnel domains.""",
3589
+ }, # group
3590
+ "l2tpMappingGroup" : {
3591
+ "nodetype" : "group",
3592
+ "moduleName" : "L2TP-MIB",
3593
+ "oid" : "1.3.6.1.2.1.10.95.4.1.5",
3594
+ "status" : "current",
3595
+ "members" : {
3596
+ "l2tpTunnelMapIfIndex" : {
3597
+ "nodetype" : "member",
3598
+ "module" : "L2TP-MIB"
3599
+ },
3600
+ "l2tpSessionMapTunnelIfIndex" : {
3601
+ "nodetype" : "member",
3602
+ "module" : "L2TP-MIB"
3603
+ },
3604
+ "l2tpSessionMapLocalSID" : {
3605
+ "nodetype" : "member",
3606
+ "module" : "L2TP-MIB"
3607
+ },
3608
+ "l2tpSessionMapStatus" : {
3609
+ "nodetype" : "member",
3610
+ "module" : "L2TP-MIB"
3611
+ },
3612
+ }, # members
3613
+ "description" :
3614
+ """A collection of objects providing index mapping.""",
3615
+ }, # group
3616
+ "l2tpSecurityGroup" : {
3617
+ "nodetype" : "group",
3618
+ "moduleName" : "L2TP-MIB",
3619
+ "oid" : "1.3.6.1.2.1.10.95.4.1.6",
3620
+ "status" : "current",
3621
+ "members" : {
3622
+ "l2tpDomainConfigAuth" : {
3623
+ "nodetype" : "member",
3624
+ "module" : "L2TP-MIB"
3625
+ },
3626
+ "l2tpDomainConfigSecret" : {
3627
+ "nodetype" : "member",
3628
+ "module" : "L2TP-MIB"
3629
+ },
3630
+ "l2tpDomainConfigTunnelSecurity" : {
3631
+ "nodetype" : "member",
3632
+ "module" : "L2TP-MIB"
3633
+ },
3634
+ "l2tpTunnelConfigAuth" : {
3635
+ "nodetype" : "member",
3636
+ "module" : "L2TP-MIB"
3637
+ },
3638
+ "l2tpTunnelConfigSecret" : {
3639
+ "nodetype" : "member",
3640
+ "module" : "L2TP-MIB"
3641
+ },
3642
+ "l2tpTunnelConfigSecurity" : {
3643
+ "nodetype" : "member",
3644
+ "module" : "L2TP-MIB"
3645
+ },
3646
+ }, # members
3647
+ "description" :
3648
+ """A collection of objects providing L2TP security
3649
+ configuration.""",
3650
+ }, # group
3651
+ "l2tpTrapGroup" : {
3652
+ "nodetype" : "group",
3653
+ "moduleName" : "L2TP-MIB",
3654
+ "oid" : "1.3.6.1.2.1.10.95.4.1.7",
3655
+ "status" : "current",
3656
+ "members" : {
3657
+ "l2tpTunnelAuthFailure" : {
3658
+ "nodetype" : "member",
3659
+ "module" : "L2TP-MIB"
3660
+ },
3661
+ }, # members
3662
+ "description" :
3663
+ """A collection of L2TP trap events as specified
3664
+ in NOTIFICATION-TYPE constructs.""",
3665
+ }, # group
3666
+ "l2tpHCPacketGroup" : {
3667
+ "nodetype" : "group",
3668
+ "moduleName" : "L2TP-MIB",
3669
+ "oid" : "1.3.6.1.2.1.10.95.4.1.8",
3670
+ "status" : "current",
3671
+ "members" : {
3672
+ "l2tpDomainStatsControlHCRxOctets" : {
3673
+ "nodetype" : "member",
3674
+ "module" : "L2TP-MIB"
3675
+ },
3676
+ "l2tpDomainStatsControlHCRxPkts" : {
3677
+ "nodetype" : "member",
3678
+ "module" : "L2TP-MIB"
3679
+ },
3680
+ "l2tpDomainStatsControlHCTxOctets" : {
3681
+ "nodetype" : "member",
3682
+ "module" : "L2TP-MIB"
3683
+ },
3684
+ "l2tpDomainStatsControlHCTxPkts" : {
3685
+ "nodetype" : "member",
3686
+ "module" : "L2TP-MIB"
3687
+ },
3688
+ "l2tpDomainStatsPayloadHCRxOctets" : {
3689
+ "nodetype" : "member",
3690
+ "module" : "L2TP-MIB"
3691
+ },
3692
+ "l2tpDomainStatsPayloadHCRxPkts" : {
3693
+ "nodetype" : "member",
3694
+ "module" : "L2TP-MIB"
3695
+ },
3696
+ "l2tpDomainStatsPayloadHCRxDiscs" : {
3697
+ "nodetype" : "member",
3698
+ "module" : "L2TP-MIB"
3699
+ },
3700
+ "l2tpDomainStatsPayloadHCTxOctets" : {
3701
+ "nodetype" : "member",
3702
+ "module" : "L2TP-MIB"
3703
+ },
3704
+ "l2tpDomainStatsPayloadHCTxPkts" : {
3705
+ "nodetype" : "member",
3706
+ "module" : "L2TP-MIB"
3707
+ },
3708
+ }, # members
3709
+ "description" :
3710
+ """A collection of objects providing High Capacity
3711
+ 64-bit counter objects.""",
3712
+ }, # group
3713
+ }, # groups
3714
+
3715
+ "compliances" : {
3716
+ "l2tpMIBFullCompliance" : {
3717
+ "nodetype" : "compliance",
3718
+ "moduleName" : "L2TP-MIB",
3719
+ "oid" : "1.3.6.1.2.1.10.95.4.2.1",
3720
+ "status" : "current",
3721
+ "description" :
3722
+ """When this MIB is implemented with support for
3723
+ read-create and read-write, then such an
3724
+
3725
+
3726
+
3727
+ implementation can claim full compliance. Such
3728
+ an implementation can then be both monitored
3729
+ and configured with this MIB.""",
3730
+ "requires" : {
3731
+ "l2tpConfigGroup" : {
3732
+ "nodetype" : "mandatory",
3733
+ "module" : "L2TP-MIB"
3734
+ },
3735
+ "l2tpStatsGroup" : {
3736
+ "nodetype" : "mandatory",
3737
+ "module" : "L2TP-MIB"
3738
+ },
3739
+ "l2tpTrapGroup" : {
3740
+ "nodetype" : "mandatory",
3741
+ "module" : "L2TP-MIB"
3742
+ },
3743
+ "l2tpIpUdpGroup" : {
3744
+ "nodetype" : "optional",
3745
+ "module" : "L2TP-MIB",
3746
+ "description" :
3747
+ """This group is mandatory for implementations that
3748
+ support L2TP over UDP/IP.""",
3749
+ },
3750
+ "l2tpDomainGroup" : {
3751
+ "nodetype" : "optional",
3752
+ "module" : "L2TP-MIB",
3753
+ "description" :
3754
+ """This group is optional for L2TP devices that
3755
+ group tunnel endpoints into tunnel domains.""",
3756
+ },
3757
+ "l2tpMappingGroup" : {
3758
+ "nodetype" : "optional",
3759
+ "module" : "L2TP-MIB",
3760
+ "description" :
3761
+ """This group is optional for L2TP devices that
3762
+ provide index mapping.""",
3763
+ },
3764
+ "l2tpSecurityGroup" : {
3765
+ "nodetype" : "optional",
3766
+ "module" : "L2TP-MIB",
3767
+ "description" :
3768
+ """This group is optional for SNMP agents which support
3769
+ both authentication and privacy of SNMP messages for
3770
+ the management of L2TP keys.""",
3771
+ },
3772
+ "l2tpHCPacketGroup" : {
3773
+ "nodetype" : "optional",
3774
+ "module" : "L2TP-MIB",
3775
+ "description" :
3776
+ """This group is mandatory for implementations that
3777
+ support the l2tpDomainGroup AND could potentially
3778
+ overflow the L2TP Domain 32-bit counters is less
3779
+ than one hour.""",
3780
+ },
3781
+ }, # requires
3782
+ }, # compliance
3783
+ "l2tpMIBReadOnlyCompliance" : {
3784
+ "nodetype" : "compliance",
3785
+ "moduleName" : "L2TP-MIB",
3786
+ "oid" : "1.3.6.1.2.1.10.95.4.2.2",
3787
+ "status" : "current",
3788
+ "description" :
3789
+ """When this MIB is implemented without support for
3790
+ read-create and read-write (i.e. in read-only mode),
3791
+ then such an implementation can claim read-only
3792
+ compliance. Such an implementation can then be
3793
+ monitored but can not be configured with this MIB.""",
3794
+ "requires" : {
3795
+ "l2tpConfigGroup" : {
3796
+ "nodetype" : "mandatory",
3797
+ "module" : "L2TP-MIB"
3798
+ },
3799
+ "l2tpStatsGroup" : {
3800
+ "nodetype" : "mandatory",
3801
+ "module" : "L2TP-MIB"
3802
+ },
3803
+ "l2tpTrapGroup" : {
3804
+ "nodetype" : "mandatory",
3805
+ "module" : "L2TP-MIB"
3806
+ },
3807
+ "l2tpIpUdpGroup" : {
3808
+ "nodetype" : "optional",
3809
+ "module" : "L2TP-MIB",
3810
+ "description" :
3811
+ """This group is mandatory for implementations that
3812
+ support L2TP over UDP/IP.""",
3813
+ },
3814
+ "l2tpDomainGroup" : {
3815
+ "nodetype" : "optional",
3816
+ "module" : "L2TP-MIB",
3817
+ "description" :
3818
+ """This group is optional for L2TP devices that
3819
+ group tunnel endpoints into tunnel domains.""",
3820
+ },
3821
+ "l2tpMappingGroup" : {
3822
+ "nodetype" : "optional",
3823
+ "module" : "L2TP-MIB",
3824
+ "description" :
3825
+ """This group is optional for L2TP devices that
3826
+ provide index mapping.""",
3827
+ },
3828
+ "l2tpSecurityGroup" : {
3829
+ "nodetype" : "optional",
3830
+ "module" : "L2TP-MIB",
3831
+ "description" :
3832
+ """This group is optional for SNMP agents which support
3833
+ both authentication and privacy of SNMP messages for
3834
+ the management of L2TP keys.""",
3835
+ },
3836
+ "l2tpHCPacketGroup" : {
3837
+ "nodetype" : "optional",
3838
+ "module" : "L2TP-MIB",
3839
+ "description" :
3840
+ """This group is mandatory for implementations that
3841
+ support the l2tpDomainGroup AND could potentially
3842
+ overflow the L2TP Domain 32-bit counters is less
3843
+ than one hour.""",
3844
+ },
3845
+ }, # requires
3846
+ "refinements" : {
3847
+ "l2tpAdminState" : {
3848
+ "module" : "L2TP-MIB",
3849
+ "access" : "readonly",
3850
+ "description" :
3851
+ """Write access is not required.""",
3852
+ },
3853
+ "l2tpDrainTunnels" : {
3854
+ "module" : "L2TP-MIB",
3855
+ "access" : "readonly",
3856
+ "description" :
3857
+ """Write access is not required.""",
3858
+ },
3859
+ "l2tpTunnelConfigDomainId" : {
3860
+ "module" : "L2TP-MIB",
3861
+ "access" : "readonly",
3862
+ "description" :
3863
+ """Write access is not required.""",
3864
+ },
3865
+ "l2tpTunnelConfigHelloInterval" : {
3866
+ "module" : "L2TP-MIB",
3867
+ "access" : "readonly",
3868
+ "description" :
3869
+ """Write access is not required.""",
3870
+ },
3871
+ "l2tpTunnelConfigIdleTimeout" : {
3872
+ "module" : "L2TP-MIB",
3873
+ "access" : "readonly",
3874
+ "description" :
3875
+ """Write access is not required.""",
3876
+ },
3877
+ "l2tpTunnelConfigControlRWS" : {
3878
+ "module" : "L2TP-MIB",
3879
+ "access" : "readonly",
3880
+ "description" :
3881
+ """Write access is not required.""",
3882
+ },
3883
+ "l2tpTunnelConfigControlMaxRetx" : {
3884
+ "module" : "L2TP-MIB",
3885
+ "access" : "readonly",
3886
+ "description" :
3887
+ """Write access is not required.""",
3888
+ },
3889
+ "l2tpTunnelConfigControlMaxRetxTO" : {
3890
+ "module" : "L2TP-MIB",
3891
+ "access" : "readonly",
3892
+ "description" :
3893
+ """Write access is not required.""",
3894
+ },
3895
+ "l2tpTunnelConfigPayloadSeq" : {
3896
+ "module" : "L2TP-MIB",
3897
+ "access" : "readonly",
3898
+ "description" :
3899
+ """Write access is not required.""",
3900
+ },
3901
+ "l2tpTunnelConfigReassemblyTO" : {
3902
+ "module" : "L2TP-MIB",
3903
+ "access" : "readonly",
3904
+ "description" :
3905
+ """Write access is not required.""",
3906
+ },
3907
+ "l2tpTunnelConfigTransport" : {
3908
+ "module" : "L2TP-MIB",
3909
+ "access" : "readonly",
3910
+ "description" :
3911
+ """Write access is not required.""",
3912
+ },
3913
+ "l2tpTunnelConfigDrainTunnel" : {
3914
+ "module" : "L2TP-MIB",
3915
+ "access" : "readonly",
3916
+ "description" :
3917
+ """Write access is not required.""",
3918
+ },
3919
+ "l2tpTunnelConfigProxyPPPAuth" : {
3920
+ "module" : "L2TP-MIB",
3921
+ "access" : "readonly",
3922
+ "description" :
3923
+ """Write access is not required.""",
3924
+ },
3925
+ "l2tpDomainConfigAdminState" : {
3926
+ "module" : "L2TP-MIB",
3927
+ "access" : "readonly",
3928
+ "description" :
3929
+ """Write access is not required.""",
3930
+ },
3931
+ "l2tpDomainConfigDrainTunnels" : {
3932
+ "module" : "L2TP-MIB",
3933
+ "access" : "readonly",
3934
+ "description" :
3935
+ """Write access is not required.""",
3936
+ },
3937
+ "l2tpDomainConfigTunnelHelloInt" : {
3938
+ "module" : "L2TP-MIB",
3939
+ "access" : "readonly",
3940
+ "description" :
3941
+ """Write access is not required.""",
3942
+ },
3943
+ "l2tpDomainConfigTunnelIdleTO" : {
3944
+ "module" : "L2TP-MIB",
3945
+ "access" : "readonly",
3946
+ "description" :
3947
+ """Write access is not required.""",
3948
+ },
3949
+ "l2tpDomainConfigControlRWS" : {
3950
+ "module" : "L2TP-MIB",
3951
+ "access" : "readonly",
3952
+ "description" :
3953
+ """Write access is not required.""",
3954
+ },
3955
+ "l2tpDomainConfigControlMaxRetx" : {
3956
+ "module" : "L2TP-MIB",
3957
+ "access" : "readonly",
3958
+ "description" :
3959
+ """Write access is not required.""",
3960
+ },
3961
+ "l2tpDomainConfigControlMaxRetxTO" : {
3962
+ "module" : "L2TP-MIB",
3963
+ "access" : "readonly",
3964
+ "description" :
3965
+ """Write access is not required.""",
3966
+ },
3967
+ "l2tpDomainConfigPayloadSeq" : {
3968
+ "module" : "L2TP-MIB",
3969
+ "access" : "readonly",
3970
+ "description" :
3971
+ """Write access is not required.""",
3972
+ },
3973
+ "l2tpDomainConfigReassemblyTO" : {
3974
+ "module" : "L2TP-MIB",
3975
+ "access" : "readonly",
3976
+ "description" :
3977
+ """Write access is not required.""",
3978
+ },
3979
+ "l2tpDomainConfigProxyPPPAuth" : {
3980
+ "module" : "L2TP-MIB",
3981
+ "access" : "readonly",
3982
+ "description" :
3983
+ """Write access is not required.""",
3984
+ },
3985
+ "l2tpDomainConfigStorageType" : {
3986
+ "module" : "L2TP-MIB",
3987
+ "access" : "readonly",
3988
+ "description" :
3989
+ """Write access is not required.""",
3990
+ },
3991
+ "l2tpDomainConfigStatus" : {
3992
+ "module" : "L2TP-MIB",
3993
+ "access" : "readonly",
3994
+ "description" :
3995
+ """Write access is not required.""",
3996
+ },
3997
+ "l2tpSessionMapTunnelIfIndex" : {
3998
+ "module" : "L2TP-MIB",
3999
+ "access" : "readonly",
4000
+ "description" :
4001
+ """Write access is not required.""",
4002
+ },
4003
+ "l2tpSessionMapStatus" : {
4004
+ "module" : "L2TP-MIB",
4005
+ "access" : "readonly",
4006
+ "description" :
4007
+ """Write access is not required.""",
4008
+ },
4009
+ "l2tpDomainConfigAuth" : {
4010
+ "module" : "L2TP-MIB",
4011
+ "access" : "readonly",
4012
+ "description" :
4013
+ """Write access is not required.""",
4014
+ },
4015
+ "l2tpDomainConfigSecret" : {
4016
+ "module" : "L2TP-MIB",
4017
+ "access" : "readonly",
4018
+ "description" :
4019
+ """Write access is not required.""",
4020
+ },
4021
+ "l2tpDomainConfigTunnelSecurity" : {
4022
+ "module" : "L2TP-MIB",
4023
+ "access" : "readonly",
4024
+ "description" :
4025
+ """Write access is not required.""",
4026
+ },
4027
+ "l2tpTunnelConfigAuth" : {
4028
+ "module" : "L2TP-MIB",
4029
+ "access" : "readonly",
4030
+ "description" :
4031
+ """Write access is not required.""",
4032
+ },
4033
+ "l2tpTunnelConfigSecret" : {
4034
+ "module" : "L2TP-MIB",
4035
+ "access" : "readonly",
4036
+ "description" :
4037
+ """Write access is not required.""",
4038
+ },
4039
+ "l2tpTunnelConfigSecurity" : {
4040
+ "module" : "L2TP-MIB",
4041
+ "access" : "readonly",
4042
+ "description" :
4043
+ """Write access is not required.""",
4044
+ },
4045
+ }, # refinements
4046
+
4047
+ }, # compliance
4048
+ }, # compliances
4049
+
4050
+ }