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,3010 @@
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 PMIPV6-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PMIPV6-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PMIPV6-MIB",
11
+
12
+ "PMIPV6-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF NETLMM Working Group""",
17
+ "contact" :
18
+ """ Glenn Mansfield Keeni
19
+ Postal: Cyber Solutions, Inc.
20
+ 6-6-3, Minami Yoshinari
21
+ Aoba-ku, Sendai 989-3204, Japan.
22
+
23
+ Tel: +81-22-303-4012
24
+ Fax: +81-22-303-4015
25
+ EMail: glenn@cysols.com
26
+
27
+ Kazuhide Koide
28
+ Postal: KDDI Corporation
29
+ GARDEN AIR TOWER 3-10-10, Iidabashi
30
+ Chiyoda-ku, Tokyo 102-8460, Japan.
31
+ Tel: +81-3-6678-3378
32
+ EMail: ka-koide@kddi.com
33
+
34
+ Sri Gundavelli
35
+ Postal: Cisco
36
+ 170 W.Tasman Drive,
37
+ San Jose, CA 95134
38
+ USA
39
+ Tel: +1-408-527-6109
40
+ EMail: sgundave@cisco.com
41
+
42
+ Ryuji Wakikawa
43
+ Postal: TOYOTA InfoTechnology Center, U.S.A., Inc.
44
+ 465 Bernardo Avenue
45
+ Mountain View, CA
46
+ 94043
47
+ USA
48
+ EMail: ryuji@us.toyota-itc.com
49
+
50
+ Support Group EMail: netlmm@ietf.org""",
51
+ "description" :
52
+ """The MIB module for monitoring and controlling PMIPv6
53
+ entities.
54
+
55
+ Copyright (c) 2012 IETF Trust and the persons
56
+ identified as authors of the code. All rights
57
+ reserved.
58
+
59
+ Redistribution and use in source and binary forms,
60
+ with or without modification, is permitted pursuant
61
+ to, and subject to the license terms contained in,
62
+ the Simplified BSD License set forth in Section 4.c
63
+ of the IETF Trust's Legal Provisions Relating to IETF
64
+ Documents (http://trustee.ietf.org/license-info).""",
65
+ "revisions" : (
66
+ {
67
+ "date" : "2012-05-07 00:00",
68
+ "description" :
69
+ """Initial version, published as RFC 6475.""",
70
+ },
71
+ ),
72
+ "identity node" : "pmip6MIB",
73
+ },
74
+
75
+ "imports" : (
76
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
77
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
78
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
79
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
80
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
81
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
82
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
83
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
84
+ {"module" : "SNMPv2-TC", "name" : "PhysAddress"},
85
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
86
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
87
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
88
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
89
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
90
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
91
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
92
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
93
+ {"module" : "IP-MIB", "name" : "Ipv6AddressIfIdentifierTC"},
94
+ {"module" : "MOBILEIPV6-MIB", "name" : "mip6MnBLEntry"},
95
+ {"module" : "MOBILEIPV6-MIB", "name" : "mip6BindingCacheEntry"},
96
+ {"module" : "PMIPV6-TC-MIB", "name" : "Pmip6TimeStamp64"},
97
+ {"module" : "PMIPV6-TC-MIB", "name" : "Pmip6MnIdentifier"},
98
+ {"module" : "PMIPV6-TC-MIB", "name" : "Pmip6MnLLIdentifier"},
99
+ {"module" : "PMIPV6-TC-MIB", "name" : "Pmip6MnIndex"},
100
+ {"module" : "PMIPV6-TC-MIB", "name" : "Pmip6MnLLIndex"},
101
+ {"module" : "PMIPV6-TC-MIB", "name" : "Pmip6MnInterfaceATT"},
102
+ ),
103
+
104
+ "nodes" : {
105
+ "pmip6MIB" : {
106
+ "nodetype" : "node",
107
+ "moduleName" : "PMIPV6-MIB",
108
+ "oid" : "1.3.6.1.2.1.206",
109
+ "status" : "current",
110
+ }, # node
111
+ "pmip6Notifications" : {
112
+ "nodetype" : "node",
113
+ "moduleName" : "PMIPV6-MIB",
114
+ "oid" : "1.3.6.1.2.1.206.0",
115
+ }, # node
116
+ "pmip6Objects" : {
117
+ "nodetype" : "node",
118
+ "moduleName" : "PMIPV6-MIB",
119
+ "oid" : "1.3.6.1.2.1.206.1",
120
+ }, # node
121
+ "pmip6Core" : {
122
+ "nodetype" : "node",
123
+ "moduleName" : "PMIPV6-MIB",
124
+ "oid" : "1.3.6.1.2.1.206.1.1",
125
+ }, # node
126
+ "pmip6System" : {
127
+ "nodetype" : "node",
128
+ "moduleName" : "PMIPV6-MIB",
129
+ "oid" : "1.3.6.1.2.1.206.1.1.1",
130
+ }, # node
131
+ "pmip6Capabilities" : {
132
+ "nodetype" : "scalar",
133
+ "moduleName" : "PMIPV6-MIB",
134
+ "oid" : "1.3.6.1.2.1.206.1.1.1.1",
135
+ "status" : "current",
136
+ "syntax" : {
137
+ "type" : {
138
+ "basetype" : "Bits",
139
+ "mobilityAccessGateway" : {
140
+ "nodetype" : "namednumber",
141
+ "number" : "0"
142
+ },
143
+ "localMobilityAnchor" : {
144
+ "nodetype" : "namednumber",
145
+ "number" : "1"
146
+ },
147
+ },
148
+ },
149
+ "access" : "readonly",
150
+ "description" :
151
+ """This object indicates the PMIPv6 functions that
152
+ are supported by this managed entity. Multiple
153
+ Proxy Mobile IPv6 functions may be supported by
154
+ a single entity.
155
+ mobilityAccessGateway(0) indicates the availability
156
+ of the mobility access gateway function.
157
+ localMobilityAnchor(1) indicates the availability
158
+ of the local mobility anchor function.""",
159
+ "reference" :
160
+ """RFC 6275: Sections 3.2, 4.1""",
161
+ }, # scalar
162
+ "pmip6Bindings" : {
163
+ "nodetype" : "node",
164
+ "moduleName" : "PMIPV6-MIB",
165
+ "oid" : "1.3.6.1.2.1.206.1.1.2",
166
+ }, # node
167
+ "pmip6BindingCacheTable" : {
168
+ "nodetype" : "table",
169
+ "moduleName" : "PMIPV6-MIB",
170
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1",
171
+ "status" : "current",
172
+ "description" :
173
+ """This table models the Binding Cache on the local
174
+ mobility anchor.
175
+
176
+ Entries from the table are deleted as the lifetime
177
+ of the binding expires.
178
+
179
+ Entries in this table are not required to survive
180
+ a reboot of the managed entity.""",
181
+ "reference" :
182
+ """RFC 6275: Sections 4.5, 9.1, 10.1
183
+ RFC 5213: Section 5.1""",
184
+ }, # table
185
+ "pmip6BindingCacheEntry" : {
186
+ "nodetype" : "row",
187
+ "moduleName" : "PMIPV6-MIB",
188
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1",
189
+ "status" : "current",
190
+ "linkage" : [
191
+ { "MOBILEIPV6-MIB" : {
192
+ "indexkind" : "augments",
193
+ "relatedNode" : "mip6BindingCacheEntry",
194
+ }},
195
+ ],
196
+ "description" :
197
+ """An entry containing additional information contained
198
+ in the Binding Cache table of the local mobility anchor.""",
199
+ }, # row
200
+ "pmip6BindingPBUFlag" : {
201
+ "nodetype" : "column",
202
+ "moduleName" : "PMIPV6-MIB",
203
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.1",
204
+ "status" : "current",
205
+ "syntax" : {
206
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
207
+ },
208
+ "access" : "readonly",
209
+ "description" :
210
+ """true(1) indicates that the local mobility anchor
211
+
212
+
213
+ accepted the binding update with Proxy Registration
214
+ Flag from a mobile access gateway.
215
+ false(0) implies that the binding cache is from a
216
+ mobile node. In this case, the remaining objects will
217
+ not be accessible.""",
218
+ "reference" :
219
+ """RFC 5213: Sections 5.1, 8.1""",
220
+ }, # column
221
+ "pmip6BindingMnIndex" : {
222
+ "nodetype" : "column",
223
+ "moduleName" : "PMIPV6-MIB",
224
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.2",
225
+ "status" : "current",
226
+ "syntax" : {
227
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnIndex"},
228
+ },
229
+ "access" : "readonly",
230
+ "description" :
231
+ """An index to the identifier of the registered mobile
232
+ node.""",
233
+ "reference" :
234
+ """RFC 5213: Sections 2.2, 5.1, 8.1
235
+ RFC 4283: Section 3""",
236
+ }, # column
237
+ "pmip6BindingMnLLIndex" : {
238
+ "nodetype" : "column",
239
+ "moduleName" : "PMIPV6-MIB",
240
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.3",
241
+ "status" : "current",
242
+ "syntax" : {
243
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnLLIndex"},
244
+ },
245
+ "access" : "readonly",
246
+ "description" :
247
+ """The index to the link-layer identifier of the mobile
248
+ node's connected interface on the access link.""",
249
+ "reference" :
250
+ """RFC 5213: Sections 2.2, 5.1, 8.1""",
251
+ }, # column
252
+ "pmip6BindingMagLinkLocalAddressType" : {
253
+ "nodetype" : "column",
254
+ "moduleName" : "PMIPV6-MIB",
255
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.4",
256
+ "status" : "current",
257
+ "syntax" : {
258
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
259
+ },
260
+ "access" : "readonly",
261
+ "description" :
262
+ """The InetAddressType of the
263
+ pmip6BindingMagLinkLocalAddress that follows.""",
264
+ }, # column
265
+ "pmip6BindingMagLinkLocalAddress" : {
266
+ "nodetype" : "column",
267
+ "moduleName" : "PMIPV6-MIB",
268
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.5",
269
+ "status" : "current",
270
+ "syntax" : {
271
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
272
+ },
273
+ "access" : "readonly",
274
+ "description" :
275
+ """The link-local address of the mobile access gateway on
276
+ the point-to-point link shared with the mobile node.
277
+ This is generated by the local mobility anchor after
278
+ accepting the initial Proxy Binding Update message.
279
+ This is the address that is present in the Link-local
280
+ Address option of the corresponding Proxy Binding
281
+ Acknowledgement message.""",
282
+ "reference" :
283
+ """RFC 5213: Sections 5.1, 6.9.1.2, 8.2""",
284
+ }, # column
285
+ "pmip6BindingTunnelIfIdentifier" : {
286
+ "nodetype" : "column",
287
+ "moduleName" : "PMIPV6-MIB",
288
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.6",
289
+ "status" : "current",
290
+ "syntax" : {
291
+ "type" : { "module" :"IP-MIB", "name" : "Ipv6AddressIfIdentifierTC"},
292
+ },
293
+ "access" : "readonly",
294
+ "description" :
295
+ """The tunnel interface identifier (tunnel-if-id) of the
296
+ bidirectional tunnel between the local mobility anchor
297
+ and the mobile access gateway where the mobile node is
298
+ currently anchored. This is internal to the local
299
+ mobility anchor. The tunnel interface identifier is
300
+ acquired during the tunnel creation.""",
301
+ "reference" :
302
+ """RFC 5213: Sections 5.1, 8.1""",
303
+ }, # column
304
+ "pmip6BindingMnInterfaceATT" : {
305
+ "nodetype" : "column",
306
+ "moduleName" : "PMIPV6-MIB",
307
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.7",
308
+ "status" : "current",
309
+ "syntax" : {
310
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnInterfaceATT"},
311
+ },
312
+ "access" : "readonly",
313
+ "description" :
314
+ """The access technology type by which the mobile node
315
+ is currently attached. This is obtained from the
316
+ Access Technology Type option, present in the Proxy
317
+ Binding Update message.""",
318
+ "reference" :
319
+ """RFC 5213: Sections 5.1, 8.1""",
320
+ }, # column
321
+ "pmip6BindingTimeRecentlyAccepted" : {
322
+ "nodetype" : "column",
323
+ "moduleName" : "PMIPV6-MIB",
324
+ "oid" : "1.3.6.1.2.1.206.1.1.2.1.1.8",
325
+ "status" : "current",
326
+ "syntax" : {
327
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6TimeStamp64"},
328
+ },
329
+ "access" : "readonly",
330
+ "description" :
331
+ """The 64-bit timestamp value of the most recently
332
+ accepted Proxy Binding Update message sent for this
333
+ mobile node. This is the time of day on the local
334
+ mobility anchor, when the message was received. If
335
+ the Timestamp option is not present in the Proxy
336
+ Binding Update message (i.e., when the sequence number
337
+ based scheme is in use), the value MUST be initialized
338
+ with all zeroes.""",
339
+ "reference" :
340
+ """RFC 5213: Sections 5.1, 8.1""",
341
+ }, # column
342
+ "pmip6Conf" : {
343
+ "nodetype" : "node",
344
+ "moduleName" : "PMIPV6-MIB",
345
+ "oid" : "1.3.6.1.2.1.206.1.1.3",
346
+ }, # node
347
+ "pmip6MobileNodeGeneratedTimestampInUse" : {
348
+ "nodetype" : "scalar",
349
+ "moduleName" : "PMIPV6-MIB",
350
+ "oid" : "1.3.6.1.2.1.206.1.1.3.1",
351
+ "status" : "current",
352
+ "syntax" : {
353
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
354
+ },
355
+ "access" : "readwrite",
356
+ "default" : "false",
357
+ "description" :
358
+ """This flag indicates whether or not the
359
+ MN-generated timestamp mechanism is in use in that
360
+ Proxy Mobile IPv6 domain.
361
+ true(1) indicates that the local mobility anchors and
362
+ mobile access gateways in that Proxy Mobile IPv6
363
+ domain apply the MN-generated timestamp considerations.
364
+ false(0) indicates that the MN-generated timestamp
365
+ mechanism is not in use in that Proxy Mobile IPv6
366
+ domain.
367
+ The default value for this flag is 'false'.""",
368
+ "reference" :
369
+ """RFC 5213: Sections 5.5, 9.3""",
370
+ }, # scalar
371
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinksType" : {
372
+ "nodetype" : "scalar",
373
+ "moduleName" : "PMIPV6-MIB",
374
+ "oid" : "1.3.6.1.2.1.206.1.1.3.2",
375
+ "status" : "current",
376
+ "syntax" : {
377
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
378
+ },
379
+ "access" : "readwrite",
380
+ "description" :
381
+ """The InetAddressType of the
382
+ pmip6FixedMagLinkLocalAddressOnAllAccessLinks
383
+ that follows.""",
384
+ }, # scalar
385
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinks" : {
386
+ "nodetype" : "scalar",
387
+ "moduleName" : "PMIPV6-MIB",
388
+ "oid" : "1.3.6.1.2.1.206.1.1.3.3",
389
+ "status" : "current",
390
+ "syntax" : {
391
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
392
+ },
393
+ "access" : "readwrite",
394
+ "description" :
395
+ """This variable indicates the link-local address value
396
+ that all the mobile access gateways should use on
397
+ any of the access links shared with any of the
398
+ mobile nodes in that Proxy Mobile IPv6 domain. If
399
+ this variable is initialized with all zeroes, it
400
+ implies that the use of fixed link-local address mode
401
+ is not enabled for that Proxy Mobile IPv6 domain.""",
402
+ "reference" :
403
+ """RFC 5213: Sections 2.2, 6.8, 6.9.1.1, 6.9.3, 9.3""",
404
+ }, # scalar
405
+ "pmip6FixedMagLinkLayerAddressOnAllAccessLinks" : {
406
+ "nodetype" : "scalar",
407
+ "moduleName" : "PMIPV6-MIB",
408
+ "oid" : "1.3.6.1.2.1.206.1.1.3.4",
409
+ "status" : "current",
410
+ "syntax" : {
411
+ "type" : { "module" :"SNMPv2-TC", "name" : "PhysAddress"},
412
+ },
413
+ "access" : "readwrite",
414
+ "description" :
415
+ """This variable indicates the link-layer address value
416
+ that all the mobile access gateways should use on
417
+ any of the access links shared with any of the mobile
418
+ nodes in that Proxy Mobile IPv6 domain. For access
419
+ technologies where there is no link-layer address,
420
+ this variable MUST be initialized with all zeroes.""",
421
+ "reference" :
422
+ """RFC 5213: Sections 6.9.3, 9.3""",
423
+ }, # scalar
424
+ "pmip6Stats" : {
425
+ "nodetype" : "node",
426
+ "moduleName" : "PMIPV6-MIB",
427
+ "oid" : "1.3.6.1.2.1.206.1.1.4",
428
+ }, # node
429
+ "pmip6BindingRegCounters" : {
430
+ "nodetype" : "node",
431
+ "moduleName" : "PMIPV6-MIB",
432
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1",
433
+ }, # node
434
+ "pmip6MissingMnIdentifierOption" : {
435
+ "nodetype" : "scalar",
436
+ "moduleName" : "PMIPV6-MIB",
437
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.1",
438
+ "status" : "current",
439
+ "syntax" : {
440
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
441
+ },
442
+ "access" : "readonly",
443
+ "description" :
444
+ """Total number of Proxy Binding Update messages
445
+ rejected by the local mobility anchor with status
446
+ code in the Binding Acknowledgement message indicating
447
+ 'Missing mobile node identifier option' (Code 160).
448
+
449
+ Discontinuities in the value of this counter can
450
+ occur at re-initialization of the mobile router,
451
+ and at other times as indicated by the value of
452
+ pmip6CounterDiscontinuityTime.""",
453
+ "reference" :
454
+ """RFC 5213: Sections 5.3.1, 8.9""",
455
+ }, # scalar
456
+ "pmip6MagNotAuthorizedForProxyReg" : {
457
+ "nodetype" : "scalar",
458
+ "moduleName" : "PMIPV6-MIB",
459
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.2",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
463
+ },
464
+ "access" : "readonly",
465
+ "description" :
466
+ """Total number of Proxy Binding Update messages
467
+
468
+
469
+ rejected by the local mobility anchor with status
470
+ code in the Binding Acknowledgement message indicating
471
+ 'Not authorized to send Proxy Binding Updates'
472
+ (Code 154).
473
+
474
+ Discontinuities in the value of this counter can
475
+ occur at re-initialization of the mobile router,
476
+ and at other times as indicated by the value of
477
+ pmip6CounterDiscontinuityTime.""",
478
+ "reference" :
479
+ """RFC 5213: Sections 5.3.1, 8.9""",
480
+ }, # scalar
481
+ "pmip6NotLMAForThisMobileNode" : {
482
+ "nodetype" : "scalar",
483
+ "moduleName" : "PMIPV6-MIB",
484
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.3",
485
+ "status" : "current",
486
+ "syntax" : {
487
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
488
+ },
489
+ "access" : "readonly",
490
+ "description" :
491
+ """Total number of Proxy Binding Update messages rejected
492
+ by the local mobility anchor with status code in the
493
+ Binding Acknowledgement message indicating
494
+ 'Not local mobility anchor for this mobile node'
495
+ (Code 153).
496
+
497
+ Discontinuities in the value of this counter can
498
+ occur at re-initialization of the management system,
499
+ and at other times as indicated by the value of
500
+ pmip6CounterDiscontinuityTime.""",
501
+ "reference" :
502
+ """RFC 5213: Sections 5.3.1, 8.9""",
503
+ }, # scalar
504
+ "pmip6ProxyRegNotEnabled" : {
505
+ "nodetype" : "scalar",
506
+ "moduleName" : "PMIPV6-MIB",
507
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.4",
508
+ "status" : "current",
509
+ "syntax" : {
510
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
511
+ },
512
+ "access" : "readonly",
513
+ "description" :
514
+ """Total number of Proxy Binding Update messages rejected
515
+ by the local mobility anchor with status code in the
516
+ Binding Acknowledgement message indicating
517
+ 'Proxy Registration not enabled' (Code 152).
518
+ Discontinuities in the value of this counter can
519
+ occur at re-initialization of the management system,
520
+ and at other times as indicated by the value of
521
+ pmip6CounterDiscontinuityTime.""",
522
+ "reference" :
523
+ """RFC 5213: Sections 5.3.1, 6.9.1.2, 8.9""",
524
+ }, # scalar
525
+ "pmip6MissingHomeNetworkPrefixOption" : {
526
+ "nodetype" : "scalar",
527
+ "moduleName" : "PMIPV6-MIB",
528
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.5",
529
+ "status" : "current",
530
+ "syntax" : {
531
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
532
+ },
533
+ "access" : "readonly",
534
+ "description" :
535
+ """Total number of Proxy Binding Update messages rejected
536
+ by the local mobility anchor with status code in the
537
+ Binding Acknowledgement message indicating
538
+ 'Missing home network prefix option' (Code 158).
539
+ Discontinuities in the value of this counter can
540
+ occur at re-initialization of the management system,
541
+ and at other times as indicated by the value of
542
+ pmip6CounterDiscontinuityTime.""",
543
+ "reference" :
544
+ """RFC 5213: Sections 5.3.1, 8.9""",
545
+ }, # scalar
546
+ "pmip6MissingHandOffIndicatorOption" : {
547
+ "nodetype" : "scalar",
548
+ "moduleName" : "PMIPV6-MIB",
549
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.6",
550
+ "status" : "current",
551
+ "syntax" : {
552
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
553
+ },
554
+ "access" : "readonly",
555
+ "description" :
556
+ """Total number of Proxy Binding Update messages rejected
557
+ by the local mobility anchor with status code in the
558
+ Binding Acknowledgement message indicating
559
+ 'Missing handoff indicator option' (Code 161).
560
+ Discontinuities in the value of this counter can
561
+ occur at re-initialization of the management system,
562
+ and at other times as indicated by the value of
563
+ pmip6CounterDiscontinuityTime.""",
564
+ "reference" :
565
+ """RFC 5213: Sections 5.3.1, 8.9""",
566
+ }, # scalar
567
+ "pmip6MissingAccessTechTypeOption" : {
568
+ "nodetype" : "scalar",
569
+ "moduleName" : "PMIPV6-MIB",
570
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.7",
571
+ "status" : "current",
572
+ "syntax" : {
573
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
574
+ },
575
+ "access" : "readonly",
576
+ "description" :
577
+ """Total number of Proxy Binding Update messages rejected
578
+ by the local mobility anchor with status code in the
579
+ Binding Acknowledgement message indicating
580
+ 'Missing access technology type option' (Code 162).
581
+
582
+
583
+ Discontinuities in the value of this counter can
584
+ occur at re-initialization of the management system,
585
+ and at other times as indicated by the value of
586
+ pmip6CounterDiscontinuityTime.""",
587
+ "reference" :
588
+ """RFC 5213: Sections 5.3.1, 8.9""",
589
+ }, # scalar
590
+ "pmip6NotAuthorizedForHomeNetworkPrefix" : {
591
+ "nodetype" : "scalar",
592
+ "moduleName" : "PMIPV6-MIB",
593
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.8",
594
+ "status" : "current",
595
+ "syntax" : {
596
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
597
+ },
598
+ "access" : "readonly",
599
+ "description" :
600
+ """Total number of Proxy Binding Update messages rejected
601
+ by the local mobility anchor with status code in the
602
+ Binding Acknowledgement message indicating
603
+ 'Mobile node not authorized for one or more of the
604
+ requesting home network prefixes' (Code 155).
605
+
606
+ Discontinuities in the value of this counter can
607
+ occur at re-initialization of the management system,
608
+ and at other times as indicated by the value of
609
+ pmip6CounterDiscontinuityTime.""",
610
+ "reference" :
611
+ """RFC 5213: Sections 5.3.2, 6.9.1.2, 8.9""",
612
+ }, # scalar
613
+ "pmip6TimestampMismatch" : {
614
+ "nodetype" : "scalar",
615
+ "moduleName" : "PMIPV6-MIB",
616
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.9",
617
+ "status" : "current",
618
+ "syntax" : {
619
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
620
+ },
621
+ "access" : "readonly",
622
+ "description" :
623
+ """Total number of Proxy Binding Update messages rejected
624
+ by the local mobility anchor with status code in the
625
+ Binding Acknowledgement message indicating
626
+ 'Invalid timestamp value (the clocks are out of sync)'
627
+ (Code 156).
628
+ Discontinuities in the value of this counter can
629
+ occur at re-initialization of the management system,
630
+ and at other times as indicated by the value of
631
+ pmip6CounterDiscontinuityTime.""",
632
+ "reference" :
633
+ """RFC 5213: Sections 5.5, 6.9.1.2, 8.9""",
634
+ }, # scalar
635
+ "pmip6TimestampLowerThanPrevAccepted" : {
636
+ "nodetype" : "scalar",
637
+ "moduleName" : "PMIPV6-MIB",
638
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.10",
639
+ "status" : "current",
640
+ "syntax" : {
641
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
642
+ },
643
+ "access" : "readonly",
644
+ "description" :
645
+ """Total number of Proxy Binding Update messages rejected
646
+ by the local mobility anchor with status code in the
647
+ Binding Acknowledgement message indicating
648
+ 'The timestamp value is lower than the previously
649
+ accepted value' (Code 157).
650
+ Discontinuities in the value of this counter can
651
+ occur at re-initialization of the management system,
652
+ and at other times as indicated by the value of
653
+ pmip6CounterDiscontinuityTime.""",
654
+ "reference" :
655
+ """RFC 5213: Sections 5.5, 6.9.1.2, 8.9""",
656
+ }, # scalar
657
+ "pmip6BcePbuPrefixSetDoNotMatch" : {
658
+ "nodetype" : "scalar",
659
+ "moduleName" : "PMIPV6-MIB",
660
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.11",
661
+ "status" : "current",
662
+ "syntax" : {
663
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
664
+ },
665
+ "access" : "readonly",
666
+ "description" :
667
+ """Total number of Proxy Binding Update messages rejected
668
+ by the local mobility anchor with status code in the
669
+ Binding Acknowledgement message indicating
670
+ 'All the home network prefixes listed in the Binding
671
+ Cache entry do not match all the prefixes in the
672
+ received Proxy Binding Update' (Code 159).
673
+ Discontinuities in the value of this counter can
674
+ occur at re-initialization of the management system,
675
+ and at other times as indicated by the value of
676
+ pmip6CounterDiscontinuityTime.""",
677
+ "reference" :
678
+ """RFC 5213: Sections 5.4.1.1, 8.9""",
679
+ }, # scalar
680
+ "pmip6InitialBindingRegistrations" : {
681
+ "nodetype" : "scalar",
682
+ "moduleName" : "PMIPV6-MIB",
683
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.12",
684
+ "status" : "current",
685
+ "syntax" : {
686
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
687
+ },
688
+ "access" : "readonly",
689
+ "description" :
690
+ """Total number of Proxy Binding Update messages that
691
+ newly creates the Binding Cache entry.
692
+ Discontinuities in the value of this counter can
693
+ occur at re-initialization of the management system,
694
+
695
+
696
+ and at other times as indicated by the value of
697
+ pmip6CounterDiscontinuityTime.""",
698
+ "reference" :
699
+ """RFC 5213: Sections 5.3.2""",
700
+ }, # scalar
701
+ "pmip6BindingLifeTimeExtensionNoHandOff" : {
702
+ "nodetype" : "scalar",
703
+ "moduleName" : "PMIPV6-MIB",
704
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.13",
705
+ "status" : "current",
706
+ "syntax" : {
707
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
708
+ },
709
+ "access" : "readonly",
710
+ "description" :
711
+ """Total number of Proxy Binding Update messages for
712
+ extending the binding lifetime, received from the
713
+ same mobile access gateway that last updated the
714
+ binding.
715
+ Discontinuities in the value of this counter can
716
+ occur at re-initialization of the management system,
717
+ and at other times as indicated by the value of
718
+ pmip6CounterDiscontinuityTime.""",
719
+ "reference" :
720
+ """RFC 5213: Sections 5.3.3""",
721
+ }, # scalar
722
+ "pmip6BindingLifeTimeExtensionAfterHandOff" : {
723
+ "nodetype" : "scalar",
724
+ "moduleName" : "PMIPV6-MIB",
725
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.14",
726
+ "status" : "current",
727
+ "syntax" : {
728
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
729
+ },
730
+ "access" : "readonly",
731
+ "description" :
732
+ """Total number of Proxy Binding Update messages for
733
+ extending the binding lifetime, received from a new
734
+ mobile access gateway where the mobile node's
735
+ mobility session is handed off.
736
+ Discontinuities in the value of this counter can
737
+ occur at re-initialization of the management system,
738
+ and at other times as indicated by the value of
739
+ pmip6CounterDiscontinuityTime.""",
740
+ "reference" :
741
+ """RFC 5213: Sections 5.3.4""",
742
+ }, # scalar
743
+ "pmip6BindingDeRegistrations" : {
744
+ "nodetype" : "scalar",
745
+ "moduleName" : "PMIPV6-MIB",
746
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.15",
747
+ "status" : "current",
748
+ "syntax" : {
749
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
750
+ },
751
+ "access" : "readonly",
752
+ "description" :
753
+ """Total number of Proxy Binding Update messages with
754
+ the lifetime value of zero.
755
+ Discontinuities in the value of this counter can
756
+ occur at re-initialization of the management system,
757
+ and at other times as indicated by the value of
758
+ pmip6CounterDiscontinuityTime.""",
759
+ "reference" :
760
+ """RFC 5213: Sections 5.3.5""",
761
+ }, # scalar
762
+ "pmip6BindingBindingAcks" : {
763
+ "nodetype" : "scalar",
764
+ "moduleName" : "PMIPV6-MIB",
765
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.16",
766
+ "status" : "current",
767
+ "syntax" : {
768
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
769
+ },
770
+ "access" : "readonly",
771
+ "description" :
772
+ """Total number of Proxy Binding Acknowledgement
773
+ messages.
774
+ Discontinuities in the value of this counter can
775
+ occur at re-initialization of the management system,
776
+ and at other times as indicated by the value of
777
+ pmip6CounterDiscontinuityTime.""",
778
+ "reference" :
779
+ """RFC 5213: Sections 5.3.5""",
780
+ }, # scalar
781
+ "pmip6CounterDiscontinuityTime" : {
782
+ "nodetype" : "scalar",
783
+ "moduleName" : "PMIPV6-MIB",
784
+ "oid" : "1.3.6.1.2.1.206.1.1.4.1.17",
785
+ "status" : "current",
786
+ "syntax" : {
787
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
788
+ },
789
+ "access" : "readonly",
790
+ "description" :
791
+ """The value of sysUpTime on the most recent occasion
792
+ at which any one or more of this PMIPv6 entity's
793
+ global counters, viz., counters with OID prefix
794
+ 'pmip6BindingRegCounters' suffered a discontinuity.
795
+ If no such discontinuities have occurred since the
796
+ last re-initialization of the local management
797
+ subsystem, then this object will have a zero value.""",
798
+ }, # scalar
799
+ "pmip6Mag" : {
800
+ "nodetype" : "node",
801
+ "moduleName" : "PMIPV6-MIB",
802
+ "oid" : "1.3.6.1.2.1.206.1.2",
803
+ }, # node
804
+ "pmip6MagSystem" : {
805
+ "nodetype" : "node",
806
+ "moduleName" : "PMIPV6-MIB",
807
+ "oid" : "1.3.6.1.2.1.206.1.2.1",
808
+ }, # node
809
+ "pmip6MagStatus" : {
810
+ "nodetype" : "scalar",
811
+ "moduleName" : "PMIPV6-MIB",
812
+ "oid" : "1.3.6.1.2.1.206.1.2.1.1",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : {
816
+ "basetype" : "Enumeration",
817
+ "enabled" : {
818
+ "nodetype" : "namednumber",
819
+ "number" : "1"
820
+ },
821
+ "disabled" : {
822
+ "nodetype" : "namednumber",
823
+ "number" : "2"
824
+ },
825
+ },
826
+ },
827
+ "access" : "readwrite",
828
+ "default" : "disabled",
829
+ "description" :
830
+ """This object indicates whether the PMIPv6 mobile
831
+ access gateway function is enabled for the managed
832
+ entity.
833
+
834
+ Changing the status from enabled(1) to disabled(2)
835
+ will terminate the PMIPv6 mobile access gateway
836
+ function. On the other hand, changing the status
837
+ from disabled(2) to enabled(1) will start the PMIPv6
838
+ mobile access gateway function.
839
+
840
+ The value of this object MUST remain unchanged
841
+ across reboots of the managed entity.""",
842
+ }, # scalar
843
+ "pmip6MagProxyCOATable" : {
844
+ "nodetype" : "table",
845
+ "moduleName" : "PMIPV6-MIB",
846
+ "oid" : "1.3.6.1.2.1.206.1.2.1.2",
847
+ "status" : "current",
848
+ "description" :
849
+ """This table models the Proxy Care-of Addresses
850
+ configured on the egress interfaces of the mobile access
851
+ gateway. This address is the transport endpoint of the
852
+
853
+
854
+ tunnel between the local mobility anchor and the mobile
855
+ access gateway.
856
+
857
+ Entries in this table are not required to survive
858
+ a reboot of the managed entity.""",
859
+ "reference" :
860
+ """RFC 5213: Sections 2.2, 6.10""",
861
+ }, # table
862
+ "pmip6MagProxyCOAEntry" : {
863
+ "nodetype" : "row",
864
+ "moduleName" : "PMIPV6-MIB",
865
+ "oid" : "1.3.6.1.2.1.206.1.2.1.2.1",
866
+ "status" : "current",
867
+ "linkage" : [
868
+ "pmip6MagProxyCOAType",
869
+ "pmip6MagProxyCOA",
870
+ ],
871
+ "description" :
872
+ """This entry represents a conceptual row in the
873
+ Proxy-CoA table. It represents a Proxy Care-of
874
+ Address on the mobile access gateway.
875
+
876
+ Implementers need to be aware that if the total
877
+ number of octets in pmip6MagProxyCOA
878
+ exceeds 113, then OIDs of column
879
+ instances in this row will have more than 128
880
+ sub-identifiers and cannot be accessed using
881
+ SNMPv1, SNMPv2c, or SNMPv3.""",
882
+ }, # row
883
+ "pmip6MagProxyCOAType" : {
884
+ "nodetype" : "column",
885
+ "moduleName" : "PMIPV6-MIB",
886
+ "oid" : "1.3.6.1.2.1.206.1.2.1.2.1.1",
887
+ "status" : "current",
888
+ "syntax" : {
889
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
890
+ },
891
+ "access" : "noaccess",
892
+ "description" :
893
+ """The InetAddressType of the pmip6MagProxyCOA
894
+ that follows.""",
895
+ }, # column
896
+ "pmip6MagProxyCOA" : {
897
+ "nodetype" : "column",
898
+ "moduleName" : "PMIPV6-MIB",
899
+ "oid" : "1.3.6.1.2.1.206.1.2.1.2.1.2",
900
+ "status" : "current",
901
+ "syntax" : {
902
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
903
+ },
904
+ "access" : "noaccess",
905
+ "description" :
906
+ """The Proxy-CoA configured on the egress interface of the
907
+ mobile access gateway.
908
+
909
+ The type of the address represented by this object
910
+ is specified by the corresponding
911
+ pmip6MagProxyCOAType object.""",
912
+ "reference" :
913
+ """RFC 5213: Sections 2.2, 6.10""",
914
+ }, # column
915
+ "pmip6MagProxyCOAState" : {
916
+ "nodetype" : "column",
917
+ "moduleName" : "PMIPV6-MIB",
918
+ "oid" : "1.3.6.1.2.1.206.1.2.1.2.1.3",
919
+ "status" : "current",
920
+ "syntax" : {
921
+ "type" : {
922
+ "basetype" : "Enumeration",
923
+ "unknown" : {
924
+ "nodetype" : "namednumber",
925
+ "number" : "1"
926
+ },
927
+ "activated" : {
928
+ "nodetype" : "namednumber",
929
+ "number" : "2"
930
+ },
931
+ "tunneled" : {
932
+ "nodetype" : "namednumber",
933
+ "number" : "3"
934
+ },
935
+ },
936
+ },
937
+ "access" : "readonly",
938
+ "description" :
939
+ """This object indicates the state of the Proxy-CoA:
940
+ unknown -- The state of the Proxy-CoA
941
+ cannot be determined.
942
+ activated -- The Proxy-CoA is ready to establish
943
+ a tunnel. This state SHOULD be
944
+ indicated when the MAG is up but has
945
+ no mobile node.
946
+ tunneled -- Bidirectional tunnel is established
947
+ using the Proxy-CoA.""",
948
+ }, # column
949
+ "pmip6MagConf" : {
950
+ "nodetype" : "node",
951
+ "moduleName" : "PMIPV6-MIB",
952
+ "oid" : "1.3.6.1.2.1.206.1.2.2",
953
+ }, # node
954
+ "pmip6MagEnableMagLocalRouting" : {
955
+ "nodetype" : "scalar",
956
+ "moduleName" : "PMIPV6-MIB",
957
+ "oid" : "1.3.6.1.2.1.206.1.2.2.1",
958
+ "status" : "current",
959
+ "syntax" : {
960
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
961
+ },
962
+ "access" : "readwrite",
963
+ "default" : "false",
964
+ "description" :
965
+ """This flag indicates whether or not the mobile access
966
+ gateway is allowed to enable local routing of the
967
+ traffic exchanged between a visiting mobile node and
968
+ a correspondent node that is locally connected to one
969
+ of the interfaces of the mobile access gateway.
970
+ The correspondent node can be another visiting mobile
971
+ node as well, or a local fixed node.
972
+ true(1) indicates that the mobile access gateway routes
973
+ the traffic locally.
974
+ false(0) indicates that the mobile access gateway
975
+ reverse tunnels all the traffic to the mobile node's
976
+
977
+
978
+ local mobility anchor.
979
+
980
+ The default value for this flag is 'false'.""",
981
+ "reference" :
982
+ """RFC 5213: Section 9.2""",
983
+ }, # scalar
984
+ "pmip6MagMnIdentifierTable" : {
985
+ "nodetype" : "table",
986
+ "moduleName" : "PMIPV6-MIB",
987
+ "oid" : "1.3.6.1.2.1.206.1.2.2.2",
988
+ "status" : "current",
989
+ "description" :
990
+ """A table containing the identifiers of mobile nodes
991
+ attached to the MAG.
992
+ Entries in this table are not required to survive
993
+ a reboot of the managed entity.""",
994
+ "reference" :
995
+ """RFC 5213: Sections 2.2, 6.1""",
996
+ }, # table
997
+ "pmip6MagMnIdentifierEntry" : {
998
+ "nodetype" : "row",
999
+ "moduleName" : "PMIPV6-MIB",
1000
+ "oid" : "1.3.6.1.2.1.206.1.2.2.2.1",
1001
+ "status" : "current",
1002
+ "linkage" : [
1003
+ "pmip6MagBLMnIndex",
1004
+ ],
1005
+ "description" :
1006
+ """An entry in the mobile node identifier table.""",
1007
+ }, # row
1008
+ "pmip6MagMnIdentifier" : {
1009
+ "nodetype" : "column",
1010
+ "moduleName" : "PMIPV6-MIB",
1011
+ "oid" : "1.3.6.1.2.1.206.1.2.2.2.1.1",
1012
+ "status" : "current",
1013
+ "syntax" : {
1014
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnIdentifier"},
1015
+ },
1016
+ "access" : "readonly",
1017
+ "description" :
1018
+ """The identity of a mobile node in the Proxy Mobile IPv6
1019
+ domain.""",
1020
+ "reference" :
1021
+ """RFC 5213: Sections 2.2, 6.1""",
1022
+ }, # column
1023
+ "pmip6MagMnLLIdentifierTable" : {
1024
+ "nodetype" : "table",
1025
+ "moduleName" : "PMIPV6-MIB",
1026
+ "oid" : "1.3.6.1.2.1.206.1.2.2.3",
1027
+ "status" : "current",
1028
+ "description" :
1029
+ """A table containing the link-layer identifiers
1030
+ of the interfaces of the mobile nodes attached
1031
+ to the MAG.
1032
+ Entries in this table are not required to survive
1033
+ a reboot of the managed entity.""",
1034
+ "reference" :
1035
+ """RFC 5213: Sections 2.2, 6.1""",
1036
+ }, # table
1037
+ "pmip6MagMnLLIdentifierEntry" : {
1038
+ "nodetype" : "row",
1039
+ "moduleName" : "PMIPV6-MIB",
1040
+ "oid" : "1.3.6.1.2.1.206.1.2.2.3.1",
1041
+ "status" : "current",
1042
+ "linkage" : [
1043
+ "pmip6MagBLMnIndex",
1044
+ "pmip6MagBLMnLLIndex",
1045
+ ],
1046
+ "description" :
1047
+ """An entry in the mobile node link-layer identifier
1048
+ table.""",
1049
+ }, # row
1050
+ "pmip6MagMnLLIdentifier" : {
1051
+ "nodetype" : "column",
1052
+ "moduleName" : "PMIPV6-MIB",
1053
+ "oid" : "1.3.6.1.2.1.206.1.2.2.3.1.1",
1054
+ "status" : "current",
1055
+ "syntax" : {
1056
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnLLIdentifier"},
1057
+ },
1058
+ "access" : "readonly",
1059
+ "description" :
1060
+ """The link-layer identifier of the mobile node's
1061
+ connected interface on the access link.""",
1062
+ "reference" :
1063
+ """RFC 5213: Sections 2.2, 6.1""",
1064
+ }, # column
1065
+ "pmip6MagHomeNetworkPrefixTable" : {
1066
+ "nodetype" : "table",
1067
+ "moduleName" : "PMIPV6-MIB",
1068
+ "oid" : "1.3.6.1.2.1.206.1.2.2.4",
1069
+ "status" : "current",
1070
+ "description" :
1071
+ """A table representing the home network prefixes
1072
+ assigned to the connected interfaces of mobile nodes
1073
+ attached to the MAG.""",
1074
+ "reference" :
1075
+ """RFC 5213: Sections 2, 6.1, 6.2""",
1076
+ }, # table
1077
+ "pmip6MagHomeNetworkPrefixEntry" : {
1078
+ "nodetype" : "row",
1079
+ "moduleName" : "PMIPV6-MIB",
1080
+ "oid" : "1.3.6.1.2.1.206.1.2.2.4.1",
1081
+ "status" : "current",
1082
+ "linkage" : [
1083
+ "pmip6MagBLMnIndex",
1084
+ "pmip6MagBLMnLLIndex",
1085
+ "pmip6MagHomeNetworkPrefixType",
1086
+ "pmip6MagHomeNetworkPrefix",
1087
+ ],
1088
+ "description" :
1089
+ """An entry in the home network prefixes table.
1090
+
1091
+ Implementers need to be aware that if the total
1092
+ number of octets in pmip6MagHomeNetworkPrefix
1093
+ exceeds 111, then OIDs of column instances in
1094
+ this row will have more than 128 sub-identifiers
1095
+ and cannot be accessed using SNMPv1, SNMPv2c, or
1096
+ SNMPv3.""",
1097
+ }, # row
1098
+ "pmip6MagHomeNetworkPrefixType" : {
1099
+ "nodetype" : "column",
1100
+ "moduleName" : "PMIPV6-MIB",
1101
+ "oid" : "1.3.6.1.2.1.206.1.2.2.4.1.1",
1102
+ "status" : "current",
1103
+ "syntax" : {
1104
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1105
+ },
1106
+ "access" : "noaccess",
1107
+ "description" :
1108
+ """The InetAddressType of the pmip6MagHomeNetworkPrefix
1109
+ that follows.""",
1110
+ }, # column
1111
+ "pmip6MagHomeNetworkPrefix" : {
1112
+ "nodetype" : "column",
1113
+ "moduleName" : "PMIPV6-MIB",
1114
+ "oid" : "1.3.6.1.2.1.206.1.2.2.4.1.2",
1115
+ "status" : "current",
1116
+ "syntax" : {
1117
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1118
+ },
1119
+ "access" : "noaccess",
1120
+ "description" :
1121
+ """The mobile network prefix that is delegated to the
1122
+ mobile node. The type of the address represented by
1123
+ this object is specified by the corresponding
1124
+ pmip6MagHomeNetworkPrefixType object.""",
1125
+ "reference" :
1126
+ """RFC 5213: Section 2""",
1127
+ }, # column
1128
+ "pmip6MagHomeNetworkPrefixLength" : {
1129
+ "nodetype" : "column",
1130
+ "moduleName" : "PMIPV6-MIB",
1131
+ "oid" : "1.3.6.1.2.1.206.1.2.2.4.1.3",
1132
+ "status" : "current",
1133
+ "syntax" : {
1134
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1135
+ },
1136
+ "access" : "readonly",
1137
+ "description" :
1138
+ """The prefix length of the home network prefix.""",
1139
+ }, # column
1140
+ "pmip6MagHomeNetworkPrefixLifeTime" : {
1141
+ "nodetype" : "column",
1142
+ "moduleName" : "PMIPV6-MIB",
1143
+ "oid" : "1.3.6.1.2.1.206.1.2.2.4.1.4",
1144
+ "status" : "current",
1145
+ "syntax" : {
1146
+ "type" : { "module" :"", "name" : "Unsigned32"},
1147
+ },
1148
+ "access" : "readonly",
1149
+ "units" : "seconds",
1150
+ "description" :
1151
+ """The lifetime parameter (in seconds) that will be
1152
+ advertised in Router Advertisements by the MAG for
1153
+ this home network prefix.""",
1154
+ "reference" :
1155
+ """RFC 5213: Sections 6.2, 6.7""",
1156
+ }, # column
1157
+ "pmip6MagRegistration" : {
1158
+ "nodetype" : "node",
1159
+ "moduleName" : "PMIPV6-MIB",
1160
+ "oid" : "1.3.6.1.2.1.206.1.2.3",
1161
+ }, # node
1162
+ "pmip6MagBLTable" : {
1163
+ "nodetype" : "table",
1164
+ "moduleName" : "PMIPV6-MIB",
1165
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1",
1166
+ "status" : "current",
1167
+ "description" :
1168
+ """This table corresponds to the Binding Update List (BL)
1169
+ that includes PMIPv6-related information and is
1170
+ maintained by the mobile access gateway.
1171
+ Entries from the table are deleted as the lifetime of
1172
+ the binding expires.""",
1173
+ "reference" :
1174
+ """RFC 6275: Sections 4.5, 11.1
1175
+ RFC 5213: Section 6.1""",
1176
+ }, # table
1177
+ "pmip6MagBLEntry" : {
1178
+ "nodetype" : "row",
1179
+ "moduleName" : "PMIPV6-MIB",
1180
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1",
1181
+ "status" : "current",
1182
+ "linkage" : [
1183
+ { "MOBILEIPV6-MIB" : {
1184
+ "indexkind" : "augments",
1185
+ "relatedNode" : "mip6MnBLEntry",
1186
+ }},
1187
+ ],
1188
+ "description" :
1189
+ """An entry containing additional information from
1190
+ a Binding Update sent by the mobile access gateway
1191
+ to the local mobility anchor.""",
1192
+ }, # row
1193
+ "pmip6MagBLFlag" : {
1194
+ "nodetype" : "column",
1195
+ "moduleName" : "PMIPV6-MIB",
1196
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.1",
1197
+ "status" : "current",
1198
+ "syntax" : {
1199
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1200
+ },
1201
+ "access" : "readonly",
1202
+ "description" :
1203
+ """true(1) indicates that the mobile access gateway sent
1204
+ the Proxy Binding Update with Proxy Registration Flag
1205
+ that indicates to the local mobility anchor that the
1206
+ registration is the Proxy Binding Update and is from a
1207
+ mobile access gateway.
1208
+ false(0) implies that the mobile access gateway is
1209
+ behaving as a simple mobile node.""",
1210
+ "reference" :
1211
+ """RFC 5213: Section 8.1""",
1212
+ }, # column
1213
+ "pmip6MagBLMnIndex" : {
1214
+ "nodetype" : "column",
1215
+ "moduleName" : "PMIPV6-MIB",
1216
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.2",
1217
+ "status" : "current",
1218
+ "syntax" : {
1219
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnIndex"},
1220
+ },
1221
+ "access" : "readonly",
1222
+ "description" :
1223
+ """The index to the identifier of the attached mobile
1224
+ node in the pmip6MagMnIdentifierTable.""",
1225
+ "reference" :
1226
+ """RFC 5213: Sections 2.2, 6.1, 8.1""",
1227
+ }, # column
1228
+ "pmip6MagBLMnLLIndex" : {
1229
+ "nodetype" : "column",
1230
+ "moduleName" : "PMIPV6-MIB",
1231
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.3",
1232
+ "status" : "current",
1233
+ "syntax" : {
1234
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnLLIndex"},
1235
+ },
1236
+ "access" : "readonly",
1237
+ "description" :
1238
+ """The index to the link-layer identifier of the mobile
1239
+ node's connected interface in the
1240
+ pmip6MagMnLLIdentifierTable.""",
1241
+ "reference" :
1242
+ """RFC 5213: Sections 2.2, 6.1, 8.1""",
1243
+ }, # column
1244
+ "pmip6MagBLMagLinkLocalAddressType" : {
1245
+ "nodetype" : "column",
1246
+ "moduleName" : "PMIPV6-MIB",
1247
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.4",
1248
+ "status" : "current",
1249
+ "syntax" : {
1250
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1251
+ },
1252
+ "access" : "readonly",
1253
+ "description" :
1254
+ """The InetAddressType of the pmip6MagBLMagLinkLocalAddress
1255
+ that follows.""",
1256
+ }, # column
1257
+ "pmip6MagBLMagLinkLocalAddress" : {
1258
+ "nodetype" : "column",
1259
+ "moduleName" : "PMIPV6-MIB",
1260
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.5",
1261
+ "status" : "current",
1262
+ "syntax" : {
1263
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1264
+ },
1265
+ "access" : "readonly",
1266
+ "description" :
1267
+ """The link-local address of the mobile access gateway on
1268
+ the access link shared with the mobile node.
1269
+ This is the address that is present in the Link-local
1270
+ Address option of the corresponding Proxy Binding Update
1271
+ message.""",
1272
+ "reference" :
1273
+ """RFC 3963: Sections 4.1, 5.1""",
1274
+ }, # column
1275
+ "pmip6MagBLMagIfIdentifierToMn" : {
1276
+ "nodetype" : "column",
1277
+ "moduleName" : "PMIPV6-MIB",
1278
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.6",
1279
+ "status" : "current",
1280
+ "syntax" : {
1281
+ "type" : { "module" :"IP-MIB", "name" : "Ipv6AddressIfIdentifierTC"},
1282
+ },
1283
+ "access" : "readonly",
1284
+ "description" :
1285
+ """The interface identifier (if-id) of the point-to-point
1286
+ link between the mobile node and the mobile access
1287
+ gateway. This is internal to the mobile access gateway
1288
+ and is used to associate the Proxy Mobile IPv6 tunnel
1289
+ to the access link where the mobile node is attached.""",
1290
+ "reference" :
1291
+ """RFC 5213: Sections 6.1, 8.1""",
1292
+ }, # column
1293
+ "pmip6MagBLTunnelIfIdentifier" : {
1294
+ "nodetype" : "column",
1295
+ "moduleName" : "PMIPV6-MIB",
1296
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.7",
1297
+ "status" : "current",
1298
+ "syntax" : {
1299
+ "type" : { "module" :"IP-MIB", "name" : "Ipv6AddressIfIdentifierTC"},
1300
+ },
1301
+ "access" : "readonly",
1302
+ "description" :
1303
+ """The tunnel interface identifier (tunnel-if-id) of the
1304
+ bidirectional tunnel between the mobile node's local
1305
+ mobility anchor and the mobile access gateway. This
1306
+ is internal to the mobile access gateway. The tunnel
1307
+ interface identifier is acquired during the tunnel
1308
+ creation.""",
1309
+ "reference" :
1310
+ """RFC 5213: Sections 6.1, 8.1""",
1311
+ }, # column
1312
+ "pmip6MagBLMnInterfaceATT" : {
1313
+ "nodetype" : "column",
1314
+ "moduleName" : "PMIPV6-MIB",
1315
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.8",
1316
+ "status" : "current",
1317
+ "syntax" : {
1318
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnInterfaceATT"},
1319
+ },
1320
+ "access" : "readonly",
1321
+ "description" :
1322
+ """The type of the access technology by which the mobile
1323
+ node is currently attached to the mobile access gateway.""",
1324
+ "reference" :
1325
+ """RFC 5213: Sections 6.9.1.1, 6.9.1.5, 8.1""",
1326
+ }, # column
1327
+ "pmip6MagBLTimeRecentlyAccepted" : {
1328
+ "nodetype" : "column",
1329
+ "moduleName" : "PMIPV6-MIB",
1330
+ "oid" : "1.3.6.1.2.1.206.1.2.3.1.1.9",
1331
+ "status" : "current",
1332
+ "syntax" : {
1333
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6TimeStamp64"},
1334
+ },
1335
+ "access" : "readonly",
1336
+ "description" :
1337
+ """The 64-bit timestamp value of the most recently
1338
+ accepted Proxy Binding Update message sent for this
1339
+
1340
+
1341
+ mobile node. This is the time of day on the mobile
1342
+ access gateway, when the Proxy Binding Acknowledgement
1343
+ message with the Status field set to 0
1344
+ was received. If the Timestamp option is not present
1345
+ in the Proxy Binding Update message (i.e., when the
1346
+ sequence-number-based scheme is in use), the value MUST
1347
+ be initialized with all zeroes.""",
1348
+ "reference" :
1349
+ """RFC 5213: Sections 5.1, 8.1""",
1350
+ }, # column
1351
+ "pmip6MagMnProfileTable" : {
1352
+ "nodetype" : "table",
1353
+ "moduleName" : "PMIPV6-MIB",
1354
+ "oid" : "1.3.6.1.2.1.206.1.2.3.2",
1355
+ "status" : "current",
1356
+ "description" :
1357
+ """This table corresponds to the mobile node's policy
1358
+ profile that includes the essential operational
1359
+ parameters that are required by the network entities
1360
+ for managing the mobile node's mobility service.
1361
+ It contains policy profiles of mobile nodes that are
1362
+ connected to the mobile access gateway.
1363
+ Entries in this table are not required to survive
1364
+ a reboot of the managed entity.""",
1365
+ "reference" :
1366
+ """RFC 5213: Section 6.2""",
1367
+ }, # table
1368
+ "pmip6MagMnProfileEntry" : {
1369
+ "nodetype" : "row",
1370
+ "moduleName" : "PMIPV6-MIB",
1371
+ "oid" : "1.3.6.1.2.1.206.1.2.3.2.1",
1372
+ "status" : "current",
1373
+ "linkage" : [
1374
+ "pmip6MagProfMnIndex",
1375
+ ],
1376
+ "description" :
1377
+ """An entry containing information about the
1378
+ mobile node's policy profile.""",
1379
+ }, # row
1380
+ "pmip6MagProfMnIndex" : {
1381
+ "nodetype" : "column",
1382
+ "moduleName" : "PMIPV6-MIB",
1383
+ "oid" : "1.3.6.1.2.1.206.1.2.3.2.1.1",
1384
+ "status" : "current",
1385
+ "syntax" : {
1386
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnIndex"},
1387
+ },
1388
+ "access" : "noaccess",
1389
+ "description" :
1390
+ """The index for a mobile node in the Proxy Mobile IPv6
1391
+ domain.""",
1392
+ }, # column
1393
+ "pmip6MagProfMnIdentifier" : {
1394
+ "nodetype" : "column",
1395
+ "moduleName" : "PMIPV6-MIB",
1396
+ "oid" : "1.3.6.1.2.1.206.1.2.3.2.1.2",
1397
+ "status" : "current",
1398
+ "syntax" : {
1399
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnIdentifier"},
1400
+ },
1401
+ "access" : "readonly",
1402
+ "description" :
1403
+ """The identity of a mobile node in the Proxy Mobile IPv6
1404
+ domain.""",
1405
+ "reference" :
1406
+ """RFC 5213: Section 2.2""",
1407
+ }, # column
1408
+ "pmip6MagProfMnLocalMobilityAnchorAddressType" : {
1409
+ "nodetype" : "column",
1410
+ "moduleName" : "PMIPV6-MIB",
1411
+ "oid" : "1.3.6.1.2.1.206.1.2.3.2.1.3",
1412
+ "status" : "current",
1413
+ "syntax" : {
1414
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1415
+ },
1416
+ "access" : "readonly",
1417
+ "description" :
1418
+ """The InetAddressType of the
1419
+ pmip6MagMnLocalMobilityAnchorAddress that follows.""",
1420
+ }, # column
1421
+ "pmip6MagProfMnLocalMobilityAnchorAddress" : {
1422
+ "nodetype" : "column",
1423
+ "moduleName" : "PMIPV6-MIB",
1424
+ "oid" : "1.3.6.1.2.1.206.1.2.3.2.1.4",
1425
+ "status" : "current",
1426
+ "syntax" : {
1427
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1428
+ },
1429
+ "access" : "readonly",
1430
+ "description" :
1431
+ """The global address that is configured on the interface
1432
+ of the local mobility anchor and is the transport
1433
+ endpoint of the bidirectional tunnel established
1434
+ between the local mobility anchor and the mobile access
1435
+ gateway. This is the address to which the mobile
1436
+ access gateway sends the Proxy Binding Update messages.""",
1437
+ "reference" :
1438
+ """RFC 5213: Section 2.2""",
1439
+ }, # column
1440
+ "pmip6Lma" : {
1441
+ "nodetype" : "node",
1442
+ "moduleName" : "PMIPV6-MIB",
1443
+ "oid" : "1.3.6.1.2.1.206.1.3",
1444
+ }, # node
1445
+ "pmip6LmaSystem" : {
1446
+ "nodetype" : "node",
1447
+ "moduleName" : "PMIPV6-MIB",
1448
+ "oid" : "1.3.6.1.2.1.206.1.3.1",
1449
+ }, # node
1450
+ "pmip6LmaStatus" : {
1451
+ "nodetype" : "scalar",
1452
+ "moduleName" : "PMIPV6-MIB",
1453
+ "oid" : "1.3.6.1.2.1.206.1.3.1.1",
1454
+ "status" : "current",
1455
+ "syntax" : {
1456
+ "type" : {
1457
+ "basetype" : "Enumeration",
1458
+ "enabled" : {
1459
+ "nodetype" : "namednumber",
1460
+ "number" : "1"
1461
+ },
1462
+ "disabled" : {
1463
+ "nodetype" : "namednumber",
1464
+ "number" : "2"
1465
+ },
1466
+ },
1467
+ },
1468
+ "access" : "readwrite",
1469
+ "default" : "disabled",
1470
+ "description" :
1471
+ """This object indicates whether the PMIPv6 local
1472
+
1473
+
1474
+ mobility anchor function is enabled for the managed
1475
+ entity.
1476
+
1477
+ Changing the status from enabled(1) to disabled(2)
1478
+ will terminate the PMIPv6 local mobility anchor
1479
+ function. On the other hand, changing the status
1480
+ from disabled(2) to enabled(1) will start the PMIPv6
1481
+ local mobility anchor function.
1482
+
1483
+ The value of this object MUST remain unchanged
1484
+ across reboots of the managed entity.""",
1485
+ }, # scalar
1486
+ "pmip6LmaLMAATable" : {
1487
+ "nodetype" : "table",
1488
+ "moduleName" : "PMIPV6-MIB",
1489
+ "oid" : "1.3.6.1.2.1.206.1.3.1.2",
1490
+ "status" : "current",
1491
+ "description" :
1492
+ """This table models the LMA Addresses configured
1493
+ on the local mobility anchor. Each LMA Address acts as
1494
+ a transport endpoint of the tunnel between the local
1495
+ mobility anchor and the mobile access gateway and is
1496
+ the transport endpoint of the tunnel between the local
1497
+ mobility anchor and the mobile access gateway.
1498
+
1499
+ Entries in this table are not required to survive
1500
+ a reboot of the managed entity.""",
1501
+ "reference" :
1502
+ """RFC 5213: Sections 2.2, 5.6""",
1503
+ }, # table
1504
+ "pmip6LmaLMAAEntry" : {
1505
+ "nodetype" : "row",
1506
+ "moduleName" : "PMIPV6-MIB",
1507
+ "oid" : "1.3.6.1.2.1.206.1.3.1.2.1",
1508
+ "status" : "current",
1509
+ "linkage" : [
1510
+ "pmip6LmaLMAAType",
1511
+ "pmip6LmaLMAA",
1512
+ ],
1513
+ "description" :
1514
+ """This entry represents a conceptual row in the
1515
+ LMAA table. It represents each LMAA on the
1516
+ local mobility anchor.
1517
+
1518
+ Implementers need to be aware that if the total
1519
+ number of octets in pmip6LmaLMAA exceeds 113,
1520
+ then OIDs of column instances in this row will
1521
+ have more than 128 sub-identifiers and cannot
1522
+ be accessed using SNMPv1, SNMPv2c, or SNMPv3.""",
1523
+ }, # row
1524
+ "pmip6LmaLMAAType" : {
1525
+ "nodetype" : "column",
1526
+ "moduleName" : "PMIPV6-MIB",
1527
+ "oid" : "1.3.6.1.2.1.206.1.3.1.2.1.1",
1528
+ "status" : "current",
1529
+ "syntax" : {
1530
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1531
+ },
1532
+ "access" : "noaccess",
1533
+ "description" :
1534
+ """The InetAddressType of the pmip6LmaLMAA
1535
+ that follows.""",
1536
+ }, # column
1537
+ "pmip6LmaLMAA" : {
1538
+ "nodetype" : "column",
1539
+ "moduleName" : "PMIPV6-MIB",
1540
+ "oid" : "1.3.6.1.2.1.206.1.3.1.2.1.2",
1541
+ "status" : "current",
1542
+ "syntax" : {
1543
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1544
+ },
1545
+ "access" : "noaccess",
1546
+ "description" :
1547
+ """The LMAA configured on the local mobility anchor.
1548
+
1549
+ The type of the address represented by this object
1550
+ is specified by the corresponding
1551
+ pmip6LmaLMAAType object.""",
1552
+ "reference" :
1553
+ """RFC 5213: Sections 2.2, 5.6""",
1554
+ }, # column
1555
+ "pmip6LmaLMAAState" : {
1556
+ "nodetype" : "column",
1557
+ "moduleName" : "PMIPV6-MIB",
1558
+ "oid" : "1.3.6.1.2.1.206.1.3.1.2.1.3",
1559
+ "status" : "current",
1560
+ "syntax" : {
1561
+ "type" : {
1562
+ "basetype" : "Enumeration",
1563
+ "unknown" : {
1564
+ "nodetype" : "namednumber",
1565
+ "number" : "1"
1566
+ },
1567
+ "activated" : {
1568
+ "nodetype" : "namednumber",
1569
+ "number" : "2"
1570
+ },
1571
+ "tunneled" : {
1572
+ "nodetype" : "namednumber",
1573
+ "number" : "3"
1574
+ },
1575
+ },
1576
+ },
1577
+ "access" : "readonly",
1578
+ "description" :
1579
+ """This object indicates the state of the LMAA:
1580
+ unknown -- The state of the LMAA
1581
+ cannot be determined.
1582
+
1583
+
1584
+ activated -- The LMAA is ready to establish
1585
+ a tunnel.
1586
+ tunneled -- The LMAA is used to set up the
1587
+ bidirectional tunnel.""",
1588
+ }, # column
1589
+ "pmip6LmaConf" : {
1590
+ "nodetype" : "node",
1591
+ "moduleName" : "PMIPV6-MIB",
1592
+ "oid" : "1.3.6.1.2.1.206.1.3.2",
1593
+ }, # node
1594
+ "pmip6LmaMinDelayBeforeBCEDelete" : {
1595
+ "nodetype" : "scalar",
1596
+ "moduleName" : "PMIPV6-MIB",
1597
+ "oid" : "1.3.6.1.2.1.206.1.3.2.1",
1598
+ "status" : "current",
1599
+ "syntax" : {
1600
+ "type" : {
1601
+ "basetype" : "Integer32",
1602
+ "ranges" : [
1603
+ {
1604
+ "min" : "1",
1605
+ "max" : "65535"
1606
+ },
1607
+ ],
1608
+ "range" : {
1609
+ "min" : "1",
1610
+ "max" : "65535"
1611
+ },
1612
+ },
1613
+ },
1614
+ "access" : "readwrite",
1615
+ "default" : "10000",
1616
+ "units" : "milliseconds",
1617
+ "description" :
1618
+ """This variable specifies the length of time in
1619
+ milliseconds the local mobility anchor MUST wait before
1620
+ it deletes a Binding Cache entry of a mobile node, upon
1621
+ receiving a Proxy Binding Update message from a mobile
1622
+ access gateway with a lifetime value of 0.
1623
+ During this wait time, if the local mobility anchor
1624
+ receives a Proxy Binding Update for the same mobility
1625
+ binding, with a lifetime value greater than 0, then it
1626
+ must update the Binding Cache entry with the accepted
1627
+ binding values. By the end of this wait time, if the
1628
+ local mobility anchor did not receive any valid Proxy
1629
+ Binding Update message for that mobility binding, it
1630
+ MUST delete the Binding Cache entry. This delay
1631
+ essentially ensures that a mobile node's Binding Cache
1632
+ entry is not deleted too quickly and allows some time
1633
+ for the new mobile access gateway to complete the
1634
+ signaling for the mobile node.
1635
+ The default value for this variable is 10000
1636
+ milliseconds.""",
1637
+ "reference" :
1638
+ """RFC 5213: Sections 5.3.5, 9.1""",
1639
+ }, # scalar
1640
+ "pmip6LmaMaxDelayBeforeNewBCEAssign" : {
1641
+ "nodetype" : "scalar",
1642
+ "moduleName" : "PMIPV6-MIB",
1643
+ "oid" : "1.3.6.1.2.1.206.1.3.2.2",
1644
+ "status" : "current",
1645
+ "syntax" : {
1646
+ "type" : {
1647
+ "basetype" : "Integer32",
1648
+ "ranges" : [
1649
+ {
1650
+ "min" : "1",
1651
+ "max" : "65535"
1652
+ },
1653
+ ],
1654
+ "range" : {
1655
+ "min" : "1",
1656
+ "max" : "65535"
1657
+ },
1658
+ },
1659
+ },
1660
+ "access" : "readwrite",
1661
+ "default" : "1500",
1662
+ "units" : "milliseconds",
1663
+ "description" :
1664
+ """This variable specifies the length of time in
1665
+ milliseconds the local mobility anchor MUST wait for
1666
+ the de-registration message for an existing mobility
1667
+ session before it decides to create a new mobility
1668
+
1669
+
1670
+ session.
1671
+
1672
+ The default value for this variable is 1500
1673
+ milliseconds. Note that there is a dependency between
1674
+ this value and the values used in the retransmission
1675
+ algorithm for Proxy Binding Updates. The
1676
+ retransmissions need to happen before
1677
+ MaxDelayBeforeNewBCEAssign runs out, as otherwise there
1678
+ are situations where a de-registration from a previous
1679
+ mobile access gateway may be lost, and the local
1680
+ mobility anchor creates, needlessly, a new mobility
1681
+ session and new prefixes for the mobile node. However,
1682
+ this affects situations where there is no information
1683
+ from the lower layers about the type of a handoff or
1684
+ other parameters that can be used for identifying the
1685
+ mobility session.""",
1686
+ "reference" :
1687
+ """RFC 5213: Sections 5.4.1.2, 5.4.1.3, 9.1""",
1688
+ }, # scalar
1689
+ "pmip6LmaTimestampValidityWindow" : {
1690
+ "nodetype" : "scalar",
1691
+ "moduleName" : "PMIPV6-MIB",
1692
+ "oid" : "1.3.6.1.2.1.206.1.3.2.3",
1693
+ "status" : "current",
1694
+ "syntax" : {
1695
+ "type" : {
1696
+ "basetype" : "Integer32",
1697
+ "ranges" : [
1698
+ {
1699
+ "min" : "1",
1700
+ "max" : "65535"
1701
+ },
1702
+ ],
1703
+ "range" : {
1704
+ "min" : "1",
1705
+ "max" : "65535"
1706
+ },
1707
+ },
1708
+ },
1709
+ "access" : "readwrite",
1710
+ "default" : "300",
1711
+ "units" : "milliseconds",
1712
+ "description" :
1713
+ """This variable specifies the maximum length of time
1714
+ difference in milliseconds between the timestamp in the
1715
+ received Proxy Binding Update message and the current
1716
+ time of day on the local mobility anchor that is
1717
+ allowed by the local mobility anchor for the received
1718
+ message to be considered valid.
1719
+ The default value for this variable is 300 milliseconds.
1720
+ This variable must be adjusted to suit the deployments.""",
1721
+ "reference" :
1722
+ """RFC 5213: Sections 5.5, 9.1""",
1723
+ }, # scalar
1724
+ "pmip6LmaMnIdentifierTable" : {
1725
+ "nodetype" : "table",
1726
+ "moduleName" : "PMIPV6-MIB",
1727
+ "oid" : "1.3.6.1.2.1.206.1.3.2.4",
1728
+ "status" : "current",
1729
+ "description" :
1730
+ """A table containing the identifiers of mobile nodes
1731
+ served by the LMA.
1732
+
1733
+
1734
+ Entries in this table are not required to survive
1735
+ a reboot of the managed entity.""",
1736
+ "reference" :
1737
+ """RFC 5213: Sections 2, 6.1""",
1738
+ }, # table
1739
+ "pmip6LmaMnIdentifierEntry" : {
1740
+ "nodetype" : "row",
1741
+ "moduleName" : "PMIPV6-MIB",
1742
+ "oid" : "1.3.6.1.2.1.206.1.3.2.4.1",
1743
+ "status" : "current",
1744
+ "linkage" : [
1745
+ "pmip6BindingMnIndex",
1746
+ ],
1747
+ "description" :
1748
+ """An entry in the mobile node identifier table.""",
1749
+ }, # row
1750
+ "pmip6LmaMnIdentifier" : {
1751
+ "nodetype" : "column",
1752
+ "moduleName" : "PMIPV6-MIB",
1753
+ "oid" : "1.3.6.1.2.1.206.1.3.2.4.1.1",
1754
+ "status" : "current",
1755
+ "syntax" : {
1756
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnIdentifier"},
1757
+ },
1758
+ "access" : "readonly",
1759
+ "description" :
1760
+ """The identity of a mobile node in the Proxy Mobile IPv6
1761
+ domain.""",
1762
+ "reference" :
1763
+ """RFC 5213: Section 2.2""",
1764
+ }, # column
1765
+ "pmip6LmaMnLLIdentifierTable" : {
1766
+ "nodetype" : "table",
1767
+ "moduleName" : "PMIPV6-MIB",
1768
+ "oid" : "1.3.6.1.2.1.206.1.3.2.5",
1769
+ "status" : "current",
1770
+ "description" :
1771
+ """A table containing the link-layer identifiers
1772
+ of the interfaces of the mobile nodes served
1773
+ by the LMA.
1774
+ Entries in this table are not required to survive
1775
+ a reboot of the managed entity.""",
1776
+ "reference" :
1777
+ """RFC 5213: Sections 2, 6.1""",
1778
+ }, # table
1779
+ "pmip6LmaMnLLIdentifierEntry" : {
1780
+ "nodetype" : "row",
1781
+ "moduleName" : "PMIPV6-MIB",
1782
+ "oid" : "1.3.6.1.2.1.206.1.3.2.5.1",
1783
+ "status" : "current",
1784
+ "linkage" : [
1785
+ "pmip6BindingMnIndex",
1786
+ "pmip6BindingMnLLIndex",
1787
+ ],
1788
+ "description" :
1789
+ """An entry in the mobile node link-layer identifier
1790
+ table.""",
1791
+ }, # row
1792
+ "pmip6LmaMnLLIdentifier" : {
1793
+ "nodetype" : "column",
1794
+ "moduleName" : "PMIPV6-MIB",
1795
+ "oid" : "1.3.6.1.2.1.206.1.3.2.5.1.1",
1796
+ "status" : "current",
1797
+ "syntax" : {
1798
+ "type" : { "module" :"PMIPV6-TC-MIB", "name" : "Pmip6MnLLIdentifier"},
1799
+ },
1800
+ "access" : "readonly",
1801
+ "description" :
1802
+ """The link-layer identifier of the mobile node's
1803
+ connected interface on the access link.""",
1804
+ }, # column
1805
+ "pmip6LmaHomeNetworkPrefixTable" : {
1806
+ "nodetype" : "table",
1807
+ "moduleName" : "PMIPV6-MIB",
1808
+ "oid" : "1.3.6.1.2.1.206.1.3.2.6",
1809
+ "status" : "current",
1810
+ "description" :
1811
+ """A table representing the home network prefixes
1812
+ assigned to the connected interfaces of all the
1813
+ mobile nodes anchored at the LMA.""",
1814
+ "reference" :
1815
+ """RFC 5213: Sections 2, 5.1, 5.2""",
1816
+ }, # table
1817
+ "pmip6LmaHomeNetworkPrefixEntry" : {
1818
+ "nodetype" : "row",
1819
+ "moduleName" : "PMIPV6-MIB",
1820
+ "oid" : "1.3.6.1.2.1.206.1.3.2.6.1",
1821
+ "status" : "current",
1822
+ "linkage" : [
1823
+ "pmip6BindingMnIndex",
1824
+ "pmip6BindingMnLLIndex",
1825
+ "pmip6LmaHomeNetworkPrefixType",
1826
+ "pmip6LmaHomeNetworkPrefix",
1827
+ ],
1828
+ "description" :
1829
+ """An entry in the home network prefixes table.
1830
+
1831
+
1832
+ Implementers need to be aware that if the total
1833
+ number of octets in pmip6LmaHomeNetworkPrefix
1834
+ exceeds 111 then OIDs of column instances in this
1835
+ row will have more than 128 sub-identifiers and
1836
+ cannot be accessed using SNMPv1, SNMPv2c, or
1837
+ SNMPv3.""",
1838
+ }, # row
1839
+ "pmip6LmaHomeNetworkPrefixType" : {
1840
+ "nodetype" : "column",
1841
+ "moduleName" : "PMIPV6-MIB",
1842
+ "oid" : "1.3.6.1.2.1.206.1.3.2.6.1.1",
1843
+ "status" : "current",
1844
+ "syntax" : {
1845
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1846
+ },
1847
+ "access" : "noaccess",
1848
+ "description" :
1849
+ """The InetAddressType of the pmip6LmaHomeNetworkPrefix
1850
+ that follows.""",
1851
+ }, # column
1852
+ "pmip6LmaHomeNetworkPrefix" : {
1853
+ "nodetype" : "column",
1854
+ "moduleName" : "PMIPV6-MIB",
1855
+ "oid" : "1.3.6.1.2.1.206.1.3.2.6.1.2",
1856
+ "status" : "current",
1857
+ "syntax" : {
1858
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1859
+ },
1860
+ "access" : "noaccess",
1861
+ "description" :
1862
+ """The mobile network prefix that is delegated to the
1863
+ mobile node. The type of the address represented by
1864
+ this object is specified by the corresponding
1865
+ pmip6LmaHomeNetworkPrefixType object.""",
1866
+ "reference" :
1867
+ """RFC 5213: Section 2""",
1868
+ }, # column
1869
+ "pmip6LmaHomeNetworkPrefixLength" : {
1870
+ "nodetype" : "column",
1871
+ "moduleName" : "PMIPV6-MIB",
1872
+ "oid" : "1.3.6.1.2.1.206.1.3.2.6.1.3",
1873
+ "status" : "current",
1874
+ "syntax" : {
1875
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressPrefixLength"},
1876
+ },
1877
+ "access" : "readonly",
1878
+ "description" :
1879
+ """The prefix length of the home network prefix.""",
1880
+ }, # column
1881
+ "pmip6LmaHomeNetworkPrefixLifeTime" : {
1882
+ "nodetype" : "column",
1883
+ "moduleName" : "PMIPV6-MIB",
1884
+ "oid" : "1.3.6.1.2.1.206.1.3.2.6.1.4",
1885
+ "status" : "current",
1886
+ "syntax" : {
1887
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1888
+ },
1889
+ "access" : "readwrite",
1890
+ "units" : "seconds",
1891
+ "description" :
1892
+ """The lifetime (in seconds) granted to the mobile
1893
+ node for this registration.""",
1894
+ "reference" :
1895
+ """RFC 5213: Section 5.3""",
1896
+ }, # column
1897
+ "pmip6Conformance" : {
1898
+ "nodetype" : "node",
1899
+ "moduleName" : "PMIPV6-MIB",
1900
+ "oid" : "1.3.6.1.2.1.206.2",
1901
+ }, # node
1902
+ "pmip6Groups" : {
1903
+ "nodetype" : "node",
1904
+ "moduleName" : "PMIPV6-MIB",
1905
+ "oid" : "1.3.6.1.2.1.206.2.1",
1906
+ }, # node
1907
+ "pmip6Compliances" : {
1908
+ "nodetype" : "node",
1909
+ "moduleName" : "PMIPV6-MIB",
1910
+ "oid" : "1.3.6.1.2.1.206.2.2",
1911
+ }, # node
1912
+ }, # nodes
1913
+
1914
+ "notifications" : {
1915
+ "pmip6MagHomeTunnelEstablished" : {
1916
+ "nodetype" : "notification",
1917
+ "moduleName" : "PMIPV6-MIB",
1918
+ "oid" : "1.3.6.1.2.1.206.0.1",
1919
+ "status" : "current",
1920
+ "objects" : {
1921
+ "pmip6MagBLTunnelIfIdentifier" : {
1922
+ "nodetype" : "object",
1923
+ "module" : "PMIPV6-MIB"
1924
+ },
1925
+ "pmip6MagProxyCOAState" : {
1926
+ "nodetype" : "object",
1927
+ "module" : "PMIPV6-MIB"
1928
+ },
1929
+ },
1930
+ "description" :
1931
+ """This notification is sent by the Proxy Mobile IPv6
1932
+ entities every time the tunnel is established between
1933
+ the local mobility anchor and mobile access gateway.""",
1934
+ "reference" :
1935
+ """RFC 5213: Section 5.6.1""",
1936
+ }, # notification
1937
+ "pmip6MagHomeTunnelReleased" : {
1938
+ "nodetype" : "notification",
1939
+ "moduleName" : "PMIPV6-MIB",
1940
+ "oid" : "1.3.6.1.2.1.206.0.2",
1941
+ "status" : "current",
1942
+ "objects" : {
1943
+ "pmip6MagBLTunnelIfIdentifier" : {
1944
+ "nodetype" : "object",
1945
+ "module" : "PMIPV6-MIB"
1946
+ },
1947
+ "pmip6MagProxyCOAState" : {
1948
+ "nodetype" : "object",
1949
+ "module" : "PMIPV6-MIB"
1950
+ },
1951
+ },
1952
+ "description" :
1953
+ """This notification is sent by the Proxy Mobile IPv6
1954
+ entities every time the tunnel between the local
1955
+
1956
+
1957
+ mobility anchor and mobile access gateway is released.""",
1958
+ "reference" :
1959
+ """RFC 5213: Section 5.6.1""",
1960
+ }, # notification
1961
+ "pmip6LmaHomeTunnelEstablished" : {
1962
+ "nodetype" : "notification",
1963
+ "moduleName" : "PMIPV6-MIB",
1964
+ "oid" : "1.3.6.1.2.1.206.0.3",
1965
+ "status" : "current",
1966
+ "objects" : {
1967
+ "pmip6BindingTunnelIfIdentifier" : {
1968
+ "nodetype" : "object",
1969
+ "module" : "PMIPV6-MIB"
1970
+ },
1971
+ "pmip6LmaLMAAState" : {
1972
+ "nodetype" : "object",
1973
+ "module" : "PMIPV6-MIB"
1974
+ },
1975
+ },
1976
+ "description" :
1977
+ """This notification is sent by the Proxy Mobile IPv6
1978
+ entities every time the tunnel is established between
1979
+ the local mobility anchor and mobile access gateway.""",
1980
+ "reference" :
1981
+ """RFC 5213: Section 5.6.1""",
1982
+ }, # notification
1983
+ "pmip6LmaHomeTunnelReleased" : {
1984
+ "nodetype" : "notification",
1985
+ "moduleName" : "PMIPV6-MIB",
1986
+ "oid" : "1.3.6.1.2.1.206.0.4",
1987
+ "status" : "current",
1988
+ "objects" : {
1989
+ "pmip6BindingTunnelIfIdentifier" : {
1990
+ "nodetype" : "object",
1991
+ "module" : "PMIPV6-MIB"
1992
+ },
1993
+ "pmip6LmaLMAAState" : {
1994
+ "nodetype" : "object",
1995
+ "module" : "PMIPV6-MIB"
1996
+ },
1997
+ },
1998
+ "description" :
1999
+ """This notification is sent by the Proxy Mobile IPv6
2000
+ entities every time the tunnel between the local
2001
+ mobility anchor and mobile access gateway is released.""",
2002
+ "reference" :
2003
+ """RFC 5213: Section 5.6.1""",
2004
+ }, # notification
2005
+ }, # notifications
2006
+
2007
+ "groups" : {
2008
+ "pmip6SystemGroup" : {
2009
+ "nodetype" : "group",
2010
+ "moduleName" : "PMIPV6-MIB",
2011
+ "oid" : "1.3.6.1.2.1.206.2.1.1",
2012
+ "status" : "current",
2013
+ "members" : {
2014
+ "pmip6Capabilities" : {
2015
+ "nodetype" : "member",
2016
+ "module" : "PMIPV6-MIB"
2017
+ },
2018
+ "pmip6MobileNodeGeneratedTimestampInUse" : {
2019
+ "nodetype" : "member",
2020
+ "module" : "PMIPV6-MIB"
2021
+ },
2022
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinksType" : {
2023
+ "nodetype" : "member",
2024
+ "module" : "PMIPV6-MIB"
2025
+ },
2026
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinks" : {
2027
+ "nodetype" : "member",
2028
+ "module" : "PMIPV6-MIB"
2029
+ },
2030
+ "pmip6FixedMagLinkLayerAddressOnAllAccessLinks" : {
2031
+ "nodetype" : "member",
2032
+ "module" : "PMIPV6-MIB"
2033
+ },
2034
+ }, # members
2035
+ "description" :
2036
+ """ A collection of objects for basic PMIPv6
2037
+ monitoring.""",
2038
+ }, # group
2039
+ "pmip6BindingCacheGroup" : {
2040
+ "nodetype" : "group",
2041
+ "moduleName" : "PMIPV6-MIB",
2042
+ "oid" : "1.3.6.1.2.1.206.2.1.2",
2043
+ "status" : "current",
2044
+ "members" : {
2045
+ "pmip6BindingPBUFlag" : {
2046
+ "nodetype" : "member",
2047
+ "module" : "PMIPV6-MIB"
2048
+ },
2049
+ "pmip6BindingMnIndex" : {
2050
+ "nodetype" : "member",
2051
+ "module" : "PMIPV6-MIB"
2052
+ },
2053
+ "pmip6BindingMnLLIndex" : {
2054
+ "nodetype" : "member",
2055
+ "module" : "PMIPV6-MIB"
2056
+ },
2057
+ "pmip6BindingMagLinkLocalAddressType" : {
2058
+ "nodetype" : "member",
2059
+ "module" : "PMIPV6-MIB"
2060
+ },
2061
+ "pmip6BindingMagLinkLocalAddress" : {
2062
+ "nodetype" : "member",
2063
+ "module" : "PMIPV6-MIB"
2064
+ },
2065
+ "pmip6BindingTunnelIfIdentifier" : {
2066
+ "nodetype" : "member",
2067
+ "module" : "PMIPV6-MIB"
2068
+ },
2069
+ "pmip6BindingMnInterfaceATT" : {
2070
+ "nodetype" : "member",
2071
+ "module" : "PMIPV6-MIB"
2072
+ },
2073
+ "pmip6BindingTimeRecentlyAccepted" : {
2074
+ "nodetype" : "member",
2075
+ "module" : "PMIPV6-MIB"
2076
+ },
2077
+ "pmip6LmaMnIdentifier" : {
2078
+ "nodetype" : "member",
2079
+ "module" : "PMIPV6-MIB"
2080
+ },
2081
+ "pmip6LmaMnLLIdentifier" : {
2082
+ "nodetype" : "member",
2083
+ "module" : "PMIPV6-MIB"
2084
+ },
2085
+ }, # members
2086
+ "description" :
2087
+ """ A collection of objects for monitoring the
2088
+ PMIPv6 extensions of the Binding Cache.""",
2089
+ }, # group
2090
+ "pmip6StatsGroup" : {
2091
+ "nodetype" : "group",
2092
+ "moduleName" : "PMIPV6-MIB",
2093
+ "oid" : "1.3.6.1.2.1.206.2.1.3",
2094
+ "status" : "current",
2095
+ "members" : {
2096
+ "pmip6MissingMnIdentifierOption" : {
2097
+ "nodetype" : "member",
2098
+ "module" : "PMIPV6-MIB"
2099
+ },
2100
+ "pmip6MagNotAuthorizedForProxyReg" : {
2101
+ "nodetype" : "member",
2102
+ "module" : "PMIPV6-MIB"
2103
+ },
2104
+ "pmip6NotLMAForThisMobileNode" : {
2105
+ "nodetype" : "member",
2106
+ "module" : "PMIPV6-MIB"
2107
+ },
2108
+ "pmip6ProxyRegNotEnabled" : {
2109
+ "nodetype" : "member",
2110
+ "module" : "PMIPV6-MIB"
2111
+ },
2112
+ "pmip6MissingHomeNetworkPrefixOption" : {
2113
+ "nodetype" : "member",
2114
+ "module" : "PMIPV6-MIB"
2115
+ },
2116
+ "pmip6MissingHandOffIndicatorOption" : {
2117
+ "nodetype" : "member",
2118
+ "module" : "PMIPV6-MIB"
2119
+ },
2120
+ "pmip6MissingAccessTechTypeOption" : {
2121
+ "nodetype" : "member",
2122
+ "module" : "PMIPV6-MIB"
2123
+ },
2124
+ "pmip6NotAuthorizedForHomeNetworkPrefix" : {
2125
+ "nodetype" : "member",
2126
+ "module" : "PMIPV6-MIB"
2127
+ },
2128
+ "pmip6TimestampMismatch" : {
2129
+ "nodetype" : "member",
2130
+ "module" : "PMIPV6-MIB"
2131
+ },
2132
+ "pmip6TimestampLowerThanPrevAccepted" : {
2133
+ "nodetype" : "member",
2134
+ "module" : "PMIPV6-MIB"
2135
+ },
2136
+ "pmip6BcePbuPrefixSetDoNotMatch" : {
2137
+ "nodetype" : "member",
2138
+ "module" : "PMIPV6-MIB"
2139
+ },
2140
+ "pmip6InitialBindingRegistrations" : {
2141
+ "nodetype" : "member",
2142
+ "module" : "PMIPV6-MIB"
2143
+ },
2144
+ "pmip6BindingLifeTimeExtensionNoHandOff" : {
2145
+ "nodetype" : "member",
2146
+ "module" : "PMIPV6-MIB"
2147
+ },
2148
+ "pmip6BindingLifeTimeExtensionAfterHandOff" : {
2149
+ "nodetype" : "member",
2150
+ "module" : "PMIPV6-MIB"
2151
+ },
2152
+ "pmip6BindingDeRegistrations" : {
2153
+ "nodetype" : "member",
2154
+ "module" : "PMIPV6-MIB"
2155
+ },
2156
+ "pmip6BindingBindingAcks" : {
2157
+ "nodetype" : "member",
2158
+ "module" : "PMIPV6-MIB"
2159
+ },
2160
+ "pmip6CounterDiscontinuityTime" : {
2161
+ "nodetype" : "member",
2162
+ "module" : "PMIPV6-MIB"
2163
+ },
2164
+ }, # members
2165
+ "description" :
2166
+ """ A collection of objects for basic PMIPv6
2167
+ statistics monitoring.""",
2168
+ }, # group
2169
+ "pmip6MagSystemGroup" : {
2170
+ "nodetype" : "group",
2171
+ "moduleName" : "PMIPV6-MIB",
2172
+ "oid" : "1.3.6.1.2.1.206.2.1.4",
2173
+ "status" : "current",
2174
+ "members" : {
2175
+ "pmip6MagStatus" : {
2176
+ "nodetype" : "member",
2177
+ "module" : "PMIPV6-MIB"
2178
+ },
2179
+ "pmip6MagProxyCOAState" : {
2180
+ "nodetype" : "member",
2181
+ "module" : "PMIPV6-MIB"
2182
+ },
2183
+ }, # members
2184
+ "description" :
2185
+ """ A collection of objects for monitoring the
2186
+ PMIPv6-system-related objects on a mobile router.""",
2187
+ }, # group
2188
+ "pmip6MagConfigurationGroup" : {
2189
+ "nodetype" : "group",
2190
+ "moduleName" : "PMIPV6-MIB",
2191
+ "oid" : "1.3.6.1.2.1.206.2.1.5",
2192
+ "status" : "current",
2193
+ "members" : {
2194
+ "pmip6MagHomeNetworkPrefixLength" : {
2195
+ "nodetype" : "member",
2196
+ "module" : "PMIPV6-MIB"
2197
+ },
2198
+ "pmip6MagHomeNetworkPrefixLifeTime" : {
2199
+ "nodetype" : "member",
2200
+ "module" : "PMIPV6-MIB"
2201
+ },
2202
+ "pmip6MagEnableMagLocalRouting" : {
2203
+ "nodetype" : "member",
2204
+ "module" : "PMIPV6-MIB"
2205
+ },
2206
+ }, # members
2207
+ "description" :
2208
+ """ A collection of objects for monitoring the
2209
+ configuration-related objects on a mobile access
2210
+ gateway.""",
2211
+ }, # group
2212
+ "pmip6MagRegistrationGroup" : {
2213
+ "nodetype" : "group",
2214
+ "moduleName" : "PMIPV6-MIB",
2215
+ "oid" : "1.3.6.1.2.1.206.2.1.6",
2216
+ "status" : "current",
2217
+ "members" : {
2218
+ "pmip6MagBLFlag" : {
2219
+ "nodetype" : "member",
2220
+ "module" : "PMIPV6-MIB"
2221
+ },
2222
+ "pmip6MagBLMnIndex" : {
2223
+ "nodetype" : "member",
2224
+ "module" : "PMIPV6-MIB"
2225
+ },
2226
+ "pmip6MagBLMnLLIndex" : {
2227
+ "nodetype" : "member",
2228
+ "module" : "PMIPV6-MIB"
2229
+ },
2230
+ "pmip6MagBLMagLinkLocalAddressType" : {
2231
+ "nodetype" : "member",
2232
+ "module" : "PMIPV6-MIB"
2233
+ },
2234
+ "pmip6MagBLMagLinkLocalAddress" : {
2235
+ "nodetype" : "member",
2236
+ "module" : "PMIPV6-MIB"
2237
+ },
2238
+ "pmip6MagBLMagIfIdentifierToMn" : {
2239
+ "nodetype" : "member",
2240
+ "module" : "PMIPV6-MIB"
2241
+ },
2242
+ "pmip6MagBLTunnelIfIdentifier" : {
2243
+ "nodetype" : "member",
2244
+ "module" : "PMIPV6-MIB"
2245
+ },
2246
+ "pmip6MagBLMnInterfaceATT" : {
2247
+ "nodetype" : "member",
2248
+ "module" : "PMIPV6-MIB"
2249
+ },
2250
+ "pmip6MagBLTimeRecentlyAccepted" : {
2251
+ "nodetype" : "member",
2252
+ "module" : "PMIPV6-MIB"
2253
+ },
2254
+ "pmip6MagMnIdentifier" : {
2255
+ "nodetype" : "member",
2256
+ "module" : "PMIPV6-MIB"
2257
+ },
2258
+ "pmip6MagMnLLIdentifier" : {
2259
+ "nodetype" : "member",
2260
+ "module" : "PMIPV6-MIB"
2261
+ },
2262
+ "pmip6MagProfMnIdentifier" : {
2263
+ "nodetype" : "member",
2264
+ "module" : "PMIPV6-MIB"
2265
+ },
2266
+ "pmip6MagProfMnLocalMobilityAnchorAddressType" : {
2267
+ "nodetype" : "member",
2268
+ "module" : "PMIPV6-MIB"
2269
+ },
2270
+ "pmip6MagProfMnLocalMobilityAnchorAddress" : {
2271
+ "nodetype" : "member",
2272
+ "module" : "PMIPV6-MIB"
2273
+ },
2274
+ }, # members
2275
+ "description" :
2276
+ """ A collection of objects for monitoring the
2277
+ registration-related objects on a mobile access
2278
+ gateway.""",
2279
+ }, # group
2280
+ "pmip6LmaSystemGroup" : {
2281
+ "nodetype" : "group",
2282
+ "moduleName" : "PMIPV6-MIB",
2283
+ "oid" : "1.3.6.1.2.1.206.2.1.7",
2284
+ "status" : "current",
2285
+ "members" : {
2286
+ "pmip6LmaStatus" : {
2287
+ "nodetype" : "member",
2288
+ "module" : "PMIPV6-MIB"
2289
+ },
2290
+ "pmip6LmaLMAAState" : {
2291
+ "nodetype" : "member",
2292
+ "module" : "PMIPV6-MIB"
2293
+ },
2294
+ }, # members
2295
+ "description" :
2296
+ """ A collection of objects for monitoring the
2297
+ system-related objects on an LMA.""",
2298
+ }, # group
2299
+ "pmip6LmaConfigurationGroup" : {
2300
+ "nodetype" : "group",
2301
+ "moduleName" : "PMIPV6-MIB",
2302
+ "oid" : "1.3.6.1.2.1.206.2.1.8",
2303
+ "status" : "current",
2304
+ "members" : {
2305
+ "pmip6LmaMinDelayBeforeBCEDelete" : {
2306
+ "nodetype" : "member",
2307
+ "module" : "PMIPV6-MIB"
2308
+ },
2309
+ "pmip6LmaMaxDelayBeforeNewBCEAssign" : {
2310
+ "nodetype" : "member",
2311
+ "module" : "PMIPV6-MIB"
2312
+ },
2313
+ "pmip6LmaTimestampValidityWindow" : {
2314
+ "nodetype" : "member",
2315
+ "module" : "PMIPV6-MIB"
2316
+ },
2317
+ "pmip6LmaHomeNetworkPrefixLength" : {
2318
+ "nodetype" : "member",
2319
+ "module" : "PMIPV6-MIB"
2320
+ },
2321
+ "pmip6LmaHomeNetworkPrefixLifeTime" : {
2322
+ "nodetype" : "member",
2323
+ "module" : "PMIPV6-MIB"
2324
+ },
2325
+ }, # members
2326
+ "description" :
2327
+ """ A collection of objects for Monitoring the
2328
+ configuration-related objects on an LMA.""",
2329
+ }, # group
2330
+ "pmip6MagNotificationGroup" : {
2331
+ "nodetype" : "group",
2332
+ "moduleName" : "PMIPV6-MIB",
2333
+ "oid" : "1.3.6.1.2.1.206.2.1.9",
2334
+ "status" : "current",
2335
+ "members" : {
2336
+ "pmip6MagHomeTunnelEstablished" : {
2337
+ "nodetype" : "member",
2338
+ "module" : "PMIPV6-MIB"
2339
+ },
2340
+ "pmip6MagHomeTunnelReleased" : {
2341
+ "nodetype" : "member",
2342
+ "module" : "PMIPV6-MIB"
2343
+ },
2344
+ }, # members
2345
+ "description" :
2346
+ """A collection of notifications from a home agent
2347
+ or correspondent node to the Manager about the
2348
+ tunnel status of the mobile router.""",
2349
+ }, # group
2350
+ "pmip6LmaNotificationGroup" : {
2351
+ "nodetype" : "group",
2352
+ "moduleName" : "PMIPV6-MIB",
2353
+ "oid" : "1.3.6.1.2.1.206.2.1.10",
2354
+ "status" : "current",
2355
+ "members" : {
2356
+ "pmip6LmaHomeTunnelEstablished" : {
2357
+ "nodetype" : "member",
2358
+ "module" : "PMIPV6-MIB"
2359
+ },
2360
+ "pmip6LmaHomeTunnelReleased" : {
2361
+ "nodetype" : "member",
2362
+ "module" : "PMIPV6-MIB"
2363
+ },
2364
+ }, # members
2365
+ "description" :
2366
+ """A collection of notifications from a home agent
2367
+ or correspondent node to the Manager about the
2368
+ tunnel status of the mobile router.""",
2369
+ }, # group
2370
+ }, # groups
2371
+
2372
+ "compliances" : {
2373
+ "pmip6CoreCompliance" : {
2374
+ "nodetype" : "compliance",
2375
+ "moduleName" : "PMIPV6-MIB",
2376
+ "oid" : "1.3.6.1.2.1.206.2.2.1",
2377
+ "status" : "current",
2378
+ "description" :
2379
+ """The compliance statement for SNMP entities
2380
+ that implement the PMIPV6-MIB.
2381
+ There are a number of INDEX objects that cannot be
2382
+ represented in the form of OBJECT clauses in
2383
+ SMIv2, but for which there are compliance
2384
+ requirements, expressed in OBJECT clause form in
2385
+ this description:
2386
+ -- OBJECT pmip6BindingHomeAddressType
2387
+ -- SYNTAX InetAddressType { ipv6(2) }
2388
+ -- DESCRIPTION
2389
+ -- This MIB module requires support for global
2390
+ -- ipv6 addresses for the pmip6BindingHomeAddress
2391
+ -- object.
2392
+ --""",
2393
+ "requires" : {
2394
+ "pmip6SystemGroup" : {
2395
+ "nodetype" : "mandatory",
2396
+ "module" : "PMIPV6-MIB"
2397
+ },
2398
+ }, # requires
2399
+ }, # compliance
2400
+ "pmip6Compliance2" : {
2401
+ "nodetype" : "compliance",
2402
+ "moduleName" : "PMIPV6-MIB",
2403
+ "oid" : "1.3.6.1.2.1.206.2.2.2",
2404
+ "status" : "current",
2405
+ "description" :
2406
+ """The compliance statement for SNMP entities
2407
+ that implement the PMIPV6-MIB.""",
2408
+ "requires" : {
2409
+ "pmip6SystemGroup" : {
2410
+ "nodetype" : "mandatory",
2411
+ "module" : "PMIPV6-MIB"
2412
+ },
2413
+ "pmip6BindingCacheGroup" : {
2414
+ "nodetype" : "mandatory",
2415
+ "module" : "PMIPV6-MIB"
2416
+ },
2417
+ "pmip6StatsGroup" : {
2418
+ "nodetype" : "mandatory",
2419
+ "module" : "PMIPV6-MIB"
2420
+ },
2421
+ }, # requires
2422
+ }, # compliance
2423
+ "pmip6CoreReadOnlyCompliance" : {
2424
+ "nodetype" : "compliance",
2425
+ "moduleName" : "PMIPV6-MIB",
2426
+ "oid" : "1.3.6.1.2.1.206.2.2.3",
2427
+ "status" : "current",
2428
+ "description" :
2429
+ """The compliance statement for SNMP entities
2430
+ that implement the PMIPV6-MIB without support
2431
+ for read-write (i.e., in read-only mode).""",
2432
+ "requires" : {
2433
+ "pmip6SystemGroup" : {
2434
+ "nodetype" : "mandatory",
2435
+ "module" : "PMIPV6-MIB"
2436
+ },
2437
+ }, # requires
2438
+ "refinements" : {
2439
+ "pmip6MobileNodeGeneratedTimestampInUse" : {
2440
+ "module" : "PMIPV6-MIB",
2441
+ "access" : "readonly",
2442
+ "description" :
2443
+ """Write access is not required.""",
2444
+ },
2445
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinksType" : {
2446
+ "module" : "PMIPV6-MIB",
2447
+ "access" : "readonly",
2448
+ "description" :
2449
+ """Write access is not required.""",
2450
+ },
2451
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinks" : {
2452
+ "module" : "PMIPV6-MIB",
2453
+ "access" : "readonly",
2454
+ "description" :
2455
+ """Write access is not required.""",
2456
+ },
2457
+ "pmip6FixedMagLinkLayerAddressOnAllAccessLinks" : {
2458
+ "module" : "PMIPV6-MIB",
2459
+ "access" : "readonly",
2460
+ "description" :
2461
+ """Write access is not required.""",
2462
+ },
2463
+ }, # refinements
2464
+
2465
+ }, # compliance
2466
+ "pmip6ReadOnlyCompliance2" : {
2467
+ "nodetype" : "compliance",
2468
+ "moduleName" : "PMIPV6-MIB",
2469
+ "oid" : "1.3.6.1.2.1.206.2.2.4",
2470
+ "status" : "current",
2471
+ "description" :
2472
+ """The compliance statement for SNMP entities
2473
+ that implement the PMIPV6-MIB without support
2474
+ for read-write (i.e., in read-only mode).""",
2475
+ "requires" : {
2476
+ "pmip6SystemGroup" : {
2477
+ "nodetype" : "mandatory",
2478
+ "module" : "PMIPV6-MIB"
2479
+ },
2480
+ "pmip6BindingCacheGroup" : {
2481
+ "nodetype" : "mandatory",
2482
+ "module" : "PMIPV6-MIB"
2483
+ },
2484
+ "pmip6StatsGroup" : {
2485
+ "nodetype" : "mandatory",
2486
+ "module" : "PMIPV6-MIB"
2487
+ },
2488
+ }, # requires
2489
+ "refinements" : {
2490
+ "pmip6MobileNodeGeneratedTimestampInUse" : {
2491
+ "module" : "PMIPV6-MIB",
2492
+ "access" : "readonly",
2493
+ "description" :
2494
+ """Write access is not required.""",
2495
+ },
2496
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinksType" : {
2497
+ "module" : "PMIPV6-MIB",
2498
+ "access" : "readonly",
2499
+ "description" :
2500
+ """Write access is not required.""",
2501
+ },
2502
+ "pmip6FixedMagLinkLocalAddressOnAllAccessLinks" : {
2503
+ "module" : "PMIPV6-MIB",
2504
+ "access" : "readonly",
2505
+ "description" :
2506
+ """Write access is not required.""",
2507
+ },
2508
+ "pmip6FixedMagLinkLayerAddressOnAllAccessLinks" : {
2509
+ "module" : "PMIPV6-MIB",
2510
+ "access" : "readonly",
2511
+ "description" :
2512
+ """Write access is not required.""",
2513
+ },
2514
+ }, # refinements
2515
+
2516
+ }, # compliance
2517
+ "pmip6MagCoreCompliance" : {
2518
+ "nodetype" : "compliance",
2519
+ "moduleName" : "PMIPV6-MIB",
2520
+ "oid" : "1.3.6.1.2.1.206.2.2.5",
2521
+ "status" : "current",
2522
+ "description" :
2523
+ """The compliance statement for SNMP entities
2524
+ that implement the PMIPV6-MIB.
2525
+
2526
+ There are a number of INDEX objects that cannot be
2527
+ represented in the form of OBJECT clauses in
2528
+ SMIv2, but for which there are compliance
2529
+ requirements, expressed in OBJECT clause form in
2530
+ this description:
2531
+ -- OBJECT pmip6MagProxyCOAType
2532
+ -- SYNTAX InetAddressType { ipv6(2) }
2533
+ -- DESCRIPTION
2534
+ -- This MIB module requires support for global
2535
+ -- IPv6 addresses for the pmip6MagProxyCOAType
2536
+ -- object.
2537
+ --
2538
+ -- OBJECT pmip6MagProxyCOA
2539
+ -- SYNTAX InetAddress (SIZE(16))
2540
+ -- DESCRIPTION
2541
+ -- This MIB module requires support for global
2542
+ -- IPv6 addresses for the pmip6MagProxyCOA
2543
+ -- object.
2544
+ --""",
2545
+ "requires" : {
2546
+ "pmip6MagSystemGroup" : {
2547
+ "nodetype" : "mandatory",
2548
+ "module" : "PMIPV6-MIB"
2549
+ },
2550
+ }, # requires
2551
+ }, # compliance
2552
+ "pmip6MagCompliance2" : {
2553
+ "nodetype" : "compliance",
2554
+ "moduleName" : "PMIPV6-MIB",
2555
+ "oid" : "1.3.6.1.2.1.206.2.2.6",
2556
+ "status" : "current",
2557
+ "description" :
2558
+ """The compliance statement for SNMP entities that
2559
+ implement the PMIPV6-MIB for monitoring configuration-
2560
+ related information, registration details, and
2561
+ statistics on a mobile access gateway.
2562
+
2563
+
2564
+ There are a number of INDEX objects that cannot be
2565
+ represented in the form of OBJECT clauses in
2566
+ SMIv2, but for which there are compliance
2567
+ requirements, expressed in OBJECT clause form in
2568
+ this description:
2569
+
2570
+ -- OBJECT pmip6MagProxyCOAType
2571
+ -- SYNTAX InetAddressType { ipv6(2) }
2572
+ -- DESCRIPTION
2573
+ -- This MIB module requires support for global
2574
+ -- IPv6 addresses for the pmip6MagProxyCOA
2575
+ -- object.
2576
+ --
2577
+ -- OBJECT pmip6MagProxyCOA
2578
+ -- SYNTAX InetAddress (SIZE(16))
2579
+ -- DESCRIPTION
2580
+ -- This MIB module requires support for global
2581
+ -- IPv6 addresses for the pmip6MagProxyCOAType
2582
+ -- object.
2583
+ --
2584
+ -- OBJECT pmip6MagHomeNetworkPrefixType
2585
+ -- SYNTAX InetAddressType { ipv6(2) }
2586
+ -- DESCRIPTION
2587
+ -- This MIB module requires support for global
2588
+ -- IPv6 addresses for the
2589
+ -- pmip6MagHomeNetworkPrefix object.
2590
+ --
2591
+ -- OBJECT pmip6MagHomeNetworkPrefix
2592
+ -- SYNTAX InetAddress (SIZE(16))
2593
+ -- DESCRIPTION
2594
+ -- This MIB module requires support for global
2595
+ -- IPv6 addresses for the
2596
+ -- pmip6MagHomeNetworkPrefix object.
2597
+ --""",
2598
+ "requires" : {
2599
+ "pmip6MagSystemGroup" : {
2600
+ "nodetype" : "mandatory",
2601
+ "module" : "PMIPV6-MIB"
2602
+ },
2603
+ "pmip6MagConfigurationGroup" : {
2604
+ "nodetype" : "mandatory",
2605
+ "module" : "PMIPV6-MIB"
2606
+ },
2607
+ "pmip6MagRegistrationGroup" : {
2608
+ "nodetype" : "mandatory",
2609
+ "module" : "PMIPV6-MIB"
2610
+ },
2611
+ }, # requires
2612
+ }, # compliance
2613
+ "pmip6MagCoreReadOnlyCompliance" : {
2614
+ "nodetype" : "compliance",
2615
+ "moduleName" : "PMIPV6-MIB",
2616
+ "oid" : "1.3.6.1.2.1.206.2.2.7",
2617
+ "status" : "current",
2618
+ "description" :
2619
+ """The compliance statement for SNMP entities
2620
+ that implement the PMIPV6-MIB without support
2621
+ for read-write (i.e., in read-only mode).
2622
+
2623
+
2624
+ There are a number of INDEX objects that cannot be
2625
+ represented in the form of OBJECT clauses in
2626
+ SMIv2, but for which there are compliance
2627
+ requirements, expressed in OBJECT clause form in
2628
+ this description:
2629
+ -- OBJECT pmip6MagProxyCOAType
2630
+ -- SYNTAX InetAddressType { ipv6(2) }
2631
+ -- DESCRIPTION
2632
+ -- This MIB module requires support for global
2633
+ -- IPv6 addresses for the pmip6MagProxyCOA
2634
+ -- object.
2635
+ --
2636
+ -- OBJECT pmip6MagProxyCOA
2637
+ -- SYNTAX InetAddress (SIZE(16))
2638
+ -- DESCRIPTION
2639
+ -- This MIB module requires support for global
2640
+ -- IPv6 addresses for the pmip6MagProxyCOAType
2641
+ -- object.
2642
+ --
2643
+ -- OBJECT pmip6MagHomeNetworkPrefixType
2644
+ -- SYNTAX InetAddressType { ipv6(2) }
2645
+ -- DESCRIPTION
2646
+ -- This MIB module requires support for global
2647
+ -- IPv6 addresses for the
2648
+ -- pmip6MagHomeNetworkPrefix object.
2649
+ --""",
2650
+ "requires" : {
2651
+ "pmip6MagSystemGroup" : {
2652
+ "nodetype" : "mandatory",
2653
+ "module" : "PMIPV6-MIB"
2654
+ },
2655
+ }, # requires
2656
+ "refinements" : {
2657
+ "pmip6MagStatus" : {
2658
+ "module" : "PMIPV6-MIB",
2659
+ "access" : "readonly",
2660
+ "description" :
2661
+ """Write access is not required.""",
2662
+ },
2663
+ }, # refinements
2664
+
2665
+ }, # compliance
2666
+ "pmip6MagReadOnlyCompliance2" : {
2667
+ "nodetype" : "compliance",
2668
+ "moduleName" : "PMIPV6-MIB",
2669
+ "oid" : "1.3.6.1.2.1.206.2.2.8",
2670
+ "status" : "current",
2671
+ "description" :
2672
+ """The compliance statement for SNMP entities that
2673
+ implement the PMIPV6-MIB without support for read-
2674
+ write (i.e., in read-only mode) and with support
2675
+ for monitoring configuration-related information,
2676
+ registration details, and statistics on a mobile
2677
+ access gateway.
2678
+
2679
+ There are a number of INDEX objects that cannot be
2680
+ represented in the form of OBJECT clauses in
2681
+
2682
+
2683
+ SMIv2, but for which there are compliance
2684
+ requirements, expressed in OBJECT clause form in
2685
+ this description:
2686
+
2687
+ -- OBJECT pmip6MagProxyCOAType
2688
+ -- SYNTAX InetAddressType { ipv6(2) }
2689
+ -- DESCRIPTION
2690
+ -- This MIB module requires support for global
2691
+ -- IPv6 addresses for the pmip6MagProxyCOA
2692
+ -- object.
2693
+ --
2694
+ -- OBJECT pmip6MagProxyCOA
2695
+ -- SYNTAX InetAddress (SIZE(16))
2696
+ -- DESCRIPTION
2697
+ -- This MIB module requires support for global
2698
+ -- IPv6 addresses for the pmip6MagProxyCOAType
2699
+ -- object.
2700
+ --
2701
+ -- OBJECT pmip6MagHomeNetworkPrefixType
2702
+ -- SYNTAX InetAddressType { ipv6(2) }
2703
+ -- DESCRIPTION
2704
+ -- This MIB module requires support for global
2705
+ -- IPv6 addresses for the
2706
+ -- pmip6MagHomeNetworkPrefix object.
2707
+ --
2708
+ -- OBJECT pmip6MagHomeNetworkPrefix
2709
+ -- SYNTAX InetAddress (SIZE(16))
2710
+ -- DESCRIPTION
2711
+ -- This MIB module requires support for global
2712
+ -- IPv6 addresses for the
2713
+ -- pmip6MagHomeNetworkPrefix object.
2714
+ --""",
2715
+ "requires" : {
2716
+ "pmip6MagSystemGroup" : {
2717
+ "nodetype" : "mandatory",
2718
+ "module" : "PMIPV6-MIB"
2719
+ },
2720
+ "pmip6MagConfigurationGroup" : {
2721
+ "nodetype" : "mandatory",
2722
+ "module" : "PMIPV6-MIB"
2723
+ },
2724
+ "pmip6MagRegistrationGroup" : {
2725
+ "nodetype" : "mandatory",
2726
+ "module" : "PMIPV6-MIB"
2727
+ },
2728
+ }, # requires
2729
+ "refinements" : {
2730
+ "pmip6MagStatus" : {
2731
+ "module" : "PMIPV6-MIB",
2732
+ "access" : "readonly",
2733
+ "description" :
2734
+ """Write access is not required.""",
2735
+ },
2736
+ "pmip6MagEnableMagLocalRouting" : {
2737
+ "module" : "PMIPV6-MIB",
2738
+ "access" : "readonly",
2739
+ "description" :
2740
+ """Write access is not required.""",
2741
+ },
2742
+ }, # refinements
2743
+
2744
+ }, # compliance
2745
+ "pmip6LmaCoreCompliance" : {
2746
+ "nodetype" : "compliance",
2747
+ "moduleName" : "PMIPV6-MIB",
2748
+ "oid" : "1.3.6.1.2.1.206.2.2.9",
2749
+ "status" : "current",
2750
+ "description" :
2751
+ """The compliance statement for SNMP entities
2752
+ that implement the PMIPV6-MIB.
2753
+ There are a number of INDEX objects that cannot be
2754
+ represented in the form of OBJECT clauses in
2755
+ SMIv2, but for which there are compliance
2756
+ requirements, expressed in OBJECT clause form in
2757
+ this description:
2758
+ -- OBJECT pmip6LmaLMAAType
2759
+ -- SYNTAX InetAddressType { ipv6(2) }
2760
+ -- DESCRIPTION
2761
+ -- This MIB module requires support for global
2762
+ -- IPv6 addresses for the pmip6LmaLMAA
2763
+ -- object.
2764
+ --
2765
+ -- OBJECT pmip6LmaLMAA
2766
+ -- SYNTAX InetAddress (SIZE(16))
2767
+ -- DESCRIPTION
2768
+ -- This MIB module requires support for global
2769
+ -- IPv6 addresses for the pmip6LmaLMAA
2770
+ -- object.
2771
+ --""",
2772
+ "requires" : {
2773
+ "pmip6LmaSystemGroup" : {
2774
+ "nodetype" : "mandatory",
2775
+ "module" : "PMIPV6-MIB"
2776
+ },
2777
+ }, # requires
2778
+ }, # compliance
2779
+ "pmip6LmaCompliance2" : {
2780
+ "nodetype" : "compliance",
2781
+ "moduleName" : "PMIPV6-MIB",
2782
+ "oid" : "1.3.6.1.2.1.206.2.2.10",
2783
+ "status" : "current",
2784
+ "description" :
2785
+ """The compliance statement for SNMP entities that
2786
+ implement the PMIPV6-MIB for monitoring configuration-
2787
+ related information, registration details, and
2788
+ statistics on a mobile access gateway.
2789
+
2790
+ There are a number of INDEX objects that cannot be
2791
+ represented in the form of OBJECT clauses in
2792
+ SMIv2, but for which there are compliance
2793
+ requirements, expressed in OBJECT clause form in
2794
+ this description:
2795
+
2796
+ -- OBJECT pmip6LmaLMAAType
2797
+ -- SYNTAX InetAddressType { ipv6(2) }
2798
+ -- DESCRIPTION
2799
+ -- This MIB module requires support for global
2800
+
2801
+
2802
+ -- IPv6 addresses for the pmip6LmaLMAA
2803
+ -- object.
2804
+ --
2805
+ -- OBJECT pmip6LmaLMAA
2806
+ -- SYNTAX InetAddress (SIZE(16))
2807
+ -- DESCRIPTION
2808
+ -- This MIB module requires support for global
2809
+ -- IPv6 addresses for the pmip6LmaLMAA
2810
+ -- object.
2811
+ --
2812
+ -- OBJECT pmip6LmaHomeNetworkPrefixType
2813
+ -- SYNTAX InetAddressType { ipv6(2) }
2814
+ -- DESCRIPTION
2815
+ -- This MIB module requires support for global
2816
+ -- IPv6 addresses for the
2817
+ -- pmip6LmaHomeNetworkPrefix object.
2818
+ --
2819
+ -- OBJECT pmip6LmaHomeNetworkPrefix
2820
+ -- SYNTAX InetAddress (SIZE(16))
2821
+ -- DESCRIPTION
2822
+ -- This MIB module requires support for global
2823
+ -- IPv6 addresses for the
2824
+ -- pmip6LmaHomeNetworkPrefix object.
2825
+ --""",
2826
+ "requires" : {
2827
+ "pmip6LmaSystemGroup" : {
2828
+ "nodetype" : "mandatory",
2829
+ "module" : "PMIPV6-MIB"
2830
+ },
2831
+ "pmip6LmaConfigurationGroup" : {
2832
+ "nodetype" : "mandatory",
2833
+ "module" : "PMIPV6-MIB"
2834
+ },
2835
+ }, # requires
2836
+ }, # compliance
2837
+ "pmip6LmaReadOnlyCompliance" : {
2838
+ "nodetype" : "compliance",
2839
+ "moduleName" : "PMIPV6-MIB",
2840
+ "oid" : "1.3.6.1.2.1.206.2.2.11",
2841
+ "status" : "current",
2842
+ "description" :
2843
+ """The compliance statement for SNMP entities
2844
+ that implement the PMIPV6-MIB.
2845
+ There are a number of INDEX objects that cannot be
2846
+ represented in the form of OBJECT clauses in
2847
+ SMIv2, but for which there are compliance
2848
+ requirements, expressed in OBJECT clause form in
2849
+ this description:
2850
+ -- OBJECT pmip6LmaLMAAType
2851
+ -- SYNTAX InetAddressType { ipv6(2) }
2852
+ -- DESCRIPTION
2853
+ -- This MIB module requires support for global
2854
+ -- IPv6 addresses for the pmip6LmaLMAA
2855
+ -- object.
2856
+ --
2857
+
2858
+
2859
+ -- OBJECT pmip6LmaLMAA
2860
+ -- SYNTAX InetAddress (SIZE(16))
2861
+ -- DESCRIPTION
2862
+ -- This MIB module requires support for global
2863
+ -- IPv6 addresses for the pmip6LmaLMAA
2864
+ -- object.
2865
+ --""",
2866
+ "requires" : {
2867
+ "pmip6LmaSystemGroup" : {
2868
+ "nodetype" : "mandatory",
2869
+ "module" : "PMIPV6-MIB"
2870
+ },
2871
+ }, # requires
2872
+ "refinements" : {
2873
+ "pmip6LmaStatus" : {
2874
+ "module" : "PMIPV6-MIB",
2875
+ "access" : "readonly",
2876
+ "description" :
2877
+ """Write access is not required.""",
2878
+ },
2879
+ }, # refinements
2880
+
2881
+ }, # compliance
2882
+ "pmip6LmaReadOnlyCompliance2" : {
2883
+ "nodetype" : "compliance",
2884
+ "moduleName" : "PMIPV6-MIB",
2885
+ "oid" : "1.3.6.1.2.1.206.2.2.12",
2886
+ "status" : "current",
2887
+ "description" :
2888
+ """The compliance statement for SNMP entities that
2889
+ implement the PMIPV6-MIB without support
2890
+ for read-write (i.e., in read-only mode) and for
2891
+ monitoring configuration-related information,
2892
+ registration details, and statistics on a mobile
2893
+ access gateway.
2894
+
2895
+ There are a number of INDEX objects that cannot be
2896
+ represented in the form of OBJECT clauses in
2897
+ SMIv2, but for which there are compliance
2898
+ requirements, expressed in OBJECT clause form in
2899
+ this description:
2900
+
2901
+ -- OBJECT pmip6LmaLMAAType
2902
+ -- SYNTAX InetAddressType { ipv6(2) }
2903
+ -- DESCRIPTION
2904
+ -- This MIB module requires support for global
2905
+ -- IPv6 addresses for the pmip6LmaLMAA
2906
+ -- object.
2907
+
2908
+ --
2909
+ -- OBJECT pmip6LmaLMAA
2910
+ -- SYNTAX InetAddress (SIZE(16))
2911
+ -- DESCRIPTION
2912
+ -- This MIB module requires support for global
2913
+ -- IPv6 addresses for the pmip6LmaLMAA
2914
+ -- object.
2915
+ --
2916
+
2917
+
2918
+ -- OBJECT pmip6LmaHomeNetworkPrefixType
2919
+ -- SYNTAX InetAddressType { ipv6(2) }
2920
+ -- DESCRIPTION
2921
+ -- This MIB module requires support for global
2922
+ -- IPv6 addresses for the
2923
+ -- pmip6LmaHomeNetworkPrefix object.
2924
+ --
2925
+ -- OBJECT pmip6LmaHomeNetworkPrefix
2926
+ -- SYNTAX InetAddress (SIZE(16))
2927
+ -- DESCRIPTION
2928
+ -- This MIB module requires support for global
2929
+ -- IPv6 addresses for the
2930
+ -- pmip6LmaHomeNetworkPrefix object.
2931
+ --""",
2932
+ "requires" : {
2933
+ "pmip6LmaSystemGroup" : {
2934
+ "nodetype" : "mandatory",
2935
+ "module" : "PMIPV6-MIB"
2936
+ },
2937
+ "pmip6LmaConfigurationGroup" : {
2938
+ "nodetype" : "mandatory",
2939
+ "module" : "PMIPV6-MIB"
2940
+ },
2941
+ }, # requires
2942
+ "refinements" : {
2943
+ "pmip6LmaStatus" : {
2944
+ "module" : "PMIPV6-MIB",
2945
+ "access" : "readonly",
2946
+ "description" :
2947
+ """Write access is not required.""",
2948
+ },
2949
+ "pmip6LmaMinDelayBeforeBCEDelete" : {
2950
+ "module" : "PMIPV6-MIB",
2951
+ "access" : "readonly",
2952
+ "description" :
2953
+ """Write access is not required.""",
2954
+ },
2955
+ "pmip6LmaMaxDelayBeforeNewBCEAssign" : {
2956
+ "module" : "PMIPV6-MIB",
2957
+ "access" : "readonly",
2958
+ "description" :
2959
+ """Write access is not required.""",
2960
+ },
2961
+ "pmip6LmaTimestampValidityWindow" : {
2962
+ "module" : "PMIPV6-MIB",
2963
+ "access" : "readonly",
2964
+ "description" :
2965
+ """Write access is not required.""",
2966
+ },
2967
+ "pmip6LmaHomeNetworkPrefixLifeTime" : {
2968
+ "module" : "PMIPV6-MIB",
2969
+ "access" : "readonly",
2970
+ "description" :
2971
+ """Write access is not required.""",
2972
+ },
2973
+ }, # refinements
2974
+
2975
+ }, # compliance
2976
+ "pmip6MagNotificationCompliance" : {
2977
+ "nodetype" : "compliance",
2978
+ "moduleName" : "PMIPV6-MIB",
2979
+ "oid" : "1.3.6.1.2.1.206.2.2.13",
2980
+ "status" : "current",
2981
+ "description" :
2982
+ """The compliance statement for SNMP entities that
2983
+ implement the PMIPV6-MIB and support notification
2984
+ from the mobile access gateway.""",
2985
+ "requires" : {
2986
+ "pmip6MagNotificationGroup" : {
2987
+ "nodetype" : "mandatory",
2988
+ "module" : "PMIPV6-MIB"
2989
+ },
2990
+ }, # requires
2991
+ }, # compliance
2992
+ "pmip6LmaNotificationCompliance" : {
2993
+ "nodetype" : "compliance",
2994
+ "moduleName" : "PMIPV6-MIB",
2995
+ "oid" : "1.3.6.1.2.1.206.2.2.14",
2996
+ "status" : "current",
2997
+ "description" :
2998
+ """The compliance statement for SNMP entities that
2999
+ implement the PMIPV6-MIB and support notification
3000
+ from the LMA.""",
3001
+ "requires" : {
3002
+ "pmip6LmaNotificationGroup" : {
3003
+ "nodetype" : "mandatory",
3004
+ "module" : "PMIPV6-MIB"
3005
+ },
3006
+ }, # requires
3007
+ }, # compliance
3008
+ }, # compliances
3009
+
3010
+ }