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,3159 @@
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 TRIP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/TRIP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "TRIP-MIB",
11
+
12
+ "TRIP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPTel Working Group.
17
+
18
+
19
+ Mailing list: iptel@lists.bell-labs.com""",
20
+ "contact" :
21
+ """Co-editor David Zinman
22
+ postal: 265 Ridley Blvd.
23
+ Toronto ON, M5M 4N8
24
+ Canada
25
+ email: dzinman@rogers.com
26
+ phone: +1 416 433 4298
27
+
28
+ Co-editor: David Walker
29
+ Sedna Wireless Inc.
30
+ postal: 495 March Road, Suite 500
31
+ Ottawa, ON K2K 3G1
32
+ Canada
33
+ email: david.walker@sedna-wireless.com
34
+ phone: +1 613 878 8142
35
+
36
+ Co-editor Jianping Jiang
37
+ Syndesis Limited
38
+ postal: 30 Fulton Way
39
+ Richmond Hill, ON L4B 1J5
40
+ Canada
41
+
42
+ email: jjiang@syndesis.com
43
+ phone: +1 905 886-7818 x2515""",
44
+ "description" :
45
+ """The MIB module describing Telephony Routing over IP
46
+ (TRIP). TRIP is a policy driven inter-administrative
47
+ domain protocol for advertising the reachability of
48
+ telephony destinations between location servers (LS), and
49
+ for advertising attributes of the routes to those
50
+ destinations.
51
+
52
+ Copyright (C) The Internet Society (2004). This version of
53
+ this MIB module is part of RFC 3872, see the RFC itself
54
+ for full legal notices.""",
55
+ "revisions" : (
56
+ {
57
+ "date" : "2004-09-02 00:00",
58
+ "description" :
59
+ """The initial version, Published as RFC 3872.""",
60
+ },
61
+ ),
62
+ "identity node" : "tripMIB",
63
+ },
64
+
65
+ "imports" : (
66
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
67
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
68
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
69
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
70
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
71
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
72
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
73
+ {"module" : "SNMPv2-TC", "name" : "DateAndTime"},
74
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
75
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
76
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
77
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
78
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
79
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
80
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
81
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
82
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
83
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
84
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
85
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applIndex"},
86
+ {"module" : "NETWORK-SERVICES-MIB", "name" : "applRFC2788Group"},
87
+ {"module" : "TRIP-TC-MIB", "name" : "TripItad"},
88
+ {"module" : "TRIP-TC-MIB", "name" : "TripId"},
89
+ {"module" : "TRIP-TC-MIB", "name" : "TripAppProtocol"},
90
+ {"module" : "TRIP-TC-MIB", "name" : "TripAddressFamily"},
91
+ {"module" : "TRIP-TC-MIB", "name" : "TripCommunityId"},
92
+ {"module" : "TRIP-TC-MIB", "name" : "TripProtocolVersion"},
93
+ {"module" : "TRIP-TC-MIB", "name" : "TripSendReceiveMode"},
94
+ ),
95
+
96
+ "nodes" : {
97
+ "tripMIB" : {
98
+ "nodetype" : "node",
99
+ "moduleName" : "TRIP-MIB",
100
+ "oid" : "1.3.6.1.2.1.116",
101
+ "status" : "current",
102
+ }, # node
103
+ "tripMIBNotifications" : {
104
+ "nodetype" : "node",
105
+ "moduleName" : "TRIP-MIB",
106
+ "oid" : "1.3.6.1.2.1.116.0",
107
+ }, # node
108
+ "tripMIBObjects" : {
109
+ "nodetype" : "node",
110
+ "moduleName" : "TRIP-MIB",
111
+ "oid" : "1.3.6.1.2.1.116.1",
112
+ }, # node
113
+ "tripCfgTable" : {
114
+ "nodetype" : "table",
115
+ "moduleName" : "TRIP-MIB",
116
+ "oid" : "1.3.6.1.2.1.116.1.1",
117
+ "status" : "current",
118
+ "description" :
119
+ """This table contains the common configuration objects
120
+ applicable to all TRIP applications referenced by the
121
+ applIndex. Each row represents those objects for a
122
+ particular TRIP LS present in this system. The
123
+ instances of TRIP LS's are uniquely identified by the
124
+ applIndex. The objects in this table SHOULD be
125
+ nonVolatile and survive a reboot.""",
126
+ }, # table
127
+ "tripCfgEntry" : {
128
+ "nodetype" : "row",
129
+ "moduleName" : "TRIP-MIB",
130
+ "oid" : "1.3.6.1.2.1.116.1.1.1",
131
+ "status" : "current",
132
+ "linkage" : [
133
+ "applIndex",
134
+ ],
135
+ "description" :
136
+ """A row of common configuration.""",
137
+ }, # row
138
+ "tripCfgProtocolVersion" : {
139
+ "nodetype" : "column",
140
+ "moduleName" : "TRIP-MIB",
141
+ "oid" : "1.3.6.1.2.1.116.1.1.1.1",
142
+ "status" : "current",
143
+ "syntax" : {
144
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripProtocolVersion"},
145
+ },
146
+ "access" : "readonly",
147
+ "description" :
148
+ """This object will reflect the version of TRIP
149
+ supported by this system. It follows the same
150
+ format as TRIP version information contained
151
+ in the TRIP messages generated by this TRIP entity.""",
152
+ "reference" :
153
+ """RFC 3219, section 4.2.""",
154
+ }, # column
155
+ "tripCfgItad" : {
156
+ "nodetype" : "column",
157
+ "moduleName" : "TRIP-MIB",
158
+ "oid" : "1.3.6.1.2.1.116.1.1.1.2",
159
+ "status" : "current",
160
+ "syntax" : {
161
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripItad"},
162
+ },
163
+ "access" : "readwrite",
164
+ "description" :
165
+ """The Internet Telephony Administrative domain (ITAD)
166
+ of this LS.""",
167
+ }, # column
168
+ "tripCfgIdentifier" : {
169
+ "nodetype" : "column",
170
+ "moduleName" : "TRIP-MIB",
171
+ "oid" : "1.3.6.1.2.1.116.1.1.1.3",
172
+ "status" : "current",
173
+ "syntax" : {
174
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripId"},
175
+ },
176
+ "access" : "readonly",
177
+ "description" :
178
+ """The object that identifies this TRIP Client.""",
179
+ }, # column
180
+ "tripCfgAdminStatus" : {
181
+ "nodetype" : "column",
182
+ "moduleName" : "TRIP-MIB",
183
+ "oid" : "1.3.6.1.2.1.116.1.1.1.4",
184
+ "status" : "current",
185
+ "syntax" : {
186
+ "type" : {
187
+ "basetype" : "Enumeration",
188
+ "up" : {
189
+ "nodetype" : "namednumber",
190
+ "number" : "1"
191
+ },
192
+ "down" : {
193
+ "nodetype" : "namednumber",
194
+ "number" : "2"
195
+ },
196
+ },
197
+ },
198
+ "access" : "readwrite",
199
+ "description" :
200
+ """The desired TRIP state.
201
+
202
+ up(1) : Set the application to normal operation.
203
+
204
+ down(2): Set the application to a state where it will
205
+ not process TRIP messages.
206
+
207
+ Setting this object should be reflected in
208
+ tripCfgOperStatus. If an unknown error occurs
209
+ tripCfgOperStatus will return unknown(0).""",
210
+ }, # column
211
+ "tripCfgOperStatus" : {
212
+ "nodetype" : "column",
213
+ "moduleName" : "TRIP-MIB",
214
+ "oid" : "1.3.6.1.2.1.116.1.1.1.5",
215
+ "status" : "current",
216
+ "syntax" : {
217
+ "type" : {
218
+ "basetype" : "Enumeration",
219
+ "unknown" : {
220
+ "nodetype" : "namednumber",
221
+ "number" : "0"
222
+ },
223
+ "up" : {
224
+ "nodetype" : "namednumber",
225
+ "number" : "1"
226
+ },
227
+ "down" : {
228
+ "nodetype" : "namednumber",
229
+ "number" : "2"
230
+ },
231
+ "faulty" : {
232
+ "nodetype" : "namednumber",
233
+ "number" : "3"
234
+ },
235
+ },
236
+ },
237
+ "access" : "readonly",
238
+ "description" :
239
+ """The current operational state of the TRIP protocol.
240
+
241
+ unknown(0): The operating status of the application is
242
+ unknown.
243
+
244
+ up(1): The application is operating normally, and
245
+ is ready to process (receive and issue) TRIP
246
+ requests and responses.
247
+
248
+ down(2): The application is currently not processing
249
+ TRIP messages. This occurs if the TRIP
250
+ application is in an initialization state or
251
+ if tripCfgAdminStatus is set to down(2).
252
+
253
+ faulty(3): The application is not operating normally due
254
+ to a fault in the system.
255
+
256
+ If tripCfgAdminStatus is down(2) then tripOperStatus SHOULD
257
+ be down(2). If tripAdminStatus is changed to up(1) then
258
+ tripOperStatus SHOULD change to up(1) if there is no
259
+ fault that prevents the TRIP protocol from moving to the
260
+ up(1) state.""",
261
+ }, # column
262
+ "tripCfgAddrIAddrType" : {
263
+ "nodetype" : "column",
264
+ "moduleName" : "TRIP-MIB",
265
+ "oid" : "1.3.6.1.2.1.116.1.1.1.6",
266
+ "status" : "current",
267
+ "syntax" : {
268
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
269
+ },
270
+ "access" : "readonly",
271
+ "description" :
272
+ """The type of Inet Address of the tripAddr.""",
273
+ "reference" :
274
+ """RFC 3291, section 3.""",
275
+ }, # column
276
+ "tripCfgAddr" : {
277
+ "nodetype" : "column",
278
+ "moduleName" : "TRIP-MIB",
279
+ "oid" : "1.3.6.1.2.1.116.1.1.1.7",
280
+ "status" : "current",
281
+ "syntax" : {
282
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
283
+ },
284
+ "access" : "readonly",
285
+ "description" :
286
+ """The network address of the local LS that the peer
287
+ connects to. The type of address depends on the object
288
+ tripCfgAddrIAddrType. The type of this address is
289
+ determined by the value of the
290
+ tripCfgAddrIAddrType object.""",
291
+ "reference" :
292
+ """RFC 3291, section 3.""",
293
+ }, # column
294
+ "tripCfgPort" : {
295
+ "nodetype" : "column",
296
+ "moduleName" : "TRIP-MIB",
297
+ "oid" : "1.3.6.1.2.1.116.1.1.1.8",
298
+ "status" : "current",
299
+ "syntax" : {
300
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
301
+ },
302
+ "access" : "readwrite",
303
+ "description" :
304
+ """The local tcp/udp port on the local LS that the peer
305
+ connects to.""",
306
+ }, # column
307
+ "tripCfgMinItadOriginationInterval" : {
308
+ "nodetype" : "column",
309
+ "moduleName" : "TRIP-MIB",
310
+ "oid" : "1.3.6.1.2.1.116.1.1.1.9",
311
+ "status" : "current",
312
+ "syntax" : {
313
+ "type" : {
314
+ "basetype" : "Unsigned32",
315
+ "ranges" : [
316
+ {
317
+ "min" : "1",
318
+ "max" : "2147483647"
319
+ },
320
+ ],
321
+ "range" : {
322
+ "min" : "1",
323
+ "max" : "2147483647"
324
+ },
325
+ },
326
+ },
327
+ "access" : "readwrite",
328
+ "default" : "30",
329
+ "units" : "Seconds",
330
+ "description" :
331
+ """The minimum amount of time that MUST elapse between
332
+ advertisement of the update message that reports changes
333
+ within the LS's own ITAD.""",
334
+ }, # column
335
+ "tripCfgMinRouteAdvertisementInterval" : {
336
+ "nodetype" : "column",
337
+ "moduleName" : "TRIP-MIB",
338
+ "oid" : "1.3.6.1.2.1.116.1.1.1.10",
339
+ "status" : "current",
340
+ "syntax" : {
341
+ "type" : {
342
+ "basetype" : "Unsigned32",
343
+ "ranges" : [
344
+ {
345
+ "min" : "1",
346
+ "max" : "2147483647"
347
+ },
348
+ ],
349
+ "range" : {
350
+ "min" : "1",
351
+ "max" : "2147483647"
352
+ },
353
+ },
354
+ },
355
+ "access" : "readwrite",
356
+ "default" : "30",
357
+ "units" : "Seconds",
358
+ "description" :
359
+ """Specifies minimal interval between successive
360
+ advertisements to a particular destination from an LS.""",
361
+ }, # column
362
+ "tripCfgMaxPurgeTime" : {
363
+ "nodetype" : "column",
364
+ "moduleName" : "TRIP-MIB",
365
+ "oid" : "1.3.6.1.2.1.116.1.1.1.11",
366
+ "status" : "current",
367
+ "syntax" : {
368
+ "type" : {
369
+ "basetype" : "Unsigned32",
370
+ "ranges" : [
371
+ {
372
+ "min" : "1",
373
+ "max" : "2147483647"
374
+ },
375
+ ],
376
+ "range" : {
377
+ "min" : "1",
378
+ "max" : "2147483647"
379
+ },
380
+ },
381
+ },
382
+ "access" : "readwrite",
383
+ "default" : "10",
384
+ "units" : "Seconds",
385
+ "description" :
386
+ """Indicates the interval that the LS MUST maintain routes
387
+ marked as withdrawn in its database.""",
388
+ }, # column
389
+ "tripCfgDisableTime" : {
390
+ "nodetype" : "column",
391
+ "moduleName" : "TRIP-MIB",
392
+ "oid" : "1.3.6.1.2.1.116.1.1.1.12",
393
+ "status" : "current",
394
+ "syntax" : {
395
+ "type" : {
396
+ "basetype" : "Unsigned32",
397
+ "ranges" : [
398
+ {
399
+ "min" : "1",
400
+ "max" : "2147483647"
401
+ },
402
+ ],
403
+ "range" : {
404
+ "min" : "1",
405
+ "max" : "2147483647"
406
+ },
407
+ },
408
+ },
409
+ "access" : "readwrite",
410
+ "default" : "180",
411
+ "units" : "Seconds",
412
+ "description" :
413
+ """Indicates the interval that the TRIP module of the
414
+ LS MUST be disabled while routes originated by this
415
+ LS with high sequence numbers can be removed.""",
416
+ }, # column
417
+ "tripCfgSendReceiveMode" : {
418
+ "nodetype" : "column",
419
+ "moduleName" : "TRIP-MIB",
420
+ "oid" : "1.3.6.1.2.1.116.1.1.1.13",
421
+ "status" : "current",
422
+ "syntax" : {
423
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripSendReceiveMode"},
424
+ },
425
+ "access" : "readonly",
426
+ "description" :
427
+ """The operational mode of the TRIP entity running on this
428
+ system.""",
429
+ }, # column
430
+ "tripCfgStorage" : {
431
+ "nodetype" : "column",
432
+ "moduleName" : "TRIP-MIB",
433
+ "oid" : "1.3.6.1.2.1.116.1.1.1.14",
434
+ "status" : "current",
435
+ "syntax" : {
436
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
437
+ },
438
+ "access" : "readwrite",
439
+ "default" : "nonVolatile",
440
+ "description" :
441
+ """The storage type for this conceptual row. Conceptual rows
442
+ having the value 'permanent' need not allow write-access
443
+ to any columnar objects in the row.""",
444
+ }, # column
445
+ "tripRouteTypeTable" : {
446
+ "nodetype" : "table",
447
+ "moduleName" : "TRIP-MIB",
448
+ "oid" : "1.3.6.1.2.1.116.1.2",
449
+ "status" : "current",
450
+ "description" :
451
+ """The TRIP peer Route Type table contains one entry per
452
+ supported protocol - address family pair. The objects in
453
+ this table are volatile and are refreshed after a reboot.""",
454
+ }, # table
455
+ "tripRouteTypeEntry" : {
456
+ "nodetype" : "row",
457
+ "moduleName" : "TRIP-MIB",
458
+ "oid" : "1.3.6.1.2.1.116.1.2.1",
459
+ "status" : "current",
460
+ "linkage" : [
461
+ "applIndex",
462
+ "tripRouteTypeAddrInetType",
463
+ "tripRouteTypeAddr",
464
+ "tripRouteTypePort",
465
+ "tripRouteTypeProtocolId",
466
+ "tripRouteTypeAddrFamilyId",
467
+ ],
468
+ "description" :
469
+ """An entry containing information about the route type
470
+ that a particular TRIP entity supports. Each entry
471
+ represents information about either the local or a remote
472
+ LS peer. The object tripRouteTypePeer is used to
473
+ distinguish this. In the case of a local LS, the
474
+ address/port information will reflect the values
475
+ configured in tripCfgTable. In the case of a remote
476
+ peer, the address/port information will reflect the
477
+ values of an entry in the tripPeerTable.
478
+
479
+ Implementation need to be aware that if the size of
480
+ tripRouteTypeAddr exceeds 111 sub-IDs, then OIDs of column
481
+ instances in this table will have more than 128 sub-IDs
482
+ and cannot be accessed using SNMPv1, SNMPv2c, or snmpv3.""",
483
+ }, # row
484
+ "tripRouteTypeAddrInetType" : {
485
+ "nodetype" : "column",
486
+ "moduleName" : "TRIP-MIB",
487
+ "oid" : "1.3.6.1.2.1.116.1.2.1.1",
488
+ "status" : "current",
489
+ "syntax" : {
490
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
491
+ },
492
+ "access" : "noaccess",
493
+ "description" :
494
+ """The type of Inet Address of the tripRouteTypeAddr.""",
495
+ "reference" :
496
+ """RFC 3291, section 3.""",
497
+ }, # column
498
+ "tripRouteTypeAddr" : {
499
+ "nodetype" : "column",
500
+ "moduleName" : "TRIP-MIB",
501
+ "oid" : "1.3.6.1.2.1.116.1.2.1.2",
502
+ "status" : "current",
503
+ "syntax" : {
504
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
505
+ },
506
+ "access" : "noaccess",
507
+ "description" :
508
+ """The network address of this entry's TRIP peer LS. The
509
+ type of this address is determined by the value of the
510
+ tripRouteTypeAddrInetType object.""",
511
+ "reference" :
512
+ """RFC 3291, section 3.""",
513
+ }, # column
514
+ "tripRouteTypePort" : {
515
+ "nodetype" : "column",
516
+ "moduleName" : "TRIP-MIB",
517
+ "oid" : "1.3.6.1.2.1.116.1.2.1.3",
518
+ "status" : "current",
519
+ "syntax" : {
520
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
521
+ },
522
+ "access" : "noaccess",
523
+ "description" :
524
+ """The port for the TCP connection between this and
525
+ an associated TRIP peer.""",
526
+ }, # column
527
+ "tripRouteTypeProtocolId" : {
528
+ "nodetype" : "column",
529
+ "moduleName" : "TRIP-MIB",
530
+ "oid" : "1.3.6.1.2.1.116.1.2.1.4",
531
+ "status" : "current",
532
+ "syntax" : {
533
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripAppProtocol"},
534
+ },
535
+ "access" : "noaccess",
536
+ "description" :
537
+ """The object identifier of a protocol that the associated
538
+ peer is using.""",
539
+ }, # column
540
+ "tripRouteTypeAddrFamilyId" : {
541
+ "nodetype" : "column",
542
+ "moduleName" : "TRIP-MIB",
543
+ "oid" : "1.3.6.1.2.1.116.1.2.1.5",
544
+ "status" : "current",
545
+ "syntax" : {
546
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripAddressFamily"},
547
+ },
548
+ "access" : "noaccess",
549
+ "description" :
550
+ """The object identifier of an address family that the
551
+ associated peer belongs to.""",
552
+ }, # column
553
+ "tripRouteTypePeer" : {
554
+ "nodetype" : "column",
555
+ "moduleName" : "TRIP-MIB",
556
+ "oid" : "1.3.6.1.2.1.116.1.2.1.6",
557
+ "status" : "current",
558
+ "syntax" : {
559
+ "type" : {
560
+ "basetype" : "Enumeration",
561
+ "local" : {
562
+ "nodetype" : "namednumber",
563
+ "number" : "1"
564
+ },
565
+ "remote" : {
566
+ "nodetype" : "namednumber",
567
+ "number" : "2"
568
+ },
569
+ },
570
+ },
571
+ "access" : "readonly",
572
+ "description" :
573
+ """This object identifies whether this entry is
574
+
575
+
576
+
577
+ associated with a 'local' or 'remote' LS peer.""",
578
+ }, # column
579
+ "tripSupportedCommunityTable" : {
580
+ "nodetype" : "table",
581
+ "moduleName" : "TRIP-MIB",
582
+ "oid" : "1.3.6.1.2.1.116.1.3",
583
+ "status" : "current",
584
+ "description" :
585
+ """The list of TRIP communities that this LS supports. A
586
+ TRIP community is a group of destinations that share
587
+ common properties.
588
+
589
+ The TRIP Supported Communities entry is used to group
590
+ destinations so that the routing decision can be based
591
+ on the identity of the group.""",
592
+ "reference" :
593
+ """RFC 3219, section 5.9""",
594
+ }, # table
595
+ "tripSupportedCommunityEntry" : {
596
+ "nodetype" : "row",
597
+ "moduleName" : "TRIP-MIB",
598
+ "oid" : "1.3.6.1.2.1.116.1.3.1",
599
+ "create" : "true",
600
+ "status" : "current",
601
+ "linkage" : [
602
+ "applIndex",
603
+ "tripSupportedCommunityId",
604
+ ],
605
+ "description" :
606
+ """Entry containing information about a community. A TRIP
607
+ community is a group of destinations that share some
608
+ common property. This attribute is used so that routing
609
+ decisions can be based on the identity of the group.""",
610
+ }, # row
611
+ "tripSupportedCommunityId" : {
612
+ "nodetype" : "column",
613
+ "moduleName" : "TRIP-MIB",
614
+ "oid" : "1.3.6.1.2.1.116.1.3.1.1",
615
+ "status" : "current",
616
+ "syntax" : {
617
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripCommunityId"},
618
+ },
619
+ "access" : "noaccess",
620
+ "description" :
621
+ """The identifier of the supported Community.""",
622
+ }, # column
623
+ "tripSupportedCommunityItad" : {
624
+ "nodetype" : "column",
625
+ "moduleName" : "TRIP-MIB",
626
+ "oid" : "1.3.6.1.2.1.116.1.3.1.2",
627
+ "status" : "current",
628
+ "syntax" : {
629
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripItad"},
630
+ },
631
+ "access" : "readwrite",
632
+ "description" :
633
+ """The ITAD of the community.""",
634
+ }, # column
635
+ "tripSupportedCommunityStorage" : {
636
+ "nodetype" : "column",
637
+ "moduleName" : "TRIP-MIB",
638
+ "oid" : "1.3.6.1.2.1.116.1.3.1.3",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
642
+ },
643
+ "access" : "readwrite",
644
+ "default" : "nonVolatile",
645
+ "description" :
646
+ """The storage type for this conceptual row. Conceptual
647
+ rows having the value 'permanent' need not allow write-
648
+ access to any columnar objects in the row. It is not a
649
+ requirement that this storage be non volatile.""",
650
+ }, # column
651
+ "tripSupportedCommunityRowStatus" : {
652
+ "nodetype" : "column",
653
+ "moduleName" : "TRIP-MIB",
654
+ "oid" : "1.3.6.1.2.1.116.1.3.1.4",
655
+ "status" : "current",
656
+ "syntax" : {
657
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
658
+ },
659
+ "access" : "readwrite",
660
+ "description" :
661
+ """The row status of the entry. This object is REQUIRED
662
+ to create or delete rows by a manager. A value for
663
+ tripSupportedCommunityItad MUST be set for row creation
664
+ to be successful. If the instance already exists for a
665
+ particular applIndex, the row create operation will
666
+ fail.
667
+
668
+ The value of this object has no effect on whether
669
+ other objects in this conceptual row can be modified.""",
670
+ }, # column
671
+ "tripPeerTable" : {
672
+ "nodetype" : "table",
673
+ "moduleName" : "TRIP-MIB",
674
+ "oid" : "1.3.6.1.2.1.116.1.4",
675
+ "status" : "current",
676
+ "description" :
677
+ """The TRIP peer table. This table contains one entry per
678
+ TRIP peer, and information about the connection with
679
+
680
+
681
+
682
+ the peer.""",
683
+ }, # table
684
+ "tripPeerEntry" : {
685
+ "nodetype" : "row",
686
+ "moduleName" : "TRIP-MIB",
687
+ "oid" : "1.3.6.1.2.1.116.1.4.1",
688
+ "create" : "true",
689
+ "status" : "current",
690
+ "linkage" : [
691
+ "applIndex",
692
+ "tripPeerRemoteAddrInetType",
693
+ "tripPeerRemoteAddr",
694
+ "tripPeerRemotePort",
695
+ ],
696
+ "description" :
697
+ """Entry containing information about the connection with
698
+ a TRIP peer.
699
+
700
+ Implementation need to be aware that if the size of
701
+ tripPeerRemoteAddr exceeds 113 sub-IDs, then OIDs of
702
+ column instances in this table will have more than 128
703
+ sub-IDs and cannot be accessed using SNMPv1, SNMPv2c, or
704
+ snmpv3.""",
705
+ }, # row
706
+ "tripPeerRemoteAddrInetType" : {
707
+ "nodetype" : "column",
708
+ "moduleName" : "TRIP-MIB",
709
+ "oid" : "1.3.6.1.2.1.116.1.4.1.1",
710
+ "status" : "current",
711
+ "syntax" : {
712
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
713
+ },
714
+ "access" : "noaccess",
715
+ "description" :
716
+ """The type of Inet Address of the tripPeerRemoteAddr.""",
717
+ "reference" :
718
+ """RFC 3291, section 3.""",
719
+ }, # column
720
+ "tripPeerRemoteAddr" : {
721
+ "nodetype" : "column",
722
+ "moduleName" : "TRIP-MIB",
723
+ "oid" : "1.3.6.1.2.1.116.1.4.1.2",
724
+ "status" : "current",
725
+ "syntax" : {
726
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
727
+ },
728
+ "access" : "noaccess",
729
+ "description" :
730
+ """The IP address of this entry's TRIP peer LS. The type of
731
+ this address is determined by the value of the
732
+ tripPeerRemoteAddrInetType object.""",
733
+ "reference" :
734
+ """RFC 3291, section 3.""",
735
+ }, # column
736
+ "tripPeerRemotePort" : {
737
+ "nodetype" : "column",
738
+ "moduleName" : "TRIP-MIB",
739
+ "oid" : "1.3.6.1.2.1.116.1.4.1.3",
740
+ "status" : "current",
741
+ "syntax" : {
742
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
743
+ },
744
+ "access" : "noaccess",
745
+ "description" :
746
+ """The remote port for the TCP connection between the
747
+ TRIP peers.""",
748
+ }, # column
749
+ "tripPeerIdentifier" : {
750
+ "nodetype" : "column",
751
+ "moduleName" : "TRIP-MIB",
752
+ "oid" : "1.3.6.1.2.1.116.1.4.1.4",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripId"},
756
+ },
757
+ "access" : "readonly",
758
+ "description" :
759
+ """TRIP identifier of the peer.""",
760
+ }, # column
761
+ "tripPeerState" : {
762
+ "nodetype" : "column",
763
+ "moduleName" : "TRIP-MIB",
764
+ "oid" : "1.3.6.1.2.1.116.1.4.1.5",
765
+ "status" : "current",
766
+ "syntax" : {
767
+ "type" : {
768
+ "basetype" : "Enumeration",
769
+ "idle" : {
770
+ "nodetype" : "namednumber",
771
+ "number" : "1"
772
+ },
773
+ "connect" : {
774
+ "nodetype" : "namednumber",
775
+ "number" : "2"
776
+ },
777
+ "active" : {
778
+ "nodetype" : "namednumber",
779
+ "number" : "3"
780
+ },
781
+ "openSent" : {
782
+ "nodetype" : "namednumber",
783
+ "number" : "4"
784
+ },
785
+ "openConfirm" : {
786
+ "nodetype" : "namednumber",
787
+ "number" : "5"
788
+ },
789
+ "established" : {
790
+ "nodetype" : "namednumber",
791
+ "number" : "6"
792
+ },
793
+ },
794
+ },
795
+ "access" : "readonly",
796
+ "description" :
797
+ """TRIP Peer Finite State Machine state.
798
+
799
+ idle(1) : The initial state. Local LS refuses all
800
+ incoming connections. No application
801
+ resources are allocated to processing
802
+ information about the remote peer.
803
+
804
+ connect(2) : Local LS waiting for a transport
805
+ protocol connection to be completed to
806
+ the peer, and is listening for inbound
807
+ transport connections from the peer.
808
+
809
+ active(3) : Local LS is listening for an inbound
810
+ connection from the peer, but is not in
811
+ the process of initiating a connection
812
+ to the remote peer.
813
+
814
+ openSent(4) : Local LS has sent an OPEN message to its
815
+ peer and is waiting for an OPEN message
816
+ from the remote peer.
817
+
818
+ openConfirm(5): Local LS has sent an OPEN message to the
819
+ remote peer, received an OPEN message from
820
+ the remote peer, and sent a KEEPALIVE
821
+ message in response to the OPEN. The local
822
+ LS is now waiting for a KEEPALIVE message
823
+ or a NOTIFICATION message in response to
824
+ its OPEN message.
825
+
826
+ established(6): LS can exchange UPDATE, NOTIFICATION, and
827
+ KEEPALIVE messages with its peer.""",
828
+ }, # column
829
+ "tripPeerAdminStatus" : {
830
+ "nodetype" : "column",
831
+ "moduleName" : "TRIP-MIB",
832
+ "oid" : "1.3.6.1.2.1.116.1.4.1.6",
833
+ "status" : "current",
834
+ "syntax" : {
835
+ "type" : {
836
+ "basetype" : "Enumeration",
837
+ "up" : {
838
+ "nodetype" : "namednumber",
839
+ "number" : "1"
840
+ },
841
+ "down" : {
842
+ "nodetype" : "namednumber",
843
+ "number" : "2"
844
+ },
845
+ },
846
+ },
847
+ "access" : "readwrite",
848
+ "default" : "up",
849
+ "description" :
850
+ """This object is used to affect the TRIP connection
851
+ state.
852
+
853
+ up(1) : Allow a connection with the peer LS.
854
+
855
+ down(2) : disconnect the connection from the peer LS and
856
+ do not allow any further connections to this
857
+
858
+
859
+
860
+ peer.
861
+
862
+ If this value is set to down(2) then tripPeerState will
863
+ have the value of idle(1).""",
864
+ }, # column
865
+ "tripPeerNegotiatedVersion" : {
866
+ "nodetype" : "column",
867
+ "moduleName" : "TRIP-MIB",
868
+ "oid" : "1.3.6.1.2.1.116.1.4.1.7",
869
+ "status" : "current",
870
+ "syntax" : {
871
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripProtocolVersion"},
872
+ },
873
+ "access" : "readonly",
874
+ "description" :
875
+ """The negotiated version of TRIP running between this
876
+ local entity and this peer.""",
877
+ }, # column
878
+ "tripPeerSendReceiveMode" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "TRIP-MIB",
881
+ "oid" : "1.3.6.1.2.1.116.1.4.1.8",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripSendReceiveMode"},
885
+ },
886
+ "access" : "readonly",
887
+ "description" :
888
+ """The operational mode of this peer.""",
889
+ }, # column
890
+ "tripPeerRemoteItad" : {
891
+ "nodetype" : "column",
892
+ "moduleName" : "TRIP-MIB",
893
+ "oid" : "1.3.6.1.2.1.116.1.4.1.9",
894
+ "status" : "current",
895
+ "syntax" : {
896
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripItad"},
897
+ },
898
+ "access" : "readonly",
899
+ "description" :
900
+ """The Internet Telephony Administrative domain of
901
+ this peer.""",
902
+ }, # column
903
+ "tripPeerConnectRetryInterval" : {
904
+ "nodetype" : "column",
905
+ "moduleName" : "TRIP-MIB",
906
+ "oid" : "1.3.6.1.2.1.116.1.4.1.10",
907
+ "status" : "current",
908
+ "syntax" : {
909
+ "type" : {
910
+ "basetype" : "Unsigned32",
911
+ "ranges" : [
912
+ {
913
+ "min" : "0",
914
+ "max" : "2147483647"
915
+ },
916
+ ],
917
+ "range" : {
918
+ "min" : "0",
919
+ "max" : "2147483647"
920
+ },
921
+ },
922
+ },
923
+ "access" : "readwrite",
924
+ "default" : "120",
925
+ "units" : "Seconds",
926
+ "description" :
927
+ """Specifies the initial amount of time that will elapse
928
+ between connection retry. This value SHOULD double
929
+ after each attempt up to the value of
930
+ tripPeerMaxRetryInterval. This value MUST always be less
931
+ than or equal to the value of tripPeerMaxRetryInterval.
932
+ Attempts to set this value higher than the max retry
933
+ will not be allowed.""",
934
+ }, # column
935
+ "tripPeerMaxRetryInterval" : {
936
+ "nodetype" : "column",
937
+ "moduleName" : "TRIP-MIB",
938
+ "oid" : "1.3.6.1.2.1.116.1.4.1.11",
939
+ "status" : "current",
940
+ "syntax" : {
941
+ "type" : {
942
+ "basetype" : "Unsigned32",
943
+ "ranges" : [
944
+ {
945
+ "min" : "0",
946
+ "max" : "2147483647"
947
+ },
948
+ ],
949
+ "range" : {
950
+ "min" : "0",
951
+ "max" : "2147483647"
952
+ },
953
+ },
954
+ },
955
+ "access" : "readwrite",
956
+ "default" : "360",
957
+ "units" : "Seconds",
958
+ "description" :
959
+ """Specifies the maximum amount of time that will elapse
960
+ between connection retries. Once the value of
961
+ tripPeerConnectRetryInterval has reached this value, no
962
+ more retries will be attempted. Attempts to set this
963
+ value lower than the retry interval SHOULD not be
964
+ allowed.""",
965
+ }, # column
966
+ "tripPeerHoldTime" : {
967
+ "nodetype" : "column",
968
+ "moduleName" : "TRIP-MIB",
969
+ "oid" : "1.3.6.1.2.1.116.1.4.1.12",
970
+ "status" : "current",
971
+ "syntax" : {
972
+ "type" : {
973
+ "basetype" : "Unsigned32",
974
+ "ranges" : [
975
+ {
976
+ "min" : "1",
977
+ "max" : "2147483647"
978
+ },
979
+ ],
980
+ "range" : {
981
+ "min" : "1",
982
+ "max" : "2147483647"
983
+ },
984
+ },
985
+ },
986
+ "access" : "readonly",
987
+ "units" : "Seconds",
988
+ "description" :
989
+ """The time interval in seconds for the hold timer that
990
+ is established with the peer. The value of this object
991
+ is the smaller of the values in
992
+ tripPeerHoldTimeConfigured and the hold time received
993
+ in the open message.""",
994
+ }, # column
995
+ "tripPeerKeepAlive" : {
996
+ "nodetype" : "column",
997
+ "moduleName" : "TRIP-MIB",
998
+ "oid" : "1.3.6.1.2.1.116.1.4.1.13",
999
+ "status" : "current",
1000
+ "syntax" : {
1001
+ "type" : {
1002
+ "basetype" : "Unsigned32",
1003
+ "ranges" : [
1004
+ {
1005
+ "min" : "1",
1006
+ "max" : "2147483647"
1007
+ },
1008
+ ],
1009
+ "range" : {
1010
+ "min" : "1",
1011
+ "max" : "2147483647"
1012
+ },
1013
+ },
1014
+ },
1015
+ "access" : "readonly",
1016
+ "units" : "Seconds",
1017
+ "description" :
1018
+ """Specifies the amount of time that MUST elapse between
1019
+ keep alive messages. This value is negotiated with the
1020
+ remote when a connection is established.""",
1021
+ }, # column
1022
+ "tripPeerHoldTimeConfigured" : {
1023
+ "nodetype" : "column",
1024
+ "moduleName" : "TRIP-MIB",
1025
+ "oid" : "1.3.6.1.2.1.116.1.4.1.14",
1026
+ "status" : "current",
1027
+ "syntax" : {
1028
+ "type" : {
1029
+ "basetype" : "Unsigned32",
1030
+ "ranges" : [
1031
+ {
1032
+ "min" : "0",
1033
+ "max" : "0"
1034
+ },
1035
+ {
1036
+ "min" : "3",
1037
+ "max" : "65535"
1038
+ },
1039
+ ],
1040
+ "range" : {
1041
+ "min" : "0",
1042
+ "max" : "65535"
1043
+ },
1044
+ },
1045
+ },
1046
+ "access" : "readwrite",
1047
+ "default" : "240",
1048
+ "units" : "Seconds",
1049
+ "description" :
1050
+ """Specifies the maximum time that MAY elapse between the
1051
+ receipt of successive keepalive or update message. A value
1052
+ of 0 means that keepalive or update messages will not be
1053
+
1054
+
1055
+
1056
+ sent.""",
1057
+ }, # column
1058
+ "tripPeerKeepAliveConfigured" : {
1059
+ "nodetype" : "column",
1060
+ "moduleName" : "TRIP-MIB",
1061
+ "oid" : "1.3.6.1.2.1.116.1.4.1.15",
1062
+ "status" : "current",
1063
+ "syntax" : {
1064
+ "type" : {
1065
+ "basetype" : "Unsigned32",
1066
+ "ranges" : [
1067
+ {
1068
+ "min" : "1",
1069
+ "max" : "2147483647"
1070
+ },
1071
+ ],
1072
+ "range" : {
1073
+ "min" : "1",
1074
+ "max" : "2147483647"
1075
+ },
1076
+ },
1077
+ },
1078
+ "access" : "readwrite",
1079
+ "default" : "30",
1080
+ "units" : "Seconds",
1081
+ "description" :
1082
+ """Specifies the amount of time that MUST elapse between
1083
+ keep alive messages.""",
1084
+ }, # column
1085
+ "tripPeerMaxPurgeTime" : {
1086
+ "nodetype" : "column",
1087
+ "moduleName" : "TRIP-MIB",
1088
+ "oid" : "1.3.6.1.2.1.116.1.4.1.16",
1089
+ "status" : "current",
1090
+ "syntax" : {
1091
+ "type" : {
1092
+ "basetype" : "Unsigned32",
1093
+ "ranges" : [
1094
+ {
1095
+ "min" : "1",
1096
+ "max" : "65535"
1097
+ },
1098
+ ],
1099
+ "range" : {
1100
+ "min" : "1",
1101
+ "max" : "65535"
1102
+ },
1103
+ },
1104
+ },
1105
+ "access" : "readwrite",
1106
+ "default" : "10",
1107
+ "units" : "Seconds",
1108
+ "description" :
1109
+ """Indicates the interval that the LS MUST maintain routes
1110
+ marked as withdrawn in its database.""",
1111
+ }, # column
1112
+ "tripPeerDisableTime" : {
1113
+ "nodetype" : "column",
1114
+ "moduleName" : "TRIP-MIB",
1115
+ "oid" : "1.3.6.1.2.1.116.1.4.1.17",
1116
+ "status" : "current",
1117
+ "syntax" : {
1118
+ "type" : {
1119
+ "basetype" : "Unsigned32",
1120
+ "ranges" : [
1121
+ {
1122
+ "min" : "1",
1123
+ "max" : "65535"
1124
+ },
1125
+ ],
1126
+ "range" : {
1127
+ "min" : "1",
1128
+ "max" : "65535"
1129
+ },
1130
+ },
1131
+ },
1132
+ "access" : "readwrite",
1133
+ "default" : "180",
1134
+ "units" : "Seconds",
1135
+ "description" :
1136
+ """Indicate the interval that the TRIP module of the remote
1137
+ peer LS MUST be disabled while routes originated by the
1138
+ local LS with high sequence numbers can be removed.""",
1139
+ }, # column
1140
+ "tripPeerLearned" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "TRIP-MIB",
1143
+ "oid" : "1.3.6.1.2.1.116.1.4.1.18",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1147
+ },
1148
+ "access" : "readonly",
1149
+ "default" : "false",
1150
+ "description" :
1151
+ """Indicates whether this entry was learned or
1152
+ configured.""",
1153
+ }, # column
1154
+ "tripPeerStorage" : {
1155
+ "nodetype" : "column",
1156
+ "moduleName" : "TRIP-MIB",
1157
+ "oid" : "1.3.6.1.2.1.116.1.4.1.19",
1158
+ "status" : "current",
1159
+ "syntax" : {
1160
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1161
+ },
1162
+ "access" : "readwrite",
1163
+ "default" : "nonVolatile",
1164
+ "description" :
1165
+ """The storage type for this conceptual row. Conceptual
1166
+ rows having the value 'permanent' need not allow write-
1167
+ access to any columnar objects in the row. It is not a
1168
+ requirement that this storage be non volatile.""",
1169
+ }, # column
1170
+ "tripPeerRowStatus" : {
1171
+ "nodetype" : "column",
1172
+ "moduleName" : "TRIP-MIB",
1173
+ "oid" : "1.3.6.1.2.1.116.1.4.1.20",
1174
+ "status" : "current",
1175
+ "syntax" : {
1176
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1177
+ },
1178
+ "access" : "readwrite",
1179
+ "description" :
1180
+ """The row status of the entry. This object is REQUIRED to
1181
+ create or delete rows remotely by a manager. If the
1182
+ instance already exists for a particular applIndex, the
1183
+ row create operation will fail.
1184
+
1185
+ The value of this object has no effect on whether
1186
+ other objects in this conceptual row can be modified.
1187
+
1188
+ Entries in this table can be learned by the TRIP
1189
+ application, or provisioned through this table.""",
1190
+ }, # column
1191
+ "tripPeerStatisticsTable" : {
1192
+ "nodetype" : "table",
1193
+ "moduleName" : "TRIP-MIB",
1194
+ "oid" : "1.3.6.1.2.1.116.1.5",
1195
+ "status" : "current",
1196
+ "description" :
1197
+ """The TRIP peer stats table. This table contains one
1198
+ entry per remote TRIP peer, and statistics related to the
1199
+ connection with the remote peer. The objects in this
1200
+ table are volatile.""",
1201
+ }, # table
1202
+ "tripPeerStatisticsEntry" : {
1203
+ "nodetype" : "row",
1204
+ "moduleName" : "TRIP-MIB",
1205
+ "oid" : "1.3.6.1.2.1.116.1.5.1",
1206
+ "status" : "current",
1207
+ "linkage" : [
1208
+ { "TRIP-MIB" : {
1209
+ "indexkind" : "augments",
1210
+ "relatedNode" : "tripPeerEntry",
1211
+ }},
1212
+ ],
1213
+ "description" :
1214
+ """Entry containing information about the connection with
1215
+ a TRIP peer.""",
1216
+ }, # row
1217
+ "tripPeerInUpdates" : {
1218
+ "nodetype" : "column",
1219
+ "moduleName" : "TRIP-MIB",
1220
+ "oid" : "1.3.6.1.2.1.116.1.5.1.1",
1221
+ "status" : "current",
1222
+ "syntax" : {
1223
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1224
+ },
1225
+ "access" : "readonly",
1226
+ "description" :
1227
+ """The number of TRIP update messages received from this
1228
+ remote peer since the last restart of this location
1229
+ server.""",
1230
+ }, # column
1231
+ "tripPeerOutUpdates" : {
1232
+ "nodetype" : "column",
1233
+ "moduleName" : "TRIP-MIB",
1234
+ "oid" : "1.3.6.1.2.1.116.1.5.1.2",
1235
+ "status" : "current",
1236
+ "syntax" : {
1237
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1238
+ },
1239
+ "access" : "readonly",
1240
+ "description" :
1241
+ """The number of TRIP update messages sent to this remote
1242
+ peer since the last restart of this LS.""",
1243
+ }, # column
1244
+ "tripPeerInTotalMessages" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "TRIP-MIB",
1247
+ "oid" : "1.3.6.1.2.1.116.1.5.1.3",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1251
+ },
1252
+ "access" : "readonly",
1253
+ "description" :
1254
+ """The total number of TRIP messages received from the
1255
+ remote peer on this connection since the last restart
1256
+ of this LS.""",
1257
+ }, # column
1258
+ "tripPeerOutTotalMessages" : {
1259
+ "nodetype" : "column",
1260
+ "moduleName" : "TRIP-MIB",
1261
+ "oid" : "1.3.6.1.2.1.116.1.5.1.4",
1262
+ "status" : "current",
1263
+ "syntax" : {
1264
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1265
+ },
1266
+ "access" : "readonly",
1267
+ "description" :
1268
+ """The total number of outgoing TRIP messages sent to the
1269
+ remote peer since the last restart of this LS.""",
1270
+ }, # column
1271
+ "tripPeerFsmEstablishedTransitions" : {
1272
+ "nodetype" : "column",
1273
+ "moduleName" : "TRIP-MIB",
1274
+ "oid" : "1.3.6.1.2.1.116.1.5.1.5",
1275
+ "status" : "current",
1276
+ "syntax" : {
1277
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1278
+ },
1279
+ "access" : "readonly",
1280
+ "description" :
1281
+ """The number of times the remote peer has transitioned
1282
+ into the established state since the last restart of this
1283
+ LS.""",
1284
+ }, # column
1285
+ "tripPeerFsmEstablishedTime" : {
1286
+ "nodetype" : "column",
1287
+ "moduleName" : "TRIP-MIB",
1288
+ "oid" : "1.3.6.1.2.1.116.1.5.1.6",
1289
+ "status" : "current",
1290
+ "syntax" : {
1291
+ "type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
1292
+ },
1293
+ "access" : "readonly",
1294
+ "description" :
1295
+ """Indicates the time and date that this remote peer entered
1296
+ the 'established' state.""",
1297
+ }, # column
1298
+ "tripPeerInUpdateElapsedTime" : {
1299
+ "nodetype" : "column",
1300
+ "moduleName" : "TRIP-MIB",
1301
+ "oid" : "1.3.6.1.2.1.116.1.5.1.7",
1302
+ "status" : "current",
1303
+ "syntax" : {
1304
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
1305
+ },
1306
+ "access" : "readonly",
1307
+ "description" :
1308
+ """Elapsed time in hundredths of seconds since the last
1309
+ TRIP update message was received from this remote peer.""",
1310
+ }, # column
1311
+ "tripPeerStateChangeTime" : {
1312
+ "nodetype" : "column",
1313
+ "moduleName" : "TRIP-MIB",
1314
+ "oid" : "1.3.6.1.2.1.116.1.5.1.8",
1315
+ "status" : "current",
1316
+ "syntax" : {
1317
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1318
+ },
1319
+ "access" : "readonly",
1320
+ "description" :
1321
+ """The value of sysUpTime when the last state change of
1322
+ tripPeerState took place.""",
1323
+ }, # column
1324
+ "tripRouteTable" : {
1325
+ "nodetype" : "table",
1326
+ "moduleName" : "TRIP-MIB",
1327
+ "oid" : "1.3.6.1.2.1.116.1.6",
1328
+ "status" : "current",
1329
+ "description" :
1330
+ """The TRIP route table containing information about
1331
+ reachable routes that are to be added to service by the
1332
+ receiving LS. The objects in this table are volatile
1333
+ and are refreshed when this LS rediscovers its route
1334
+ table.""",
1335
+ }, # table
1336
+ "tripRouteEntry" : {
1337
+ "nodetype" : "row",
1338
+ "moduleName" : "TRIP-MIB",
1339
+ "oid" : "1.3.6.1.2.1.116.1.6.1",
1340
+ "status" : "current",
1341
+ "linkage" : [
1342
+ "applIndex",
1343
+ "tripRouteAppProtocol",
1344
+ "tripRouteAddressFamily",
1345
+ "tripRouteAddress",
1346
+ "tripRoutePeer",
1347
+ ],
1348
+ "description" :
1349
+ """Information about a route to a called destination.""",
1350
+ }, # row
1351
+ "tripRouteAppProtocol" : {
1352
+ "nodetype" : "column",
1353
+ "moduleName" : "TRIP-MIB",
1354
+ "oid" : "1.3.6.1.2.1.116.1.6.1.1",
1355
+ "status" : "current",
1356
+ "syntax" : {
1357
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripAppProtocol"},
1358
+ },
1359
+ "access" : "noaccess",
1360
+ "description" :
1361
+ """The protocol for which this entry of the routing table
1362
+ is maintained.""",
1363
+ }, # column
1364
+ "tripRouteAddressFamily" : {
1365
+ "nodetype" : "column",
1366
+ "moduleName" : "TRIP-MIB",
1367
+ "oid" : "1.3.6.1.2.1.116.1.6.1.2",
1368
+ "status" : "current",
1369
+ "syntax" : {
1370
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripAddressFamily"},
1371
+ },
1372
+ "access" : "noaccess",
1373
+ "description" :
1374
+ """Specifies the type of address for the destination
1375
+ route.""",
1376
+ }, # column
1377
+ "tripRouteAddress" : {
1378
+ "nodetype" : "column",
1379
+ "moduleName" : "TRIP-MIB",
1380
+ "oid" : "1.3.6.1.2.1.116.1.6.1.3",
1381
+ "status" : "current",
1382
+ "syntax" : {
1383
+ "type" : {
1384
+ "basetype" : "OctetString",
1385
+ "ranges" : [
1386
+ {
1387
+ "min" : "1",
1388
+ "max" : "105"
1389
+ },
1390
+ ],
1391
+ "range" : {
1392
+ "min" : "1",
1393
+ "max" : "105"
1394
+ },
1395
+ },
1396
+ },
1397
+ "access" : "noaccess",
1398
+ "description" :
1399
+ """This is the address (prefix) of the family type given
1400
+ by Address Family of the destination. It is the prefix
1401
+ of addresses reachable from this gateway via the next
1402
+ hop server. The SIZE value of 105 has been assigned due
1403
+ to the sub identifier of object types length limitation
1404
+ as defined in SMIv2.""",
1405
+ "reference" :
1406
+ """RFC 3219, section 5.1.1.1.""",
1407
+ }, # column
1408
+ "tripRoutePeer" : {
1409
+ "nodetype" : "column",
1410
+ "moduleName" : "TRIP-MIB",
1411
+ "oid" : "1.3.6.1.2.1.116.1.6.1.4",
1412
+ "status" : "current",
1413
+ "syntax" : {
1414
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripId"},
1415
+ },
1416
+ "access" : "noaccess",
1417
+ "description" :
1418
+ """The identifier of the peer where the route information
1419
+ was learned.""",
1420
+ }, # column
1421
+ "tripRouteTRIBMask" : {
1422
+ "nodetype" : "column",
1423
+ "moduleName" : "TRIP-MIB",
1424
+ "oid" : "1.3.6.1.2.1.116.1.6.1.5",
1425
+ "status" : "current",
1426
+ "syntax" : {
1427
+ "type" : {
1428
+ "basetype" : "Bits",
1429
+ "adjTribIns" : {
1430
+ "nodetype" : "namednumber",
1431
+ "number" : "0"
1432
+ },
1433
+ "extTrib" : {
1434
+ "nodetype" : "namednumber",
1435
+ "number" : "1"
1436
+ },
1437
+ "locTrib" : {
1438
+ "nodetype" : "namednumber",
1439
+ "number" : "2"
1440
+ },
1441
+ "adjTribOut" : {
1442
+ "nodetype" : "namednumber",
1443
+ "number" : "3"
1444
+ },
1445
+ },
1446
+ },
1447
+ "access" : "readonly",
1448
+ "description" :
1449
+ """Indicates which Telephony Routing Information Base (TRIB)
1450
+ this entry belongs to. This is
1451
+ a bit-map of possible types. If the bit has a value of
1452
+ 1, then the entry is a member of the corresponding TRIB
1453
+ type. If the bit has a value of 0 then the entry is not
1454
+ a member of the TRIP type. The various bit positions
1455
+ are:
1456
+
1457
+ 0 adjTribIns The entry is of type adj-TRIBs-ins,
1458
+ stores routing information that has
1459
+ been learned from inbound UPDATE
1460
+ messages.
1461
+ 1 extTrib The entry is of type ext-TRIB, the
1462
+ best route for a given destination.
1463
+ 2 locTrib The entry is of type loc-TRIB contains
1464
+ the local TRIP routing information
1465
+ that the LS has selected.
1466
+ 3 adjTribOut The entry is of type adj-TRIBs-out,
1467
+ stores the information that the local
1468
+ LS has selected for advertisement to
1469
+ its external peers.""",
1470
+ "reference" :
1471
+ """RFC 3291, section 3.5.""",
1472
+ }, # column
1473
+ "tripRouteAddressSequenceNumber" : {
1474
+ "nodetype" : "column",
1475
+ "moduleName" : "TRIP-MIB",
1476
+ "oid" : "1.3.6.1.2.1.116.1.6.1.6",
1477
+ "status" : "current",
1478
+ "syntax" : {
1479
+ "type" : {
1480
+ "basetype" : "Unsigned32",
1481
+ "ranges" : [
1482
+ {
1483
+ "min" : "1",
1484
+ "max" : "2147483647"
1485
+ },
1486
+ ],
1487
+ "range" : {
1488
+ "min" : "1",
1489
+ "max" : "2147483647"
1490
+ },
1491
+ },
1492
+ },
1493
+ "access" : "readonly",
1494
+ "description" :
1495
+ """Indicates the version of the destination route
1496
+ originated by the LS identified by
1497
+ tripRouteAddressOriginatorId intra-domain attribute.""",
1498
+ }, # column
1499
+ "tripRouteAddressOriginatorId" : {
1500
+ "nodetype" : "column",
1501
+ "moduleName" : "TRIP-MIB",
1502
+ "oid" : "1.3.6.1.2.1.116.1.6.1.7",
1503
+ "status" : "current",
1504
+ "syntax" : {
1505
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripId"},
1506
+ },
1507
+ "access" : "readonly",
1508
+ "description" :
1509
+ """This is an intra-domain attribute indicating the
1510
+ internal LS that originated the route into the ITAD.""",
1511
+ }, # column
1512
+ "tripRouteNextHopServerIAddrType" : {
1513
+ "nodetype" : "column",
1514
+ "moduleName" : "TRIP-MIB",
1515
+ "oid" : "1.3.6.1.2.1.116.1.6.1.8",
1516
+ "status" : "current",
1517
+ "syntax" : {
1518
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1519
+ },
1520
+ "access" : "readonly",
1521
+ "description" :
1522
+ """The type of Inet Address of the tripRouteNextHopServer.""",
1523
+ "reference" :
1524
+ """RFC 3291, section 3.""",
1525
+ }, # column
1526
+ "tripRouteNextHopServer" : {
1527
+ "nodetype" : "column",
1528
+ "moduleName" : "TRIP-MIB",
1529
+ "oid" : "1.3.6.1.2.1.116.1.6.1.9",
1530
+ "status" : "current",
1531
+ "syntax" : {
1532
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1533
+ },
1534
+ "access" : "readonly",
1535
+ "description" :
1536
+ """Indicates the next hop that messages of a given protocol
1537
+ destined for tripRouteAddress SHOULD be sent to. The type
1538
+ of this address is determined by the value of the
1539
+ tripRouteNextHopServerIAddrType object.""",
1540
+ }, # column
1541
+ "tripRouteNextHopServerPort" : {
1542
+ "nodetype" : "column",
1543
+ "moduleName" : "TRIP-MIB",
1544
+ "oid" : "1.3.6.1.2.1.116.1.6.1.10",
1545
+ "status" : "current",
1546
+ "syntax" : {
1547
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
1548
+ },
1549
+ "access" : "readonly",
1550
+ "description" :
1551
+ """The port of the next hop server that this route
1552
+ will use.""",
1553
+ }, # column
1554
+ "tripRouteNextHopServerItad" : {
1555
+ "nodetype" : "column",
1556
+ "moduleName" : "TRIP-MIB",
1557
+ "oid" : "1.3.6.1.2.1.116.1.6.1.11",
1558
+ "status" : "current",
1559
+ "syntax" : {
1560
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripItad"},
1561
+ },
1562
+ "access" : "readonly",
1563
+ "description" :
1564
+ """Indicates the domain of the next hop.""",
1565
+ }, # column
1566
+ "tripRouteMultiExitDisc" : {
1567
+ "nodetype" : "column",
1568
+ "moduleName" : "TRIP-MIB",
1569
+ "oid" : "1.3.6.1.2.1.116.1.6.1.12",
1570
+ "status" : "current",
1571
+ "syntax" : {
1572
+ "type" : {
1573
+ "basetype" : "Unsigned32",
1574
+ "ranges" : [
1575
+ {
1576
+ "min" : "0",
1577
+ "max" : "4294967295"
1578
+ },
1579
+ ],
1580
+ "range" : {
1581
+ "min" : "0",
1582
+ "max" : "4294967295"
1583
+ },
1584
+ },
1585
+ },
1586
+ "access" : "readonly",
1587
+ "description" :
1588
+ """The Multiple Exit Discriminator allows an LS to
1589
+ discriminate between, and indicate preference for,
1590
+ otherwise similar routes to a neighbouring domain.
1591
+ A higher value represents a more preferred routing
1592
+ object.""",
1593
+ "reference" :
1594
+ """RFC 3219, section 5.8""",
1595
+ }, # column
1596
+ "tripRouteLocalPref" : {
1597
+ "nodetype" : "column",
1598
+ "moduleName" : "TRIP-MIB",
1599
+ "oid" : "1.3.6.1.2.1.116.1.6.1.13",
1600
+ "status" : "current",
1601
+ "syntax" : {
1602
+ "type" : {
1603
+ "basetype" : "Unsigned32",
1604
+ "ranges" : [
1605
+ {
1606
+ "min" : "0",
1607
+ "max" : "4294967295"
1608
+ },
1609
+ ],
1610
+ "range" : {
1611
+ "min" : "0",
1612
+ "max" : "4294967295"
1613
+ },
1614
+ },
1615
+ },
1616
+ "access" : "readonly",
1617
+ "description" :
1618
+ """Indicated the local LS's degree of preference for an
1619
+ advertised route destination.""",
1620
+ "reference" :
1621
+ """RFC 3219, section 4.3.4.7""",
1622
+ }, # column
1623
+ "tripRouteAdvertisementPath" : {
1624
+ "nodetype" : "column",
1625
+ "moduleName" : "TRIP-MIB",
1626
+ "oid" : "1.3.6.1.2.1.116.1.6.1.14",
1627
+ "status" : "current",
1628
+ "syntax" : {
1629
+ "type" : {
1630
+ "basetype" : "OctetString",
1631
+ "ranges" : [
1632
+ {
1633
+ "min" : "4",
1634
+ "max" : "252"
1635
+ },
1636
+ ],
1637
+ "range" : {
1638
+ "min" : "4",
1639
+ "max" : "252"
1640
+ },
1641
+ },
1642
+ },
1643
+ "access" : "readonly",
1644
+ "description" :
1645
+ """Identifies the sequence of domains through which this
1646
+ advertisement has passed.
1647
+
1648
+ This object is probably best represented as sequence of
1649
+ TripItads. For SMI compatibility, though, it is
1650
+ represented as an OCTET STRING. This object is a sequence
1651
+ of ITADs where each set of 4 octets corresponds to a TRIP
1652
+ ITAD in network byte order.""",
1653
+ "reference" :
1654
+ """RFC 3219, section 4.3.4.4""",
1655
+ }, # column
1656
+ "tripRouteRoutedPath" : {
1657
+ "nodetype" : "column",
1658
+ "moduleName" : "TRIP-MIB",
1659
+ "oid" : "1.3.6.1.2.1.116.1.6.1.15",
1660
+ "status" : "current",
1661
+ "syntax" : {
1662
+ "type" : {
1663
+ "basetype" : "OctetString",
1664
+ "ranges" : [
1665
+ {
1666
+ "min" : "4",
1667
+ "max" : "252"
1668
+ },
1669
+ ],
1670
+ "range" : {
1671
+ "min" : "4",
1672
+ "max" : "252"
1673
+ },
1674
+ },
1675
+ },
1676
+ "access" : "readonly",
1677
+ "description" :
1678
+ """Identifies the ITADs through which messages sent using
1679
+ this route would pass. These are a subset of
1680
+ tripRouteAdvertisementPath.
1681
+
1682
+ This object is probably best represented as sequence of
1683
+ TripItads. For SMI compatibility, though, it is
1684
+ represented as OCTET STRING. This object is a sequence
1685
+ of ITADs where each set of 4 octets corresponds to a TRIP
1686
+ ITAD in network byte order.""",
1687
+ "reference" :
1688
+ """RFC 3219, section 4.3.4.5""",
1689
+ }, # column
1690
+ "tripRouteAtomicAggregate" : {
1691
+ "nodetype" : "column",
1692
+ "moduleName" : "TRIP-MIB",
1693
+ "oid" : "1.3.6.1.2.1.116.1.6.1.16",
1694
+ "status" : "current",
1695
+ "syntax" : {
1696
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1697
+ },
1698
+ "access" : "readonly",
1699
+ "description" :
1700
+ """Indicates that a route MAY traverse domains not listed
1701
+ in tripRouteRoutedPath. If an LS selects the less
1702
+ specific route from a set of overlapping routes, then
1703
+ this value returns TRUE.""",
1704
+ "reference" :
1705
+ """RFC 3219, section 4.3.4.6""",
1706
+ }, # column
1707
+ "tripRouteUnknown" : {
1708
+ "nodetype" : "column",
1709
+ "moduleName" : "TRIP-MIB",
1710
+ "oid" : "1.3.6.1.2.1.116.1.6.1.17",
1711
+ "status" : "current",
1712
+ "syntax" : {
1713
+ "type" : {
1714
+ "basetype" : "OctetString",
1715
+ "ranges" : [
1716
+ {
1717
+ "min" : "0",
1718
+ "max" : "255"
1719
+ },
1720
+ ],
1721
+ "range" : {
1722
+ "min" : "0",
1723
+ "max" : "255"
1724
+ },
1725
+ },
1726
+ },
1727
+ "access" : "readonly",
1728
+ "description" :
1729
+ """This object contains one or more attributes that were not
1730
+ understood, and because they were transitive, were dropped
1731
+ during aggregation. They take the format of a triple
1732
+ <attribute type, attribute length, attribute value>, of
1733
+ variable length. If no attributes were dropped, this
1734
+ returns an OCTET STRING of size 0.""",
1735
+ "reference" :
1736
+ """RFC 3219, sections 4.3.1, 4.3.2.3""",
1737
+ }, # column
1738
+ "tripRouteWithdrawn" : {
1739
+ "nodetype" : "column",
1740
+ "moduleName" : "TRIP-MIB",
1741
+ "oid" : "1.3.6.1.2.1.116.1.6.1.18",
1742
+ "status" : "current",
1743
+ "syntax" : {
1744
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1745
+ },
1746
+ "access" : "readonly",
1747
+ "description" :
1748
+ """Indicates if this route is to be removed from service
1749
+ by the receiving LS.""",
1750
+ }, # column
1751
+ "tripRouteConverted" : {
1752
+ "nodetype" : "column",
1753
+ "moduleName" : "TRIP-MIB",
1754
+ "oid" : "1.3.6.1.2.1.116.1.6.1.19",
1755
+ "status" : "current",
1756
+ "syntax" : {
1757
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1758
+ },
1759
+ "access" : "readonly",
1760
+ "description" :
1761
+ """Indicates if this route has been converted to a
1762
+ different application protocol than it had originally.""",
1763
+ }, # column
1764
+ "tripRouteReceivedTime" : {
1765
+ "nodetype" : "column",
1766
+ "moduleName" : "TRIP-MIB",
1767
+ "oid" : "1.3.6.1.2.1.116.1.6.1.20",
1768
+ "status" : "current",
1769
+ "syntax" : {
1770
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1771
+ },
1772
+ "access" : "readonly",
1773
+ "description" :
1774
+ """The value of sysUpTime when this route was received.""",
1775
+ }, # column
1776
+ "tripRouteCommunityTable" : {
1777
+ "nodetype" : "table",
1778
+ "moduleName" : "TRIP-MIB",
1779
+ "oid" : "1.3.6.1.2.1.116.1.7",
1780
+ "status" : "current",
1781
+ "description" :
1782
+ """A table containing a list of TRIP communities associated
1783
+ with a route. Each instance of tripRouteTypeEntry that has
1784
+ the tripRouteTypePeer object set to remote(2) has an
1785
+ instance in the tripRouteTable as a parent. The objects
1786
+ in this table are volatile and are refreshed after a
1787
+ reboot.""",
1788
+ "reference" :
1789
+ """RFC 3219, section 5.9.""",
1790
+ }, # table
1791
+ "tripRouteCommunityEntry" : {
1792
+ "nodetype" : "row",
1793
+ "moduleName" : "TRIP-MIB",
1794
+ "oid" : "1.3.6.1.2.1.116.1.7.1",
1795
+ "status" : "current",
1796
+ "linkage" : [
1797
+ "applIndex",
1798
+ "tripRouteAppProtocol",
1799
+ "tripRouteAddressFamily",
1800
+ "tripRouteAddress",
1801
+ "tripRoutePeer",
1802
+ "tripRouteCommunityId",
1803
+ ],
1804
+ "description" :
1805
+ """Information about communities associated with a route.
1806
+ An entry with a tripRouteAddress of 00 and a
1807
+ tripRoutePeer of 0 refers to the local LS.""",
1808
+ }, # row
1809
+ "tripRouteCommunityId" : {
1810
+ "nodetype" : "column",
1811
+ "moduleName" : "TRIP-MIB",
1812
+ "oid" : "1.3.6.1.2.1.116.1.7.1.1",
1813
+ "status" : "current",
1814
+ "syntax" : {
1815
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripCommunityId"},
1816
+ },
1817
+ "access" : "noaccess",
1818
+ "description" :
1819
+ """The community identifier.""",
1820
+ }, # column
1821
+ "tripRouteCommunityItad" : {
1822
+ "nodetype" : "column",
1823
+ "moduleName" : "TRIP-MIB",
1824
+ "oid" : "1.3.6.1.2.1.116.1.7.1.2",
1825
+ "status" : "current",
1826
+ "syntax" : {
1827
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripItad"},
1828
+ },
1829
+ "access" : "readonly",
1830
+ "description" :
1831
+ """The ITAD associated with this community.""",
1832
+ }, # column
1833
+ "tripItadTopologyTable" : {
1834
+ "nodetype" : "table",
1835
+ "moduleName" : "TRIP-MIB",
1836
+ "oid" : "1.3.6.1.2.1.116.1.8",
1837
+ "status" : "current",
1838
+ "description" :
1839
+ """The sequence of link connections between peers within an
1840
+ ITAD. The objects in this table are volatile and are
1841
+ refreshed after a reboot.""",
1842
+ }, # table
1843
+ "tripItadTopologyEntry" : {
1844
+ "nodetype" : "row",
1845
+ "moduleName" : "TRIP-MIB",
1846
+ "oid" : "1.3.6.1.2.1.116.1.8.1",
1847
+ "status" : "current",
1848
+ "linkage" : [
1849
+ "applIndex",
1850
+ "tripItadTopologyOrigId",
1851
+ ],
1852
+ "description" :
1853
+ """Information about a peer of the LS identified by
1854
+ tripItadTopologyOrigId.""",
1855
+ }, # row
1856
+ "tripItadTopologyOrigId" : {
1857
+ "nodetype" : "column",
1858
+ "moduleName" : "TRIP-MIB",
1859
+ "oid" : "1.3.6.1.2.1.116.1.8.1.1",
1860
+ "status" : "current",
1861
+ "syntax" : {
1862
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripId"},
1863
+ },
1864
+ "access" : "noaccess",
1865
+ "description" :
1866
+ """Indicates the internal LS that originated the ITAD
1867
+ topology information into the ITAD.""",
1868
+ }, # column
1869
+ "tripItadTopologySeqNum" : {
1870
+ "nodetype" : "column",
1871
+ "moduleName" : "TRIP-MIB",
1872
+ "oid" : "1.3.6.1.2.1.116.1.8.1.2",
1873
+ "status" : "current",
1874
+ "syntax" : {
1875
+ "type" : {
1876
+ "basetype" : "Unsigned32",
1877
+ "ranges" : [
1878
+ {
1879
+ "min" : "1",
1880
+ "max" : "2147483647"
1881
+ },
1882
+ ],
1883
+ "range" : {
1884
+ "min" : "1",
1885
+ "max" : "2147483647"
1886
+ },
1887
+ },
1888
+ },
1889
+ "access" : "readonly",
1890
+ "description" :
1891
+ """Indicates the version of the ITAD topology originated
1892
+ by the LS identified by tripItadTopologyOrigId.""",
1893
+ }, # column
1894
+ "tripItadTopologyIdTable" : {
1895
+ "nodetype" : "table",
1896
+ "moduleName" : "TRIP-MIB",
1897
+ "oid" : "1.3.6.1.2.1.116.1.9",
1898
+ "status" : "current",
1899
+ "description" :
1900
+ """The list of other LS's within the ITAD domain that the
1901
+ LS identified by tripItadTopologyOrigId is currently
1902
+ peering. Each instance of tripItadTopologyIdEntry has an
1903
+ instance in the tripItadTopologyTable as a parent. The
1904
+ objects in this table are volatile and are refreshed
1905
+ after a reboot.""",
1906
+ }, # table
1907
+ "tripItadTopologyIdEntry" : {
1908
+ "nodetype" : "row",
1909
+ "moduleName" : "TRIP-MIB",
1910
+ "oid" : "1.3.6.1.2.1.116.1.9.1",
1911
+ "status" : "current",
1912
+ "linkage" : [
1913
+ "applIndex",
1914
+ "tripItadTopologyOrigId",
1915
+ "tripItadTopologyId",
1916
+ ],
1917
+ "description" :
1918
+ """Information about a peer to the LS identified by
1919
+ tripItadTopologyOrigId.""",
1920
+ }, # row
1921
+ "tripItadTopologyId" : {
1922
+ "nodetype" : "column",
1923
+ "moduleName" : "TRIP-MIB",
1924
+ "oid" : "1.3.6.1.2.1.116.1.9.1.1",
1925
+ "status" : "current",
1926
+ "syntax" : {
1927
+ "type" : { "module" :"TRIP-TC-MIB", "name" : "TripId"},
1928
+ },
1929
+ "access" : "readonly",
1930
+ "description" :
1931
+ """The index into this entry. Indicates the other location
1932
+ servers within the ITAD domain that this LS identified
1933
+ by tripItadTopologyOrigId is currently peering.""",
1934
+ }, # column
1935
+ "tripMIBConformance" : {
1936
+ "nodetype" : "node",
1937
+ "moduleName" : "TRIP-MIB",
1938
+ "oid" : "1.3.6.1.2.1.116.2",
1939
+ }, # node
1940
+ "tripMIBCompliances" : {
1941
+ "nodetype" : "node",
1942
+ "moduleName" : "TRIP-MIB",
1943
+ "oid" : "1.3.6.1.2.1.116.2.1",
1944
+ }, # node
1945
+ "tripMIBGroups" : {
1946
+ "nodetype" : "node",
1947
+ "moduleName" : "TRIP-MIB",
1948
+ "oid" : "1.3.6.1.2.1.116.2.2",
1949
+ }, # node
1950
+ "tripMIBNotifObjects" : {
1951
+ "nodetype" : "node",
1952
+ "moduleName" : "TRIP-MIB",
1953
+ "oid" : "1.3.6.1.2.1.116.3",
1954
+ }, # node
1955
+ "tripNotifApplIndex" : {
1956
+ "nodetype" : "scalar",
1957
+ "moduleName" : "TRIP-MIB",
1958
+ "oid" : "1.3.6.1.2.1.116.3.1",
1959
+ "status" : "current",
1960
+ "syntax" : {
1961
+ "type" : {
1962
+ "basetype" : "Integer32",
1963
+ "ranges" : [
1964
+ {
1965
+ "min" : "1",
1966
+ "max" : "2147483647"
1967
+ },
1968
+ ],
1969
+ "range" : {
1970
+ "min" : "1",
1971
+ "max" : "2147483647"
1972
+ },
1973
+ },
1974
+ },
1975
+ "access" : "notifyonly",
1976
+ "description" :
1977
+ """This object contains the application Index. It is used
1978
+ to bind this notification with a specific instance of
1979
+ TRIP entity.""",
1980
+ "reference" :
1981
+ """RFC 2788, section 3.""",
1982
+ }, # scalar
1983
+ "tripNotifPeerAddrInetType" : {
1984
+ "nodetype" : "scalar",
1985
+ "moduleName" : "TRIP-MIB",
1986
+ "oid" : "1.3.6.1.2.1.116.3.2",
1987
+ "status" : "current",
1988
+ "syntax" : {
1989
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1990
+ },
1991
+ "access" : "notifyonly",
1992
+ "description" :
1993
+ """The type of Inet Address of the tripNotifPeerAddr.""",
1994
+ "reference" :
1995
+ """RFC 3291, section 3.""",
1996
+ }, # scalar
1997
+ "tripNotifPeerAddr" : {
1998
+ "nodetype" : "scalar",
1999
+ "moduleName" : "TRIP-MIB",
2000
+ "oid" : "1.3.6.1.2.1.116.3.3",
2001
+ "status" : "current",
2002
+ "syntax" : {
2003
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2004
+ },
2005
+ "access" : "notifyonly",
2006
+ "description" :
2007
+ """The IP address of this entry's TRIP peer LS. This object
2008
+ contains the value of tripPeerRemoteAddr. The type of this
2009
+ address is determined by the value of the
2010
+ tripNotifPeerAddrInetType object.""",
2011
+ "reference" :
2012
+ """RFC 3291, section 3.""",
2013
+ }, # scalar
2014
+ "tripNotifPeerErrCode" : {
2015
+ "nodetype" : "scalar",
2016
+ "moduleName" : "TRIP-MIB",
2017
+ "oid" : "1.3.6.1.2.1.116.3.4",
2018
+ "status" : "current",
2019
+ "syntax" : {
2020
+ "type" : {
2021
+ "basetype" : "Enumeration",
2022
+ "messageHeader" : {
2023
+ "nodetype" : "namednumber",
2024
+ "number" : "1"
2025
+ },
2026
+ "openMessage" : {
2027
+ "nodetype" : "namednumber",
2028
+ "number" : "2"
2029
+ },
2030
+ "updateMessage" : {
2031
+ "nodetype" : "namednumber",
2032
+ "number" : "3"
2033
+ },
2034
+ "holdTimerExpired" : {
2035
+ "nodetype" : "namednumber",
2036
+ "number" : "4"
2037
+ },
2038
+ "finiteStateMachine" : {
2039
+ "nodetype" : "namednumber",
2040
+ "number" : "5"
2041
+ },
2042
+ "cease" : {
2043
+ "nodetype" : "namednumber",
2044
+ "number" : "6"
2045
+ },
2046
+ "tripNotification" : {
2047
+ "nodetype" : "namednumber",
2048
+ "number" : "7"
2049
+ },
2050
+ },
2051
+ },
2052
+ "access" : "notifyonly",
2053
+ "description" :
2054
+ """Notification message of TRIP error. The meaning of this
2055
+ value is applicable to the following functions:
2056
+
2057
+ messageHeader(1)
2058
+ - All errors detected while processing the TRIP message
2059
+ header.
2060
+
2061
+ openMessage(2)
2062
+ - All errors detected while processing the OPEN message.
2063
+
2064
+ updateMessage(3)
2065
+ - All errors detected while processing the UPDATE
2066
+ message.
2067
+
2068
+ holdTimerExpired(4)
2069
+ - A notification generated when the hold timer expires.
2070
+
2071
+ finiteStateMachine(5)
2072
+ - All errors detected by the TRIP Finite State Machine.
2073
+
2074
+ cease(6)
2075
+ - Any fatal error condition that the rest of the values
2076
+ do not cover.
2077
+
2078
+ tripNotification(7)
2079
+ - Any error encountered while sending a notification
2080
+ message.""",
2081
+ }, # scalar
2082
+ "tripNotifPeerErrSubcode" : {
2083
+ "nodetype" : "scalar",
2084
+ "moduleName" : "TRIP-MIB",
2085
+ "oid" : "1.3.6.1.2.1.116.3.5",
2086
+ "status" : "current",
2087
+ "syntax" : {
2088
+ "type" : {
2089
+ "basetype" : "Unsigned32",
2090
+ "ranges" : [
2091
+ {
2092
+ "min" : "1",
2093
+ "max" : "2147483647"
2094
+ },
2095
+ ],
2096
+ "range" : {
2097
+ "min" : "1",
2098
+ "max" : "2147483647"
2099
+ },
2100
+ },
2101
+ },
2102
+ "access" : "notifyonly",
2103
+ "description" :
2104
+ """The sub error code associated with error code. The
2105
+
2106
+
2107
+
2108
+ meaning of this value is dependent on the value of
2109
+ tripNotifPeerErrCode.
2110
+
2111
+ Message Header (1) Error Subcodes:
2112
+ 1 - Bad Message Length.
2113
+ 2 - Bad Message Type.
2114
+
2115
+ OPEN Message (2) Error Subcodes:
2116
+ 1 - Unsupported Version Number.
2117
+ 2 - Bad Peer ITAD.
2118
+ 3 - Bad TRIP Identifier.
2119
+ 4 - Unsupported Optional Parameter.
2120
+ 5 - Unacceptable Hold Time.
2121
+ 6 - Unsupported Capability.
2122
+ 7 - Capability Mismatch.
2123
+
2124
+ UPDATE Message (3) Error Subcodes:
2125
+ 1 - Malformed Attribute List.
2126
+ 2 - Unrecognized Well-known Attribute.
2127
+ 3 - Missing Well-known Mandatory Attribute.
2128
+ 4 - Attribute Flags Error.
2129
+ 5 - Attribute Length Error.
2130
+ 6 - Invalid Attribute.""",
2131
+ }, # scalar
2132
+ }, # nodes
2133
+
2134
+ "notifications" : {
2135
+ "tripConnectionEstablished" : {
2136
+ "nodetype" : "notification",
2137
+ "moduleName" : "TRIP-MIB",
2138
+ "oid" : "1.3.6.1.2.1.116.0.1",
2139
+ "status" : "current",
2140
+ "objects" : {
2141
+ "tripNotifApplIndex" : {
2142
+ "nodetype" : "object",
2143
+ "module" : "TRIP-MIB"
2144
+ },
2145
+ "tripNotifPeerAddrInetType" : {
2146
+ "nodetype" : "object",
2147
+ "module" : "TRIP-MIB"
2148
+ },
2149
+ "tripNotifPeerAddr" : {
2150
+ "nodetype" : "object",
2151
+ "module" : "TRIP-MIB"
2152
+ },
2153
+ },
2154
+ "description" :
2155
+ """The TRIP Connection Established event is generated when
2156
+ the TRIP finite state machine enters the ESTABLISHED
2157
+ state.""",
2158
+ }, # notification
2159
+ "tripConnectionDropped" : {
2160
+ "nodetype" : "notification",
2161
+ "moduleName" : "TRIP-MIB",
2162
+ "oid" : "1.3.6.1.2.1.116.0.2",
2163
+ "status" : "current",
2164
+ "objects" : {
2165
+ "tripNotifApplIndex" : {
2166
+ "nodetype" : "object",
2167
+ "module" : "TRIP-MIB"
2168
+ },
2169
+ "tripNotifPeerAddrInetType" : {
2170
+ "nodetype" : "object",
2171
+ "module" : "TRIP-MIB"
2172
+ },
2173
+ "tripNotifPeerAddr" : {
2174
+ "nodetype" : "object",
2175
+ "module" : "TRIP-MIB"
2176
+ },
2177
+ },
2178
+ "description" :
2179
+ """The TRIP Connection Dropped event is generated when the
2180
+
2181
+
2182
+
2183
+ TRIP finite state machine leaves the ESTABLISHED state.""",
2184
+ }, # notification
2185
+ "tripFSM" : {
2186
+ "nodetype" : "notification",
2187
+ "moduleName" : "TRIP-MIB",
2188
+ "oid" : "1.3.6.1.2.1.116.0.3",
2189
+ "status" : "current",
2190
+ "objects" : {
2191
+ "tripNotifApplIndex" : {
2192
+ "nodetype" : "object",
2193
+ "module" : "TRIP-MIB"
2194
+ },
2195
+ "tripNotifPeerAddrInetType" : {
2196
+ "nodetype" : "object",
2197
+ "module" : "TRIP-MIB"
2198
+ },
2199
+ "tripNotifPeerAddr" : {
2200
+ "nodetype" : "object",
2201
+ "module" : "TRIP-MIB"
2202
+ },
2203
+ "tripNotifPeerErrCode" : {
2204
+ "nodetype" : "object",
2205
+ "module" : "TRIP-MIB"
2206
+ },
2207
+ "tripNotifPeerErrSubcode" : {
2208
+ "nodetype" : "object",
2209
+ "module" : "TRIP-MIB"
2210
+ },
2211
+ "tripPeerState" : {
2212
+ "nodetype" : "object",
2213
+ "module" : "TRIP-MIB"
2214
+ },
2215
+ },
2216
+ "description" :
2217
+ """The trip FSM Event is generated when any error is
2218
+ detected by the TRIP Finite State Machine.""",
2219
+ }, # notification
2220
+ "tripOpenMessageError" : {
2221
+ "nodetype" : "notification",
2222
+ "moduleName" : "TRIP-MIB",
2223
+ "oid" : "1.3.6.1.2.1.116.0.4",
2224
+ "status" : "current",
2225
+ "objects" : {
2226
+ "tripNotifApplIndex" : {
2227
+ "nodetype" : "object",
2228
+ "module" : "TRIP-MIB"
2229
+ },
2230
+ "tripNotifPeerAddrInetType" : {
2231
+ "nodetype" : "object",
2232
+ "module" : "TRIP-MIB"
2233
+ },
2234
+ "tripNotifPeerAddr" : {
2235
+ "nodetype" : "object",
2236
+ "module" : "TRIP-MIB"
2237
+ },
2238
+ "tripNotifPeerErrCode" : {
2239
+ "nodetype" : "object",
2240
+ "module" : "TRIP-MIB"
2241
+ },
2242
+ "tripNotifPeerErrSubcode" : {
2243
+ "nodetype" : "object",
2244
+ "module" : "TRIP-MIB"
2245
+ },
2246
+ "tripPeerState" : {
2247
+ "nodetype" : "object",
2248
+ "module" : "TRIP-MIB"
2249
+ },
2250
+ },
2251
+ "description" :
2252
+ """Errors detected while processing the OPEN message.""",
2253
+ }, # notification
2254
+ "tripUpdateMessageError" : {
2255
+ "nodetype" : "notification",
2256
+ "moduleName" : "TRIP-MIB",
2257
+ "oid" : "1.3.6.1.2.1.116.0.5",
2258
+ "status" : "current",
2259
+ "objects" : {
2260
+ "tripNotifApplIndex" : {
2261
+ "nodetype" : "object",
2262
+ "module" : "TRIP-MIB"
2263
+ },
2264
+ "tripNotifPeerAddrInetType" : {
2265
+ "nodetype" : "object",
2266
+ "module" : "TRIP-MIB"
2267
+ },
2268
+ "tripNotifPeerAddr" : {
2269
+ "nodetype" : "object",
2270
+ "module" : "TRIP-MIB"
2271
+ },
2272
+ "tripNotifPeerErrCode" : {
2273
+ "nodetype" : "object",
2274
+ "module" : "TRIP-MIB"
2275
+ },
2276
+ "tripNotifPeerErrSubcode" : {
2277
+ "nodetype" : "object",
2278
+ "module" : "TRIP-MIB"
2279
+ },
2280
+ "tripPeerState" : {
2281
+ "nodetype" : "object",
2282
+ "module" : "TRIP-MIB"
2283
+ },
2284
+ },
2285
+ "description" :
2286
+ """Errors detected while processing the UPDATE message.""",
2287
+ }, # notification
2288
+ "tripHoldTimerExpired" : {
2289
+ "nodetype" : "notification",
2290
+ "moduleName" : "TRIP-MIB",
2291
+ "oid" : "1.3.6.1.2.1.116.0.6",
2292
+ "status" : "current",
2293
+ "objects" : {
2294
+ "tripNotifApplIndex" : {
2295
+ "nodetype" : "object",
2296
+ "module" : "TRIP-MIB"
2297
+ },
2298
+ "tripNotifPeerAddrInetType" : {
2299
+ "nodetype" : "object",
2300
+ "module" : "TRIP-MIB"
2301
+ },
2302
+ "tripNotifPeerAddr" : {
2303
+ "nodetype" : "object",
2304
+ "module" : "TRIP-MIB"
2305
+ },
2306
+ "tripNotifPeerErrCode" : {
2307
+ "nodetype" : "object",
2308
+ "module" : "TRIP-MIB"
2309
+ },
2310
+ "tripNotifPeerErrSubcode" : {
2311
+ "nodetype" : "object",
2312
+ "module" : "TRIP-MIB"
2313
+ },
2314
+ "tripPeerState" : {
2315
+ "nodetype" : "object",
2316
+ "module" : "TRIP-MIB"
2317
+ },
2318
+ },
2319
+ "description" :
2320
+ """The system does not receive successive messages within
2321
+ the period specified by the negotiated Hold Time.""",
2322
+ }, # notification
2323
+ "tripConnectionCollision" : {
2324
+ "nodetype" : "notification",
2325
+ "moduleName" : "TRIP-MIB",
2326
+ "oid" : "1.3.6.1.2.1.116.0.7",
2327
+ "status" : "current",
2328
+ "objects" : {
2329
+ "tripNotifApplIndex" : {
2330
+ "nodetype" : "object",
2331
+ "module" : "TRIP-MIB"
2332
+ },
2333
+ },
2334
+ "description" :
2335
+ """A pair of LSs tried to simultaneously to establish a
2336
+ transport connection to each other.""",
2337
+ }, # notification
2338
+ "tripCease" : {
2339
+ "nodetype" : "notification",
2340
+ "moduleName" : "TRIP-MIB",
2341
+ "oid" : "1.3.6.1.2.1.116.0.8",
2342
+ "status" : "current",
2343
+ "objects" : {
2344
+ "tripNotifApplIndex" : {
2345
+ "nodetype" : "object",
2346
+ "module" : "TRIP-MIB"
2347
+ },
2348
+ "tripNotifPeerAddrInetType" : {
2349
+ "nodetype" : "object",
2350
+ "module" : "TRIP-MIB"
2351
+ },
2352
+ "tripNotifPeerAddr" : {
2353
+ "nodetype" : "object",
2354
+ "module" : "TRIP-MIB"
2355
+ },
2356
+ "tripNotifPeerErrCode" : {
2357
+ "nodetype" : "object",
2358
+ "module" : "TRIP-MIB"
2359
+ },
2360
+ "tripNotifPeerErrSubcode" : {
2361
+ "nodetype" : "object",
2362
+ "module" : "TRIP-MIB"
2363
+ },
2364
+ "tripPeerState" : {
2365
+ "nodetype" : "object",
2366
+ "module" : "TRIP-MIB"
2367
+ },
2368
+ },
2369
+ "description" :
2370
+ """A TRIP peer MAY choose at any given time to close its TRIP
2371
+ connection by sending this notification message. However,
2372
+ the Cease notification message MUST NOT be used when a
2373
+ fatal error occurs.""",
2374
+ }, # notification
2375
+ "tripNotificationErr" : {
2376
+ "nodetype" : "notification",
2377
+ "moduleName" : "TRIP-MIB",
2378
+ "oid" : "1.3.6.1.2.1.116.0.9",
2379
+ "status" : "current",
2380
+ "objects" : {
2381
+ "tripNotifApplIndex" : {
2382
+ "nodetype" : "object",
2383
+ "module" : "TRIP-MIB"
2384
+ },
2385
+ },
2386
+ "description" :
2387
+ """Generated if there is an error detected in a TRIP
2388
+ notification message sent with another cause. Note that
2389
+ the TRIP notification referred to in this object is not
2390
+ an SNMP notification, it is a specific message described
2391
+ in the TRIP specification.""",
2392
+ "reference" :
2393
+ """RFC 3219, section 6.4.""",
2394
+ }, # notification
2395
+ }, # notifications
2396
+
2397
+ "groups" : {
2398
+ "tripConfigGroup" : {
2399
+ "nodetype" : "group",
2400
+ "moduleName" : "TRIP-MIB",
2401
+ "oid" : "1.3.6.1.2.1.116.2.2.1",
2402
+ "status" : "current",
2403
+ "members" : {
2404
+ "tripCfgProtocolVersion" : {
2405
+ "nodetype" : "member",
2406
+ "module" : "TRIP-MIB"
2407
+ },
2408
+ "tripCfgItad" : {
2409
+ "nodetype" : "member",
2410
+ "module" : "TRIP-MIB"
2411
+ },
2412
+ "tripCfgIdentifier" : {
2413
+ "nodetype" : "member",
2414
+ "module" : "TRIP-MIB"
2415
+ },
2416
+ "tripCfgOperStatus" : {
2417
+ "nodetype" : "member",
2418
+ "module" : "TRIP-MIB"
2419
+ },
2420
+ "tripCfgAdminStatus" : {
2421
+ "nodetype" : "member",
2422
+ "module" : "TRIP-MIB"
2423
+ },
2424
+ "tripCfgAddrIAddrType" : {
2425
+ "nodetype" : "member",
2426
+ "module" : "TRIP-MIB"
2427
+ },
2428
+ "tripCfgAddr" : {
2429
+ "nodetype" : "member",
2430
+ "module" : "TRIP-MIB"
2431
+ },
2432
+ "tripCfgPort" : {
2433
+ "nodetype" : "member",
2434
+ "module" : "TRIP-MIB"
2435
+ },
2436
+ "tripCfgMinItadOriginationInterval" : {
2437
+ "nodetype" : "member",
2438
+ "module" : "TRIP-MIB"
2439
+ },
2440
+ "tripCfgMinRouteAdvertisementInterval" : {
2441
+ "nodetype" : "member",
2442
+ "module" : "TRIP-MIB"
2443
+ },
2444
+ "tripCfgMaxPurgeTime" : {
2445
+ "nodetype" : "member",
2446
+ "module" : "TRIP-MIB"
2447
+ },
2448
+ "tripCfgDisableTime" : {
2449
+ "nodetype" : "member",
2450
+ "module" : "TRIP-MIB"
2451
+ },
2452
+ "tripCfgSendReceiveMode" : {
2453
+ "nodetype" : "member",
2454
+ "module" : "TRIP-MIB"
2455
+ },
2456
+ "tripCfgStorage" : {
2457
+ "nodetype" : "member",
2458
+ "module" : "TRIP-MIB"
2459
+ },
2460
+ "tripSupportedCommunityItad" : {
2461
+ "nodetype" : "member",
2462
+ "module" : "TRIP-MIB"
2463
+ },
2464
+ "tripSupportedCommunityStorage" : {
2465
+ "nodetype" : "member",
2466
+ "module" : "TRIP-MIB"
2467
+ },
2468
+ "tripRouteTypePeer" : {
2469
+ "nodetype" : "member",
2470
+ "module" : "TRIP-MIB"
2471
+ },
2472
+ "tripSupportedCommunityRowStatus" : {
2473
+ "nodetype" : "member",
2474
+ "module" : "TRIP-MIB"
2475
+ },
2476
+ }, # members
2477
+ "description" :
2478
+ """The global objects for configuring trip.""",
2479
+ }, # group
2480
+ "tripPeerTableConfigGroup" : {
2481
+ "nodetype" : "group",
2482
+ "moduleName" : "TRIP-MIB",
2483
+ "oid" : "1.3.6.1.2.1.116.2.2.2",
2484
+ "status" : "current",
2485
+ "members" : {
2486
+ "tripPeerIdentifier" : {
2487
+ "nodetype" : "member",
2488
+ "module" : "TRIP-MIB"
2489
+ },
2490
+ "tripPeerState" : {
2491
+ "nodetype" : "member",
2492
+ "module" : "TRIP-MIB"
2493
+ },
2494
+ "tripPeerAdminStatus" : {
2495
+ "nodetype" : "member",
2496
+ "module" : "TRIP-MIB"
2497
+ },
2498
+ "tripPeerNegotiatedVersion" : {
2499
+ "nodetype" : "member",
2500
+ "module" : "TRIP-MIB"
2501
+ },
2502
+ "tripPeerSendReceiveMode" : {
2503
+ "nodetype" : "member",
2504
+ "module" : "TRIP-MIB"
2505
+ },
2506
+ "tripPeerRemoteItad" : {
2507
+ "nodetype" : "member",
2508
+ "module" : "TRIP-MIB"
2509
+ },
2510
+ "tripPeerConnectRetryInterval" : {
2511
+ "nodetype" : "member",
2512
+ "module" : "TRIP-MIB"
2513
+ },
2514
+ "tripPeerMaxRetryInterval" : {
2515
+ "nodetype" : "member",
2516
+ "module" : "TRIP-MIB"
2517
+ },
2518
+ "tripPeerHoldTime" : {
2519
+ "nodetype" : "member",
2520
+ "module" : "TRIP-MIB"
2521
+ },
2522
+ "tripPeerKeepAlive" : {
2523
+ "nodetype" : "member",
2524
+ "module" : "TRIP-MIB"
2525
+ },
2526
+ "tripPeerHoldTimeConfigured" : {
2527
+ "nodetype" : "member",
2528
+ "module" : "TRIP-MIB"
2529
+ },
2530
+ "tripPeerKeepAliveConfigured" : {
2531
+ "nodetype" : "member",
2532
+ "module" : "TRIP-MIB"
2533
+ },
2534
+ "tripPeerMaxPurgeTime" : {
2535
+ "nodetype" : "member",
2536
+ "module" : "TRIP-MIB"
2537
+ },
2538
+ "tripPeerDisableTime" : {
2539
+ "nodetype" : "member",
2540
+ "module" : "TRIP-MIB"
2541
+ },
2542
+ "tripPeerLearned" : {
2543
+ "nodetype" : "member",
2544
+ "module" : "TRIP-MIB"
2545
+ },
2546
+ "tripPeerStorage" : {
2547
+ "nodetype" : "member",
2548
+ "module" : "TRIP-MIB"
2549
+ },
2550
+ "tripPeerRowStatus" : {
2551
+ "nodetype" : "member",
2552
+ "module" : "TRIP-MIB"
2553
+ },
2554
+ }, # members
2555
+ "description" :
2556
+ """The global objects for configuring the TRIP peer
2557
+ table.""",
2558
+ }, # group
2559
+ "tripPeerTableStatsGroup" : {
2560
+ "nodetype" : "group",
2561
+ "moduleName" : "TRIP-MIB",
2562
+ "oid" : "1.3.6.1.2.1.116.2.2.3",
2563
+ "status" : "current",
2564
+ "members" : {
2565
+ "tripPeerInUpdates" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "TRIP-MIB"
2568
+ },
2569
+ "tripPeerOutUpdates" : {
2570
+ "nodetype" : "member",
2571
+ "module" : "TRIP-MIB"
2572
+ },
2573
+ "tripPeerInTotalMessages" : {
2574
+ "nodetype" : "member",
2575
+ "module" : "TRIP-MIB"
2576
+ },
2577
+ "tripPeerOutTotalMessages" : {
2578
+ "nodetype" : "member",
2579
+ "module" : "TRIP-MIB"
2580
+ },
2581
+ "tripPeerFsmEstablishedTransitions" : {
2582
+ "nodetype" : "member",
2583
+ "module" : "TRIP-MIB"
2584
+ },
2585
+ "tripPeerFsmEstablishedTime" : {
2586
+ "nodetype" : "member",
2587
+ "module" : "TRIP-MIB"
2588
+ },
2589
+ "tripPeerInUpdateElapsedTime" : {
2590
+ "nodetype" : "member",
2591
+ "module" : "TRIP-MIB"
2592
+ },
2593
+ "tripPeerStateChangeTime" : {
2594
+ "nodetype" : "member",
2595
+ "module" : "TRIP-MIB"
2596
+ },
2597
+ }, # members
2598
+ "description" :
2599
+ """The global statistics the TRIP peer table.""",
2600
+ }, # group
2601
+ "tripRouteGroup" : {
2602
+ "nodetype" : "group",
2603
+ "moduleName" : "TRIP-MIB",
2604
+ "oid" : "1.3.6.1.2.1.116.2.2.4",
2605
+ "status" : "current",
2606
+ "members" : {
2607
+ "tripRouteTRIBMask" : {
2608
+ "nodetype" : "member",
2609
+ "module" : "TRIP-MIB"
2610
+ },
2611
+ "tripRouteAddressSequenceNumber" : {
2612
+ "nodetype" : "member",
2613
+ "module" : "TRIP-MIB"
2614
+ },
2615
+ "tripRouteAddressOriginatorId" : {
2616
+ "nodetype" : "member",
2617
+ "module" : "TRIP-MIB"
2618
+ },
2619
+ "tripRouteNextHopServerIAddrType" : {
2620
+ "nodetype" : "member",
2621
+ "module" : "TRIP-MIB"
2622
+ },
2623
+ "tripRouteNextHopServer" : {
2624
+ "nodetype" : "member",
2625
+ "module" : "TRIP-MIB"
2626
+ },
2627
+ "tripRouteNextHopServerPort" : {
2628
+ "nodetype" : "member",
2629
+ "module" : "TRIP-MIB"
2630
+ },
2631
+ "tripRouteNextHopServerItad" : {
2632
+ "nodetype" : "member",
2633
+ "module" : "TRIP-MIB"
2634
+ },
2635
+ "tripRouteMultiExitDisc" : {
2636
+ "nodetype" : "member",
2637
+ "module" : "TRIP-MIB"
2638
+ },
2639
+ "tripRouteLocalPref" : {
2640
+ "nodetype" : "member",
2641
+ "module" : "TRIP-MIB"
2642
+ },
2643
+ "tripRouteAdvertisementPath" : {
2644
+ "nodetype" : "member",
2645
+ "module" : "TRIP-MIB"
2646
+ },
2647
+ "tripRouteRoutedPath" : {
2648
+ "nodetype" : "member",
2649
+ "module" : "TRIP-MIB"
2650
+ },
2651
+ "tripRouteAtomicAggregate" : {
2652
+ "nodetype" : "member",
2653
+ "module" : "TRIP-MIB"
2654
+ },
2655
+ "tripRouteUnknown" : {
2656
+ "nodetype" : "member",
2657
+ "module" : "TRIP-MIB"
2658
+ },
2659
+ "tripRouteWithdrawn" : {
2660
+ "nodetype" : "member",
2661
+ "module" : "TRIP-MIB"
2662
+ },
2663
+ "tripRouteConverted" : {
2664
+ "nodetype" : "member",
2665
+ "module" : "TRIP-MIB"
2666
+ },
2667
+ "tripRouteReceivedTime" : {
2668
+ "nodetype" : "member",
2669
+ "module" : "TRIP-MIB"
2670
+ },
2671
+ "tripRouteCommunityItad" : {
2672
+ "nodetype" : "member",
2673
+ "module" : "TRIP-MIB"
2674
+ },
2675
+ }, # members
2676
+ "description" :
2677
+ """The global objects for configuring route attribute.""",
2678
+ }, # group
2679
+ "tripItadTopologyGroup" : {
2680
+ "nodetype" : "group",
2681
+ "moduleName" : "TRIP-MIB",
2682
+ "oid" : "1.3.6.1.2.1.116.2.2.5",
2683
+ "status" : "current",
2684
+ "members" : {
2685
+ "tripItadTopologySeqNum" : {
2686
+ "nodetype" : "member",
2687
+ "module" : "TRIP-MIB"
2688
+ },
2689
+ "tripItadTopologyId" : {
2690
+ "nodetype" : "member",
2691
+ "module" : "TRIP-MIB"
2692
+ },
2693
+ }, # members
2694
+ "description" :
2695
+ """The objects that define the TRIP ITAD topology.""",
2696
+ }, # group
2697
+ "tripNotificationGroup" : {
2698
+ "nodetype" : "group",
2699
+ "moduleName" : "TRIP-MIB",
2700
+ "oid" : "1.3.6.1.2.1.116.2.2.6",
2701
+ "status" : "current",
2702
+ "members" : {
2703
+ "tripConnectionEstablished" : {
2704
+ "nodetype" : "member",
2705
+ "module" : "TRIP-MIB"
2706
+ },
2707
+ "tripConnectionDropped" : {
2708
+ "nodetype" : "member",
2709
+ "module" : "TRIP-MIB"
2710
+ },
2711
+ "tripFSM" : {
2712
+ "nodetype" : "member",
2713
+ "module" : "TRIP-MIB"
2714
+ },
2715
+ "tripOpenMessageError" : {
2716
+ "nodetype" : "member",
2717
+ "module" : "TRIP-MIB"
2718
+ },
2719
+ "tripUpdateMessageError" : {
2720
+ "nodetype" : "member",
2721
+ "module" : "TRIP-MIB"
2722
+ },
2723
+ "tripHoldTimerExpired" : {
2724
+ "nodetype" : "member",
2725
+ "module" : "TRIP-MIB"
2726
+ },
2727
+ "tripConnectionCollision" : {
2728
+ "nodetype" : "member",
2729
+ "module" : "TRIP-MIB"
2730
+ },
2731
+ "tripCease" : {
2732
+ "nodetype" : "member",
2733
+ "module" : "TRIP-MIB"
2734
+ },
2735
+ "tripNotificationErr" : {
2736
+ "nodetype" : "member",
2737
+ "module" : "TRIP-MIB"
2738
+ },
2739
+ }, # members
2740
+ "description" :
2741
+ """A collection of notifications defined for TRIP.""",
2742
+ }, # group
2743
+ "tripNotifObjectGroup" : {
2744
+ "nodetype" : "group",
2745
+ "moduleName" : "TRIP-MIB",
2746
+ "oid" : "1.3.6.1.2.1.116.2.2.7",
2747
+ "status" : "current",
2748
+ "members" : {
2749
+ "tripNotifApplIndex" : {
2750
+ "nodetype" : "member",
2751
+ "module" : "TRIP-MIB"
2752
+ },
2753
+ "tripNotifPeerAddrInetType" : {
2754
+ "nodetype" : "member",
2755
+ "module" : "TRIP-MIB"
2756
+ },
2757
+ "tripNotifPeerAddr" : {
2758
+ "nodetype" : "member",
2759
+ "module" : "TRIP-MIB"
2760
+ },
2761
+ "tripNotifPeerErrCode" : {
2762
+ "nodetype" : "member",
2763
+ "module" : "TRIP-MIB"
2764
+ },
2765
+ "tripNotifPeerErrSubcode" : {
2766
+ "nodetype" : "member",
2767
+ "module" : "TRIP-MIB"
2768
+ },
2769
+ }, # members
2770
+ "description" :
2771
+ """The collection of objects that specify information for
2772
+ TRIP notifications.""",
2773
+ }, # group
2774
+ }, # groups
2775
+
2776
+ "compliances" : {
2777
+ "tripMIBFullCompliance" : {
2778
+ "nodetype" : "compliance",
2779
+ "moduleName" : "TRIP-MIB",
2780
+ "oid" : "1.3.6.1.2.1.116.2.1.1",
2781
+ "status" : "current",
2782
+ "description" :
2783
+ """The compliance statement for TRIP entities that
2784
+ implement this MIB module in read-write mode, such
2785
+ that it can be used for both monitoring and configuring
2786
+ the TRIP entity.
2787
+
2788
+ There is one INDEX object that cannot be represented in
2789
+ the form of OBJECT clauses in SMIv2, but for which there
2790
+ is a compliance requirement, expressed in OBJECT clause
2791
+ form in this description:
2792
+
2793
+ -- OBJECT tripRouteTypeAddrInetType
2794
+ -- SYNTAX InetAddressType (ipv4(1), ipv6(2),
2795
+ -- ipv4z(3), ipv6z(4))
2796
+ -- DESCRIPTION
2797
+ -- This MIB requires support for global and
2798
+ -- non-global ipv4 and ipv6 addresses.
2799
+ --
2800
+ -- OBJECT tripRouteTypeAddr
2801
+ -- SYNTAX InetAddress (SIZE (4 | 8 | 16 | 20))
2802
+ -- DESCRIPTION
2803
+ -- This MIB requires support for global and
2804
+ -- non-global IPv4 and IPv6 addresses.
2805
+ --""",
2806
+ "requires" : {
2807
+ "tripConfigGroup" : {
2808
+ "nodetype" : "mandatory",
2809
+ "module" : "TRIP-MIB"
2810
+ },
2811
+ "tripPeerTableConfigGroup" : {
2812
+ "nodetype" : "mandatory",
2813
+ "module" : "TRIP-MIB"
2814
+ },
2815
+ "tripRouteGroup" : {
2816
+ "nodetype" : "mandatory",
2817
+ "module" : "TRIP-MIB"
2818
+ },
2819
+ "tripItadTopologyGroup" : {
2820
+ "nodetype" : "mandatory",
2821
+ "module" : "TRIP-MIB"
2822
+ },
2823
+ "tripPeerTableStatsGroup" : {
2824
+ "nodetype" : "mandatory",
2825
+ "module" : "TRIP-MIB"
2826
+ },
2827
+ "applRFC2788Group" : {
2828
+ "nodetype" : "mandatory",
2829
+ "module" : "NETWORK-SERVICES-MIB"
2830
+ },
2831
+ "tripNotificationGroup" : {
2832
+ "nodetype" : "optional",
2833
+ "module" : "TRIP-MIB",
2834
+ "description" :
2835
+ """This group is OPTIONAL. A TRIP entity can choose not to
2836
+ send any notifications. If this group is implemented,
2837
+ the tripNotifObjectGroup MUST also be implemented.""",
2838
+ },
2839
+ "tripNotifObjectGroup" : {
2840
+ "nodetype" : "optional",
2841
+ "module" : "TRIP-MIB",
2842
+ "description" :
2843
+ """This group is OPTIONAL. A TRIP entity can choose not to
2844
+ send any notifications. If this group is implemented,
2845
+
2846
+
2847
+
2848
+ the tripNotificationGroup MUST also be implemented.""",
2849
+ },
2850
+ }, # requires
2851
+ "refinements" : {
2852
+ "tripSupportedCommunityRowStatus" : {
2853
+ "module" : "TRIP-MIB",
2854
+ "syntax" : {
2855
+ "type" : {
2856
+ "basetype" : "Enumeration",
2857
+ "parent module" : {
2858
+ "name" : "SNMPv2-TC",
2859
+ "type" : "RowStatus",
2860
+ },
2861
+ "active" : {
2862
+ "nodetype" : "namednumber",
2863
+ "number" : "1"
2864
+ },
2865
+ },
2866
+ }, # syntax
2867
+ "writesyntax" : {
2868
+ "type" : {
2869
+ "basetype" : "Enumeration",
2870
+ "parent module" : {
2871
+ "name" : "SNMPv2-TC",
2872
+ "type" : "RowStatus",
2873
+ },
2874
+ "createAndGo" : {
2875
+ "nodetype" : "namednumber",
2876
+ "number" : "4"
2877
+ },
2878
+ "destroy" : {
2879
+ "nodetype" : "namednumber",
2880
+ "number" : "6"
2881
+ },
2882
+ },
2883
+ }, # writesyntax
2884
+ "description" :
2885
+ """Support for createAndWait and notInService is not
2886
+ required.""",
2887
+ },
2888
+ "tripPeerRowStatus" : {
2889
+ "module" : "TRIP-MIB",
2890
+ "syntax" : {
2891
+ "type" : {
2892
+ "basetype" : "Enumeration",
2893
+ "parent module" : {
2894
+ "name" : "SNMPv2-TC",
2895
+ "type" : "RowStatus",
2896
+ },
2897
+ "active" : {
2898
+ "nodetype" : "namednumber",
2899
+ "number" : "1"
2900
+ },
2901
+ },
2902
+ }, # syntax
2903
+ "writesyntax" : {
2904
+ "type" : {
2905
+ "basetype" : "Enumeration",
2906
+ "parent module" : {
2907
+ "name" : "SNMPv2-TC",
2908
+ "type" : "RowStatus",
2909
+ },
2910
+ "createAndGo" : {
2911
+ "nodetype" : "namednumber",
2912
+ "number" : "4"
2913
+ },
2914
+ "destroy" : {
2915
+ "nodetype" : "namednumber",
2916
+ "number" : "6"
2917
+ },
2918
+ },
2919
+ }, # writesyntax
2920
+ "description" :
2921
+ """Support for createAndWait and notInService is not
2922
+ required.""",
2923
+ },
2924
+ }, # refinements
2925
+
2926
+ }, # compliance
2927
+ "tripMIBReadOnlyCompliance" : {
2928
+ "nodetype" : "compliance",
2929
+ "moduleName" : "TRIP-MIB",
2930
+ "oid" : "1.3.6.1.2.1.116.2.1.2",
2931
+ "status" : "current",
2932
+ "description" :
2933
+ """The compliance statement for TRIP entities that
2934
+ implement this MIB module in read only mode. Such TRIP
2935
+ entities can then only be monitored, but not be
2936
+ configured via this MIB module.
2937
+
2938
+ In read-only mode, the manager will not be able to add,
2939
+ remove or modify rows to any table, however the TRIP
2940
+ application may modify, remove or add rows to a table.
2941
+
2942
+ There is one INDEX object that cannot be represented in
2943
+ the form of OBJECT clauses in SMIv2, but for which there
2944
+ is a compliance requirement, expressed in OBJECT clause
2945
+ form in this description:
2946
+
2947
+ -- OBJECT tripRouteTypeAddrInetType
2948
+ -- SYNTAX InetAddressType (ipv4(1), ipv6(2),
2949
+ -- ipv4z(3), ipv6z(4))
2950
+ -- DESCRIPTION
2951
+ -- This MIB requires support for global and
2952
+ -- non-global ipv4 and ipv6 addresses.
2953
+ --
2954
+ -- OBJECT tripRouteTypeAddr
2955
+ -- SYNTAX InetAddress (SIZE (4 | 8 | 16 | 20))
2956
+ -- DESCRIPTION
2957
+ -- This MIB requires support for global and
2958
+
2959
+
2960
+
2961
+ -- non-global IPv4 and IPv6 addresses.
2962
+ --""",
2963
+ "requires" : {
2964
+ "tripConfigGroup" : {
2965
+ "nodetype" : "mandatory",
2966
+ "module" : "TRIP-MIB"
2967
+ },
2968
+ "tripPeerTableConfigGroup" : {
2969
+ "nodetype" : "mandatory",
2970
+ "module" : "TRIP-MIB"
2971
+ },
2972
+ "tripRouteGroup" : {
2973
+ "nodetype" : "mandatory",
2974
+ "module" : "TRIP-MIB"
2975
+ },
2976
+ "tripItadTopologyGroup" : {
2977
+ "nodetype" : "mandatory",
2978
+ "module" : "TRIP-MIB"
2979
+ },
2980
+ "tripPeerTableStatsGroup" : {
2981
+ "nodetype" : "mandatory",
2982
+ "module" : "TRIP-MIB"
2983
+ },
2984
+ "applRFC2788Group" : {
2985
+ "nodetype" : "mandatory",
2986
+ "module" : "NETWORK-SERVICES-MIB"
2987
+ },
2988
+ "tripNotificationGroup" : {
2989
+ "nodetype" : "optional",
2990
+ "module" : "TRIP-MIB",
2991
+ "description" :
2992
+ """This group is OPTIONAL. A TRIP entity can choose not to
2993
+ send any notifications. If this group is implemented,
2994
+ the tripNotifObjectGroup MUST also be implemented.""",
2995
+ },
2996
+ "tripNotifObjectGroup" : {
2997
+ "nodetype" : "optional",
2998
+ "module" : "TRIP-MIB",
2999
+ "description" :
3000
+ """This group is OPTIONAL. A TRIP entity can choose not to
3001
+ send any notifications. If this group is implemented,
3002
+ the tripNotificationGroup MUST also be implemented.""",
3003
+ },
3004
+ }, # requires
3005
+ "refinements" : {
3006
+ "tripCfgItad" : {
3007
+ "module" : "TRIP-MIB",
3008
+ "access" : "readonly",
3009
+ "description" :
3010
+ """Write access is not required.""",
3011
+ },
3012
+ "tripCfgAdminStatus" : {
3013
+ "module" : "TRIP-MIB",
3014
+ "access" : "noaccess",
3015
+ "description" :
3016
+ """Object is not needed when implemented in read-only mode.""",
3017
+ },
3018
+ "tripCfgPort" : {
3019
+ "module" : "TRIP-MIB",
3020
+ "access" : "readonly",
3021
+ "description" :
3022
+ """Write access is not required.""",
3023
+ },
3024
+ "tripCfgMinItadOriginationInterval" : {
3025
+ "module" : "TRIP-MIB",
3026
+ "access" : "readonly",
3027
+ "description" :
3028
+ """Write access is not required.""",
3029
+ },
3030
+ "tripCfgMinRouteAdvertisementInterval" : {
3031
+ "module" : "TRIP-MIB",
3032
+ "access" : "readonly",
3033
+ "description" :
3034
+ """Write access is not required.""",
3035
+ },
3036
+ "tripCfgMaxPurgeTime" : {
3037
+ "module" : "TRIP-MIB",
3038
+ "access" : "readonly",
3039
+ "description" :
3040
+ """Write access is not required.""",
3041
+ },
3042
+ "tripCfgDisableTime" : {
3043
+ "module" : "TRIP-MIB",
3044
+ "access" : "readonly",
3045
+ "description" :
3046
+ """Write access is not required.""",
3047
+ },
3048
+ "tripCfgStorage" : {
3049
+ "module" : "TRIP-MIB",
3050
+ "access" : "readonly",
3051
+ "description" :
3052
+ """Write access is not required.""",
3053
+ },
3054
+ "tripSupportedCommunityItad" : {
3055
+ "module" : "TRIP-MIB",
3056
+ "access" : "readonly",
3057
+ "description" :
3058
+ """Write access is not required.""",
3059
+ },
3060
+ "tripSupportedCommunityStorage" : {
3061
+ "module" : "TRIP-MIB",
3062
+ "access" : "readonly",
3063
+ "description" :
3064
+ """Write access is not required.""",
3065
+ },
3066
+ "tripSupportedCommunityRowStatus" : {
3067
+ "module" : "TRIP-MIB",
3068
+ "syntax" : {
3069
+ "type" : {
3070
+ "basetype" : "Enumeration",
3071
+ "parent module" : {
3072
+ "name" : "SNMPv2-TC",
3073
+ "type" : "RowStatus",
3074
+ },
3075
+ "active" : {
3076
+ "nodetype" : "namednumber",
3077
+ "number" : "1"
3078
+ },
3079
+ },
3080
+ }, # syntax
3081
+ "access" : "readonly",
3082
+ "description" :
3083
+ """Write access is not required, and active is the only
3084
+ status that needs to be supported.""",
3085
+ },
3086
+ "tripPeerAdminStatus" : {
3087
+ "module" : "TRIP-MIB",
3088
+ "access" : "noaccess",
3089
+ "description" :
3090
+ """Object is not needed when implemented in read-only mode.""",
3091
+ },
3092
+ "tripPeerConnectRetryInterval" : {
3093
+ "module" : "TRIP-MIB",
3094
+ "access" : "readonly",
3095
+ "description" :
3096
+ """Write access is not required.""",
3097
+ },
3098
+ "tripPeerMaxRetryInterval" : {
3099
+ "module" : "TRIP-MIB",
3100
+ "access" : "readonly",
3101
+ "description" :
3102
+ """Write access is not required.""",
3103
+ },
3104
+ "tripPeerHoldTimeConfigured" : {
3105
+ "module" : "TRIP-MIB",
3106
+ "access" : "readonly",
3107
+ "description" :
3108
+ """Write access is not required.""",
3109
+ },
3110
+ "tripPeerKeepAliveConfigured" : {
3111
+ "module" : "TRIP-MIB",
3112
+ "access" : "readonly",
3113
+ "description" :
3114
+ """Write access is not required.""",
3115
+ },
3116
+ "tripPeerMaxPurgeTime" : {
3117
+ "module" : "TRIP-MIB",
3118
+ "access" : "readonly",
3119
+ "description" :
3120
+ """Write access is not required.""",
3121
+ },
3122
+ "tripPeerDisableTime" : {
3123
+ "module" : "TRIP-MIB",
3124
+ "access" : "readonly",
3125
+ "description" :
3126
+ """Write access is not required.""",
3127
+ },
3128
+ "tripPeerStorage" : {
3129
+ "module" : "TRIP-MIB",
3130
+ "access" : "readonly",
3131
+ "description" :
3132
+ """Write access is not required.""",
3133
+ },
3134
+ "tripPeerRowStatus" : {
3135
+ "module" : "TRIP-MIB",
3136
+ "syntax" : {
3137
+ "type" : {
3138
+ "basetype" : "Enumeration",
3139
+ "parent module" : {
3140
+ "name" : "SNMPv2-TC",
3141
+ "type" : "RowStatus",
3142
+ },
3143
+ "active" : {
3144
+ "nodetype" : "namednumber",
3145
+ "number" : "1"
3146
+ },
3147
+ },
3148
+ }, # syntax
3149
+ "access" : "readonly",
3150
+ "description" :
3151
+ """Write access is not required, and active is the only
3152
+ status that needs to be supported.""",
3153
+ },
3154
+ }, # refinements
3155
+
3156
+ }, # compliance
3157
+ }, # compliances
3158
+
3159
+ }