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,4135 @@
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 RSVP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/RSVP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "RSVP-MIB",
11
+
12
+ "RSVP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF RSVP Working Group""",
17
+ "contact" :
18
+ """ Fred Baker
19
+ Postal: Cisco Systems
20
+ 519 Lado Drive
21
+ Santa Barbara, California 93111
22
+ Tel: +1 805 681 0115
23
+ E-Mail: fred@cisco.com
24
+ John Krawczyk
25
+ Postal: ArrowPoint Communications
26
+ 235 Littleton Road
27
+ Westford, Massachusetts 01886
28
+ Tel: +1 508 692 5875
29
+ E-Mail: jjk@tiac.net
30
+
31
+ Arun Sastry
32
+ Postal: Cisco Systems
33
+ 210 W. Tasman Drive
34
+ San Jose, California 95134
35
+ Tel: +1 408 526 7685
36
+ E-Mail: arun@cisco.com""",
37
+ "description" :
38
+ """The MIB module to describe the RSVP Protocol""",
39
+ "revisions" : (
40
+ {
41
+ "date" : "1995-11-03 05:00",
42
+ "description" :
43
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
44
+ },
45
+ ),
46
+ "identity node" : "rsvp",
47
+ },
48
+
49
+ "imports" : (
50
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
51
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
52
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
53
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
54
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
55
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
56
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
57
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
58
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
59
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
60
+ {"module" : "SNMPv2-TC", "name" : "TestAndIncr"},
61
+ {"module" : "SNMPv2-TC", "name" : "TimeInterval"},
62
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
63
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
64
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
65
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "Port"},
66
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "SessionNumber"},
67
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "SessionType"},
68
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "Protocol"},
69
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "QosService"},
70
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "intSrvFlowStatus"},
71
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
72
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
73
+ {"module" : "INTEGRATED-SERVICES-MIB", "name" : "BurstSize"},
74
+ {"module" : "IF-MIB", "name" : "ifIndex"},
75
+ {"module" : "IF-MIB", "name" : "InterfaceIndex"},
76
+ ),
77
+
78
+ "typedefs" : {
79
+ "RsvpEncapsulation" : {
80
+ "basetype" : "Enumeration",
81
+ "status" : "current",
82
+ "ip" : {
83
+ "nodetype" : "namednumber",
84
+ "number" : "1"
85
+ },
86
+ "udp" : {
87
+ "nodetype" : "namednumber",
88
+ "number" : "2"
89
+ },
90
+ "both" : {
91
+ "nodetype" : "namednumber",
92
+ "number" : "3"
93
+ },
94
+ "description" :
95
+ """This indicates the encapsulation that an RSVP
96
+ Neighbor is perceived to be using.""",
97
+ },
98
+ "RefreshInterval" : {
99
+ "basetype" : "Integer32",
100
+ "status" : "current",
101
+ "ranges" : [
102
+ {
103
+ "min" : "0",
104
+ "max" : "2147483647"
105
+ },
106
+ ],
107
+ "range" : {
108
+ "min" : "0",
109
+ "max" : "2147483647"
110
+ },
111
+ "format" : "d",
112
+ "description" :
113
+ """The number of milliseconds that are expected
114
+ to elapse between refreshes of path or reserva-
115
+ tion state. Unrefreshed Path or reservation
116
+ state is removed after a small multiple of this
117
+ period.""",
118
+ },
119
+ }, # typedefs
120
+
121
+ "nodes" : {
122
+ "rsvp" : {
123
+ "nodetype" : "node",
124
+ "moduleName" : "RSVP-MIB",
125
+ "oid" : "1.3.6.1.2.1.51",
126
+ "status" : "current",
127
+ }, # node
128
+ "rsvpObjects" : {
129
+ "nodetype" : "node",
130
+ "moduleName" : "RSVP-MIB",
131
+ "oid" : "1.3.6.1.2.1.51.1",
132
+ }, # node
133
+ "rsvpSessionTable" : {
134
+ "nodetype" : "table",
135
+ "moduleName" : "RSVP-MIB",
136
+ "oid" : "1.3.6.1.2.1.51.1.1",
137
+ "status" : "current",
138
+ "description" :
139
+ """A table of all sessions seen by a given sys-
140
+ tem.""",
141
+ }, # table
142
+ "rsvpSessionEntry" : {
143
+ "nodetype" : "row",
144
+ "moduleName" : "RSVP-MIB",
145
+ "oid" : "1.3.6.1.2.1.51.1.1.1",
146
+ "status" : "current",
147
+ "linkage" : [
148
+ "rsvpSessionNumber",
149
+ ],
150
+ "description" :
151
+ """A single session seen by a given system.""",
152
+ }, # row
153
+ "rsvpSessionNumber" : {
154
+ "nodetype" : "column",
155
+ "moduleName" : "RSVP-MIB",
156
+ "oid" : "1.3.6.1.2.1.51.1.1.1.1",
157
+ "status" : "current",
158
+ "syntax" : {
159
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionNumber"},
160
+ },
161
+ "access" : "noaccess",
162
+ "description" :
163
+ """The number of this session. This is for SNMP
164
+ Indexing purposes only and has no relation to
165
+ any protocol value.""",
166
+ }, # column
167
+ "rsvpSessionType" : {
168
+ "nodetype" : "column",
169
+ "moduleName" : "RSVP-MIB",
170
+ "oid" : "1.3.6.1.2.1.51.1.1.1.2",
171
+ "status" : "current",
172
+ "syntax" : {
173
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionType"},
174
+ },
175
+ "access" : "readonly",
176
+ "description" :
177
+ """The type of session (IP4, IP6, IP6 with flow
178
+ information, etc).""",
179
+ }, # column
180
+ "rsvpSessionDestAddr" : {
181
+ "nodetype" : "column",
182
+ "moduleName" : "RSVP-MIB",
183
+ "oid" : "1.3.6.1.2.1.51.1.1.1.3",
184
+ "status" : "current",
185
+ "syntax" : {
186
+ "type" : {
187
+ "basetype" : "OctetString",
188
+ "ranges" : [
189
+ {
190
+ "min" : "4",
191
+ "max" : "16"
192
+ },
193
+ ],
194
+ "range" : {
195
+ "min" : "4",
196
+ "max" : "16"
197
+ },
198
+ },
199
+ },
200
+ "access" : "readonly",
201
+ "description" :
202
+ """The destination address used by all senders in
203
+ this session. This object may not be changed
204
+ when the value of the RowStatus object is 'ac-
205
+ tive'.""",
206
+ }, # column
207
+ "rsvpSessionDestAddrLength" : {
208
+ "nodetype" : "column",
209
+ "moduleName" : "RSVP-MIB",
210
+ "oid" : "1.3.6.1.2.1.51.1.1.1.4",
211
+ "status" : "current",
212
+ "syntax" : {
213
+ "type" : {
214
+ "basetype" : "Integer32",
215
+ "ranges" : [
216
+ {
217
+ "min" : "0",
218
+ "max" : "128"
219
+ },
220
+ ],
221
+ "range" : {
222
+ "min" : "0",
223
+ "max" : "128"
224
+ },
225
+ },
226
+ },
227
+ "access" : "readonly",
228
+ "description" :
229
+ """The CIDR prefix length of the session address,
230
+ which is 32 for IP4 host and multicast ad-
231
+ dresses, and 128 for IP6 addresses. This ob-
232
+ ject may not be changed when the value of the
233
+ RowStatus object is 'active'.""",
234
+ }, # column
235
+ "rsvpSessionProtocol" : {
236
+ "nodetype" : "column",
237
+ "moduleName" : "RSVP-MIB",
238
+ "oid" : "1.3.6.1.2.1.51.1.1.1.5",
239
+ "status" : "current",
240
+ "syntax" : {
241
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Protocol"},
242
+ },
243
+ "access" : "readonly",
244
+ "description" :
245
+ """The IP Protocol used by this session. This
246
+ object may not be changed when the value of the
247
+ RowStatus object is 'active'.""",
248
+ }, # column
249
+ "rsvpSessionPort" : {
250
+ "nodetype" : "column",
251
+ "moduleName" : "RSVP-MIB",
252
+ "oid" : "1.3.6.1.2.1.51.1.1.1.6",
253
+ "status" : "current",
254
+ "syntax" : {
255
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
256
+ },
257
+ "access" : "readonly",
258
+ "description" :
259
+ """The UDP or TCP port number used as a destina-
260
+ tion port for all senders in this session. If
261
+ the IP protocol in use, specified by rsvpSen-
262
+ derProtocol, is 50 (ESP) or 51 (AH), this
263
+ represents a virtual destination port number.
264
+ A value of zero indicates that the IP protocol
265
+ in use does not have ports. This object may
266
+ not be changed when the value of the RowStatus
267
+ object is 'active'.""",
268
+ }, # column
269
+ "rsvpSessionSenders" : {
270
+ "nodetype" : "column",
271
+ "moduleName" : "RSVP-MIB",
272
+ "oid" : "1.3.6.1.2.1.51.1.1.1.7",
273
+ "status" : "current",
274
+ "syntax" : {
275
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
276
+ },
277
+ "access" : "readonly",
278
+ "description" :
279
+ """The number of distinct senders currently known
280
+ to be part of this session.""",
281
+ }, # column
282
+ "rsvpSessionReceivers" : {
283
+ "nodetype" : "column",
284
+ "moduleName" : "RSVP-MIB",
285
+ "oid" : "1.3.6.1.2.1.51.1.1.1.8",
286
+ "status" : "current",
287
+ "syntax" : {
288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
289
+ },
290
+ "access" : "readonly",
291
+ "description" :
292
+ """The number of reservations being requested of
293
+ this system for this session.""",
294
+ }, # column
295
+ "rsvpSessionRequests" : {
296
+ "nodetype" : "column",
297
+ "moduleName" : "RSVP-MIB",
298
+ "oid" : "1.3.6.1.2.1.51.1.1.1.9",
299
+ "status" : "current",
300
+ "syntax" : {
301
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
302
+ },
303
+ "access" : "readonly",
304
+ "description" :
305
+ """The number of reservation requests this system
306
+ is sending upstream for this session.""",
307
+ }, # column
308
+ "rsvpSenderTable" : {
309
+ "nodetype" : "table",
310
+ "moduleName" : "RSVP-MIB",
311
+ "oid" : "1.3.6.1.2.1.51.1.2",
312
+ "status" : "current",
313
+ "description" :
314
+ """Information describing the state information
315
+ displayed by senders in PATH messages.""",
316
+ }, # table
317
+ "rsvpSenderEntry" : {
318
+ "nodetype" : "row",
319
+ "moduleName" : "RSVP-MIB",
320
+ "oid" : "1.3.6.1.2.1.51.1.2.1",
321
+ "create" : "true",
322
+ "status" : "current",
323
+ "linkage" : [
324
+ "rsvpSessionNumber",
325
+ "rsvpSenderNumber",
326
+ ],
327
+ "description" :
328
+ """Information describing the state information
329
+ displayed by a single sender's PATH message.""",
330
+ }, # row
331
+ "rsvpSenderNumber" : {
332
+ "nodetype" : "column",
333
+ "moduleName" : "RSVP-MIB",
334
+ "oid" : "1.3.6.1.2.1.51.1.2.1.1",
335
+ "status" : "current",
336
+ "syntax" : {
337
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionNumber"},
338
+ },
339
+ "access" : "noaccess",
340
+ "description" :
341
+ """The number of this sender. This is for SNMP
342
+ Indexing purposes only and has no relation to
343
+ any protocol value.""",
344
+ }, # column
345
+ "rsvpSenderType" : {
346
+ "nodetype" : "column",
347
+ "moduleName" : "RSVP-MIB",
348
+ "oid" : "1.3.6.1.2.1.51.1.2.1.2",
349
+ "status" : "current",
350
+ "syntax" : {
351
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionType"},
352
+ },
353
+ "access" : "readwrite",
354
+ "description" :
355
+ """The type of session (IP4, IP6, IP6 with flow
356
+ information, etc).""",
357
+ }, # column
358
+ "rsvpSenderDestAddr" : {
359
+ "nodetype" : "column",
360
+ "moduleName" : "RSVP-MIB",
361
+ "oid" : "1.3.6.1.2.1.51.1.2.1.3",
362
+ "status" : "current",
363
+ "syntax" : {
364
+ "type" : {
365
+ "basetype" : "OctetString",
366
+ "ranges" : [
367
+ {
368
+ "min" : "4",
369
+ "max" : "16"
370
+ },
371
+ ],
372
+ "range" : {
373
+ "min" : "4",
374
+ "max" : "16"
375
+ },
376
+ },
377
+ },
378
+ "access" : "readwrite",
379
+ "description" :
380
+ """The destination address used by all senders in
381
+ this session. This object may not be changed
382
+ when the value of the RowStatus object is 'ac-
383
+ tive'.""",
384
+ }, # column
385
+ "rsvpSenderAddr" : {
386
+ "nodetype" : "column",
387
+ "moduleName" : "RSVP-MIB",
388
+ "oid" : "1.3.6.1.2.1.51.1.2.1.4",
389
+ "status" : "current",
390
+ "syntax" : {
391
+ "type" : {
392
+ "basetype" : "OctetString",
393
+ "ranges" : [
394
+ {
395
+ "min" : "4",
396
+ "max" : "16"
397
+ },
398
+ ],
399
+ "range" : {
400
+ "min" : "4",
401
+ "max" : "16"
402
+ },
403
+ },
404
+ },
405
+ "access" : "readwrite",
406
+ "description" :
407
+ """The source address used by this sender in this
408
+ session. This object may not be changed when
409
+ the value of the RowStatus object is 'active'.""",
410
+ }, # column
411
+ "rsvpSenderDestAddrLength" : {
412
+ "nodetype" : "column",
413
+ "moduleName" : "RSVP-MIB",
414
+ "oid" : "1.3.6.1.2.1.51.1.2.1.5",
415
+ "status" : "current",
416
+ "syntax" : {
417
+ "type" : {
418
+ "basetype" : "Integer32",
419
+ "ranges" : [
420
+ {
421
+ "min" : "0",
422
+ "max" : "128"
423
+ },
424
+ ],
425
+ "range" : {
426
+ "min" : "0",
427
+ "max" : "128"
428
+ },
429
+ },
430
+ },
431
+ "access" : "readwrite",
432
+ "description" :
433
+ """The length of the destination address in bits.
434
+ This is the CIDR Prefix Length, which for IP4
435
+ hosts and multicast addresses is 32 bits. This
436
+ object may not be changed when the value of the
437
+ RowStatus object is 'active'.""",
438
+ }, # column
439
+ "rsvpSenderAddrLength" : {
440
+ "nodetype" : "column",
441
+ "moduleName" : "RSVP-MIB",
442
+ "oid" : "1.3.6.1.2.1.51.1.2.1.6",
443
+ "status" : "current",
444
+ "syntax" : {
445
+ "type" : {
446
+ "basetype" : "Integer32",
447
+ "ranges" : [
448
+ {
449
+ "min" : "0",
450
+ "max" : "128"
451
+ },
452
+ ],
453
+ "range" : {
454
+ "min" : "0",
455
+ "max" : "128"
456
+ },
457
+ },
458
+ },
459
+ "access" : "readwrite",
460
+ "description" :
461
+ """The length of the sender's address in bits.
462
+ This is the CIDR Prefix Length, which for IP4
463
+ hosts and multicast addresses is 32 bits. This
464
+ object may not be changed when the value of the
465
+ RowStatus object is 'active'.""",
466
+ }, # column
467
+ "rsvpSenderProtocol" : {
468
+ "nodetype" : "column",
469
+ "moduleName" : "RSVP-MIB",
470
+ "oid" : "1.3.6.1.2.1.51.1.2.1.7",
471
+ "status" : "current",
472
+ "syntax" : {
473
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Protocol"},
474
+ },
475
+ "access" : "readwrite",
476
+ "description" :
477
+ """The IP Protocol used by this session. This
478
+ object may not be changed when the value of the
479
+ RowStatus object is 'active'.""",
480
+ }, # column
481
+ "rsvpSenderDestPort" : {
482
+ "nodetype" : "column",
483
+ "moduleName" : "RSVP-MIB",
484
+ "oid" : "1.3.6.1.2.1.51.1.2.1.8",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
488
+ },
489
+ "access" : "readwrite",
490
+ "description" :
491
+ """The UDP or TCP port number used as a destina-
492
+ tion port for all senders in this session. If
493
+ the IP protocol in use, specified by rsvpSen-
494
+ derProtocol, is 50 (ESP) or 51 (AH), this
495
+ represents a virtual destination port number.
496
+ A value of zero indicates that the IP protocol
497
+ in use does not have ports. This object may
498
+ not be changed when the value of the RowStatus
499
+ object is 'active'.""",
500
+ }, # column
501
+ "rsvpSenderPort" : {
502
+ "nodetype" : "column",
503
+ "moduleName" : "RSVP-MIB",
504
+ "oid" : "1.3.6.1.2.1.51.1.2.1.9",
505
+ "status" : "current",
506
+ "syntax" : {
507
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
508
+ },
509
+ "access" : "readwrite",
510
+ "description" :
511
+ """The UDP or TCP port number used as a source
512
+ port for this sender in this session. If the
513
+ IP protocol in use, specified by rsvpSenderPro-
514
+ tocol is 50 (ESP) or 51 (AH), this represents a
515
+ generalized port identifier (GPI). A value of
516
+ zero indicates that the IP protocol in use does
517
+ not have ports. This object may not be changed
518
+ when the value of the RowStatus object is 'ac-
519
+ tive'.""",
520
+ }, # column
521
+ "rsvpSenderFlowId" : {
522
+ "nodetype" : "column",
523
+ "moduleName" : "RSVP-MIB",
524
+ "oid" : "1.3.6.1.2.1.51.1.2.1.10",
525
+ "status" : "current",
526
+ "syntax" : {
527
+ "type" : {
528
+ "basetype" : "Integer32",
529
+ "ranges" : [
530
+ {
531
+ "min" : "0",
532
+ "max" : "16777215"
533
+ },
534
+ ],
535
+ "range" : {
536
+ "min" : "0",
537
+ "max" : "16777215"
538
+ },
539
+ },
540
+ },
541
+ "access" : "readonly",
542
+ "description" :
543
+ """The flow ID that this sender is using, if
544
+ this is an IPv6 session.""",
545
+ }, # column
546
+ "rsvpSenderHopAddr" : {
547
+ "nodetype" : "column",
548
+ "moduleName" : "RSVP-MIB",
549
+ "oid" : "1.3.6.1.2.1.51.1.2.1.11",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : {
553
+ "basetype" : "OctetString",
554
+ "ranges" : [
555
+ {
556
+ "min" : "4",
557
+ "max" : "16"
558
+ },
559
+ ],
560
+ "range" : {
561
+ "min" : "4",
562
+ "max" : "16"
563
+ },
564
+ },
565
+ },
566
+ "access" : "readwrite",
567
+ "description" :
568
+ """The address used by the previous RSVP hop
569
+ (which may be the original sender).""",
570
+ }, # column
571
+ "rsvpSenderHopLih" : {
572
+ "nodetype" : "column",
573
+ "moduleName" : "RSVP-MIB",
574
+ "oid" : "1.3.6.1.2.1.51.1.2.1.12",
575
+ "status" : "current",
576
+ "syntax" : {
577
+ "type" : { "module" :"", "name" : "Integer32"},
578
+ },
579
+ "access" : "readwrite",
580
+ "description" :
581
+ """The Logical Interface Handle used by the pre-
582
+ vious RSVP hop (which may be the original
583
+ sender).""",
584
+ }, # column
585
+ "rsvpSenderInterface" : {
586
+ "nodetype" : "column",
587
+ "moduleName" : "RSVP-MIB",
588
+ "oid" : "1.3.6.1.2.1.51.1.2.1.13",
589
+ "status" : "current",
590
+ "syntax" : {
591
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
592
+ },
593
+ "access" : "readwrite",
594
+ "description" :
595
+ """The ifIndex value of the interface on which
596
+ this PATH message was most recently received.""",
597
+ }, # column
598
+ "rsvpSenderTSpecRate" : {
599
+ "nodetype" : "column",
600
+ "moduleName" : "RSVP-MIB",
601
+ "oid" : "1.3.6.1.2.1.51.1.2.1.14",
602
+ "status" : "current",
603
+ "syntax" : {
604
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
605
+ },
606
+ "access" : "readwrite",
607
+ "units" : "bits per second",
608
+ "description" :
609
+ """The Average Bit Rate of the sender's data
610
+ stream. Within a transmission burst, the ar-
611
+ rival rate may be as fast as rsvpSenderTSpec-
612
+ PeakRate (if supported by the service model);
613
+ however, averaged across two or more burst in-
614
+ tervals, the rate should not exceed rsvpSen-
615
+ derTSpecRate.
616
+
617
+ Note that this is a prediction, often based on
618
+ the general capability of a type of codec or
619
+ particular encoding; the measured average rate
620
+ may be significantly lower.""",
621
+ }, # column
622
+ "rsvpSenderTSpecPeakRate" : {
623
+ "nodetype" : "column",
624
+ "moduleName" : "RSVP-MIB",
625
+ "oid" : "1.3.6.1.2.1.51.1.2.1.15",
626
+ "status" : "current",
627
+ "syntax" : {
628
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
629
+ },
630
+ "access" : "readwrite",
631
+ "units" : "bits per second",
632
+ "description" :
633
+ """The Peak Bit Rate of the sender's data stream.
634
+ Traffic arrival is not expected to exceed this
635
+ rate at any time, apart from the effects of
636
+ jitter in the network. If not specified in the
637
+ TSpec, this returns zero or noSuchValue.""",
638
+ }, # column
639
+ "rsvpSenderTSpecBurst" : {
640
+ "nodetype" : "column",
641
+ "moduleName" : "RSVP-MIB",
642
+ "oid" : "1.3.6.1.2.1.51.1.2.1.16",
643
+ "status" : "current",
644
+ "syntax" : {
645
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BurstSize"},
646
+ },
647
+ "access" : "readwrite",
648
+ "units" : "bytes",
649
+ "description" :
650
+ """The size of the largest burst expected from
651
+ the sender at a time.""",
652
+ }, # column
653
+ "rsvpSenderTSpecMinTU" : {
654
+ "nodetype" : "column",
655
+ "moduleName" : "RSVP-MIB",
656
+ "oid" : "1.3.6.1.2.1.51.1.2.1.17",
657
+ "status" : "current",
658
+ "syntax" : {
659
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
660
+ },
661
+ "access" : "readwrite",
662
+ "description" :
663
+ """The minimum message size for this flow. The
664
+ policing algorithm will treat smaller messages
665
+ as though they are this size.""",
666
+ }, # column
667
+ "rsvpSenderTSpecMaxTU" : {
668
+ "nodetype" : "column",
669
+ "moduleName" : "RSVP-MIB",
670
+ "oid" : "1.3.6.1.2.1.51.1.2.1.18",
671
+ "status" : "current",
672
+ "syntax" : {
673
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
674
+ },
675
+ "access" : "readwrite",
676
+ "description" :
677
+ """The maximum message size for this flow. The
678
+ admission algorithm will reject TSpecs whose
679
+ Maximum Transmission Unit, plus the interface
680
+ headers, exceed the interface MTU.""",
681
+ }, # column
682
+ "rsvpSenderInterval" : {
683
+ "nodetype" : "column",
684
+ "moduleName" : "RSVP-MIB",
685
+ "oid" : "1.3.6.1.2.1.51.1.2.1.19",
686
+ "status" : "current",
687
+ "syntax" : {
688
+ "type" : { "module" :"RSVP-MIB", "name" : "RefreshInterval"},
689
+ },
690
+ "access" : "readwrite",
691
+ "description" :
692
+ """The interval between refresh messages as ad-
693
+ vertised by the Previous Hop.""",
694
+ }, # column
695
+ "rsvpSenderRSVPHop" : {
696
+ "nodetype" : "column",
697
+ "moduleName" : "RSVP-MIB",
698
+ "oid" : "1.3.6.1.2.1.51.1.2.1.20",
699
+ "status" : "current",
700
+ "syntax" : {
701
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
702
+ },
703
+ "access" : "readwrite",
704
+ "description" :
705
+ """If TRUE, the node believes that the previous
706
+ IP hop is an RSVP hop. If FALSE, the node be-
707
+ lieves that the previous IP hop may not be an
708
+ RSVP hop.""",
709
+ }, # column
710
+ "rsvpSenderLastChange" : {
711
+ "nodetype" : "column",
712
+ "moduleName" : "RSVP-MIB",
713
+ "oid" : "1.3.6.1.2.1.51.1.2.1.21",
714
+ "status" : "current",
715
+ "syntax" : {
716
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
717
+ },
718
+ "access" : "readonly",
719
+ "description" :
720
+ """The time of the last change in this PATH mes-
721
+ sage; This is either the first time it was re-
722
+ ceived or the time of the most recent change in
723
+ parameters.""",
724
+ }, # column
725
+ "rsvpSenderPolicy" : {
726
+ "nodetype" : "column",
727
+ "moduleName" : "RSVP-MIB",
728
+ "oid" : "1.3.6.1.2.1.51.1.2.1.22",
729
+ "status" : "current",
730
+ "syntax" : {
731
+ "type" : {
732
+ "basetype" : "OctetString",
733
+ "ranges" : [
734
+ {
735
+ "min" : "4",
736
+ "max" : "65536"
737
+ },
738
+ ],
739
+ "range" : {
740
+ "min" : "4",
741
+ "max" : "65536"
742
+ },
743
+ },
744
+ },
745
+ "access" : "readwrite",
746
+ "description" :
747
+ """The contents of the policy object, displayed
748
+ as an uninterpreted string of octets, including
749
+ the object header. In the absence of such an
750
+ object, this should be of zero length.""",
751
+ }, # column
752
+ "rsvpSenderAdspecBreak" : {
753
+ "nodetype" : "column",
754
+ "moduleName" : "RSVP-MIB",
755
+ "oid" : "1.3.6.1.2.1.51.1.2.1.23",
756
+ "status" : "current",
757
+ "syntax" : {
758
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
759
+ },
760
+ "access" : "readwrite",
761
+ "description" :
762
+ """The global break bit general characterization
763
+ parameter from the ADSPEC. If TRUE, at least
764
+ one non-IS hop was detected in the path. If
765
+ FALSE, no non-IS hops were detected.""",
766
+ }, # column
767
+ "rsvpSenderAdspecHopCount" : {
768
+ "nodetype" : "column",
769
+ "moduleName" : "RSVP-MIB",
770
+ "oid" : "1.3.6.1.2.1.51.1.2.1.24",
771
+ "status" : "current",
772
+ "syntax" : {
773
+ "type" : {
774
+ "basetype" : "Integer32",
775
+ "ranges" : [
776
+ {
777
+ "min" : "0",
778
+ "max" : "65535"
779
+ },
780
+ ],
781
+ "range" : {
782
+ "min" : "0",
783
+ "max" : "65535"
784
+ },
785
+ },
786
+ },
787
+ "access" : "readwrite",
788
+ "description" :
789
+ """The hop count general characterization parame-
790
+ ter from the ADSPEC. A return of zero or
791
+ noSuchValue indicates one of the following con-
792
+ ditions:
793
+
794
+ the invalid bit was set
795
+ the parameter was not present""",
796
+ }, # column
797
+ "rsvpSenderAdspecPathBw" : {
798
+ "nodetype" : "column",
799
+ "moduleName" : "RSVP-MIB",
800
+ "oid" : "1.3.6.1.2.1.51.1.2.1.25",
801
+ "status" : "current",
802
+ "syntax" : {
803
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
804
+ },
805
+ "access" : "readwrite",
806
+ "units" : "bits per second",
807
+ "description" :
808
+ """The path bandwidth estimate general character-
809
+ ization parameter from the ADSPEC. A return of
810
+ zero or noSuchValue indicates one of the fol-
811
+ lowing conditions:
812
+
813
+ the invalid bit was set
814
+ the parameter was not present""",
815
+ }, # column
816
+ "rsvpSenderAdspecMinLatency" : {
817
+ "nodetype" : "column",
818
+ "moduleName" : "RSVP-MIB",
819
+ "oid" : "1.3.6.1.2.1.51.1.2.1.26",
820
+ "status" : "current",
821
+ "syntax" : {
822
+ "type" : { "module" :"", "name" : "Integer32"},
823
+ },
824
+ "access" : "readwrite",
825
+ "units" : "microseconds",
826
+ "description" :
827
+ """The minimum path latency general characteriza-
828
+ tion parameter from the ADSPEC. A return of
829
+ zero or noSuchValue indicates one of the fol-
830
+ lowing conditions:
831
+
832
+ the invalid bit was set
833
+ the parameter was not present""",
834
+ }, # column
835
+ "rsvpSenderAdspecMtu" : {
836
+ "nodetype" : "column",
837
+ "moduleName" : "RSVP-MIB",
838
+ "oid" : "1.3.6.1.2.1.51.1.2.1.27",
839
+ "status" : "current",
840
+ "syntax" : {
841
+ "type" : {
842
+ "basetype" : "Integer32",
843
+ "ranges" : [
844
+ {
845
+ "min" : "0",
846
+ "max" : "65535"
847
+ },
848
+ ],
849
+ "range" : {
850
+ "min" : "0",
851
+ "max" : "65535"
852
+ },
853
+ },
854
+ },
855
+ "access" : "readwrite",
856
+ "units" : "bytes",
857
+ "description" :
858
+ """The composed Maximum Transmission Unit general
859
+ characterization parameter from the ADSPEC. A
860
+ return of zero or noSuchValue indicates one of
861
+ the following conditions:
862
+
863
+ the invalid bit was set
864
+ the parameter was not present""",
865
+ }, # column
866
+ "rsvpSenderAdspecGuaranteedSvc" : {
867
+ "nodetype" : "column",
868
+ "moduleName" : "RSVP-MIB",
869
+ "oid" : "1.3.6.1.2.1.51.1.2.1.28",
870
+ "status" : "current",
871
+ "syntax" : {
872
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
873
+ },
874
+ "access" : "readwrite",
875
+ "description" :
876
+ """If TRUE, the ADSPEC contains a Guaranteed Ser-
877
+ vice fragment. If FALSE, the ADSPEC does not
878
+ contain a Guaranteed Service fragment.""",
879
+ }, # column
880
+ "rsvpSenderAdspecGuaranteedBreak" : {
881
+ "nodetype" : "column",
882
+ "moduleName" : "RSVP-MIB",
883
+ "oid" : "1.3.6.1.2.1.51.1.2.1.29",
884
+ "status" : "current",
885
+ "syntax" : {
886
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
887
+ },
888
+ "access" : "readwrite",
889
+ "description" :
890
+ """If TRUE, the Guaranteed Service fragment has
891
+ its 'break' bit set, indicating that one or
892
+ more nodes along the path do not support the
893
+ guaranteed service. If FALSE, and rsvpSen-
894
+ derAdspecGuaranteedSvc is TRUE, the 'break' bit
895
+ is not set.
896
+
897
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
898
+ returns FALSE or noSuchValue.""",
899
+ }, # column
900
+ "rsvpSenderAdspecGuaranteedCtot" : {
901
+ "nodetype" : "column",
902
+ "moduleName" : "RSVP-MIB",
903
+ "oid" : "1.3.6.1.2.1.51.1.2.1.30",
904
+ "status" : "current",
905
+ "syntax" : {
906
+ "type" : { "module" :"", "name" : "Integer32"},
907
+ },
908
+ "access" : "readwrite",
909
+ "units" : "bytes",
910
+ "description" :
911
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
912
+ is the end-to-end composed value for the
913
+ guaranteed service 'C' parameter. A return of
914
+ zero or noSuchValue indicates one of the fol-
915
+ lowing conditions:
916
+
917
+ the invalid bit was set
918
+ the parameter was not present
919
+
920
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
921
+ returns zero or noSuchValue.""",
922
+ }, # column
923
+ "rsvpSenderAdspecGuaranteedDtot" : {
924
+ "nodetype" : "column",
925
+ "moduleName" : "RSVP-MIB",
926
+ "oid" : "1.3.6.1.2.1.51.1.2.1.31",
927
+ "status" : "current",
928
+ "syntax" : {
929
+ "type" : { "module" :"", "name" : "Integer32"},
930
+ },
931
+ "access" : "readwrite",
932
+ "units" : "microseconds",
933
+ "description" :
934
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
935
+ is the end-to-end composed value for the
936
+ guaranteed service 'D' parameter. A return of
937
+ zero or noSuchValue indicates one of the fol-
938
+ lowing conditions:
939
+
940
+ the invalid bit was set
941
+ the parameter was not present
942
+
943
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
944
+ returns zero or noSuchValue.""",
945
+ }, # column
946
+ "rsvpSenderAdspecGuaranteedCsum" : {
947
+ "nodetype" : "column",
948
+ "moduleName" : "RSVP-MIB",
949
+ "oid" : "1.3.6.1.2.1.51.1.2.1.32",
950
+ "status" : "current",
951
+ "syntax" : {
952
+ "type" : { "module" :"", "name" : "Integer32"},
953
+ },
954
+ "access" : "readwrite",
955
+ "units" : "bytes",
956
+ "description" :
957
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
958
+ is the composed value for the guaranteed ser-
959
+ vice 'C' parameter since the last reshaping
960
+ point. A return of zero or noSuchValue indi-
961
+ cates one of the following conditions:
962
+
963
+ the invalid bit was set
964
+ the parameter was not present
965
+
966
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
967
+ returns zero or noSuchValue.""",
968
+ }, # column
969
+ "rsvpSenderAdspecGuaranteedDsum" : {
970
+ "nodetype" : "column",
971
+ "moduleName" : "RSVP-MIB",
972
+ "oid" : "1.3.6.1.2.1.51.1.2.1.33",
973
+ "status" : "current",
974
+ "syntax" : {
975
+ "type" : { "module" :"", "name" : "Integer32"},
976
+ },
977
+ "access" : "readwrite",
978
+ "units" : "microseconds",
979
+ "description" :
980
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
981
+ is the composed value for the guaranteed ser-
982
+ vice 'D' parameter since the last reshaping
983
+ point. A return of zero or noSuchValue indi-
984
+ cates one of the following conditions:
985
+
986
+ the invalid bit was set
987
+ the parameter was not present
988
+
989
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
990
+ returns zero or noSuchValue.""",
991
+ }, # column
992
+ "rsvpSenderAdspecGuaranteedHopCount" : {
993
+ "nodetype" : "column",
994
+ "moduleName" : "RSVP-MIB",
995
+ "oid" : "1.3.6.1.2.1.51.1.2.1.34",
996
+ "status" : "current",
997
+ "syntax" : {
998
+ "type" : {
999
+ "basetype" : "Integer32",
1000
+ "ranges" : [
1001
+ {
1002
+ "min" : "0",
1003
+ "max" : "65535"
1004
+ },
1005
+ ],
1006
+ "range" : {
1007
+ "min" : "0",
1008
+ "max" : "65535"
1009
+ },
1010
+ },
1011
+ },
1012
+ "access" : "readwrite",
1013
+ "description" :
1014
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
1015
+ is the service-specific override of the hop
1016
+ count general characterization parameter from
1017
+ the ADSPEC. A return of zero or noSuchValue
1018
+ indicates one of the following conditions:
1019
+
1020
+ the invalid bit was set
1021
+ the parameter was not present
1022
+
1023
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
1024
+ returns zero or noSuchValue.""",
1025
+ }, # column
1026
+ "rsvpSenderAdspecGuaranteedPathBw" : {
1027
+ "nodetype" : "column",
1028
+ "moduleName" : "RSVP-MIB",
1029
+ "oid" : "1.3.6.1.2.1.51.1.2.1.35",
1030
+ "status" : "current",
1031
+ "syntax" : {
1032
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
1033
+ },
1034
+ "access" : "readwrite",
1035
+ "units" : "bits per second",
1036
+ "description" :
1037
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
1038
+ is the service-specific override of the path
1039
+ bandwidth estimate general characterization
1040
+ parameter from the ADSPEC. A return of zero or
1041
+ noSuchValue indicates one of the following con-
1042
+ ditions:
1043
+
1044
+ the invalid bit was set
1045
+ the parameter was not present
1046
+
1047
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
1048
+ returns zero or noSuchValue.""",
1049
+ }, # column
1050
+ "rsvpSenderAdspecGuaranteedMinLatency" : {
1051
+ "nodetype" : "column",
1052
+ "moduleName" : "RSVP-MIB",
1053
+ "oid" : "1.3.6.1.2.1.51.1.2.1.36",
1054
+ "status" : "current",
1055
+ "syntax" : {
1056
+ "type" : { "module" :"", "name" : "Integer32"},
1057
+ },
1058
+ "access" : "readwrite",
1059
+ "units" : "microseconds",
1060
+ "description" :
1061
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
1062
+ is the service-specific override of the minimum
1063
+ path latency general characterization parameter
1064
+ from the ADSPEC. A return of zero or noSuch-
1065
+ Value indicates one of the following condi-
1066
+ tions:
1067
+
1068
+ the invalid bit was set
1069
+ the parameter was not present
1070
+
1071
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
1072
+ returns zero or noSuchValue.""",
1073
+ }, # column
1074
+ "rsvpSenderAdspecGuaranteedMtu" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "RSVP-MIB",
1077
+ "oid" : "1.3.6.1.2.1.51.1.2.1.37",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : {
1081
+ "basetype" : "Integer32",
1082
+ "ranges" : [
1083
+ {
1084
+ "min" : "0",
1085
+ "max" : "65535"
1086
+ },
1087
+ ],
1088
+ "range" : {
1089
+ "min" : "0",
1090
+ "max" : "65535"
1091
+ },
1092
+ },
1093
+ },
1094
+ "access" : "readwrite",
1095
+ "units" : "bytes",
1096
+ "description" :
1097
+ """If rsvpSenderAdspecGuaranteedSvc is TRUE, this
1098
+ is the service-specific override of the com-
1099
+ posed Maximum Transmission Unit general charac-
1100
+ terization parameter from the ADSPEC. A return
1101
+ of zero or noSuchValue indicates one of the
1102
+ following conditions:
1103
+
1104
+ the invalid bit was set
1105
+ the parameter was not present
1106
+
1107
+ If rsvpSenderAdspecGuaranteedSvc is FALSE, this
1108
+ returns zero or noSuchValue.""",
1109
+ }, # column
1110
+ "rsvpSenderAdspecCtrlLoadSvc" : {
1111
+ "nodetype" : "column",
1112
+ "moduleName" : "RSVP-MIB",
1113
+ "oid" : "1.3.6.1.2.1.51.1.2.1.38",
1114
+ "status" : "current",
1115
+ "syntax" : {
1116
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1117
+ },
1118
+ "access" : "readwrite",
1119
+ "description" :
1120
+ """If TRUE, the ADSPEC contains a Controlled Load
1121
+ Service fragment. If FALSE, the ADSPEC does
1122
+ not contain a Controlled Load Service frag-
1123
+ ment.""",
1124
+ }, # column
1125
+ "rsvpSenderAdspecCtrlLoadBreak" : {
1126
+ "nodetype" : "column",
1127
+ "moduleName" : "RSVP-MIB",
1128
+ "oid" : "1.3.6.1.2.1.51.1.2.1.39",
1129
+ "status" : "current",
1130
+ "syntax" : {
1131
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1132
+ },
1133
+ "access" : "readwrite",
1134
+ "description" :
1135
+ """If TRUE, the Controlled Load Service fragment
1136
+ has its 'break' bit set, indicating that one or
1137
+ more nodes along the path do not support the
1138
+ controlled load service. If FALSE, and
1139
+ rsvpSenderAdspecCtrlLoadSvc is TRUE, the
1140
+ 'break' bit is not set.
1141
+
1142
+ If rsvpSenderAdspecCtrlLoadSvc is FALSE, this
1143
+ returns FALSE or noSuchValue.""",
1144
+ }, # column
1145
+ "rsvpSenderAdspecCtrlLoadHopCount" : {
1146
+ "nodetype" : "column",
1147
+ "moduleName" : "RSVP-MIB",
1148
+ "oid" : "1.3.6.1.2.1.51.1.2.1.40",
1149
+ "status" : "current",
1150
+ "syntax" : {
1151
+ "type" : {
1152
+ "basetype" : "Integer32",
1153
+ "ranges" : [
1154
+ {
1155
+ "min" : "0",
1156
+ "max" : "65535"
1157
+ },
1158
+ ],
1159
+ "range" : {
1160
+ "min" : "0",
1161
+ "max" : "65535"
1162
+ },
1163
+ },
1164
+ },
1165
+ "access" : "readwrite",
1166
+ "description" :
1167
+ """If rsvpSenderAdspecCtrlLoadSvc is TRUE, this
1168
+ is the service-specific override of the hop
1169
+ count general characterization parameter from
1170
+ the ADSPEC. A return of zero or noSuchValue
1171
+ indicates one of the following conditions:
1172
+
1173
+ the invalid bit was set
1174
+ the parameter was not present
1175
+
1176
+ If rsvpSenderAdspecCtrlLoadSvc is FALSE, this
1177
+ returns zero or noSuchValue.""",
1178
+ }, # column
1179
+ "rsvpSenderAdspecCtrlLoadPathBw" : {
1180
+ "nodetype" : "column",
1181
+ "moduleName" : "RSVP-MIB",
1182
+ "oid" : "1.3.6.1.2.1.51.1.2.1.41",
1183
+ "status" : "current",
1184
+ "syntax" : {
1185
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
1186
+ },
1187
+ "access" : "readwrite",
1188
+ "units" : "bits per second",
1189
+ "description" :
1190
+ """If rsvpSenderAdspecCtrlLoadSvc is TRUE, this
1191
+ is the service-specific override of the path
1192
+ bandwidth estimate general characterization
1193
+ parameter from the ADSPEC. A return of zero or
1194
+ noSuchValue indicates one of the following con-
1195
+ ditions:
1196
+
1197
+ the invalid bit was set
1198
+ the parameter was not present
1199
+
1200
+ If rsvpSenderAdspecCtrlLoadSvc is FALSE, this
1201
+ returns zero or noSuchValue.""",
1202
+ }, # column
1203
+ "rsvpSenderAdspecCtrlLoadMinLatency" : {
1204
+ "nodetype" : "column",
1205
+ "moduleName" : "RSVP-MIB",
1206
+ "oid" : "1.3.6.1.2.1.51.1.2.1.42",
1207
+ "status" : "current",
1208
+ "syntax" : {
1209
+ "type" : { "module" :"", "name" : "Integer32"},
1210
+ },
1211
+ "access" : "readwrite",
1212
+ "units" : "microseconds",
1213
+ "description" :
1214
+ """If rsvpSenderAdspecCtrlLoadSvc is TRUE, this
1215
+ is the service-specific override of the minimum
1216
+ path latency general characterization parameter
1217
+ from the ADSPEC. A return of zero or noSuch-
1218
+ Value indicates one of the following condi-
1219
+ tions:
1220
+
1221
+ the invalid bit was set
1222
+ the parameter was not present
1223
+
1224
+ If rsvpSenderAdspecCtrlLoadSvc is FALSE, this
1225
+ returns zero or noSuchValue.""",
1226
+ }, # column
1227
+ "rsvpSenderAdspecCtrlLoadMtu" : {
1228
+ "nodetype" : "column",
1229
+ "moduleName" : "RSVP-MIB",
1230
+ "oid" : "1.3.6.1.2.1.51.1.2.1.43",
1231
+ "status" : "current",
1232
+ "syntax" : {
1233
+ "type" : {
1234
+ "basetype" : "Integer32",
1235
+ "ranges" : [
1236
+ {
1237
+ "min" : "0",
1238
+ "max" : "65535"
1239
+ },
1240
+ ],
1241
+ "range" : {
1242
+ "min" : "0",
1243
+ "max" : "65535"
1244
+ },
1245
+ },
1246
+ },
1247
+ "access" : "readwrite",
1248
+ "units" : "bytes",
1249
+ "description" :
1250
+ """If rsvpSenderAdspecCtrlLoadSvc is TRUE, this
1251
+ is the service-specific override of the com-
1252
+ posed Maximum Transmission Unit general charac-
1253
+ terization parameter from the ADSPEC. A return
1254
+ of zero or noSuchValue indicates one of the
1255
+ following conditions:
1256
+
1257
+ the invalid bit was set
1258
+ the parameter was not present
1259
+
1260
+ If rsvpSenderAdspecCtrlLoadSvc is FALSE, this
1261
+ returns zero or noSuchValue.""",
1262
+ }, # column
1263
+ "rsvpSenderStatus" : {
1264
+ "nodetype" : "column",
1265
+ "moduleName" : "RSVP-MIB",
1266
+ "oid" : "1.3.6.1.2.1.51.1.2.1.44",
1267
+ "status" : "current",
1268
+ "syntax" : {
1269
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1270
+ },
1271
+ "access" : "readwrite",
1272
+ "description" :
1273
+ """'active' for all active PATH messages. This
1274
+ object may be used to install static PATH in-
1275
+ formation or delete PATH information.""",
1276
+ }, # column
1277
+ "rsvpSenderTTL" : {
1278
+ "nodetype" : "column",
1279
+ "moduleName" : "RSVP-MIB",
1280
+ "oid" : "1.3.6.1.2.1.51.1.2.1.45",
1281
+ "status" : "current",
1282
+ "syntax" : {
1283
+ "type" : {
1284
+ "basetype" : "Integer32",
1285
+ "ranges" : [
1286
+ {
1287
+ "min" : "0",
1288
+ "max" : "255"
1289
+ },
1290
+ ],
1291
+ "range" : {
1292
+ "min" : "0",
1293
+ "max" : "255"
1294
+ },
1295
+ },
1296
+ },
1297
+ "access" : "readonly",
1298
+ "description" :
1299
+ """The TTL value in the RSVP header that was last
1300
+ received.""",
1301
+ }, # column
1302
+ "rsvpSenderOutInterfaceTable" : {
1303
+ "nodetype" : "table",
1304
+ "moduleName" : "RSVP-MIB",
1305
+ "oid" : "1.3.6.1.2.1.51.1.3",
1306
+ "status" : "current",
1307
+ "description" :
1308
+ """List of outgoing interfaces that PATH messages
1309
+ use. The ifIndex is the ifIndex value of the
1310
+ egress interface.""",
1311
+ }, # table
1312
+ "rsvpSenderOutInterfaceEntry" : {
1313
+ "nodetype" : "row",
1314
+ "moduleName" : "RSVP-MIB",
1315
+ "oid" : "1.3.6.1.2.1.51.1.3.1",
1316
+ "status" : "current",
1317
+ "linkage" : [
1318
+ "rsvpSessionNumber",
1319
+ "rsvpSenderNumber",
1320
+ "ifIndex",
1321
+ ],
1322
+ "description" :
1323
+ """List of outgoing interfaces that a particular
1324
+ PATH message has.""",
1325
+ }, # row
1326
+ "rsvpSenderOutInterfaceStatus" : {
1327
+ "nodetype" : "column",
1328
+ "moduleName" : "RSVP-MIB",
1329
+ "oid" : "1.3.6.1.2.1.51.1.3.1.1",
1330
+ "status" : "current",
1331
+ "syntax" : {
1332
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1333
+ },
1334
+ "access" : "readonly",
1335
+ "description" :
1336
+ """'active' for all active PATH messages.""",
1337
+ }, # column
1338
+ "rsvpResvTable" : {
1339
+ "nodetype" : "table",
1340
+ "moduleName" : "RSVP-MIB",
1341
+ "oid" : "1.3.6.1.2.1.51.1.4",
1342
+ "status" : "current",
1343
+ "description" :
1344
+ """Information describing the state information
1345
+ displayed by receivers in RESV messages.""",
1346
+ }, # table
1347
+ "rsvpResvEntry" : {
1348
+ "nodetype" : "row",
1349
+ "moduleName" : "RSVP-MIB",
1350
+ "oid" : "1.3.6.1.2.1.51.1.4.1",
1351
+ "create" : "true",
1352
+ "status" : "current",
1353
+ "linkage" : [
1354
+ "rsvpSessionNumber",
1355
+ "rsvpResvNumber",
1356
+ ],
1357
+ "description" :
1358
+ """Information describing the state information
1359
+ displayed by a single receiver's RESV message
1360
+ concerning a single sender.""",
1361
+ }, # row
1362
+ "rsvpResvNumber" : {
1363
+ "nodetype" : "column",
1364
+ "moduleName" : "RSVP-MIB",
1365
+ "oid" : "1.3.6.1.2.1.51.1.4.1.1",
1366
+ "status" : "current",
1367
+ "syntax" : {
1368
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionNumber"},
1369
+ },
1370
+ "access" : "noaccess",
1371
+ "description" :
1372
+ """The number of this reservation request. This
1373
+ is for SNMP Indexing purposes only and has no
1374
+ relation to any protocol value.""",
1375
+ }, # column
1376
+ "rsvpResvType" : {
1377
+ "nodetype" : "column",
1378
+ "moduleName" : "RSVP-MIB",
1379
+ "oid" : "1.3.6.1.2.1.51.1.4.1.2",
1380
+ "status" : "current",
1381
+ "syntax" : {
1382
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionType"},
1383
+ },
1384
+ "access" : "readwrite",
1385
+ "description" :
1386
+ """The type of session (IP4, IP6, IP6 with flow
1387
+ information, etc).""",
1388
+ }, # column
1389
+ "rsvpResvDestAddr" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "RSVP-MIB",
1392
+ "oid" : "1.3.6.1.2.1.51.1.4.1.3",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : {
1396
+ "basetype" : "OctetString",
1397
+ "ranges" : [
1398
+ {
1399
+ "min" : "4",
1400
+ "max" : "16"
1401
+ },
1402
+ ],
1403
+ "range" : {
1404
+ "min" : "4",
1405
+ "max" : "16"
1406
+ },
1407
+ },
1408
+ },
1409
+ "access" : "readwrite",
1410
+ "description" :
1411
+ """The destination address used by all senders in
1412
+ this session. This object may not be changed
1413
+ when the value of the RowStatus object is 'ac-
1414
+ tive'.""",
1415
+ }, # column
1416
+ "rsvpResvSenderAddr" : {
1417
+ "nodetype" : "column",
1418
+ "moduleName" : "RSVP-MIB",
1419
+ "oid" : "1.3.6.1.2.1.51.1.4.1.4",
1420
+ "status" : "current",
1421
+ "syntax" : {
1422
+ "type" : {
1423
+ "basetype" : "OctetString",
1424
+ "ranges" : [
1425
+ {
1426
+ "min" : "4",
1427
+ "max" : "16"
1428
+ },
1429
+ ],
1430
+ "range" : {
1431
+ "min" : "4",
1432
+ "max" : "16"
1433
+ },
1434
+ },
1435
+ },
1436
+ "access" : "readwrite",
1437
+ "description" :
1438
+ """The source address of the sender selected by
1439
+ this reservation. The value of all zeroes in-
1440
+ dicates 'all senders'. This object may not be
1441
+ changed when the value of the RowStatus object
1442
+ is 'active'.""",
1443
+ }, # column
1444
+ "rsvpResvDestAddrLength" : {
1445
+ "nodetype" : "column",
1446
+ "moduleName" : "RSVP-MIB",
1447
+ "oid" : "1.3.6.1.2.1.51.1.4.1.5",
1448
+ "status" : "current",
1449
+ "syntax" : {
1450
+ "type" : {
1451
+ "basetype" : "Integer32",
1452
+ "ranges" : [
1453
+ {
1454
+ "min" : "0",
1455
+ "max" : "128"
1456
+ },
1457
+ ],
1458
+ "range" : {
1459
+ "min" : "0",
1460
+ "max" : "128"
1461
+ },
1462
+ },
1463
+ },
1464
+ "access" : "readwrite",
1465
+ "description" :
1466
+ """The length of the destination address in bits.
1467
+ This is the CIDR Prefix Length, which for IP4
1468
+ hosts and multicast addresses is 32 bits. This
1469
+ object may not be changed when the value of the
1470
+ RowStatus object is 'active'.""",
1471
+ }, # column
1472
+ "rsvpResvSenderAddrLength" : {
1473
+ "nodetype" : "column",
1474
+ "moduleName" : "RSVP-MIB",
1475
+ "oid" : "1.3.6.1.2.1.51.1.4.1.6",
1476
+ "status" : "current",
1477
+ "syntax" : {
1478
+ "type" : {
1479
+ "basetype" : "Integer32",
1480
+ "ranges" : [
1481
+ {
1482
+ "min" : "0",
1483
+ "max" : "128"
1484
+ },
1485
+ ],
1486
+ "range" : {
1487
+ "min" : "0",
1488
+ "max" : "128"
1489
+ },
1490
+ },
1491
+ },
1492
+ "access" : "readwrite",
1493
+ "description" :
1494
+ """The length of the sender's address in bits.
1495
+ This is the CIDR Prefix Length, which for IP4
1496
+ hosts and multicast addresses is 32 bits. This
1497
+ object may not be changed when the value of the
1498
+ RowStatus object is 'active'.""",
1499
+ }, # column
1500
+ "rsvpResvProtocol" : {
1501
+ "nodetype" : "column",
1502
+ "moduleName" : "RSVP-MIB",
1503
+ "oid" : "1.3.6.1.2.1.51.1.4.1.7",
1504
+ "status" : "current",
1505
+ "syntax" : {
1506
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Protocol"},
1507
+ },
1508
+ "access" : "readwrite",
1509
+ "description" :
1510
+ """The IP Protocol used by this session. This
1511
+ object may not be changed when the value of the
1512
+ RowStatus object is 'active'.""",
1513
+ }, # column
1514
+ "rsvpResvDestPort" : {
1515
+ "nodetype" : "column",
1516
+ "moduleName" : "RSVP-MIB",
1517
+ "oid" : "1.3.6.1.2.1.51.1.4.1.8",
1518
+ "status" : "current",
1519
+ "syntax" : {
1520
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
1521
+ },
1522
+ "access" : "readwrite",
1523
+ "description" :
1524
+ """The UDP or TCP port number used as a destina-
1525
+ tion port for all senders in this session. If
1526
+ the IP protocol in use, specified by
1527
+ rsvpResvProtocol, is 50 (ESP) or 51 (AH), this
1528
+ represents a virtual destination port number.
1529
+ A value of zero indicates that the IP protocol
1530
+ in use does not have ports. This object may
1531
+ not be changed when the value of the RowStatus
1532
+ object is 'active'.""",
1533
+ }, # column
1534
+ "rsvpResvPort" : {
1535
+ "nodetype" : "column",
1536
+ "moduleName" : "RSVP-MIB",
1537
+ "oid" : "1.3.6.1.2.1.51.1.4.1.9",
1538
+ "status" : "current",
1539
+ "syntax" : {
1540
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
1541
+ },
1542
+ "access" : "readwrite",
1543
+ "description" :
1544
+ """The UDP or TCP port number used as a source
1545
+ port for this sender in this session. If the
1546
+ IP protocol in use, specified by rsvpResvProto-
1547
+ col is 50 (ESP) or 51 (AH), this represents a
1548
+ generalized port identifier (GPI). A value of
1549
+ zero indicates that the IP protocol in use does
1550
+ not have ports. This object may not be changed
1551
+ when the value of the RowStatus object is 'ac-
1552
+ tive'.""",
1553
+ }, # column
1554
+ "rsvpResvHopAddr" : {
1555
+ "nodetype" : "column",
1556
+ "moduleName" : "RSVP-MIB",
1557
+ "oid" : "1.3.6.1.2.1.51.1.4.1.10",
1558
+ "status" : "current",
1559
+ "syntax" : {
1560
+ "type" : {
1561
+ "basetype" : "OctetString",
1562
+ "ranges" : [
1563
+ {
1564
+ "min" : "4",
1565
+ "max" : "16"
1566
+ },
1567
+ ],
1568
+ "range" : {
1569
+ "min" : "4",
1570
+ "max" : "16"
1571
+ },
1572
+ },
1573
+ },
1574
+ "access" : "readwrite",
1575
+ "description" :
1576
+ """The address used by the next RSVP hop (which
1577
+ may be the ultimate receiver).""",
1578
+ }, # column
1579
+ "rsvpResvHopLih" : {
1580
+ "nodetype" : "column",
1581
+ "moduleName" : "RSVP-MIB",
1582
+ "oid" : "1.3.6.1.2.1.51.1.4.1.11",
1583
+ "status" : "current",
1584
+ "syntax" : {
1585
+ "type" : { "module" :"", "name" : "Integer32"},
1586
+ },
1587
+ "access" : "readwrite",
1588
+ "description" :
1589
+ """The Logical Interface Handle received from the
1590
+ previous RSVP hop (which may be the ultimate
1591
+ receiver).""",
1592
+ }, # column
1593
+ "rsvpResvInterface" : {
1594
+ "nodetype" : "column",
1595
+ "moduleName" : "RSVP-MIB",
1596
+ "oid" : "1.3.6.1.2.1.51.1.4.1.12",
1597
+ "status" : "current",
1598
+ "syntax" : {
1599
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
1600
+ },
1601
+ "access" : "readwrite",
1602
+ "description" :
1603
+ """The ifIndex value of the interface on which
1604
+ this RESV message was most recently received.""",
1605
+ }, # column
1606
+ "rsvpResvService" : {
1607
+ "nodetype" : "column",
1608
+ "moduleName" : "RSVP-MIB",
1609
+ "oid" : "1.3.6.1.2.1.51.1.4.1.13",
1610
+ "status" : "current",
1611
+ "syntax" : {
1612
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "QosService"},
1613
+ },
1614
+ "access" : "readwrite",
1615
+ "description" :
1616
+ """The QoS Service classification requested by
1617
+ the receiver.""",
1618
+ }, # column
1619
+ "rsvpResvTSpecRate" : {
1620
+ "nodetype" : "column",
1621
+ "moduleName" : "RSVP-MIB",
1622
+ "oid" : "1.3.6.1.2.1.51.1.4.1.14",
1623
+ "status" : "current",
1624
+ "syntax" : {
1625
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
1626
+ },
1627
+ "access" : "readwrite",
1628
+ "units" : "bits per second",
1629
+ "description" :
1630
+ """The Average Bit Rate of the sender's data
1631
+ stream. Within a transmission burst, the ar-
1632
+ rival rate may be as fast as rsvpResvTSpec-
1633
+ PeakRate (if supported by the service model);
1634
+ however, averaged across two or more burst in-
1635
+ tervals, the rate should not exceed
1636
+ rsvpResvTSpecRate.
1637
+
1638
+ Note that this is a prediction, often based on
1639
+ the general capability of a type of codec or
1640
+ particular encoding; the measured average rate
1641
+ may be significantly lower.""",
1642
+ }, # column
1643
+ "rsvpResvTSpecPeakRate" : {
1644
+ "nodetype" : "column",
1645
+ "moduleName" : "RSVP-MIB",
1646
+ "oid" : "1.3.6.1.2.1.51.1.4.1.15",
1647
+ "status" : "current",
1648
+ "syntax" : {
1649
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
1650
+ },
1651
+ "access" : "readwrite",
1652
+ "units" : "bits per second",
1653
+ "description" :
1654
+ """The Peak Bit Rate of the sender's data stream.
1655
+ Traffic arrival is not expected to exceed this
1656
+ rate at any time, apart from the effects of
1657
+ jitter in the network. If not specified in the
1658
+ TSpec, this returns zero or noSuchValue.""",
1659
+ }, # column
1660
+ "rsvpResvTSpecBurst" : {
1661
+ "nodetype" : "column",
1662
+ "moduleName" : "RSVP-MIB",
1663
+ "oid" : "1.3.6.1.2.1.51.1.4.1.16",
1664
+ "status" : "current",
1665
+ "syntax" : {
1666
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BurstSize"},
1667
+ },
1668
+ "access" : "readwrite",
1669
+ "units" : "bytes",
1670
+ "description" :
1671
+ """The size of the largest burst expected from
1672
+ the sender at a time.
1673
+
1674
+ If this is less than the sender's advertised
1675
+ burst size, the receiver is asking the network
1676
+ to provide flow pacing beyond what would be
1677
+ provided under normal circumstances. Such pac-
1678
+ ing is at the network's option.""",
1679
+ }, # column
1680
+ "rsvpResvTSpecMinTU" : {
1681
+ "nodetype" : "column",
1682
+ "moduleName" : "RSVP-MIB",
1683
+ "oid" : "1.3.6.1.2.1.51.1.4.1.17",
1684
+ "status" : "current",
1685
+ "syntax" : {
1686
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
1687
+ },
1688
+ "access" : "readwrite",
1689
+ "description" :
1690
+ """The minimum message size for this flow. The
1691
+ policing algorithm will treat smaller messages
1692
+ as though they are this size.""",
1693
+ }, # column
1694
+ "rsvpResvTSpecMaxTU" : {
1695
+ "nodetype" : "column",
1696
+ "moduleName" : "RSVP-MIB",
1697
+ "oid" : "1.3.6.1.2.1.51.1.4.1.18",
1698
+ "status" : "current",
1699
+ "syntax" : {
1700
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
1701
+ },
1702
+ "access" : "readwrite",
1703
+ "description" :
1704
+ """The maximum message size for this flow. The
1705
+ admission algorithm will reject TSpecs whose
1706
+ Maximum Transmission Unit, plus the interface
1707
+ headers, exceed the interface MTU.""",
1708
+ }, # column
1709
+ "rsvpResvRSpecRate" : {
1710
+ "nodetype" : "column",
1711
+ "moduleName" : "RSVP-MIB",
1712
+ "oid" : "1.3.6.1.2.1.51.1.4.1.19",
1713
+ "status" : "current",
1714
+ "syntax" : {
1715
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
1716
+ },
1717
+ "access" : "readwrite",
1718
+ "units" : "bits per second",
1719
+ "description" :
1720
+ """If the requested service is Guaranteed, as
1721
+ specified by rsvpResvService, this is the
1722
+ clearing rate that is being requested. Other-
1723
+ wise, it is zero, or the agent may return
1724
+ noSuchValue.""",
1725
+ }, # column
1726
+ "rsvpResvRSpecSlack" : {
1727
+ "nodetype" : "column",
1728
+ "moduleName" : "RSVP-MIB",
1729
+ "oid" : "1.3.6.1.2.1.51.1.4.1.20",
1730
+ "status" : "current",
1731
+ "syntax" : {
1732
+ "type" : { "module" :"", "name" : "Integer32"},
1733
+ },
1734
+ "access" : "readwrite",
1735
+ "units" : "microseconds",
1736
+ "description" :
1737
+ """If the requested service is Guaranteed, as
1738
+ specified by rsvpResvService, this is the delay
1739
+ slack. Otherwise, it is zero, or the agent may
1740
+ return noSuchValue.""",
1741
+ }, # column
1742
+ "rsvpResvInterval" : {
1743
+ "nodetype" : "column",
1744
+ "moduleName" : "RSVP-MIB",
1745
+ "oid" : "1.3.6.1.2.1.51.1.4.1.21",
1746
+ "status" : "current",
1747
+ "syntax" : {
1748
+ "type" : { "module" :"RSVP-MIB", "name" : "RefreshInterval"},
1749
+ },
1750
+ "access" : "readwrite",
1751
+ "description" :
1752
+ """The interval between refresh messages as ad-
1753
+ vertised by the Next Hop.""",
1754
+ }, # column
1755
+ "rsvpResvScope" : {
1756
+ "nodetype" : "column",
1757
+ "moduleName" : "RSVP-MIB",
1758
+ "oid" : "1.3.6.1.2.1.51.1.4.1.22",
1759
+ "status" : "current",
1760
+ "syntax" : {
1761
+ "type" : {
1762
+ "basetype" : "OctetString",
1763
+ "ranges" : [
1764
+ {
1765
+ "min" : "0",
1766
+ "max" : "65536"
1767
+ },
1768
+ ],
1769
+ "range" : {
1770
+ "min" : "0",
1771
+ "max" : "65536"
1772
+ },
1773
+ },
1774
+ },
1775
+ "access" : "readwrite",
1776
+ "description" :
1777
+ """The contents of the scope object, displayed as
1778
+ an uninterpreted string of octets, including
1779
+ the object header. In the absence of such an
1780
+ object, this should be of zero length.
1781
+
1782
+ If the length is non-zero, this contains a
1783
+ series of IP4 or IP6 addresses.""",
1784
+ }, # column
1785
+ "rsvpResvShared" : {
1786
+ "nodetype" : "column",
1787
+ "moduleName" : "RSVP-MIB",
1788
+ "oid" : "1.3.6.1.2.1.51.1.4.1.23",
1789
+ "status" : "current",
1790
+ "syntax" : {
1791
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1792
+ },
1793
+ "access" : "readwrite",
1794
+ "description" :
1795
+ """If TRUE, a reservation shared among senders is
1796
+ requested. If FALSE, a reservation specific to
1797
+ this sender is requested.""",
1798
+ }, # column
1799
+ "rsvpResvExplicit" : {
1800
+ "nodetype" : "column",
1801
+ "moduleName" : "RSVP-MIB",
1802
+ "oid" : "1.3.6.1.2.1.51.1.4.1.24",
1803
+ "status" : "current",
1804
+ "syntax" : {
1805
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1806
+ },
1807
+ "access" : "readwrite",
1808
+ "description" :
1809
+ """If TRUE, individual senders are listed using
1810
+ Filter Specifications. If FALSE, all senders
1811
+ are implicitly selected. The Scope Object will
1812
+ contain a list of senders that need to receive
1813
+ this reservation request for the purpose of
1814
+ routing the RESV message.""",
1815
+ }, # column
1816
+ "rsvpResvRSVPHop" : {
1817
+ "nodetype" : "column",
1818
+ "moduleName" : "RSVP-MIB",
1819
+ "oid" : "1.3.6.1.2.1.51.1.4.1.25",
1820
+ "status" : "current",
1821
+ "syntax" : {
1822
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1823
+ },
1824
+ "access" : "readwrite",
1825
+ "description" :
1826
+ """If TRUE, the node believes that the previous
1827
+ IP hop is an RSVP hop. If FALSE, the node be-
1828
+ lieves that the previous IP hop may not be an
1829
+ RSVP hop.""",
1830
+ }, # column
1831
+ "rsvpResvLastChange" : {
1832
+ "nodetype" : "column",
1833
+ "moduleName" : "RSVP-MIB",
1834
+ "oid" : "1.3.6.1.2.1.51.1.4.1.26",
1835
+ "status" : "current",
1836
+ "syntax" : {
1837
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1838
+ },
1839
+ "access" : "readonly",
1840
+ "description" :
1841
+ """The time of the last change in this reserva-
1842
+ tion request; This is either the first time it
1843
+ was received or the time of the most recent
1844
+ change in parameters.""",
1845
+ }, # column
1846
+ "rsvpResvPolicy" : {
1847
+ "nodetype" : "column",
1848
+ "moduleName" : "RSVP-MIB",
1849
+ "oid" : "1.3.6.1.2.1.51.1.4.1.27",
1850
+ "status" : "current",
1851
+ "syntax" : {
1852
+ "type" : {
1853
+ "basetype" : "OctetString",
1854
+ "ranges" : [
1855
+ {
1856
+ "min" : "0",
1857
+ "max" : "65536"
1858
+ },
1859
+ ],
1860
+ "range" : {
1861
+ "min" : "0",
1862
+ "max" : "65536"
1863
+ },
1864
+ },
1865
+ },
1866
+ "access" : "readwrite",
1867
+ "description" :
1868
+ """The contents of the policy object, displayed
1869
+ as an uninterpreted string of octets, including
1870
+ the object header. In the absence of such an
1871
+ object, this should be of zero length.""",
1872
+ }, # column
1873
+ "rsvpResvStatus" : {
1874
+ "nodetype" : "column",
1875
+ "moduleName" : "RSVP-MIB",
1876
+ "oid" : "1.3.6.1.2.1.51.1.4.1.28",
1877
+ "status" : "current",
1878
+ "syntax" : {
1879
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1880
+ },
1881
+ "access" : "readwrite",
1882
+ "description" :
1883
+ """'active' for all active RESV messages. This
1884
+ object may be used to install static RESV in-
1885
+ formation or delete RESV information.""",
1886
+ }, # column
1887
+ "rsvpResvTTL" : {
1888
+ "nodetype" : "column",
1889
+ "moduleName" : "RSVP-MIB",
1890
+ "oid" : "1.3.6.1.2.1.51.1.4.1.29",
1891
+ "status" : "current",
1892
+ "syntax" : {
1893
+ "type" : {
1894
+ "basetype" : "Integer32",
1895
+ "ranges" : [
1896
+ {
1897
+ "min" : "0",
1898
+ "max" : "255"
1899
+ },
1900
+ ],
1901
+ "range" : {
1902
+ "min" : "0",
1903
+ "max" : "255"
1904
+ },
1905
+ },
1906
+ },
1907
+ "access" : "readonly",
1908
+ "description" :
1909
+ """The TTL value in the RSVP header that was last
1910
+ received.""",
1911
+ }, # column
1912
+ "rsvpResvFlowId" : {
1913
+ "nodetype" : "column",
1914
+ "moduleName" : "RSVP-MIB",
1915
+ "oid" : "1.3.6.1.2.1.51.1.4.1.30",
1916
+ "status" : "current",
1917
+ "syntax" : {
1918
+ "type" : {
1919
+ "basetype" : "Integer32",
1920
+ "ranges" : [
1921
+ {
1922
+ "min" : "0",
1923
+ "max" : "16777215"
1924
+ },
1925
+ ],
1926
+ "range" : {
1927
+ "min" : "0",
1928
+ "max" : "16777215"
1929
+ },
1930
+ },
1931
+ },
1932
+ "access" : "readonly",
1933
+ "description" :
1934
+ """The flow ID that this receiver is using, if
1935
+ this is an IPv6 session.""",
1936
+ }, # column
1937
+ "rsvpResvFwdTable" : {
1938
+ "nodetype" : "table",
1939
+ "moduleName" : "RSVP-MIB",
1940
+ "oid" : "1.3.6.1.2.1.51.1.5",
1941
+ "status" : "current",
1942
+ "description" :
1943
+ """Information describing the state information
1944
+ displayed upstream in RESV messages.""",
1945
+ }, # table
1946
+ "rsvpResvFwdEntry" : {
1947
+ "nodetype" : "row",
1948
+ "moduleName" : "RSVP-MIB",
1949
+ "oid" : "1.3.6.1.2.1.51.1.5.1",
1950
+ "status" : "current",
1951
+ "linkage" : [
1952
+ "rsvpSessionNumber",
1953
+ "rsvpResvFwdNumber",
1954
+ ],
1955
+ "description" :
1956
+ """Information describing the state information
1957
+ displayed upstream in an RESV message concern-
1958
+ ing a single sender.""",
1959
+ }, # row
1960
+ "rsvpResvFwdNumber" : {
1961
+ "nodetype" : "column",
1962
+ "moduleName" : "RSVP-MIB",
1963
+ "oid" : "1.3.6.1.2.1.51.1.5.1.1",
1964
+ "status" : "current",
1965
+ "syntax" : {
1966
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionNumber"},
1967
+ },
1968
+ "access" : "noaccess",
1969
+ "description" :
1970
+ """The number of this reservation request. This
1971
+ is for SNMP Indexing purposes only and has no
1972
+ relation to any protocol value.""",
1973
+ }, # column
1974
+ "rsvpResvFwdType" : {
1975
+ "nodetype" : "column",
1976
+ "moduleName" : "RSVP-MIB",
1977
+ "oid" : "1.3.6.1.2.1.51.1.5.1.2",
1978
+ "status" : "current",
1979
+ "syntax" : {
1980
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "SessionType"},
1981
+ },
1982
+ "access" : "readonly",
1983
+ "description" :
1984
+ """The type of session (IP4, IP6, IP6 with flow
1985
+ information, etc).""",
1986
+ }, # column
1987
+ "rsvpResvFwdDestAddr" : {
1988
+ "nodetype" : "column",
1989
+ "moduleName" : "RSVP-MIB",
1990
+ "oid" : "1.3.6.1.2.1.51.1.5.1.3",
1991
+ "status" : "current",
1992
+ "syntax" : {
1993
+ "type" : {
1994
+ "basetype" : "OctetString",
1995
+ "ranges" : [
1996
+ {
1997
+ "min" : "4",
1998
+ "max" : "16"
1999
+ },
2000
+ ],
2001
+ "range" : {
2002
+ "min" : "4",
2003
+ "max" : "16"
2004
+ },
2005
+ },
2006
+ },
2007
+ "access" : "readonly",
2008
+ "description" :
2009
+ """The destination address used by all senders in
2010
+ this session. This object may not be changed
2011
+ when the value of the RowStatus object is 'ac-
2012
+ tive'.""",
2013
+ }, # column
2014
+ "rsvpResvFwdSenderAddr" : {
2015
+ "nodetype" : "column",
2016
+ "moduleName" : "RSVP-MIB",
2017
+ "oid" : "1.3.6.1.2.1.51.1.5.1.4",
2018
+ "status" : "current",
2019
+ "syntax" : {
2020
+ "type" : {
2021
+ "basetype" : "OctetString",
2022
+ "ranges" : [
2023
+ {
2024
+ "min" : "4",
2025
+ "max" : "16"
2026
+ },
2027
+ ],
2028
+ "range" : {
2029
+ "min" : "4",
2030
+ "max" : "16"
2031
+ },
2032
+ },
2033
+ },
2034
+ "access" : "readonly",
2035
+ "description" :
2036
+ """The source address of the sender selected by
2037
+ this reservation. The value of all zeroes in-
2038
+ dicates 'all senders'. This object may not be
2039
+ changed when the value of the RowStatus object
2040
+ is 'active'.""",
2041
+ }, # column
2042
+ "rsvpResvFwdDestAddrLength" : {
2043
+ "nodetype" : "column",
2044
+ "moduleName" : "RSVP-MIB",
2045
+ "oid" : "1.3.6.1.2.1.51.1.5.1.5",
2046
+ "status" : "current",
2047
+ "syntax" : {
2048
+ "type" : {
2049
+ "basetype" : "Integer32",
2050
+ "ranges" : [
2051
+ {
2052
+ "min" : "0",
2053
+ "max" : "128"
2054
+ },
2055
+ ],
2056
+ "range" : {
2057
+ "min" : "0",
2058
+ "max" : "128"
2059
+ },
2060
+ },
2061
+ },
2062
+ "access" : "readonly",
2063
+ "description" :
2064
+ """The length of the destination address in bits.
2065
+ This is the CIDR Prefix Length, which for IP4
2066
+ hosts and multicast addresses is 32 bits. This
2067
+ object may not be changed when the value of the
2068
+ RowStatus object is 'active'.""",
2069
+ }, # column
2070
+ "rsvpResvFwdSenderAddrLength" : {
2071
+ "nodetype" : "column",
2072
+ "moduleName" : "RSVP-MIB",
2073
+ "oid" : "1.3.6.1.2.1.51.1.5.1.6",
2074
+ "status" : "current",
2075
+ "syntax" : {
2076
+ "type" : {
2077
+ "basetype" : "Integer32",
2078
+ "ranges" : [
2079
+ {
2080
+ "min" : "0",
2081
+ "max" : "128"
2082
+ },
2083
+ ],
2084
+ "range" : {
2085
+ "min" : "0",
2086
+ "max" : "128"
2087
+ },
2088
+ },
2089
+ },
2090
+ "access" : "readonly",
2091
+ "description" :
2092
+ """The length of the sender's address in bits.
2093
+ This is the CIDR Prefix Length, which for IP4
2094
+ hosts and multicast addresses is 32 bits. This
2095
+ object may not be changed when the value of the
2096
+ RowStatus object is 'active'.""",
2097
+ }, # column
2098
+ "rsvpResvFwdProtocol" : {
2099
+ "nodetype" : "column",
2100
+ "moduleName" : "RSVP-MIB",
2101
+ "oid" : "1.3.6.1.2.1.51.1.5.1.7",
2102
+ "status" : "current",
2103
+ "syntax" : {
2104
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Protocol"},
2105
+ },
2106
+ "access" : "readonly",
2107
+ "description" :
2108
+ """The IP Protocol used by a session. for secure
2109
+ sessions, this indicates IP Security. This ob-
2110
+ ject may not be changed when the value of the
2111
+ RowStatus object is 'active'.""",
2112
+ }, # column
2113
+ "rsvpResvFwdDestPort" : {
2114
+ "nodetype" : "column",
2115
+ "moduleName" : "RSVP-MIB",
2116
+ "oid" : "1.3.6.1.2.1.51.1.5.1.8",
2117
+ "status" : "current",
2118
+ "syntax" : {
2119
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
2120
+ },
2121
+ "access" : "readonly",
2122
+ "description" :
2123
+ """The UDP or TCP port number used as a destina-
2124
+ tion port for all senders in this session. If
2125
+ the IP protocol in use, specified by
2126
+ rsvpResvFwdProtocol, is 50 (ESP) or 51 (AH),
2127
+ this represents a virtual destination port
2128
+ number. A value of zero indicates that the IP
2129
+ protocol in use does not have ports. This ob-
2130
+ ject may not be changed when the value of the
2131
+ RowStatus object is 'active'.""",
2132
+ }, # column
2133
+ "rsvpResvFwdPort" : {
2134
+ "nodetype" : "column",
2135
+ "moduleName" : "RSVP-MIB",
2136
+ "oid" : "1.3.6.1.2.1.51.1.5.1.9",
2137
+ "status" : "current",
2138
+ "syntax" : {
2139
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "Port"},
2140
+ },
2141
+ "access" : "readonly",
2142
+ "description" :
2143
+ """The UDP or TCP port number used as a source
2144
+ port for this sender in this session. If the
2145
+ IP protocol in use, specified by
2146
+ rsvpResvFwdProtocol is 50 (ESP) or 51 (AH),
2147
+ this represents a generalized port identifier
2148
+ (GPI). A value of zero indicates that the IP
2149
+ protocol in use does not have ports. This ob-
2150
+ ject may not be changed when the value of the
2151
+ RowStatus object is 'active'.""",
2152
+ }, # column
2153
+ "rsvpResvFwdHopAddr" : {
2154
+ "nodetype" : "column",
2155
+ "moduleName" : "RSVP-MIB",
2156
+ "oid" : "1.3.6.1.2.1.51.1.5.1.10",
2157
+ "status" : "current",
2158
+ "syntax" : {
2159
+ "type" : {
2160
+ "basetype" : "OctetString",
2161
+ "ranges" : [
2162
+ {
2163
+ "min" : "4",
2164
+ "max" : "16"
2165
+ },
2166
+ ],
2167
+ "range" : {
2168
+ "min" : "4",
2169
+ "max" : "16"
2170
+ },
2171
+ },
2172
+ },
2173
+ "access" : "readonly",
2174
+ "description" :
2175
+ """The address of the (previous) RSVP that will
2176
+ receive this message.""",
2177
+ }, # column
2178
+ "rsvpResvFwdHopLih" : {
2179
+ "nodetype" : "column",
2180
+ "moduleName" : "RSVP-MIB",
2181
+ "oid" : "1.3.6.1.2.1.51.1.5.1.11",
2182
+ "status" : "current",
2183
+ "syntax" : {
2184
+ "type" : { "module" :"", "name" : "Integer32"},
2185
+ },
2186
+ "access" : "readonly",
2187
+ "description" :
2188
+ """The Logical Interface Handle sent to the (pre-
2189
+ vious) RSVP that will receive this message.""",
2190
+ }, # column
2191
+ "rsvpResvFwdInterface" : {
2192
+ "nodetype" : "column",
2193
+ "moduleName" : "RSVP-MIB",
2194
+ "oid" : "1.3.6.1.2.1.51.1.5.1.12",
2195
+ "status" : "current",
2196
+ "syntax" : {
2197
+ "type" : { "module" :"IF-MIB", "name" : "InterfaceIndex"},
2198
+ },
2199
+ "access" : "readonly",
2200
+ "description" :
2201
+ """The ifIndex value of the interface on which
2202
+ this RESV message was most recently sent.""",
2203
+ }, # column
2204
+ "rsvpResvFwdService" : {
2205
+ "nodetype" : "column",
2206
+ "moduleName" : "RSVP-MIB",
2207
+ "oid" : "1.3.6.1.2.1.51.1.5.1.13",
2208
+ "status" : "current",
2209
+ "syntax" : {
2210
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "QosService"},
2211
+ },
2212
+ "access" : "readonly",
2213
+ "description" :
2214
+ """The QoS Service classification requested.""",
2215
+ }, # column
2216
+ "rsvpResvFwdTSpecRate" : {
2217
+ "nodetype" : "column",
2218
+ "moduleName" : "RSVP-MIB",
2219
+ "oid" : "1.3.6.1.2.1.51.1.5.1.14",
2220
+ "status" : "current",
2221
+ "syntax" : {
2222
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
2223
+ },
2224
+ "access" : "readonly",
2225
+ "units" : "bits per second",
2226
+ "description" :
2227
+ """The Average Bit Rate of the sender's data
2228
+ stream. Within a transmission burst, the ar-
2229
+ rival rate may be as fast as rsvpResvFwdTSpec-
2230
+ PeakRate (if supported by the service model);
2231
+ however, averaged across two or more burst in-
2232
+ tervals, the rate should not exceed
2233
+ rsvpResvFwdTSpecRate.
2234
+
2235
+ Note that this is a prediction, often based on
2236
+ the general capability of a type of codec or
2237
+ particular encoding; the measured average rate
2238
+ may be significantly lower.""",
2239
+ }, # column
2240
+ "rsvpResvFwdTSpecPeakRate" : {
2241
+ "nodetype" : "column",
2242
+ "moduleName" : "RSVP-MIB",
2243
+ "oid" : "1.3.6.1.2.1.51.1.5.1.15",
2244
+ "status" : "current",
2245
+ "syntax" : {
2246
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
2247
+ },
2248
+ "access" : "readonly",
2249
+ "units" : "bits per second",
2250
+ "description" :
2251
+ """The Peak Bit Rate of the sender's data stream
2252
+ Traffic arrival is not expected to exceed this
2253
+ rate at any time, apart from the effects of
2254
+ jitter in the network. If not specified in the
2255
+ TSpec, this returns zero or noSuchValue.""",
2256
+ }, # column
2257
+ "rsvpResvFwdTSpecBurst" : {
2258
+ "nodetype" : "column",
2259
+ "moduleName" : "RSVP-MIB",
2260
+ "oid" : "1.3.6.1.2.1.51.1.5.1.16",
2261
+ "status" : "current",
2262
+ "syntax" : {
2263
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BurstSize"},
2264
+ },
2265
+ "access" : "readonly",
2266
+ "units" : "bytes",
2267
+ "description" :
2268
+ """The size of the largest burst expected from
2269
+ the sender at a time.
2270
+
2271
+ If this is less than the sender's advertised
2272
+ burst size, the receiver is asking the network
2273
+ to provide flow pacing beyond what would be
2274
+ provided under normal circumstances. Such pac-
2275
+ ing is at the network's option.""",
2276
+ }, # column
2277
+ "rsvpResvFwdTSpecMinTU" : {
2278
+ "nodetype" : "column",
2279
+ "moduleName" : "RSVP-MIB",
2280
+ "oid" : "1.3.6.1.2.1.51.1.5.1.17",
2281
+ "status" : "current",
2282
+ "syntax" : {
2283
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
2284
+ },
2285
+ "access" : "readonly",
2286
+ "description" :
2287
+ """The minimum message size for this flow. The
2288
+ policing algorithm will treat smaller messages
2289
+ as though they are this size.""",
2290
+ }, # column
2291
+ "rsvpResvFwdTSpecMaxTU" : {
2292
+ "nodetype" : "column",
2293
+ "moduleName" : "RSVP-MIB",
2294
+ "oid" : "1.3.6.1.2.1.51.1.5.1.18",
2295
+ "status" : "current",
2296
+ "syntax" : {
2297
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "MessageSize"},
2298
+ },
2299
+ "access" : "readonly",
2300
+ "description" :
2301
+ """The maximum message size for this flow. The
2302
+ admission algorithm will reject TSpecs whose
2303
+ Maximum Transmission Unit, plus the interface
2304
+ headers, exceed the interface MTU.""",
2305
+ }, # column
2306
+ "rsvpResvFwdRSpecRate" : {
2307
+ "nodetype" : "column",
2308
+ "moduleName" : "RSVP-MIB",
2309
+ "oid" : "1.3.6.1.2.1.51.1.5.1.19",
2310
+ "status" : "current",
2311
+ "syntax" : {
2312
+ "type" : { "module" :"INTEGRATED-SERVICES-MIB", "name" : "BitRate"},
2313
+ },
2314
+ "access" : "readonly",
2315
+ "units" : "bytes per second",
2316
+ "description" :
2317
+ """If the requested service is Guaranteed, as
2318
+ specified by rsvpResvService, this is the
2319
+ clearing rate that is being requested. Other-
2320
+ wise, it is zero, or the agent may return
2321
+ noSuchValue.""",
2322
+ }, # column
2323
+ "rsvpResvFwdRSpecSlack" : {
2324
+ "nodetype" : "column",
2325
+ "moduleName" : "RSVP-MIB",
2326
+ "oid" : "1.3.6.1.2.1.51.1.5.1.20",
2327
+ "status" : "current",
2328
+ "syntax" : {
2329
+ "type" : { "module" :"", "name" : "Integer32"},
2330
+ },
2331
+ "access" : "readonly",
2332
+ "units" : "microseconds",
2333
+ "description" :
2334
+ """If the requested service is Guaranteed, as
2335
+ specified by rsvpResvService, this is the delay
2336
+ slack. Otherwise, it is zero, or the agent may
2337
+ return noSuchValue.""",
2338
+ }, # column
2339
+ "rsvpResvFwdInterval" : {
2340
+ "nodetype" : "column",
2341
+ "moduleName" : "RSVP-MIB",
2342
+ "oid" : "1.3.6.1.2.1.51.1.5.1.21",
2343
+ "status" : "current",
2344
+ "syntax" : {
2345
+ "type" : { "module" :"RSVP-MIB", "name" : "RefreshInterval"},
2346
+ },
2347
+ "access" : "readonly",
2348
+ "description" :
2349
+ """The interval between refresh messages adver-
2350
+ tised to the Previous Hop.""",
2351
+ }, # column
2352
+ "rsvpResvFwdScope" : {
2353
+ "nodetype" : "column",
2354
+ "moduleName" : "RSVP-MIB",
2355
+ "oid" : "1.3.6.1.2.1.51.1.5.1.22",
2356
+ "status" : "current",
2357
+ "syntax" : {
2358
+ "type" : {
2359
+ "basetype" : "OctetString",
2360
+ "ranges" : [
2361
+ {
2362
+ "min" : "0",
2363
+ "max" : "65536"
2364
+ },
2365
+ ],
2366
+ "range" : {
2367
+ "min" : "0",
2368
+ "max" : "65536"
2369
+ },
2370
+ },
2371
+ },
2372
+ "access" : "readonly",
2373
+ "description" :
2374
+ """The contents of the scope object, displayed as
2375
+ an uninterpreted string of octets, including
2376
+ the object header. In the absence of such an
2377
+ object, this should be of zero length.""",
2378
+ }, # column
2379
+ "rsvpResvFwdShared" : {
2380
+ "nodetype" : "column",
2381
+ "moduleName" : "RSVP-MIB",
2382
+ "oid" : "1.3.6.1.2.1.51.1.5.1.23",
2383
+ "status" : "current",
2384
+ "syntax" : {
2385
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2386
+ },
2387
+ "access" : "readonly",
2388
+ "description" :
2389
+ """If TRUE, a reservation shared among senders is
2390
+ requested. If FALSE, a reservation specific to
2391
+ this sender is requested.""",
2392
+ }, # column
2393
+ "rsvpResvFwdExplicit" : {
2394
+ "nodetype" : "column",
2395
+ "moduleName" : "RSVP-MIB",
2396
+ "oid" : "1.3.6.1.2.1.51.1.5.1.24",
2397
+ "status" : "current",
2398
+ "syntax" : {
2399
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2400
+ },
2401
+ "access" : "readonly",
2402
+ "description" :
2403
+ """If TRUE, individual senders are listed using
2404
+ Filter Specifications. If FALSE, all senders
2405
+ are implicitly selected. The Scope Object will
2406
+ contain a list of senders that need to receive
2407
+ this reservation request for the purpose of
2408
+ routing the RESV message.""",
2409
+ }, # column
2410
+ "rsvpResvFwdRSVPHop" : {
2411
+ "nodetype" : "column",
2412
+ "moduleName" : "RSVP-MIB",
2413
+ "oid" : "1.3.6.1.2.1.51.1.5.1.25",
2414
+ "status" : "current",
2415
+ "syntax" : {
2416
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2417
+ },
2418
+ "access" : "readonly",
2419
+ "description" :
2420
+ """If TRUE, the node believes that the next IP
2421
+ hop is an RSVP hop. If FALSE, the node be-
2422
+ lieves that the next IP hop may not be an RSVP
2423
+ hop.""",
2424
+ }, # column
2425
+ "rsvpResvFwdLastChange" : {
2426
+ "nodetype" : "column",
2427
+ "moduleName" : "RSVP-MIB",
2428
+ "oid" : "1.3.6.1.2.1.51.1.5.1.26",
2429
+ "status" : "current",
2430
+ "syntax" : {
2431
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2432
+ },
2433
+ "access" : "readonly",
2434
+ "description" :
2435
+ """The time of the last change in this request;
2436
+ This is either the first time it was sent or
2437
+ the time of the most recent change in parame-
2438
+ ters.""",
2439
+ }, # column
2440
+ "rsvpResvFwdPolicy" : {
2441
+ "nodetype" : "column",
2442
+ "moduleName" : "RSVP-MIB",
2443
+ "oid" : "1.3.6.1.2.1.51.1.5.1.27",
2444
+ "status" : "current",
2445
+ "syntax" : {
2446
+ "type" : {
2447
+ "basetype" : "OctetString",
2448
+ "ranges" : [
2449
+ {
2450
+ "min" : "0",
2451
+ "max" : "65536"
2452
+ },
2453
+ ],
2454
+ "range" : {
2455
+ "min" : "0",
2456
+ "max" : "65536"
2457
+ },
2458
+ },
2459
+ },
2460
+ "access" : "readonly",
2461
+ "description" :
2462
+ """The contents of the policy object, displayed
2463
+ as an uninterpreted string of octets, including
2464
+ the object header. In the absence of such an
2465
+ object, this should be of zero length.""",
2466
+ }, # column
2467
+ "rsvpResvFwdStatus" : {
2468
+ "nodetype" : "column",
2469
+ "moduleName" : "RSVP-MIB",
2470
+ "oid" : "1.3.6.1.2.1.51.1.5.1.28",
2471
+ "status" : "current",
2472
+ "syntax" : {
2473
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2474
+ },
2475
+ "access" : "readwrite",
2476
+ "description" :
2477
+ """'active' for all active RESV messages. This
2478
+ object may be used to delete RESV information.""",
2479
+ }, # column
2480
+ "rsvpResvFwdTTL" : {
2481
+ "nodetype" : "column",
2482
+ "moduleName" : "RSVP-MIB",
2483
+ "oid" : "1.3.6.1.2.1.51.1.5.1.29",
2484
+ "status" : "current",
2485
+ "syntax" : {
2486
+ "type" : {
2487
+ "basetype" : "Integer32",
2488
+ "ranges" : [
2489
+ {
2490
+ "min" : "0",
2491
+ "max" : "255"
2492
+ },
2493
+ ],
2494
+ "range" : {
2495
+ "min" : "0",
2496
+ "max" : "255"
2497
+ },
2498
+ },
2499
+ },
2500
+ "access" : "readonly",
2501
+ "description" :
2502
+ """The TTL value in the RSVP header that was last
2503
+ received.""",
2504
+ }, # column
2505
+ "rsvpResvFwdFlowId" : {
2506
+ "nodetype" : "column",
2507
+ "moduleName" : "RSVP-MIB",
2508
+ "oid" : "1.3.6.1.2.1.51.1.5.1.30",
2509
+ "status" : "current",
2510
+ "syntax" : {
2511
+ "type" : {
2512
+ "basetype" : "Integer32",
2513
+ "ranges" : [
2514
+ {
2515
+ "min" : "0",
2516
+ "max" : "16777215"
2517
+ },
2518
+ ],
2519
+ "range" : {
2520
+ "min" : "0",
2521
+ "max" : "16777215"
2522
+ },
2523
+ },
2524
+ },
2525
+ "access" : "readonly",
2526
+ "description" :
2527
+ """The flow ID that this receiver is using, if
2528
+ this is an IPv6 session.""",
2529
+ }, # column
2530
+ "rsvpIfTable" : {
2531
+ "nodetype" : "table",
2532
+ "moduleName" : "RSVP-MIB",
2533
+ "oid" : "1.3.6.1.2.1.51.1.6",
2534
+ "status" : "current",
2535
+ "description" :
2536
+ """The RSVP-specific attributes of the system's
2537
+ interfaces.""",
2538
+ }, # table
2539
+ "rsvpIfEntry" : {
2540
+ "nodetype" : "row",
2541
+ "moduleName" : "RSVP-MIB",
2542
+ "oid" : "1.3.6.1.2.1.51.1.6.1",
2543
+ "create" : "true",
2544
+ "status" : "current",
2545
+ "linkage" : [
2546
+ "ifIndex",
2547
+ ],
2548
+ "description" :
2549
+ """The RSVP-specific attributes of the a given
2550
+ interface.""",
2551
+ }, # row
2552
+ "rsvpIfUdpNbrs" : {
2553
+ "nodetype" : "column",
2554
+ "moduleName" : "RSVP-MIB",
2555
+ "oid" : "1.3.6.1.2.1.51.1.6.1.1",
2556
+ "status" : "current",
2557
+ "syntax" : {
2558
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2559
+ },
2560
+ "access" : "readonly",
2561
+ "description" :
2562
+ """The number of neighbors perceived to be using
2563
+ only the RSVP UDP Encapsulation.""",
2564
+ }, # column
2565
+ "rsvpIfIpNbrs" : {
2566
+ "nodetype" : "column",
2567
+ "moduleName" : "RSVP-MIB",
2568
+ "oid" : "1.3.6.1.2.1.51.1.6.1.2",
2569
+ "status" : "current",
2570
+ "syntax" : {
2571
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2572
+ },
2573
+ "access" : "readonly",
2574
+ "description" :
2575
+ """The number of neighbors perceived to be using
2576
+ only the RSVP IP Encapsulation.""",
2577
+ }, # column
2578
+ "rsvpIfNbrs" : {
2579
+ "nodetype" : "column",
2580
+ "moduleName" : "RSVP-MIB",
2581
+ "oid" : "1.3.6.1.2.1.51.1.6.1.3",
2582
+ "status" : "current",
2583
+ "syntax" : {
2584
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2585
+ },
2586
+ "access" : "readonly",
2587
+ "description" :
2588
+ """The number of neighbors currently perceived;
2589
+ this will exceed rsvpIfIpNbrs + rsvpIfUdpNbrs
2590
+ by the number of neighbors using both encapsu-
2591
+ lations.""",
2592
+ }, # column
2593
+ "rsvpIfRefreshBlockadeMultiple" : {
2594
+ "nodetype" : "column",
2595
+ "moduleName" : "RSVP-MIB",
2596
+ "oid" : "1.3.6.1.2.1.51.1.6.1.4",
2597
+ "status" : "current",
2598
+ "syntax" : {
2599
+ "type" : {
2600
+ "basetype" : "Integer32",
2601
+ "ranges" : [
2602
+ {
2603
+ "min" : "1",
2604
+ "max" : "65536"
2605
+ },
2606
+ ],
2607
+ "range" : {
2608
+ "min" : "1",
2609
+ "max" : "65536"
2610
+ },
2611
+ },
2612
+ },
2613
+ "access" : "readwrite",
2614
+ "default" : "4",
2615
+ "description" :
2616
+ """The value of the RSVP value 'Kb', Which is the
2617
+ minimum number of refresh intervals that
2618
+ blockade state will last once entered.""",
2619
+ }, # column
2620
+ "rsvpIfRefreshMultiple" : {
2621
+ "nodetype" : "column",
2622
+ "moduleName" : "RSVP-MIB",
2623
+ "oid" : "1.3.6.1.2.1.51.1.6.1.5",
2624
+ "status" : "current",
2625
+ "syntax" : {
2626
+ "type" : {
2627
+ "basetype" : "Integer32",
2628
+ "ranges" : [
2629
+ {
2630
+ "min" : "1",
2631
+ "max" : "65536"
2632
+ },
2633
+ ],
2634
+ "range" : {
2635
+ "min" : "1",
2636
+ "max" : "65536"
2637
+ },
2638
+ },
2639
+ },
2640
+ "access" : "readwrite",
2641
+ "default" : "3",
2642
+ "description" :
2643
+ """The value of the RSVP value 'K', which is the
2644
+ number of refresh intervals which must elapse
2645
+ (minimum) before a PATH or RESV message which
2646
+ is not being refreshed will be aged out.""",
2647
+ }, # column
2648
+ "rsvpIfTTL" : {
2649
+ "nodetype" : "column",
2650
+ "moduleName" : "RSVP-MIB",
2651
+ "oid" : "1.3.6.1.2.1.51.1.6.1.6",
2652
+ "status" : "current",
2653
+ "syntax" : {
2654
+ "type" : {
2655
+ "basetype" : "Integer32",
2656
+ "ranges" : [
2657
+ {
2658
+ "min" : "0",
2659
+ "max" : "255"
2660
+ },
2661
+ ],
2662
+ "range" : {
2663
+ "min" : "0",
2664
+ "max" : "255"
2665
+ },
2666
+ },
2667
+ },
2668
+ "access" : "readwrite",
2669
+ "default" : "0",
2670
+ "description" :
2671
+ """The value of SEND_TTL used on this interface
2672
+ for messages this node originates. If set to
2673
+ zero, the node determines the TTL via other
2674
+ means.""",
2675
+ }, # column
2676
+ "rsvpIfRefreshInterval" : {
2677
+ "nodetype" : "column",
2678
+ "moduleName" : "RSVP-MIB",
2679
+ "oid" : "1.3.6.1.2.1.51.1.6.1.7",
2680
+ "status" : "current",
2681
+ "syntax" : {
2682
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
2683
+ },
2684
+ "access" : "readwrite",
2685
+ "default" : "3000",
2686
+ "units" : "milliseconds",
2687
+ "description" :
2688
+ """The value of the RSVP value 'R', which is the
2689
+ minimum period between refresh transmissions of
2690
+ a given PATH or RESV message on an interface.""",
2691
+ }, # column
2692
+ "rsvpIfRouteDelay" : {
2693
+ "nodetype" : "column",
2694
+ "moduleName" : "RSVP-MIB",
2695
+ "oid" : "1.3.6.1.2.1.51.1.6.1.8",
2696
+ "status" : "current",
2697
+ "syntax" : {
2698
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeInterval"},
2699
+ },
2700
+ "access" : "readwrite",
2701
+ "default" : "200",
2702
+ "units" : "hundredths of a second",
2703
+ "description" :
2704
+ """The approximate period from the time a route
2705
+ is changed to the time a resulting message ap-
2706
+ pears on the interface.""",
2707
+ }, # column
2708
+ "rsvpIfEnabled" : {
2709
+ "nodetype" : "column",
2710
+ "moduleName" : "RSVP-MIB",
2711
+ "oid" : "1.3.6.1.2.1.51.1.6.1.9",
2712
+ "status" : "current",
2713
+ "syntax" : {
2714
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2715
+ },
2716
+ "access" : "readwrite",
2717
+ "description" :
2718
+ """If TRUE, RSVP is enabled on this Interface.
2719
+ If FALSE, RSVP is not enabled on this inter-
2720
+ face.""",
2721
+ }, # column
2722
+ "rsvpIfUdpRequired" : {
2723
+ "nodetype" : "column",
2724
+ "moduleName" : "RSVP-MIB",
2725
+ "oid" : "1.3.6.1.2.1.51.1.6.1.10",
2726
+ "status" : "current",
2727
+ "syntax" : {
2728
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2729
+ },
2730
+ "access" : "readwrite",
2731
+ "description" :
2732
+ """If TRUE, manual configuration forces the use
2733
+ of UDP encapsulation on the interface. If
2734
+ FALSE, UDP encapsulation is only used if rsvpI-
2735
+ fUdpNbrs is not zero.""",
2736
+ }, # column
2737
+ "rsvpIfStatus" : {
2738
+ "nodetype" : "column",
2739
+ "moduleName" : "RSVP-MIB",
2740
+ "oid" : "1.3.6.1.2.1.51.1.6.1.11",
2741
+ "status" : "current",
2742
+ "syntax" : {
2743
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2744
+ },
2745
+ "access" : "readwrite",
2746
+ "description" :
2747
+ """'active' on interfaces that are configured for
2748
+ RSVP.""",
2749
+ }, # column
2750
+ "rsvpNbrTable" : {
2751
+ "nodetype" : "table",
2752
+ "moduleName" : "RSVP-MIB",
2753
+ "oid" : "1.3.6.1.2.1.51.1.7",
2754
+ "status" : "current",
2755
+ "description" :
2756
+ """Information describing the Neighbors of an
2757
+ RSVP system.""",
2758
+ }, # table
2759
+ "rsvpNbrEntry" : {
2760
+ "nodetype" : "row",
2761
+ "moduleName" : "RSVP-MIB",
2762
+ "oid" : "1.3.6.1.2.1.51.1.7.1",
2763
+ "create" : "true",
2764
+ "status" : "current",
2765
+ "linkage" : [
2766
+ "ifIndex",
2767
+ "rsvpNbrAddress",
2768
+ ],
2769
+ "description" :
2770
+ """Information describing a single RSVP Neigh-
2771
+ bor.""",
2772
+ }, # row
2773
+ "rsvpNbrAddress" : {
2774
+ "nodetype" : "column",
2775
+ "moduleName" : "RSVP-MIB",
2776
+ "oid" : "1.3.6.1.2.1.51.1.7.1.1",
2777
+ "status" : "current",
2778
+ "syntax" : {
2779
+ "type" : {
2780
+ "basetype" : "OctetString",
2781
+ "ranges" : [
2782
+ {
2783
+ "min" : "4",
2784
+ "max" : "16"
2785
+ },
2786
+ ],
2787
+ "range" : {
2788
+ "min" : "4",
2789
+ "max" : "16"
2790
+ },
2791
+ },
2792
+ },
2793
+ "access" : "noaccess",
2794
+ "description" :
2795
+ """The IP4 or IP6 Address used by this neighbor.
2796
+ This object may not be changed when the value
2797
+ of the RowStatus object is 'active'.""",
2798
+ }, # column
2799
+ "rsvpNbrProtocol" : {
2800
+ "nodetype" : "column",
2801
+ "moduleName" : "RSVP-MIB",
2802
+ "oid" : "1.3.6.1.2.1.51.1.7.1.2",
2803
+ "status" : "current",
2804
+ "syntax" : {
2805
+ "type" : { "module" :"RSVP-MIB", "name" : "RsvpEncapsulation"},
2806
+ },
2807
+ "access" : "readwrite",
2808
+ "description" :
2809
+ """The encapsulation being used by this neigh-
2810
+ bor.""",
2811
+ }, # column
2812
+ "rsvpNbrStatus" : {
2813
+ "nodetype" : "column",
2814
+ "moduleName" : "RSVP-MIB",
2815
+ "oid" : "1.3.6.1.2.1.51.1.7.1.3",
2816
+ "status" : "current",
2817
+ "syntax" : {
2818
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
2819
+ },
2820
+ "access" : "readwrite",
2821
+ "description" :
2822
+ """'active' for all neighbors. This object may
2823
+ be used to configure neighbors. In the pres-
2824
+ ence of configured neighbors, the implementa-
2825
+ tion may (but is not required to) limit the set
2826
+ of valid neighbors to those configured.""",
2827
+ }, # column
2828
+ "rsvpGenObjects" : {
2829
+ "nodetype" : "node",
2830
+ "moduleName" : "RSVP-MIB",
2831
+ "oid" : "1.3.6.1.2.1.51.2",
2832
+ }, # node
2833
+ "rsvpBadPackets" : {
2834
+ "nodetype" : "scalar",
2835
+ "moduleName" : "RSVP-MIB",
2836
+ "oid" : "1.3.6.1.2.1.51.2.1",
2837
+ "status" : "current",
2838
+ "syntax" : {
2839
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2840
+ },
2841
+ "access" : "readonly",
2842
+ "description" :
2843
+ """This object keeps a count of the number of bad
2844
+ RSVP packets received.""",
2845
+ }, # scalar
2846
+ "rsvpSenderNewIndex" : {
2847
+ "nodetype" : "scalar",
2848
+ "moduleName" : "RSVP-MIB",
2849
+ "oid" : "1.3.6.1.2.1.51.2.2",
2850
+ "status" : "current",
2851
+ "syntax" : {
2852
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
2853
+ },
2854
+ "access" : "readwrite",
2855
+ "description" :
2856
+ """This object is used to assign values to
2857
+ rsvpSenderNumber as described in 'Textual Con-
2858
+ ventions for SNMPv2'. The network manager
2859
+ reads the object, and then writes the value
2860
+ back in the SET that creates a new instance of
2861
+ rsvpSenderEntry. If the SET fails with the
2862
+ code 'inconsistentValue', then the process must
2863
+ be repeated; If the SET succeeds, then the ob-
2864
+ ject is incremented, and the new instance is
2865
+ created according to the manager's directions.""",
2866
+ }, # scalar
2867
+ "rsvpResvNewIndex" : {
2868
+ "nodetype" : "scalar",
2869
+ "moduleName" : "RSVP-MIB",
2870
+ "oid" : "1.3.6.1.2.1.51.2.3",
2871
+ "status" : "current",
2872
+ "syntax" : {
2873
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
2874
+ },
2875
+ "access" : "readwrite",
2876
+ "description" :
2877
+ """This object is used to assign values to
2878
+ rsvpResvNumber as described in 'Textual Conven-
2879
+ tions for SNMPv2'. The network manager reads
2880
+ the object, and then writes the value back in
2881
+ the SET that creates a new instance of
2882
+ rsvpResvEntry. If the SET fails with the code
2883
+ 'inconsistentValue', then the process must be
2884
+ repeated; If the SET succeeds, then the object
2885
+ is incremented, and the new instance is created
2886
+ according to the manager's directions.""",
2887
+ }, # scalar
2888
+ "rsvpResvFwdNewIndex" : {
2889
+ "nodetype" : "scalar",
2890
+ "moduleName" : "RSVP-MIB",
2891
+ "oid" : "1.3.6.1.2.1.51.2.4",
2892
+ "status" : "current",
2893
+ "syntax" : {
2894
+ "type" : { "module" :"SNMPv2-TC", "name" : "TestAndIncr"},
2895
+ },
2896
+ "access" : "readwrite",
2897
+ "description" :
2898
+ """This object is used to assign values to
2899
+ rsvpResvFwdNumber as described in 'Textual Con-
2900
+ ventions for SNMPv2'. The network manager
2901
+ reads the object, and then writes the value
2902
+ back in the SET that creates a new instance of
2903
+ rsvpResvFwdEntry. If the SET fails with the
2904
+ code 'inconsistentValue', then the process must
2905
+ be repeated; If the SET succeeds, then the ob-
2906
+ ject is incremented, and the new instance is
2907
+ created according to the manager's directions.""",
2908
+ }, # scalar
2909
+ "rsvpNotificationsPrefix" : {
2910
+ "nodetype" : "node",
2911
+ "moduleName" : "RSVP-MIB",
2912
+ "oid" : "1.3.6.1.2.1.51.3",
2913
+ }, # node
2914
+ "rsvpNotifications" : {
2915
+ "nodetype" : "node",
2916
+ "moduleName" : "RSVP-MIB",
2917
+ "oid" : "1.3.6.1.2.1.51.3.0",
2918
+ }, # node
2919
+ "rsvpConformance" : {
2920
+ "nodetype" : "node",
2921
+ "moduleName" : "RSVP-MIB",
2922
+ "oid" : "1.3.6.1.2.1.51.4",
2923
+ }, # node
2924
+ "rsvpGroups" : {
2925
+ "nodetype" : "node",
2926
+ "moduleName" : "RSVP-MIB",
2927
+ "oid" : "1.3.6.1.2.1.51.4.1",
2928
+ }, # node
2929
+ "rsvpCompliances" : {
2930
+ "nodetype" : "node",
2931
+ "moduleName" : "RSVP-MIB",
2932
+ "oid" : "1.3.6.1.2.1.51.4.2",
2933
+ }, # node
2934
+ }, # nodes
2935
+
2936
+ "notifications" : {
2937
+ "newFlow" : {
2938
+ "nodetype" : "notification",
2939
+ "moduleName" : "RSVP-MIB",
2940
+ "oid" : "1.3.6.1.2.1.51.3.0.1",
2941
+ "status" : "current",
2942
+ "objects" : {
2943
+ "intSrvFlowStatus" : {
2944
+ "nodetype" : "object",
2945
+ "module" : "INTEGRATED-SERVICES-MIB"
2946
+ },
2947
+ "rsvpSessionDestAddr" : {
2948
+ "nodetype" : "object",
2949
+ "module" : "RSVP-MIB"
2950
+ },
2951
+ "rsvpResvFwdStatus" : {
2952
+ "nodetype" : "object",
2953
+ "module" : "RSVP-MIB"
2954
+ },
2955
+ "rsvpResvStatus" : {
2956
+ "nodetype" : "object",
2957
+ "module" : "RSVP-MIB"
2958
+ },
2959
+ "rsvpSenderStatus" : {
2960
+ "nodetype" : "object",
2961
+ "module" : "RSVP-MIB"
2962
+ },
2963
+ },
2964
+ "description" :
2965
+ """The newFlow trap indicates that the originat-
2966
+ ing system has installed a new flow in its
2967
+ classifier, or (when reservation authorization
2968
+ is in view) is prepared to install such a flow
2969
+ in the classifier and is requesting authoriza-
2970
+ tion. The objects included with the Notifica-
2971
+ tion may be used to read further information
2972
+ using the Integrated Services and RSVP MIBs.
2973
+ Authorization or non-authorization may be
2974
+ enacted by a write to the variable intSrvFlowS-
2975
+ tatus.""",
2976
+ }, # notification
2977
+ "lostFlow" : {
2978
+ "nodetype" : "notification",
2979
+ "moduleName" : "RSVP-MIB",
2980
+ "oid" : "1.3.6.1.2.1.51.3.0.2",
2981
+ "status" : "current",
2982
+ "objects" : {
2983
+ "intSrvFlowStatus" : {
2984
+ "nodetype" : "object",
2985
+ "module" : "INTEGRATED-SERVICES-MIB"
2986
+ },
2987
+ "rsvpSessionDestAddr" : {
2988
+ "nodetype" : "object",
2989
+ "module" : "RSVP-MIB"
2990
+ },
2991
+ "rsvpResvFwdStatus" : {
2992
+ "nodetype" : "object",
2993
+ "module" : "RSVP-MIB"
2994
+ },
2995
+ "rsvpResvStatus" : {
2996
+ "nodetype" : "object",
2997
+ "module" : "RSVP-MIB"
2998
+ },
2999
+ "rsvpSenderStatus" : {
3000
+ "nodetype" : "object",
3001
+ "module" : "RSVP-MIB"
3002
+ },
3003
+ },
3004
+ "description" :
3005
+ """The lostFlow trap indicates that the originat-
3006
+ ing system has removed a flow from its classif-
3007
+ ier.""",
3008
+ }, # notification
3009
+ }, # notifications
3010
+
3011
+ "groups" : {
3012
+ "rsvpSessionGroup" : {
3013
+ "nodetype" : "group",
3014
+ "moduleName" : "RSVP-MIB",
3015
+ "oid" : "1.3.6.1.2.1.51.4.1.1",
3016
+ "status" : "current",
3017
+ "members" : {
3018
+ "rsvpSessionType" : {
3019
+ "nodetype" : "member",
3020
+ "module" : "RSVP-MIB"
3021
+ },
3022
+ "rsvpSessionDestAddr" : {
3023
+ "nodetype" : "member",
3024
+ "module" : "RSVP-MIB"
3025
+ },
3026
+ "rsvpSessionDestAddrLength" : {
3027
+ "nodetype" : "member",
3028
+ "module" : "RSVP-MIB"
3029
+ },
3030
+ "rsvpSessionProtocol" : {
3031
+ "nodetype" : "member",
3032
+ "module" : "RSVP-MIB"
3033
+ },
3034
+ "rsvpSessionPort" : {
3035
+ "nodetype" : "member",
3036
+ "module" : "RSVP-MIB"
3037
+ },
3038
+ "rsvpSessionSenders" : {
3039
+ "nodetype" : "member",
3040
+ "module" : "RSVP-MIB"
3041
+ },
3042
+ "rsvpSessionReceivers" : {
3043
+ "nodetype" : "member",
3044
+ "module" : "RSVP-MIB"
3045
+ },
3046
+ "rsvpSessionRequests" : {
3047
+ "nodetype" : "member",
3048
+ "module" : "RSVP-MIB"
3049
+ },
3050
+ }, # members
3051
+ "description" :
3052
+ """These objects are required for RSVP Systems.""",
3053
+ }, # group
3054
+ "rsvpSenderGroup" : {
3055
+ "nodetype" : "group",
3056
+ "moduleName" : "RSVP-MIB",
3057
+ "oid" : "1.3.6.1.2.1.51.4.1.2",
3058
+ "status" : "current",
3059
+ "members" : {
3060
+ "rsvpSenderType" : {
3061
+ "nodetype" : "member",
3062
+ "module" : "RSVP-MIB"
3063
+ },
3064
+ "rsvpSenderDestAddr" : {
3065
+ "nodetype" : "member",
3066
+ "module" : "RSVP-MIB"
3067
+ },
3068
+ "rsvpSenderAddr" : {
3069
+ "nodetype" : "member",
3070
+ "module" : "RSVP-MIB"
3071
+ },
3072
+ "rsvpSenderDestAddrLength" : {
3073
+ "nodetype" : "member",
3074
+ "module" : "RSVP-MIB"
3075
+ },
3076
+ "rsvpSenderAddrLength" : {
3077
+ "nodetype" : "member",
3078
+ "module" : "RSVP-MIB"
3079
+ },
3080
+ "rsvpSenderProtocol" : {
3081
+ "nodetype" : "member",
3082
+ "module" : "RSVP-MIB"
3083
+ },
3084
+ "rsvpSenderDestPort" : {
3085
+ "nodetype" : "member",
3086
+ "module" : "RSVP-MIB"
3087
+ },
3088
+ "rsvpSenderPort" : {
3089
+ "nodetype" : "member",
3090
+ "module" : "RSVP-MIB"
3091
+ },
3092
+ "rsvpSenderHopAddr" : {
3093
+ "nodetype" : "member",
3094
+ "module" : "RSVP-MIB"
3095
+ },
3096
+ "rsvpSenderHopLih" : {
3097
+ "nodetype" : "member",
3098
+ "module" : "RSVP-MIB"
3099
+ },
3100
+ "rsvpSenderInterface" : {
3101
+ "nodetype" : "member",
3102
+ "module" : "RSVP-MIB"
3103
+ },
3104
+ "rsvpSenderTSpecRate" : {
3105
+ "nodetype" : "member",
3106
+ "module" : "RSVP-MIB"
3107
+ },
3108
+ "rsvpSenderTSpecPeakRate" : {
3109
+ "nodetype" : "member",
3110
+ "module" : "RSVP-MIB"
3111
+ },
3112
+ "rsvpSenderTSpecBurst" : {
3113
+ "nodetype" : "member",
3114
+ "module" : "RSVP-MIB"
3115
+ },
3116
+ "rsvpSenderTSpecMinTU" : {
3117
+ "nodetype" : "member",
3118
+ "module" : "RSVP-MIB"
3119
+ },
3120
+ "rsvpSenderTSpecMaxTU" : {
3121
+ "nodetype" : "member",
3122
+ "module" : "RSVP-MIB"
3123
+ },
3124
+ "rsvpSenderInterval" : {
3125
+ "nodetype" : "member",
3126
+ "module" : "RSVP-MIB"
3127
+ },
3128
+ "rsvpSenderLastChange" : {
3129
+ "nodetype" : "member",
3130
+ "module" : "RSVP-MIB"
3131
+ },
3132
+ "rsvpSenderStatus" : {
3133
+ "nodetype" : "member",
3134
+ "module" : "RSVP-MIB"
3135
+ },
3136
+ "rsvpSenderRSVPHop" : {
3137
+ "nodetype" : "member",
3138
+ "module" : "RSVP-MIB"
3139
+ },
3140
+ "rsvpSenderPolicy" : {
3141
+ "nodetype" : "member",
3142
+ "module" : "RSVP-MIB"
3143
+ },
3144
+ "rsvpSenderAdspecBreak" : {
3145
+ "nodetype" : "member",
3146
+ "module" : "RSVP-MIB"
3147
+ },
3148
+ "rsvpSenderAdspecHopCount" : {
3149
+ "nodetype" : "member",
3150
+ "module" : "RSVP-MIB"
3151
+ },
3152
+ "rsvpSenderAdspecPathBw" : {
3153
+ "nodetype" : "member",
3154
+ "module" : "RSVP-MIB"
3155
+ },
3156
+ "rsvpSenderAdspecMinLatency" : {
3157
+ "nodetype" : "member",
3158
+ "module" : "RSVP-MIB"
3159
+ },
3160
+ "rsvpSenderAdspecMtu" : {
3161
+ "nodetype" : "member",
3162
+ "module" : "RSVP-MIB"
3163
+ },
3164
+ "rsvpSenderAdspecGuaranteedSvc" : {
3165
+ "nodetype" : "member",
3166
+ "module" : "RSVP-MIB"
3167
+ },
3168
+ "rsvpSenderAdspecGuaranteedBreak" : {
3169
+ "nodetype" : "member",
3170
+ "module" : "RSVP-MIB"
3171
+ },
3172
+ "rsvpSenderAdspecGuaranteedCtot" : {
3173
+ "nodetype" : "member",
3174
+ "module" : "RSVP-MIB"
3175
+ },
3176
+ "rsvpSenderAdspecGuaranteedDtot" : {
3177
+ "nodetype" : "member",
3178
+ "module" : "RSVP-MIB"
3179
+ },
3180
+ "rsvpSenderAdspecGuaranteedCsum" : {
3181
+ "nodetype" : "member",
3182
+ "module" : "RSVP-MIB"
3183
+ },
3184
+ "rsvpSenderAdspecGuaranteedDsum" : {
3185
+ "nodetype" : "member",
3186
+ "module" : "RSVP-MIB"
3187
+ },
3188
+ "rsvpSenderAdspecGuaranteedHopCount" : {
3189
+ "nodetype" : "member",
3190
+ "module" : "RSVP-MIB"
3191
+ },
3192
+ "rsvpSenderAdspecGuaranteedPathBw" : {
3193
+ "nodetype" : "member",
3194
+ "module" : "RSVP-MIB"
3195
+ },
3196
+ "rsvpSenderAdspecGuaranteedMinLatency" : {
3197
+ "nodetype" : "member",
3198
+ "module" : "RSVP-MIB"
3199
+ },
3200
+ "rsvpSenderAdspecGuaranteedMtu" : {
3201
+ "nodetype" : "member",
3202
+ "module" : "RSVP-MIB"
3203
+ },
3204
+ "rsvpSenderAdspecCtrlLoadSvc" : {
3205
+ "nodetype" : "member",
3206
+ "module" : "RSVP-MIB"
3207
+ },
3208
+ "rsvpSenderAdspecCtrlLoadBreak" : {
3209
+ "nodetype" : "member",
3210
+ "module" : "RSVP-MIB"
3211
+ },
3212
+ "rsvpSenderAdspecCtrlLoadHopCount" : {
3213
+ "nodetype" : "member",
3214
+ "module" : "RSVP-MIB"
3215
+ },
3216
+ "rsvpSenderAdspecCtrlLoadPathBw" : {
3217
+ "nodetype" : "member",
3218
+ "module" : "RSVP-MIB"
3219
+ },
3220
+ "rsvpSenderAdspecCtrlLoadMinLatency" : {
3221
+ "nodetype" : "member",
3222
+ "module" : "RSVP-MIB"
3223
+ },
3224
+ "rsvpSenderAdspecCtrlLoadMtu" : {
3225
+ "nodetype" : "member",
3226
+ "module" : "RSVP-MIB"
3227
+ },
3228
+ "rsvpSenderNewIndex" : {
3229
+ "nodetype" : "member",
3230
+ "module" : "RSVP-MIB"
3231
+ },
3232
+ }, # members
3233
+ "description" :
3234
+ """These objects are required for RSVP Systems.""",
3235
+ }, # group
3236
+ "rsvpResvGroup" : {
3237
+ "nodetype" : "group",
3238
+ "moduleName" : "RSVP-MIB",
3239
+ "oid" : "1.3.6.1.2.1.51.4.1.3",
3240
+ "status" : "current",
3241
+ "members" : {
3242
+ "rsvpResvType" : {
3243
+ "nodetype" : "member",
3244
+ "module" : "RSVP-MIB"
3245
+ },
3246
+ "rsvpResvDestAddr" : {
3247
+ "nodetype" : "member",
3248
+ "module" : "RSVP-MIB"
3249
+ },
3250
+ "rsvpResvSenderAddr" : {
3251
+ "nodetype" : "member",
3252
+ "module" : "RSVP-MIB"
3253
+ },
3254
+ "rsvpResvDestAddrLength" : {
3255
+ "nodetype" : "member",
3256
+ "module" : "RSVP-MIB"
3257
+ },
3258
+ "rsvpResvSenderAddrLength" : {
3259
+ "nodetype" : "member",
3260
+ "module" : "RSVP-MIB"
3261
+ },
3262
+ "rsvpResvProtocol" : {
3263
+ "nodetype" : "member",
3264
+ "module" : "RSVP-MIB"
3265
+ },
3266
+ "rsvpResvDestPort" : {
3267
+ "nodetype" : "member",
3268
+ "module" : "RSVP-MIB"
3269
+ },
3270
+ "rsvpResvPort" : {
3271
+ "nodetype" : "member",
3272
+ "module" : "RSVP-MIB"
3273
+ },
3274
+ "rsvpResvHopAddr" : {
3275
+ "nodetype" : "member",
3276
+ "module" : "RSVP-MIB"
3277
+ },
3278
+ "rsvpResvHopLih" : {
3279
+ "nodetype" : "member",
3280
+ "module" : "RSVP-MIB"
3281
+ },
3282
+ "rsvpResvInterface" : {
3283
+ "nodetype" : "member",
3284
+ "module" : "RSVP-MIB"
3285
+ },
3286
+ "rsvpResvService" : {
3287
+ "nodetype" : "member",
3288
+ "module" : "RSVP-MIB"
3289
+ },
3290
+ "rsvpResvTSpecRate" : {
3291
+ "nodetype" : "member",
3292
+ "module" : "RSVP-MIB"
3293
+ },
3294
+ "rsvpResvTSpecBurst" : {
3295
+ "nodetype" : "member",
3296
+ "module" : "RSVP-MIB"
3297
+ },
3298
+ "rsvpResvTSpecPeakRate" : {
3299
+ "nodetype" : "member",
3300
+ "module" : "RSVP-MIB"
3301
+ },
3302
+ "rsvpResvTSpecMinTU" : {
3303
+ "nodetype" : "member",
3304
+ "module" : "RSVP-MIB"
3305
+ },
3306
+ "rsvpResvTSpecMaxTU" : {
3307
+ "nodetype" : "member",
3308
+ "module" : "RSVP-MIB"
3309
+ },
3310
+ "rsvpResvRSpecRate" : {
3311
+ "nodetype" : "member",
3312
+ "module" : "RSVP-MIB"
3313
+ },
3314
+ "rsvpResvRSpecSlack" : {
3315
+ "nodetype" : "member",
3316
+ "module" : "RSVP-MIB"
3317
+ },
3318
+ "rsvpResvInterval" : {
3319
+ "nodetype" : "member",
3320
+ "module" : "RSVP-MIB"
3321
+ },
3322
+ "rsvpResvScope" : {
3323
+ "nodetype" : "member",
3324
+ "module" : "RSVP-MIB"
3325
+ },
3326
+ "rsvpResvShared" : {
3327
+ "nodetype" : "member",
3328
+ "module" : "RSVP-MIB"
3329
+ },
3330
+ "rsvpResvExplicit" : {
3331
+ "nodetype" : "member",
3332
+ "module" : "RSVP-MIB"
3333
+ },
3334
+ "rsvpResvRSVPHop" : {
3335
+ "nodetype" : "member",
3336
+ "module" : "RSVP-MIB"
3337
+ },
3338
+ "rsvpResvLastChange" : {
3339
+ "nodetype" : "member",
3340
+ "module" : "RSVP-MIB"
3341
+ },
3342
+ "rsvpResvPolicy" : {
3343
+ "nodetype" : "member",
3344
+ "module" : "RSVP-MIB"
3345
+ },
3346
+ "rsvpResvStatus" : {
3347
+ "nodetype" : "member",
3348
+ "module" : "RSVP-MIB"
3349
+ },
3350
+ "rsvpResvNewIndex" : {
3351
+ "nodetype" : "member",
3352
+ "module" : "RSVP-MIB"
3353
+ },
3354
+ }, # members
3355
+ "description" :
3356
+ """These objects are required for RSVP Systems.""",
3357
+ }, # group
3358
+ "rsvpResvFwdGroup" : {
3359
+ "nodetype" : "group",
3360
+ "moduleName" : "RSVP-MIB",
3361
+ "oid" : "1.3.6.1.2.1.51.4.1.4",
3362
+ "status" : "current",
3363
+ "members" : {
3364
+ "rsvpResvFwdType" : {
3365
+ "nodetype" : "member",
3366
+ "module" : "RSVP-MIB"
3367
+ },
3368
+ "rsvpResvFwdDestAddr" : {
3369
+ "nodetype" : "member",
3370
+ "module" : "RSVP-MIB"
3371
+ },
3372
+ "rsvpResvFwdSenderAddr" : {
3373
+ "nodetype" : "member",
3374
+ "module" : "RSVP-MIB"
3375
+ },
3376
+ "rsvpResvFwdDestAddrLength" : {
3377
+ "nodetype" : "member",
3378
+ "module" : "RSVP-MIB"
3379
+ },
3380
+ "rsvpResvFwdSenderAddrLength" : {
3381
+ "nodetype" : "member",
3382
+ "module" : "RSVP-MIB"
3383
+ },
3384
+ "rsvpResvFwdProtocol" : {
3385
+ "nodetype" : "member",
3386
+ "module" : "RSVP-MIB"
3387
+ },
3388
+ "rsvpResvFwdDestPort" : {
3389
+ "nodetype" : "member",
3390
+ "module" : "RSVP-MIB"
3391
+ },
3392
+ "rsvpResvFwdPort" : {
3393
+ "nodetype" : "member",
3394
+ "module" : "RSVP-MIB"
3395
+ },
3396
+ "rsvpResvFwdHopAddr" : {
3397
+ "nodetype" : "member",
3398
+ "module" : "RSVP-MIB"
3399
+ },
3400
+ "rsvpResvFwdHopLih" : {
3401
+ "nodetype" : "member",
3402
+ "module" : "RSVP-MIB"
3403
+ },
3404
+ "rsvpResvFwdInterface" : {
3405
+ "nodetype" : "member",
3406
+ "module" : "RSVP-MIB"
3407
+ },
3408
+ "rsvpResvFwdNewIndex" : {
3409
+ "nodetype" : "member",
3410
+ "module" : "RSVP-MIB"
3411
+ },
3412
+ "rsvpResvFwdService" : {
3413
+ "nodetype" : "member",
3414
+ "module" : "RSVP-MIB"
3415
+ },
3416
+ "rsvpResvFwdTSpecPeakRate" : {
3417
+ "nodetype" : "member",
3418
+ "module" : "RSVP-MIB"
3419
+ },
3420
+ "rsvpResvFwdTSpecMinTU" : {
3421
+ "nodetype" : "member",
3422
+ "module" : "RSVP-MIB"
3423
+ },
3424
+ "rsvpResvFwdTSpecMaxTU" : {
3425
+ "nodetype" : "member",
3426
+ "module" : "RSVP-MIB"
3427
+ },
3428
+ "rsvpResvFwdTSpecRate" : {
3429
+ "nodetype" : "member",
3430
+ "module" : "RSVP-MIB"
3431
+ },
3432
+ "rsvpResvFwdTSpecBurst" : {
3433
+ "nodetype" : "member",
3434
+ "module" : "RSVP-MIB"
3435
+ },
3436
+ "rsvpResvFwdRSpecRate" : {
3437
+ "nodetype" : "member",
3438
+ "module" : "RSVP-MIB"
3439
+ },
3440
+ "rsvpResvFwdRSpecSlack" : {
3441
+ "nodetype" : "member",
3442
+ "module" : "RSVP-MIB"
3443
+ },
3444
+ "rsvpResvFwdInterval" : {
3445
+ "nodetype" : "member",
3446
+ "module" : "RSVP-MIB"
3447
+ },
3448
+ "rsvpResvFwdScope" : {
3449
+ "nodetype" : "member",
3450
+ "module" : "RSVP-MIB"
3451
+ },
3452
+ "rsvpResvFwdShared" : {
3453
+ "nodetype" : "member",
3454
+ "module" : "RSVP-MIB"
3455
+ },
3456
+ "rsvpResvFwdExplicit" : {
3457
+ "nodetype" : "member",
3458
+ "module" : "RSVP-MIB"
3459
+ },
3460
+ "rsvpResvFwdRSVPHop" : {
3461
+ "nodetype" : "member",
3462
+ "module" : "RSVP-MIB"
3463
+ },
3464
+ "rsvpResvFwdLastChange" : {
3465
+ "nodetype" : "member",
3466
+ "module" : "RSVP-MIB"
3467
+ },
3468
+ "rsvpResvFwdPolicy" : {
3469
+ "nodetype" : "member",
3470
+ "module" : "RSVP-MIB"
3471
+ },
3472
+ "rsvpResvFwdStatus" : {
3473
+ "nodetype" : "member",
3474
+ "module" : "RSVP-MIB"
3475
+ },
3476
+ }, # members
3477
+ "description" :
3478
+ """These objects are optional, used for some RSVP
3479
+ Systems.""",
3480
+ }, # group
3481
+ "rsvpIfGroup" : {
3482
+ "nodetype" : "group",
3483
+ "moduleName" : "RSVP-MIB",
3484
+ "oid" : "1.3.6.1.2.1.51.4.1.6",
3485
+ "status" : "current",
3486
+ "members" : {
3487
+ "rsvpIfUdpNbrs" : {
3488
+ "nodetype" : "member",
3489
+ "module" : "RSVP-MIB"
3490
+ },
3491
+ "rsvpIfIpNbrs" : {
3492
+ "nodetype" : "member",
3493
+ "module" : "RSVP-MIB"
3494
+ },
3495
+ "rsvpIfNbrs" : {
3496
+ "nodetype" : "member",
3497
+ "module" : "RSVP-MIB"
3498
+ },
3499
+ "rsvpIfEnabled" : {
3500
+ "nodetype" : "member",
3501
+ "module" : "RSVP-MIB"
3502
+ },
3503
+ "rsvpIfUdpRequired" : {
3504
+ "nodetype" : "member",
3505
+ "module" : "RSVP-MIB"
3506
+ },
3507
+ "rsvpIfRefreshBlockadeMultiple" : {
3508
+ "nodetype" : "member",
3509
+ "module" : "RSVP-MIB"
3510
+ },
3511
+ "rsvpIfRefreshMultiple" : {
3512
+ "nodetype" : "member",
3513
+ "module" : "RSVP-MIB"
3514
+ },
3515
+ "rsvpIfRefreshInterval" : {
3516
+ "nodetype" : "member",
3517
+ "module" : "RSVP-MIB"
3518
+ },
3519
+ "rsvpIfTTL" : {
3520
+ "nodetype" : "member",
3521
+ "module" : "RSVP-MIB"
3522
+ },
3523
+ "rsvpIfRouteDelay" : {
3524
+ "nodetype" : "member",
3525
+ "module" : "RSVP-MIB"
3526
+ },
3527
+ "rsvpIfStatus" : {
3528
+ "nodetype" : "member",
3529
+ "module" : "RSVP-MIB"
3530
+ },
3531
+ }, # members
3532
+ "description" :
3533
+ """These objects are required for RSVP Systems.""",
3534
+ }, # group
3535
+ "rsvpNbrGroup" : {
3536
+ "nodetype" : "group",
3537
+ "moduleName" : "RSVP-MIB",
3538
+ "oid" : "1.3.6.1.2.1.51.4.1.7",
3539
+ "status" : "current",
3540
+ "members" : {
3541
+ "rsvpNbrProtocol" : {
3542
+ "nodetype" : "member",
3543
+ "module" : "RSVP-MIB"
3544
+ },
3545
+ "rsvpNbrStatus" : {
3546
+ "nodetype" : "member",
3547
+ "module" : "RSVP-MIB"
3548
+ },
3549
+ }, # members
3550
+ "description" :
3551
+ """These objects are required for RSVP Systems.""",
3552
+ }, # group
3553
+ "rsvpNotificationGroup" : {
3554
+ "nodetype" : "group",
3555
+ "moduleName" : "RSVP-MIB",
3556
+ "oid" : "1.3.6.1.2.1.51.4.1.8",
3557
+ "status" : "current",
3558
+ "members" : {
3559
+ "newFlow" : {
3560
+ "nodetype" : "member",
3561
+ "module" : "RSVP-MIB"
3562
+ },
3563
+ "lostFlow" : {
3564
+ "nodetype" : "member",
3565
+ "module" : "RSVP-MIB"
3566
+ },
3567
+ }, # members
3568
+ "description" :
3569
+ """This notification is required for Systems sup-
3570
+ porting the RSVP Policy Module using an SNMP
3571
+ interface to the Policy Manager.""",
3572
+ }, # group
3573
+ }, # groups
3574
+
3575
+ "compliances" : {
3576
+ "rsvpCompliance" : {
3577
+ "nodetype" : "compliance",
3578
+ "moduleName" : "RSVP-MIB",
3579
+ "oid" : "1.3.6.1.2.1.51.4.2.1",
3580
+ "status" : "current",
3581
+ "description" :
3582
+ """The compliance statement. Note that the im-
3583
+ plementation of this module requires implemen-
3584
+ tation of the Integrated Services MIB as well.""",
3585
+ "requires" : {
3586
+ "rsvpSessionGroup" : {
3587
+ "nodetype" : "mandatory",
3588
+ "module" : "RSVP-MIB"
3589
+ },
3590
+ "rsvpSenderGroup" : {
3591
+ "nodetype" : "mandatory",
3592
+ "module" : "RSVP-MIB"
3593
+ },
3594
+ "rsvpResvGroup" : {
3595
+ "nodetype" : "mandatory",
3596
+ "module" : "RSVP-MIB"
3597
+ },
3598
+ "rsvpIfGroup" : {
3599
+ "nodetype" : "mandatory",
3600
+ "module" : "RSVP-MIB"
3601
+ },
3602
+ "rsvpNbrGroup" : {
3603
+ "nodetype" : "mandatory",
3604
+ "module" : "RSVP-MIB"
3605
+ },
3606
+ "rsvpResvFwdGroup" : {
3607
+ "nodetype" : "optional",
3608
+ "module" : "RSVP-MIB",
3609
+ "description" :
3610
+ """The Reservation Requests table is appropriate
3611
+ in implementations that store upstream reserva-
3612
+ tion messages, but not appropriate in implemen-
3613
+ tations which calculate them on each transmis-
3614
+ sion.""",
3615
+ },
3616
+ "rsvpNotificationGroup" : {
3617
+ "nodetype" : "optional",
3618
+ "module" : "RSVP-MIB",
3619
+ "description" :
3620
+ """The notifications in this module may be used to
3621
+ advise a network management station of changes in
3622
+ flow status, and are required when this use is in
3623
+ view.""",
3624
+ },
3625
+ }, # requires
3626
+ "refinements" : {
3627
+ "rsvpSessionRequests" : {
3628
+ "module" : "RSVP-MIB",
3629
+ "access" : "noaccess",
3630
+ "description" :
3631
+ """This object is optional.""",
3632
+ },
3633
+ "rsvpSenderType" : {
3634
+ "module" : "RSVP-MIB",
3635
+ "access" : "readonly",
3636
+ "description" :
3637
+ """read-create access is not required. This may be
3638
+ read-only.""",
3639
+ },
3640
+ "rsvpSenderDestAddr" : {
3641
+ "module" : "RSVP-MIB",
3642
+ "access" : "readonly",
3643
+ "description" :
3644
+ """read-create access is not required. This may be
3645
+ read-only.""",
3646
+ },
3647
+ "rsvpSenderAddr" : {
3648
+ "module" : "RSVP-MIB",
3649
+ "access" : "readonly",
3650
+ "description" :
3651
+ """read-create access is not required. This may be
3652
+ read-only.""",
3653
+ },
3654
+ "rsvpSenderDestAddrLength" : {
3655
+ "module" : "RSVP-MIB",
3656
+ "access" : "readonly",
3657
+ "description" :
3658
+ """read-create access is not required. This may be
3659
+ read-only.""",
3660
+ },
3661
+ "rsvpSenderAddrLength" : {
3662
+ "module" : "RSVP-MIB",
3663
+ "access" : "readonly",
3664
+ "description" :
3665
+ """read-create access is not required. This may be
3666
+ read-only.""",
3667
+ },
3668
+ "rsvpSenderProtocol" : {
3669
+ "module" : "RSVP-MIB",
3670
+ "access" : "readonly",
3671
+ "description" :
3672
+ """read-create access is not required. This may be
3673
+ read-only.""",
3674
+ },
3675
+ "rsvpSenderDestPort" : {
3676
+ "module" : "RSVP-MIB",
3677
+ "access" : "readonly",
3678
+ "description" :
3679
+ """read-create access is not required. This may be
3680
+ read-only.""",
3681
+ },
3682
+ "rsvpSenderPort" : {
3683
+ "module" : "RSVP-MIB",
3684
+ "access" : "readonly",
3685
+ "description" :
3686
+ """read-create access is not required. This may be
3687
+ read-only.""",
3688
+ },
3689
+ "rsvpSenderHopAddr" : {
3690
+ "module" : "RSVP-MIB",
3691
+ "access" : "readonly",
3692
+ "description" :
3693
+ """read-create access is not required. This may be
3694
+ read-only.""",
3695
+ },
3696
+ "rsvpSenderHopLih" : {
3697
+ "module" : "RSVP-MIB",
3698
+ "access" : "readonly",
3699
+ "description" :
3700
+ """read-create access is not required. This may be
3701
+ read-only.""",
3702
+ },
3703
+ "rsvpSenderInterface" : {
3704
+ "module" : "RSVP-MIB",
3705
+ "access" : "readonly",
3706
+ "description" :
3707
+ """read-create access is not required. This may be
3708
+ read-only.""",
3709
+ },
3710
+ "rsvpSenderTSpecRate" : {
3711
+ "module" : "RSVP-MIB",
3712
+ "access" : "readonly",
3713
+ "description" :
3714
+ """read-create access is not required. This may be
3715
+ read-only.""",
3716
+ },
3717
+ "rsvpSenderTSpecPeakRate" : {
3718
+ "module" : "RSVP-MIB",
3719
+ "access" : "readonly",
3720
+ "description" :
3721
+ """read-create access is not required. This may be
3722
+ read-only.""",
3723
+ },
3724
+ "rsvpSenderTSpecBurst" : {
3725
+ "module" : "RSVP-MIB",
3726
+ "access" : "readonly",
3727
+ "description" :
3728
+ """read-create access is not required. This may be
3729
+ read-only.""",
3730
+ },
3731
+ "rsvpSenderTSpecMinTU" : {
3732
+ "module" : "RSVP-MIB",
3733
+ "access" : "readonly",
3734
+ "description" :
3735
+ """read-create access is not required. This may be
3736
+ read-only.""",
3737
+ },
3738
+ "rsvpSenderTSpecMaxTU" : {
3739
+ "module" : "RSVP-MIB",
3740
+ "access" : "readonly",
3741
+ "description" :
3742
+ """read-create access is not required. This may be
3743
+ read-only.""",
3744
+ },
3745
+ "rsvpSenderInterval" : {
3746
+ "module" : "RSVP-MIB",
3747
+ "access" : "readonly",
3748
+ "description" :
3749
+ """read-create access is not required. This may be
3750
+ read-only.""",
3751
+ },
3752
+ "rsvpSenderRSVPHop" : {
3753
+ "module" : "RSVP-MIB",
3754
+ "access" : "readonly",
3755
+ "description" :
3756
+ """read-create access is not required. This may be
3757
+ read-only.""",
3758
+ },
3759
+ "rsvpSenderPolicy" : {
3760
+ "module" : "RSVP-MIB",
3761
+ "access" : "readonly",
3762
+ "description" :
3763
+ """read-create access is not required. This may be
3764
+ read-only.""",
3765
+ },
3766
+ "rsvpSenderAdspecBreak" : {
3767
+ "module" : "RSVP-MIB",
3768
+ "access" : "readonly",
3769
+ "description" :
3770
+ """read-create access is not required. This may be
3771
+ read-only.""",
3772
+ },
3773
+ "rsvpSenderAdspecHopCount" : {
3774
+ "module" : "RSVP-MIB",
3775
+ "access" : "readonly",
3776
+ "description" :
3777
+ """read-create access is not required. This may be
3778
+ read-only.""",
3779
+ },
3780
+ "rsvpSenderAdspecPathBw" : {
3781
+ "module" : "RSVP-MIB",
3782
+ "access" : "readonly",
3783
+ "description" :
3784
+ """read-create access is not required. This may be
3785
+ read-only.""",
3786
+ },
3787
+ "rsvpSenderAdspecMinLatency" : {
3788
+ "module" : "RSVP-MIB",
3789
+ "access" : "readonly",
3790
+ "description" :
3791
+ """read-create access is not required. This may be
3792
+ read-only.""",
3793
+ },
3794
+ "rsvpSenderAdspecMtu" : {
3795
+ "module" : "RSVP-MIB",
3796
+ "access" : "readonly",
3797
+ "description" :
3798
+ """read-create access is not required. This may be
3799
+ read-only.""",
3800
+ },
3801
+ "rsvpSenderAdspecGuaranteedSvc" : {
3802
+ "module" : "RSVP-MIB",
3803
+ "access" : "noaccess",
3804
+ "description" :
3805
+ """This may be not-accessible if the system does not
3806
+ support Guaranteed Service.""",
3807
+ },
3808
+ "rsvpSenderAdspecGuaranteedBreak" : {
3809
+ "module" : "RSVP-MIB",
3810
+ "access" : "noaccess",
3811
+ "description" :
3812
+ """This may be not-accessible if the system does not
3813
+ support Guaranteed Service.""",
3814
+ },
3815
+ "rsvpSenderAdspecGuaranteedCtot" : {
3816
+ "module" : "RSVP-MIB",
3817
+ "access" : "noaccess",
3818
+ "description" :
3819
+ """This may be not-accessible if the system does not
3820
+ support Guaranteed Service.""",
3821
+ },
3822
+ "rsvpSenderAdspecGuaranteedDtot" : {
3823
+ "module" : "RSVP-MIB",
3824
+ "access" : "noaccess",
3825
+ "description" :
3826
+ """This may be not-accessible if the system does not
3827
+ support Guaranteed Service.""",
3828
+ },
3829
+ "rsvpSenderAdspecGuaranteedCsum" : {
3830
+ "module" : "RSVP-MIB",
3831
+ "access" : "noaccess",
3832
+ "description" :
3833
+ """This may be not-accessible if the system does not
3834
+ support Guaranteed Service.""",
3835
+ },
3836
+ "rsvpSenderAdspecGuaranteedDsum" : {
3837
+ "module" : "RSVP-MIB",
3838
+ "access" : "readonly",
3839
+ "description" :
3840
+ """This may be not-accessible if the system does not
3841
+ support Guaranteed Service.""",
3842
+ },
3843
+ "rsvpSenderAdspecGuaranteedHopCount" : {
3844
+ "module" : "RSVP-MIB",
3845
+ "access" : "noaccess",
3846
+ "description" :
3847
+ """This may be not-accessible if the system does not
3848
+ support Guaranteed Service.""",
3849
+ },
3850
+ "rsvpSenderAdspecGuaranteedPathBw" : {
3851
+ "module" : "RSVP-MIB",
3852
+ "access" : "noaccess",
3853
+ "description" :
3854
+ """This may be not-accessible if the system does not
3855
+ support Guaranteed Service.""",
3856
+ },
3857
+ "rsvpSenderAdspecGuaranteedMinLatency" : {
3858
+ "module" : "RSVP-MIB",
3859
+ "access" : "noaccess",
3860
+ "description" :
3861
+ """This may be not-accessible if the system does not
3862
+ support Guaranteed Service.""",
3863
+ },
3864
+ "rsvpSenderAdspecGuaranteedMtu" : {
3865
+ "module" : "RSVP-MIB",
3866
+ "access" : "noaccess",
3867
+ "description" :
3868
+ """This may be not-accessible if the system does not
3869
+ support Guaranteed Service.""",
3870
+ },
3871
+ "rsvpSenderAdspecCtrlLoadSvc" : {
3872
+ "module" : "RSVP-MIB",
3873
+ "access" : "noaccess",
3874
+ "description" :
3875
+ """This may be not-accessible if the system does not
3876
+ support Controlled Load.""",
3877
+ },
3878
+ "rsvpSenderAdspecCtrlLoadBreak" : {
3879
+ "module" : "RSVP-MIB",
3880
+ "access" : "noaccess",
3881
+ "description" :
3882
+ """This may be not-accessible if the system does not
3883
+ support Controlled Load.""",
3884
+ },
3885
+ "rsvpSenderAdspecCtrlLoadHopCount" : {
3886
+ "module" : "RSVP-MIB",
3887
+ "access" : "noaccess",
3888
+ "description" :
3889
+ """This may be not-accessible if the system does not
3890
+ support Controlled Load.""",
3891
+ },
3892
+ "rsvpSenderAdspecCtrlLoadPathBw" : {
3893
+ "module" : "RSVP-MIB",
3894
+ "access" : "noaccess",
3895
+ "description" :
3896
+ """This may be not-accessible if the system does not
3897
+ support Controlled Load.""",
3898
+ },
3899
+ "rsvpSenderAdspecCtrlLoadMinLatency" : {
3900
+ "module" : "RSVP-MIB",
3901
+ "access" : "noaccess",
3902
+ "description" :
3903
+ """This may be not-accessible if the system does not
3904
+ support Controlled Load.""",
3905
+ },
3906
+ "rsvpSenderAdspecCtrlLoadMtu" : {
3907
+ "module" : "RSVP-MIB",
3908
+ "access" : "noaccess",
3909
+ "description" :
3910
+ """This may be not-accessible if the system does not
3911
+ support Controlled Load.""",
3912
+ },
3913
+ "rsvpSenderStatus" : {
3914
+ "module" : "RSVP-MIB",
3915
+ "access" : "readonly",
3916
+ "description" :
3917
+ """read-create access is not required. This may be
3918
+ read-only.""",
3919
+ },
3920
+ "rsvpSenderFlowId" : {
3921
+ "module" : "RSVP-MIB",
3922
+ "access" : "noaccess",
3923
+ "description" :
3924
+ """This object is needed only in a system that imple-
3925
+ ments IPv6.""",
3926
+ },
3927
+ "rsvpResvType" : {
3928
+ "module" : "RSVP-MIB",
3929
+ "access" : "readonly",
3930
+ "description" :
3931
+ """read-create access is not required. This may be
3932
+ read-only.""",
3933
+ },
3934
+ "rsvpResvDestAddr" : {
3935
+ "module" : "RSVP-MIB",
3936
+ "access" : "readonly",
3937
+ "description" :
3938
+ """read-create access is not required. This may be
3939
+ read-only.""",
3940
+ },
3941
+ "rsvpResvSenderAddr" : {
3942
+ "module" : "RSVP-MIB",
3943
+ "access" : "readonly",
3944
+ "description" :
3945
+ """read-create access is not required. This may be
3946
+ read-only.""",
3947
+ },
3948
+ "rsvpResvDestAddrLength" : {
3949
+ "module" : "RSVP-MIB",
3950
+ "access" : "readonly",
3951
+ "description" :
3952
+ """read-create access is not required. This may be
3953
+ read-only.""",
3954
+ },
3955
+ "rsvpResvSenderAddrLength" : {
3956
+ "module" : "RSVP-MIB",
3957
+ "access" : "readonly",
3958
+ "description" :
3959
+ """read-create access is not required. This may be
3960
+ read-only.""",
3961
+ },
3962
+ "rsvpResvProtocol" : {
3963
+ "module" : "RSVP-MIB",
3964
+ "access" : "readonly",
3965
+ "description" :
3966
+ """read-create access is not required. This may be
3967
+ read-only.""",
3968
+ },
3969
+ "rsvpResvDestPort" : {
3970
+ "module" : "RSVP-MIB",
3971
+ "access" : "readonly",
3972
+ "description" :
3973
+ """read-create access is not required. This may be
3974
+ read-only.""",
3975
+ },
3976
+ "rsvpResvPort" : {
3977
+ "module" : "RSVP-MIB",
3978
+ "access" : "readonly",
3979
+ "description" :
3980
+ """read-create access is not required. This may be
3981
+ read-only.""",
3982
+ },
3983
+ "rsvpResvHopAddr" : {
3984
+ "module" : "RSVP-MIB",
3985
+ "access" : "readonly",
3986
+ "description" :
3987
+ """read-create access is not required. This may be
3988
+ read-only.""",
3989
+ },
3990
+ "rsvpResvHopLih" : {
3991
+ "module" : "RSVP-MIB",
3992
+ "access" : "readonly",
3993
+ "description" :
3994
+ """read-create access is not required. This may be
3995
+ read-only.""",
3996
+ },
3997
+ "rsvpResvInterface" : {
3998
+ "module" : "RSVP-MIB",
3999
+ "access" : "readonly",
4000
+ "description" :
4001
+ """read-create access is not required. This may be
4002
+ read-only.""",
4003
+ },
4004
+ "rsvpResvService" : {
4005
+ "module" : "RSVP-MIB",
4006
+ "access" : "readonly",
4007
+ "description" :
4008
+ """read-create access is not required. This may be
4009
+ read-only.""",
4010
+ },
4011
+ "rsvpResvTSpecRate" : {
4012
+ "module" : "RSVP-MIB",
4013
+ "access" : "readonly",
4014
+ "description" :
4015
+ """read-create access is not required. This may be
4016
+ read-only.""",
4017
+ },
4018
+ "rsvpResvTSpecPeakRate" : {
4019
+ "module" : "RSVP-MIB",
4020
+ "access" : "readonly",
4021
+ "description" :
4022
+ """read-create access is not required. This may be
4023
+ read-only.""",
4024
+ },
4025
+ "rsvpResvTSpecBurst" : {
4026
+ "module" : "RSVP-MIB",
4027
+ "access" : "readonly",
4028
+ "description" :
4029
+ """read-create access is not required. This may be
4030
+ read-only.""",
4031
+ },
4032
+ "rsvpResvTSpecMinTU" : {
4033
+ "module" : "RSVP-MIB",
4034
+ "access" : "readonly",
4035
+ "description" :
4036
+ """read-create access is not required. This may be
4037
+ read-only.""",
4038
+ },
4039
+ "rsvpResvTSpecMaxTU" : {
4040
+ "module" : "RSVP-MIB",
4041
+ "access" : "readonly",
4042
+ "description" :
4043
+ """read-create access is not required. This may be
4044
+ read-only.""",
4045
+ },
4046
+ "rsvpResvRSpecRate" : {
4047
+ "module" : "RSVP-MIB",
4048
+ "access" : "readonly",
4049
+ "description" :
4050
+ """read-create access is not required. This may be
4051
+ read-only.""",
4052
+ },
4053
+ "rsvpResvRSpecSlack" : {
4054
+ "module" : "RSVP-MIB",
4055
+ "access" : "readonly",
4056
+ "description" :
4057
+ """read-create access is not required. This may be
4058
+ read-only.""",
4059
+ },
4060
+ "rsvpResvInterval" : {
4061
+ "module" : "RSVP-MIB",
4062
+ "access" : "readonly",
4063
+ "description" :
4064
+ """read-create access is not required. This may be
4065
+ read-only.""",
4066
+ },
4067
+ "rsvpResvScope" : {
4068
+ "module" : "RSVP-MIB",
4069
+ "access" : "readonly",
4070
+ "description" :
4071
+ """read-create access is not required. This may be
4072
+ read-only.""",
4073
+ },
4074
+ "rsvpResvShared" : {
4075
+ "module" : "RSVP-MIB",
4076
+ "access" : "readonly",
4077
+ "description" :
4078
+ """read-create access is not required. This may be
4079
+ read-only.""",
4080
+ },
4081
+ "rsvpResvExplicit" : {
4082
+ "module" : "RSVP-MIB",
4083
+ "access" : "readonly",
4084
+ "description" :
4085
+ """read-create access is not required. This may be
4086
+ read-only.""",
4087
+ },
4088
+ "rsvpResvRSVPHop" : {
4089
+ "module" : "RSVP-MIB",
4090
+ "access" : "readonly",
4091
+ "description" :
4092
+ """read-create access is not required. This may be
4093
+ read-only.""",
4094
+ },
4095
+ "rsvpResvPolicy" : {
4096
+ "module" : "RSVP-MIB",
4097
+ "access" : "readonly",
4098
+ "description" :
4099
+ """read-create access is not required. This may be
4100
+ read-only.""",
4101
+ },
4102
+ "rsvpResvStatus" : {
4103
+ "module" : "RSVP-MIB",
4104
+ "access" : "readonly",
4105
+ "description" :
4106
+ """read-create access is not required. This may be
4107
+ read-only.""",
4108
+ },
4109
+ "rsvpResvFlowId" : {
4110
+ "module" : "RSVP-MIB",
4111
+ "access" : "noaccess",
4112
+ "description" :
4113
+ """This object is needed only in a system that imple-
4114
+ ments IPv6.""",
4115
+ },
4116
+ "rsvpResvFwdStatus" : {
4117
+ "module" : "RSVP-MIB",
4118
+ "access" : "readonly",
4119
+ "description" :
4120
+ """read-create access is not required. This may be
4121
+ read-only.""",
4122
+ },
4123
+ "rsvpResvFwdFlowId" : {
4124
+ "module" : "RSVP-MIB",
4125
+ "access" : "noaccess",
4126
+ "description" :
4127
+ """This object is needed only in a system that imple-
4128
+ ments IPv6.""",
4129
+ },
4130
+ }, # refinements
4131
+
4132
+ }, # compliance
4133
+ }, # compliances
4134
+
4135
+ }