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,3473 @@
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 MIP-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/MIP-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "MIP-MIB",
11
+
12
+ "MIP-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Mobile IP Working Group""",
17
+ "contact" :
18
+ """ David Cong
19
+ Postal: Motorola
20
+ 1301 E. Algonquin Rd.
21
+ Schaumburg, IL 60196
22
+ Phone: +1-847-576-1357
23
+ Email: cong@comm.mot.com""",
24
+ "description" :
25
+ """The MIB Module for the Mobile IP.""",
26
+ "revisions" : (
27
+ {
28
+ "date" : "1996-06-04 00:00",
29
+ "description" :
30
+ """[Revision added by libsmi due to a LAST-UPDATED clause.]""",
31
+ },
32
+ ),
33
+ "identity node" : "mipMIB",
34
+ },
35
+
36
+ "imports" : (
37
+ {"module" : "SNMPv2-SMI", "name" : "Counter32"},
38
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
39
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
40
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
41
+ {"module" : "SNMPv2-SMI", "name" : "IpAddress"},
42
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
43
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
44
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
45
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
46
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
47
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
48
+ {"module" : "SNMPv2-TC", "name" : "TimeStamp"},
49
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
50
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
51
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
52
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
53
+ ),
54
+
55
+ "typedefs" : {
56
+ "RegistrationFlags" : {
57
+ "basetype" : "Bits",
58
+ "status" : "current",
59
+ "vjCompression" : {
60
+ "nodetype" : "namednumber",
61
+ "number" : "0"
62
+ },
63
+ "gre" : {
64
+ "nodetype" : "namednumber",
65
+ "number" : "1"
66
+ },
67
+ "minEnc" : {
68
+ "nodetype" : "namednumber",
69
+ "number" : "2"
70
+ },
71
+ "decapsulationbyMN" : {
72
+ "nodetype" : "namednumber",
73
+ "number" : "3"
74
+ },
75
+ "broadcastDatagram" : {
76
+ "nodetype" : "namednumber",
77
+ "number" : "4"
78
+ },
79
+ "simultaneousBindings" : {
80
+ "nodetype" : "namednumber",
81
+ "number" : "5"
82
+ },
83
+ "description" :
84
+ """This data type is used to define the registration
85
+ flags for Mobile IP registration extension:
86
+ vjCompression
87
+ -- Request to use VJ compression
88
+ gre
89
+ -- Request to use GRE
90
+ minEnc
91
+ -- Request to use minimal encapsulation
92
+ decapsulationByMN
93
+ -- Decapsulation by mobile node
94
+ broadcastDatagram
95
+ -- Request to receive broadcasts
96
+ simultaneoursBindings
97
+ -- Request to retain prior binding(s).""",
98
+ },
99
+ }, # typedefs
100
+
101
+ "nodes" : {
102
+ "mipMIB" : {
103
+ "nodetype" : "node",
104
+ "moduleName" : "MIP-MIB",
105
+ "oid" : "1.3.6.1.2.1.44",
106
+ "status" : "current",
107
+ }, # node
108
+ "mipMIBObjects" : {
109
+ "nodetype" : "node",
110
+ "moduleName" : "MIP-MIB",
111
+ "oid" : "1.3.6.1.2.1.44.1",
112
+ }, # node
113
+ "mipSystem" : {
114
+ "nodetype" : "node",
115
+ "moduleName" : "MIP-MIB",
116
+ "oid" : "1.3.6.1.2.1.44.1.1",
117
+ }, # node
118
+ "mipEntities" : {
119
+ "nodetype" : "scalar",
120
+ "moduleName" : "MIP-MIB",
121
+ "oid" : "1.3.6.1.2.1.44.1.1.1",
122
+ "status" : "current",
123
+ "syntax" : {
124
+ "type" : {
125
+ "basetype" : "Bits",
126
+ "mobileNode" : {
127
+ "nodetype" : "namednumber",
128
+ "number" : "0"
129
+ },
130
+ "foreignAgent" : {
131
+ "nodetype" : "namednumber",
132
+ "number" : "1"
133
+ },
134
+ "homeAgent" : {
135
+ "nodetype" : "namednumber",
136
+ "number" : "2"
137
+ },
138
+ },
139
+ },
140
+ "access" : "readonly",
141
+ "description" :
142
+ """This object describes which Mobile IP entities are
143
+ supported by this managed entity. The entity may
144
+ support more than one Mobile IP entities. For example,
145
+ the entity supports both Foreign Agent (FA) and Home
146
+ Agent (HA). Therefore, bit 1 and bit 2 are set to 1
147
+ for this object.""",
148
+ }, # scalar
149
+ "mipEnable" : {
150
+ "nodetype" : "scalar",
151
+ "moduleName" : "MIP-MIB",
152
+ "oid" : "1.3.6.1.2.1.44.1.1.2",
153
+ "status" : "current",
154
+ "syntax" : {
155
+ "type" : {
156
+ "basetype" : "Enumeration",
157
+ "enabled" : {
158
+ "nodetype" : "namednumber",
159
+ "number" : "1"
160
+ },
161
+ "disabled" : {
162
+ "nodetype" : "namednumber",
163
+ "number" : "2"
164
+ },
165
+ },
166
+ },
167
+ "access" : "readwrite",
168
+ "description" :
169
+ """Indicates whether the Mobile IP protocol should be
170
+ enabled for the managed entity. If it is disabled, the
171
+ entity should disable both agent discovery and
172
+ registration functions.""",
173
+ }, # scalar
174
+ "mipEncapsulationSupported" : {
175
+ "nodetype" : "scalar",
176
+ "moduleName" : "MIP-MIB",
177
+ "oid" : "1.3.6.1.2.1.44.1.1.3",
178
+ "status" : "current",
179
+ "syntax" : {
180
+ "type" : {
181
+ "basetype" : "Bits",
182
+ "ipInIp" : {
183
+ "nodetype" : "namednumber",
184
+ "number" : "0"
185
+ },
186
+ "gre" : {
187
+ "nodetype" : "namednumber",
188
+ "number" : "1"
189
+ },
190
+ "minEnc" : {
191
+ "nodetype" : "namednumber",
192
+ "number" : "2"
193
+ },
194
+ "other" : {
195
+ "nodetype" : "namednumber",
196
+ "number" : "3"
197
+ },
198
+ },
199
+ },
200
+ "access" : "readonly",
201
+ "description" :
202
+ """Encapsulation methods supported by the Mobile IP
203
+ entity. The entity may support multiple encapsulation
204
+ methods or none of them:
205
+ ipInIp(0), -- IP Encapsulation within IP
206
+ gre(1), -- Generic Routing Encapsulation,
207
+ -- refers to RFC1701
208
+ minEnc(2), -- Minimal Encapsulation within IP.""",
209
+ }, # scalar
210
+ "mipSecurity" : {
211
+ "nodetype" : "node",
212
+ "moduleName" : "MIP-MIB",
213
+ "oid" : "1.3.6.1.2.1.44.1.2",
214
+ }, # node
215
+ "mipSecAssocTable" : {
216
+ "nodetype" : "table",
217
+ "moduleName" : "MIP-MIB",
218
+ "oid" : "1.3.6.1.2.1.44.1.2.1",
219
+ "status" : "current",
220
+ "description" :
221
+ """A table containing Mobility Security Associations.""",
222
+ }, # table
223
+ "mipSecAssocEntry" : {
224
+ "nodetype" : "row",
225
+ "moduleName" : "MIP-MIB",
226
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1",
227
+ "create" : "true",
228
+ "status" : "current",
229
+ "linkage" : [
230
+ "mipSecPeerAddress",
231
+ "mipSecSPI",
232
+ ],
233
+ "description" :
234
+ """One particular Mobility Security Association.""",
235
+ }, # row
236
+ "mipSecPeerAddress" : {
237
+ "nodetype" : "column",
238
+ "moduleName" : "MIP-MIB",
239
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1.1",
240
+ "status" : "current",
241
+ "syntax" : {
242
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
243
+ },
244
+ "access" : "noaccess",
245
+ "description" :
246
+ """The IP address of the peer entity with which this
247
+ node shares the mobility security association.""",
248
+ }, # column
249
+ "mipSecSPI" : {
250
+ "nodetype" : "column",
251
+ "moduleName" : "MIP-MIB",
252
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1.2",
253
+ "status" : "current",
254
+ "syntax" : {
255
+ "type" : {
256
+ "basetype" : "Unsigned32",
257
+ "ranges" : [
258
+ {
259
+ "min" : "0",
260
+ "max" : "4294967295"
261
+ },
262
+ ],
263
+ "range" : {
264
+ "min" : "0",
265
+ "max" : "4294967295"
266
+ },
267
+ },
268
+ },
269
+ "access" : "noaccess",
270
+ "description" :
271
+ """The SPI is the 4-byte opaque index within the
272
+ Mobility Security Association which selects the
273
+ specific security parameters to be used to
274
+ authenticate the peer, i.e. the rest of the variables
275
+ in this MipSecAssocEntry.""",
276
+ }, # column
277
+ "mipSecAlgorithmType" : {
278
+ "nodetype" : "column",
279
+ "moduleName" : "MIP-MIB",
280
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1.3",
281
+ "status" : "current",
282
+ "syntax" : {
283
+ "type" : {
284
+ "basetype" : "Enumeration",
285
+ "other" : {
286
+ "nodetype" : "namednumber",
287
+ "number" : "1"
288
+ },
289
+ "md5" : {
290
+ "nodetype" : "namednumber",
291
+ "number" : "2"
292
+ },
293
+ },
294
+ },
295
+ "access" : "readwrite",
296
+ "description" :
297
+ """Type of security algorithm.""",
298
+ }, # column
299
+ "mipSecAlgorithmMode" : {
300
+ "nodetype" : "column",
301
+ "moduleName" : "MIP-MIB",
302
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1.4",
303
+ "status" : "current",
304
+ "syntax" : {
305
+ "type" : {
306
+ "basetype" : "Enumeration",
307
+ "other" : {
308
+ "nodetype" : "namednumber",
309
+ "number" : "1"
310
+ },
311
+ "prefixSuffix" : {
312
+ "nodetype" : "namednumber",
313
+ "number" : "2"
314
+ },
315
+ },
316
+ },
317
+ "access" : "readwrite",
318
+ "description" :
319
+ """Security mode used by this algorithm.""",
320
+ }, # column
321
+ "mipSecKey" : {
322
+ "nodetype" : "column",
323
+ "moduleName" : "MIP-MIB",
324
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1.5",
325
+ "status" : "current",
326
+ "syntax" : {
327
+ "type" : {
328
+ "basetype" : "OctetString",
329
+ "ranges" : [
330
+ {
331
+ "min" : "16",
332
+ "max" : "16"
333
+ },
334
+ ],
335
+ "range" : {
336
+ "min" : "16",
337
+ "max" : "16"
338
+ },
339
+ },
340
+ },
341
+ "access" : "readwrite",
342
+ "description" :
343
+ """The shared secret key for the security
344
+ associations. Reading this object will always return
345
+ zero length value.""",
346
+ }, # column
347
+ "mipSecReplayMethod" : {
348
+ "nodetype" : "column",
349
+ "moduleName" : "MIP-MIB",
350
+ "oid" : "1.3.6.1.2.1.44.1.2.1.1.6",
351
+ "status" : "current",
352
+ "syntax" : {
353
+ "type" : {
354
+ "basetype" : "Enumeration",
355
+ "other" : {
356
+ "nodetype" : "namednumber",
357
+ "number" : "1"
358
+ },
359
+ "timestamps" : {
360
+ "nodetype" : "namednumber",
361
+ "number" : "2"
362
+ },
363
+ "nonces" : {
364
+ "nodetype" : "namednumber",
365
+ "number" : "3"
366
+ },
367
+ },
368
+ },
369
+ "access" : "readwrite",
370
+ "description" :
371
+ """The replay-protection method supported for this SPI
372
+ within this Mobility Security Association.""",
373
+ }, # column
374
+ "mipSecTotalViolations" : {
375
+ "nodetype" : "scalar",
376
+ "moduleName" : "MIP-MIB",
377
+ "oid" : "1.3.6.1.2.1.44.1.2.2",
378
+ "status" : "current",
379
+ "syntax" : {
380
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
381
+ },
382
+ "access" : "readonly",
383
+ "description" :
384
+ """Total number of security violations in the entity""",
385
+ }, # scalar
386
+ "mipSecViolationTable" : {
387
+ "nodetype" : "table",
388
+ "moduleName" : "MIP-MIB",
389
+ "oid" : "1.3.6.1.2.1.44.1.2.3",
390
+ "status" : "current",
391
+ "description" :
392
+ """A table containing information about security
393
+ violations.""",
394
+ }, # table
395
+ "mipSecViolationEntry" : {
396
+ "nodetype" : "row",
397
+ "moduleName" : "MIP-MIB",
398
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1",
399
+ "status" : "current",
400
+ "linkage" : [
401
+ "mipSecViolatorAddress",
402
+ ],
403
+ "description" :
404
+ """Information about one particular security violation.""",
405
+ }, # row
406
+ "mipSecViolatorAddress" : {
407
+ "nodetype" : "column",
408
+ "moduleName" : "MIP-MIB",
409
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.1",
410
+ "status" : "current",
411
+ "syntax" : {
412
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
413
+ },
414
+ "access" : "notifyonly",
415
+ "description" :
416
+ """Violator's IP address. The violator is not necessary
417
+ in the mipSecAssocTable.""",
418
+ }, # column
419
+ "mipSecViolationCounter" : {
420
+ "nodetype" : "column",
421
+ "moduleName" : "MIP-MIB",
422
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.2",
423
+ "status" : "current",
424
+ "syntax" : {
425
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
426
+ },
427
+ "access" : "readonly",
428
+ "description" :
429
+ """Total number of security violations for this peer.""",
430
+ }, # column
431
+ "mipSecRecentViolationSPI" : {
432
+ "nodetype" : "column",
433
+ "moduleName" : "MIP-MIB",
434
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.3",
435
+ "status" : "current",
436
+ "syntax" : {
437
+ "type" : { "module" :"", "name" : "Integer32"},
438
+ },
439
+ "access" : "readonly",
440
+ "description" :
441
+ """SPI of the most recent security violation for this
442
+ peer. If the security violation is due to an
443
+ identification mismatch, then this is the SPI from the
444
+ Mobile-Home Authentication Extension. If the security
445
+ violation is due to an invalid authenticator, then
446
+ this is the SPI from the offending authentication
447
+ extension. In all other cases, it should be set to
448
+ zero.""",
449
+ }, # column
450
+ "mipSecRecentViolationTime" : {
451
+ "nodetype" : "column",
452
+ "moduleName" : "MIP-MIB",
453
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.4",
454
+ "status" : "current",
455
+ "syntax" : {
456
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
457
+ },
458
+ "access" : "readonly",
459
+ "description" :
460
+ """Time of the most recent security violation for this
461
+ peer.""",
462
+ }, # column
463
+ "mipSecRecentViolationIDLow" : {
464
+ "nodetype" : "column",
465
+ "moduleName" : "MIP-MIB",
466
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.5",
467
+ "status" : "current",
468
+ "syntax" : {
469
+ "type" : { "module" :"", "name" : "Integer32"},
470
+ },
471
+ "access" : "readonly",
472
+ "description" :
473
+ """Low-order 32 bits of identification used in request or
474
+ reply of the most recent security violation for this
475
+ peer.""",
476
+ }, # column
477
+ "mipSecRecentViolationIDHigh" : {
478
+ "nodetype" : "column",
479
+ "moduleName" : "MIP-MIB",
480
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.6",
481
+ "status" : "current",
482
+ "syntax" : {
483
+ "type" : { "module" :"", "name" : "Integer32"},
484
+ },
485
+ "access" : "readonly",
486
+ "description" :
487
+ """High-order 32 bits of identification used in request
488
+ or reply of the most recent security violation for
489
+ this peer.""",
490
+ }, # column
491
+ "mipSecRecentViolationReason" : {
492
+ "nodetype" : "column",
493
+ "moduleName" : "MIP-MIB",
494
+ "oid" : "1.3.6.1.2.1.44.1.2.3.1.7",
495
+ "status" : "current",
496
+ "syntax" : {
497
+ "type" : {
498
+ "basetype" : "Enumeration",
499
+ "noMobilitySecurityAssociation" : {
500
+ "nodetype" : "namednumber",
501
+ "number" : "1"
502
+ },
503
+ "badAuthenticator" : {
504
+ "nodetype" : "namednumber",
505
+ "number" : "2"
506
+ },
507
+ "badIdentifier" : {
508
+ "nodetype" : "namednumber",
509
+ "number" : "3"
510
+ },
511
+ "badSPI" : {
512
+ "nodetype" : "namednumber",
513
+ "number" : "4"
514
+ },
515
+ "missingSecurityExtension" : {
516
+ "nodetype" : "namednumber",
517
+ "number" : "5"
518
+ },
519
+ "other" : {
520
+ "nodetype" : "namednumber",
521
+ "number" : "6"
522
+ },
523
+ },
524
+ },
525
+ "access" : "readonly",
526
+ "description" :
527
+ """Reason for the most recent security violation for
528
+ this peer.""",
529
+ }, # column
530
+ "mipMN" : {
531
+ "nodetype" : "node",
532
+ "moduleName" : "MIP-MIB",
533
+ "oid" : "1.3.6.1.2.1.44.1.3",
534
+ }, # node
535
+ "mnSystem" : {
536
+ "nodetype" : "node",
537
+ "moduleName" : "MIP-MIB",
538
+ "oid" : "1.3.6.1.2.1.44.1.3.1",
539
+ }, # node
540
+ "mnState" : {
541
+ "nodetype" : "scalar",
542
+ "moduleName" : "MIP-MIB",
543
+ "oid" : "1.3.6.1.2.1.44.1.3.1.1",
544
+ "status" : "current",
545
+ "syntax" : {
546
+ "type" : {
547
+ "basetype" : "Enumeration",
548
+ "home" : {
549
+ "nodetype" : "namednumber",
550
+ "number" : "1"
551
+ },
552
+ "registered" : {
553
+ "nodetype" : "namednumber",
554
+ "number" : "2"
555
+ },
556
+ "pending" : {
557
+ "nodetype" : "namednumber",
558
+ "number" : "3"
559
+ },
560
+ "isolated" : {
561
+ "nodetype" : "namednumber",
562
+ "number" : "4"
563
+ },
564
+ "unknown" : {
565
+ "nodetype" : "namednumber",
566
+ "number" : "5"
567
+ },
568
+ },
569
+ },
570
+ "access" : "readonly",
571
+ "description" :
572
+ """Indicates mobile node's state of Mobile IP:
573
+ home,
574
+ -- MN is connected to home network.
575
+ registered,
576
+ -- MN has registered on foreign network
577
+ pending,
578
+ -- MN has sent registration request and is
579
+ waiting for the reply
580
+ isolated,
581
+ -- MN is isolated from network
582
+ unknown
583
+ -- MN can not determine its state.""",
584
+ }, # scalar
585
+ "mnHomeAddress" : {
586
+ "nodetype" : "scalar",
587
+ "moduleName" : "MIP-MIB",
588
+ "oid" : "1.3.6.1.2.1.44.1.3.1.2",
589
+ "status" : "current",
590
+ "syntax" : {
591
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
592
+ },
593
+ "access" : "readonly",
594
+ "description" :
595
+ """An IP address that is assigned for an extended period
596
+ of time to the mobile node. It remains unchanged
597
+ regardless of the mobile node's current point of
598
+ attachment.""",
599
+ }, # scalar
600
+ "mnHATable" : {
601
+ "nodetype" : "table",
602
+ "moduleName" : "MIP-MIB",
603
+ "oid" : "1.3.6.1.2.1.44.1.3.1.3",
604
+ "status" : "current",
605
+ "description" :
606
+ """A table containing all of the mobile node's potential
607
+ home agents.""",
608
+ }, # table
609
+ "mnHAEntry" : {
610
+ "nodetype" : "row",
611
+ "moduleName" : "MIP-MIB",
612
+ "oid" : "1.3.6.1.2.1.44.1.3.1.3.1",
613
+ "create" : "true",
614
+ "status" : "current",
615
+ "linkage" : [
616
+ "mnHAAddress",
617
+ ],
618
+ "description" :
619
+ """Information for a particular Home Agent.""",
620
+ }, # row
621
+ "mnHAAddress" : {
622
+ "nodetype" : "column",
623
+ "moduleName" : "MIP-MIB",
624
+ "oid" : "1.3.6.1.2.1.44.1.3.1.3.1.1",
625
+ "status" : "current",
626
+ "syntax" : {
627
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
628
+ },
629
+ "access" : "noaccess",
630
+ "description" :
631
+ """IP address of mobile node's Home Agent.""",
632
+ }, # column
633
+ "mnCurrentHA" : {
634
+ "nodetype" : "column",
635
+ "moduleName" : "MIP-MIB",
636
+ "oid" : "1.3.6.1.2.1.44.1.3.1.3.1.2",
637
+ "status" : "current",
638
+ "syntax" : {
639
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
640
+ },
641
+ "access" : "readonly",
642
+ "description" :
643
+ """Whether this home agent is the current home agent for
644
+ the mobile node. If it is true, the mobile node is
645
+ registered with that home agent.""",
646
+ }, # column
647
+ "mnHAStatus" : {
648
+ "nodetype" : "column",
649
+ "moduleName" : "MIP-MIB",
650
+ "oid" : "1.3.6.1.2.1.44.1.3.1.3.1.3",
651
+ "status" : "current",
652
+ "syntax" : {
653
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
654
+ },
655
+ "access" : "readwrite",
656
+ "description" :
657
+ """The row status for this home agent entry. If the
658
+ status is set to 'createAndGo' or 'active', then the
659
+ mobile node can use mnHAAddress as a valid candidate
660
+ for a home agent. If the status is set to 'destroy',
661
+ then the mobile node should delete this row, and
662
+ deregister from that home agent.""",
663
+ }, # column
664
+ "mnDiscovery" : {
665
+ "nodetype" : "node",
666
+ "moduleName" : "MIP-MIB",
667
+ "oid" : "1.3.6.1.2.1.44.1.3.2",
668
+ }, # node
669
+ "mnFATable" : {
670
+ "nodetype" : "table",
671
+ "moduleName" : "MIP-MIB",
672
+ "oid" : "1.3.6.1.2.1.44.1.3.2.1",
673
+ "status" : "current",
674
+ "description" :
675
+ """A table containing all foreign agents that the mobile
676
+ node knows about and their corresponding COA (care-of
677
+ address). This COA is an address of a foreign agent
678
+ with which the mobile node is registered. The table is
679
+ updated when advertisements are received by the mobile
680
+ node. If an advertisement expires, its entry(s) should
681
+ be deleted from the table. One foreign agent can
682
+ provide more than one COA in its advertisements.""",
683
+ }, # table
684
+ "mnFAEntry" : {
685
+ "nodetype" : "row",
686
+ "moduleName" : "MIP-MIB",
687
+ "oid" : "1.3.6.1.2.1.44.1.3.2.1.1",
688
+ "status" : "current",
689
+ "linkage" : [
690
+ "mnFAAddress",
691
+ "mnCOA",
692
+ ],
693
+ "description" :
694
+ """One pair of foreign agent IP address and COA for that
695
+ foreign agent.""",
696
+ }, # row
697
+ "mnFAAddress" : {
698
+ "nodetype" : "column",
699
+ "moduleName" : "MIP-MIB",
700
+ "oid" : "1.3.6.1.2.1.44.1.3.2.1.1.1",
701
+ "status" : "current",
702
+ "syntax" : {
703
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
704
+ },
705
+ "access" : "readonly",
706
+ "description" :
707
+ """Foreign agent's IP address.""",
708
+ }, # column
709
+ "mnCOA" : {
710
+ "nodetype" : "column",
711
+ "moduleName" : "MIP-MIB",
712
+ "oid" : "1.3.6.1.2.1.44.1.3.2.1.1.2",
713
+ "status" : "current",
714
+ "syntax" : {
715
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
716
+ },
717
+ "access" : "readonly",
718
+ "description" :
719
+ """A care-of address being offered by this foreign agent
720
+ or a co-located care-of address which the mobile node
721
+ has associated with one of its own network
722
+ interfaces.""",
723
+ }, # column
724
+ "mnRecentAdvReceived" : {
725
+ "nodetype" : "node",
726
+ "moduleName" : "MIP-MIB",
727
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2",
728
+ }, # node
729
+ "mnAdvSourceAddress" : {
730
+ "nodetype" : "scalar",
731
+ "moduleName" : "MIP-MIB",
732
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2.1",
733
+ "status" : "current",
734
+ "syntax" : {
735
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
736
+ },
737
+ "access" : "readonly",
738
+ "description" :
739
+ """The source IP address of the most recently received
740
+ Agent Advertisement. This address could be the address
741
+ of a home agent or a foreign agent.""",
742
+ }, # scalar
743
+ "mnAdvSequence" : {
744
+ "nodetype" : "scalar",
745
+ "moduleName" : "MIP-MIB",
746
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2.2",
747
+ "status" : "current",
748
+ "syntax" : {
749
+ "type" : {
750
+ "basetype" : "Integer32",
751
+ "ranges" : [
752
+ {
753
+ "min" : "0",
754
+ "max" : "65535"
755
+ },
756
+ ],
757
+ "range" : {
758
+ "min" : "0",
759
+ "max" : "65535"
760
+ },
761
+ },
762
+ },
763
+ "access" : "readonly",
764
+ "description" :
765
+ """The sequence number of the most recently received
766
+ advertisement. The sequence number ranges from 0 to
767
+ 0xffff. After the sequence number attains the value
768
+ 0xffff, it will roll over to 256.""",
769
+ }, # scalar
770
+ "mnAdvFlags" : {
771
+ "nodetype" : "scalar",
772
+ "moduleName" : "MIP-MIB",
773
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2.3",
774
+ "status" : "current",
775
+ "syntax" : {
776
+ "type" : {
777
+ "basetype" : "Bits",
778
+ "vjCompression" : {
779
+ "nodetype" : "namednumber",
780
+ "number" : "0"
781
+ },
782
+ "gre" : {
783
+ "nodetype" : "namednumber",
784
+ "number" : "1"
785
+ },
786
+ "minEnc" : {
787
+ "nodetype" : "namednumber",
788
+ "number" : "2"
789
+ },
790
+ "foreignAgent" : {
791
+ "nodetype" : "namednumber",
792
+ "number" : "3"
793
+ },
794
+ "homeAgent" : {
795
+ "nodetype" : "namednumber",
796
+ "number" : "4"
797
+ },
798
+ "busy" : {
799
+ "nodetype" : "namednumber",
800
+ "number" : "5"
801
+ },
802
+ "regRequired" : {
803
+ "nodetype" : "namednumber",
804
+ "number" : "6"
805
+ },
806
+ },
807
+ },
808
+ "access" : "readonly",
809
+ "description" :
810
+ """The flags are contained in the 7th byte in the
811
+ extension of the most recently received mobility agent
812
+ advertisement:
813
+ vjCompression
814
+ -- Agent supports Van Jacobson compression
815
+ gre
816
+ -- Agent offers Generice Routing Encapsulation
817
+ minEnc,
818
+ -- Agent offers Minimal Encapsulation
819
+ foreignAgent,
820
+ -- Agent is a Foreign Agent
821
+ homeAgent,
822
+ -- Agent is a Home Agent
823
+ busy,
824
+ -- Foreign Agent is busy
825
+ regRequired,
826
+ -- FA registration is required.""",
827
+ }, # scalar
828
+ "mnAdvMaxRegLifetime" : {
829
+ "nodetype" : "scalar",
830
+ "moduleName" : "MIP-MIB",
831
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2.4",
832
+ "status" : "current",
833
+ "syntax" : {
834
+ "type" : {
835
+ "basetype" : "Integer32",
836
+ "ranges" : [
837
+ {
838
+ "min" : "0",
839
+ "max" : "65535"
840
+ },
841
+ ],
842
+ "range" : {
843
+ "min" : "0",
844
+ "max" : "65535"
845
+ },
846
+ },
847
+ },
848
+ "access" : "readonly",
849
+ "units" : "seconds",
850
+ "description" :
851
+ """The longest lifetime in seconds that the agent is
852
+ willing to accept in any registration request.""",
853
+ }, # scalar
854
+ "mnAdvMaxAdvLifetime" : {
855
+ "nodetype" : "scalar",
856
+ "moduleName" : "MIP-MIB",
857
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2.5",
858
+ "status" : "current",
859
+ "syntax" : {
860
+ "type" : {
861
+ "basetype" : "Integer32",
862
+ "ranges" : [
863
+ {
864
+ "min" : "0",
865
+ "max" : "65535"
866
+ },
867
+ ],
868
+ "range" : {
869
+ "min" : "0",
870
+ "max" : "65535"
871
+ },
872
+ },
873
+ },
874
+ "access" : "readonly",
875
+ "units" : "seconds",
876
+ "description" :
877
+ """The maximum length of time that the Advertisement is
878
+ considered valid in the absence of further
879
+ Advertisements.""",
880
+ "reference" :
881
+ """AdvertisementLifeTime in RFC1256.""",
882
+ }, # scalar
883
+ "mnAdvTimeReceived" : {
884
+ "nodetype" : "scalar",
885
+ "moduleName" : "MIP-MIB",
886
+ "oid" : "1.3.6.1.2.1.44.1.3.2.2.6",
887
+ "status" : "current",
888
+ "syntax" : {
889
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
890
+ },
891
+ "access" : "readonly",
892
+ "description" :
893
+ """The time at which the most recently received
894
+ advertisement was received.""",
895
+ }, # scalar
896
+ "mnSolicitationsSent" : {
897
+ "nodetype" : "scalar",
898
+ "moduleName" : "MIP-MIB",
899
+ "oid" : "1.3.6.1.2.1.44.1.3.2.3",
900
+ "status" : "current",
901
+ "syntax" : {
902
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
903
+ },
904
+ "access" : "readonly",
905
+ "description" :
906
+ """Total number of Solicitation sent by the mobile
907
+ node.""",
908
+ }, # scalar
909
+ "mnAdvertisementsReceived" : {
910
+ "nodetype" : "scalar",
911
+ "moduleName" : "MIP-MIB",
912
+ "oid" : "1.3.6.1.2.1.44.1.3.2.4",
913
+ "status" : "current",
914
+ "syntax" : {
915
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
916
+ },
917
+ "access" : "readonly",
918
+ "description" :
919
+ """Total number of advertisements received by the mobile
920
+ node.""",
921
+ }, # scalar
922
+ "mnAdvsDroppedInvalidExtension" : {
923
+ "nodetype" : "scalar",
924
+ "moduleName" : "MIP-MIB",
925
+ "oid" : "1.3.6.1.2.1.44.1.3.2.5",
926
+ "status" : "current",
927
+ "syntax" : {
928
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
929
+ },
930
+ "access" : "readonly",
931
+ "description" :
932
+ """Total number of advertisements dropped by the mobile
933
+ node due to both poorly formed extensions and
934
+ unrecognized extensions with extension number in the
935
+ range 0-127.""",
936
+ }, # scalar
937
+ "mnAdvsIgnoredUnknownExtension" : {
938
+ "nodetype" : "scalar",
939
+ "moduleName" : "MIP-MIB",
940
+ "oid" : "1.3.6.1.2.1.44.1.3.2.6",
941
+ "status" : "current",
942
+ "syntax" : {
943
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
944
+ },
945
+ "access" : "readonly",
946
+ "description" :
947
+ """Total number of unrecognized extensions in the range
948
+ 128-255 that were ignored by the mobile node.""",
949
+ }, # scalar
950
+ "mnMoveFromHAToFA" : {
951
+ "nodetype" : "scalar",
952
+ "moduleName" : "MIP-MIB",
953
+ "oid" : "1.3.6.1.2.1.44.1.3.2.7",
954
+ "status" : "current",
955
+ "syntax" : {
956
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
957
+ },
958
+ "access" : "readonly",
959
+ "description" :
960
+ """Number of times that the mobile node has decided to
961
+ move from its home network to a foreign network.""",
962
+ }, # scalar
963
+ "mnMoveFromFAToFA" : {
964
+ "nodetype" : "scalar",
965
+ "moduleName" : "MIP-MIB",
966
+ "oid" : "1.3.6.1.2.1.44.1.3.2.8",
967
+ "status" : "current",
968
+ "syntax" : {
969
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
970
+ },
971
+ "access" : "readonly",
972
+ "description" :
973
+ """Number of times that the mobile node has decided to
974
+ move from one foreign network to another foreign
975
+ network.""",
976
+ }, # scalar
977
+ "mnMoveFromFAToHA" : {
978
+ "nodetype" : "scalar",
979
+ "moduleName" : "MIP-MIB",
980
+ "oid" : "1.3.6.1.2.1.44.1.3.2.9",
981
+ "status" : "current",
982
+ "syntax" : {
983
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
984
+ },
985
+ "access" : "readonly",
986
+ "description" :
987
+ """Number of times that the mobile node has decided to
988
+ move from a foreign network to its home network.""",
989
+ }, # scalar
990
+ "mnGratuitousARPsSend" : {
991
+ "nodetype" : "scalar",
992
+ "moduleName" : "MIP-MIB",
993
+ "oid" : "1.3.6.1.2.1.44.1.3.2.10",
994
+ "status" : "current",
995
+ "syntax" : {
996
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
997
+ },
998
+ "access" : "readonly",
999
+ "description" :
1000
+ """Total number of Gratuitous ARPs sent by mobile node
1001
+ in order to clear out any stale ARP entries in the ARP
1002
+ caches of nodes on the home network.""",
1003
+ }, # scalar
1004
+ "mnAgentRebootsDectected" : {
1005
+ "nodetype" : "scalar",
1006
+ "moduleName" : "MIP-MIB",
1007
+ "oid" : "1.3.6.1.2.1.44.1.3.2.11",
1008
+ "status" : "current",
1009
+ "syntax" : {
1010
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1011
+ },
1012
+ "access" : "readonly",
1013
+ "description" :
1014
+ """Total number of agent reboots detected by the mobile
1015
+ node through sequence number of the advertisement.""",
1016
+ }, # scalar
1017
+ "mnRegistration" : {
1018
+ "nodetype" : "node",
1019
+ "moduleName" : "MIP-MIB",
1020
+ "oid" : "1.3.6.1.2.1.44.1.3.3",
1021
+ }, # node
1022
+ "mnRegistrationTable" : {
1023
+ "nodetype" : "table",
1024
+ "moduleName" : "MIP-MIB",
1025
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1",
1026
+ "status" : "current",
1027
+ "description" :
1028
+ """A table containing information about the mobile
1029
+ node's attempted registration(s). The mobile node
1030
+ updates this table based upon Registration Requests
1031
+ sent and Registration Replies received in response to
1032
+ these requests. Certain variables within this table
1033
+ are also updated if when Registration Requests are
1034
+ retransmitted.""",
1035
+ }, # table
1036
+ "mnRegistrationEntry" : {
1037
+ "nodetype" : "row",
1038
+ "moduleName" : "MIP-MIB",
1039
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1",
1040
+ "status" : "current",
1041
+ "linkage" : [
1042
+ "mnRegAgentAddress",
1043
+ "mnRegCOA",
1044
+ ],
1045
+ "description" :
1046
+ """Information about one registration attempt.""",
1047
+ }, # row
1048
+ "mnRegAgentAddress" : {
1049
+ "nodetype" : "column",
1050
+ "moduleName" : "MIP-MIB",
1051
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.1",
1052
+ "status" : "current",
1053
+ "syntax" : {
1054
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1055
+ },
1056
+ "access" : "readonly",
1057
+ "description" :
1058
+ """IP address of the agent as used in the destination
1059
+ IP address of the Registration Request. The agent
1060
+ may be a home agent or a foreign agent.""",
1061
+ }, # column
1062
+ "mnRegCOA" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "MIP-MIB",
1065
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.2",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1069
+ },
1070
+ "access" : "readonly",
1071
+ "description" :
1072
+ """Care-of address for the registration.""",
1073
+ }, # column
1074
+ "mnRegFlags" : {
1075
+ "nodetype" : "column",
1076
+ "moduleName" : "MIP-MIB",
1077
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.3",
1078
+ "status" : "current",
1079
+ "syntax" : {
1080
+ "type" : { "module" :"MIP-MIB", "name" : "RegistrationFlags"},
1081
+ },
1082
+ "access" : "readonly",
1083
+ "description" :
1084
+ """Registration flags sent by the mobile node. It is the
1085
+ second byte in the Mobile IP Registratation Request
1086
+ message.""",
1087
+ }, # column
1088
+ "mnRegIDLow" : {
1089
+ "nodetype" : "column",
1090
+ "moduleName" : "MIP-MIB",
1091
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.4",
1092
+ "status" : "current",
1093
+ "syntax" : {
1094
+ "type" : { "module" :"", "name" : "Integer32"},
1095
+ },
1096
+ "access" : "readonly",
1097
+ "description" :
1098
+ """Low-order 32 bits of the Identification used in that
1099
+ registration by the mobile node.""",
1100
+ }, # column
1101
+ "mnRegIDHigh" : {
1102
+ "nodetype" : "column",
1103
+ "moduleName" : "MIP-MIB",
1104
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.5",
1105
+ "status" : "current",
1106
+ "syntax" : {
1107
+ "type" : { "module" :"", "name" : "Integer32"},
1108
+ },
1109
+ "access" : "readonly",
1110
+ "description" :
1111
+ """High-order 32 bits of the Identification used in that
1112
+ registration by the mobile node.""",
1113
+ }, # column
1114
+ "mnRegTimeRequested" : {
1115
+ "nodetype" : "column",
1116
+ "moduleName" : "MIP-MIB",
1117
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.6",
1118
+ "status" : "current",
1119
+ "syntax" : {
1120
+ "type" : { "module" :"", "name" : "Integer32"},
1121
+ },
1122
+ "access" : "readonly",
1123
+ "units" : "seconds",
1124
+ "description" :
1125
+ """If the registration is pending, then this is the
1126
+ lifetime requested by the mobile node (in seconds).
1127
+ If the registration has been accepted, then this is
1128
+ the lifetime actually granted by the home agent in the
1129
+ reply.""",
1130
+ }, # column
1131
+ "mnRegTimeRemaining" : {
1132
+ "nodetype" : "column",
1133
+ "moduleName" : "MIP-MIB",
1134
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.7",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1138
+ },
1139
+ "access" : "readonly",
1140
+ "units" : "seconds",
1141
+ "description" :
1142
+ """The number of seconds remaining until this
1143
+ registration expires. It has the same initial value
1144
+ as mnRegTimeRequested and is only valid if
1145
+ mnRegIsAccepted is TRUE.""",
1146
+ }, # column
1147
+ "mnRegTimeSent" : {
1148
+ "nodetype" : "column",
1149
+ "moduleName" : "MIP-MIB",
1150
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.8",
1151
+ "status" : "current",
1152
+ "syntax" : {
1153
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
1154
+ },
1155
+ "access" : "readonly",
1156
+ "description" :
1157
+ """The time when the last (re-)transmission occured.""",
1158
+ }, # column
1159
+ "mnRegIsAccepted" : {
1160
+ "nodetype" : "column",
1161
+ "moduleName" : "MIP-MIB",
1162
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.9",
1163
+ "status" : "current",
1164
+ "syntax" : {
1165
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1166
+ },
1167
+ "access" : "readonly",
1168
+ "description" :
1169
+ """true(1) if the mobile node has received a
1170
+ Registration Reply indicating that service has been
1171
+ accepted; false(2) otherwise. false(2) implies that
1172
+ the registration is still pending.""",
1173
+ }, # column
1174
+ "mnCOAIsLocal" : {
1175
+ "nodetype" : "column",
1176
+ "moduleName" : "MIP-MIB",
1177
+ "oid" : "1.3.6.1.2.1.44.1.3.3.1.1.10",
1178
+ "status" : "current",
1179
+ "syntax" : {
1180
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1181
+ },
1182
+ "access" : "readonly",
1183
+ "description" :
1184
+ """Whether the COA is local to (dynamically acquired by)
1185
+ the mobile node or not. If it is false(2), the COA is
1186
+ an address of the foreign agent.""",
1187
+ }, # column
1188
+ "mnRegRequestsSent" : {
1189
+ "nodetype" : "scalar",
1190
+ "moduleName" : "MIP-MIB",
1191
+ "oid" : "1.3.6.1.2.1.44.1.3.3.2",
1192
+ "status" : "current",
1193
+ "syntax" : {
1194
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1195
+ },
1196
+ "access" : "readonly",
1197
+ "description" :
1198
+ """Total number of registration requests sent by the
1199
+ mobile node. This does not include deregistrations
1200
+ (those with Lifetime equal to zero).""",
1201
+ }, # scalar
1202
+ "mnDeRegRequestsSent" : {
1203
+ "nodetype" : "scalar",
1204
+ "moduleName" : "MIP-MIB",
1205
+ "oid" : "1.3.6.1.2.1.44.1.3.3.3",
1206
+ "status" : "current",
1207
+ "syntax" : {
1208
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1209
+ },
1210
+ "access" : "readonly",
1211
+ "description" :
1212
+ """Total number of deregistration requests sent by the
1213
+ mobile node (those with Lifetime equal to zero).""",
1214
+ }, # scalar
1215
+ "mnRegRepliesRecieved" : {
1216
+ "nodetype" : "scalar",
1217
+ "moduleName" : "MIP-MIB",
1218
+ "oid" : "1.3.6.1.2.1.44.1.3.3.4",
1219
+ "status" : "current",
1220
+ "syntax" : {
1221
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1222
+ },
1223
+ "access" : "readonly",
1224
+ "description" :
1225
+ """Total number of registration replies received by the
1226
+ mobile node in which the Lifetime is greater than
1227
+ zero.""",
1228
+ }, # scalar
1229
+ "mnDeRegRepliesRecieved" : {
1230
+ "nodetype" : "scalar",
1231
+ "moduleName" : "MIP-MIB",
1232
+ "oid" : "1.3.6.1.2.1.44.1.3.3.5",
1233
+ "status" : "current",
1234
+ "syntax" : {
1235
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1236
+ },
1237
+ "access" : "readonly",
1238
+ "description" :
1239
+ """Total number of (de)registration replies received by
1240
+ the mobile node in which the Lifetime is equal to
1241
+ zero.""",
1242
+ }, # scalar
1243
+ "mnRepliesInvalidHomeAddress" : {
1244
+ "nodetype" : "scalar",
1245
+ "moduleName" : "MIP-MIB",
1246
+ "oid" : "1.3.6.1.2.1.44.1.3.3.6",
1247
+ "status" : "current",
1248
+ "syntax" : {
1249
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1250
+ },
1251
+ "access" : "readonly",
1252
+ "description" :
1253
+ """Total number of replies with invalid home address for
1254
+ the mobile node.""",
1255
+ }, # scalar
1256
+ "mnRepliesUnknownHA" : {
1257
+ "nodetype" : "scalar",
1258
+ "moduleName" : "MIP-MIB",
1259
+ "oid" : "1.3.6.1.2.1.44.1.3.3.7",
1260
+ "status" : "current",
1261
+ "syntax" : {
1262
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1263
+ },
1264
+ "access" : "readonly",
1265
+ "description" :
1266
+ """Total number of replies with unknown home agents
1267
+ (not in home agent table).""",
1268
+ }, # scalar
1269
+ "mnRepliesUnknownFA" : {
1270
+ "nodetype" : "scalar",
1271
+ "moduleName" : "MIP-MIB",
1272
+ "oid" : "1.3.6.1.2.1.44.1.3.3.8",
1273
+ "status" : "current",
1274
+ "syntax" : {
1275
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1276
+ },
1277
+ "access" : "readonly",
1278
+ "description" :
1279
+ """Total number of replies with unknown foreign agents if
1280
+ replies relayed through foreign agent.""",
1281
+ }, # scalar
1282
+ "mnRepliesInvalidID" : {
1283
+ "nodetype" : "scalar",
1284
+ "moduleName" : "MIP-MIB",
1285
+ "oid" : "1.3.6.1.2.1.44.1.3.3.9",
1286
+ "status" : "current",
1287
+ "syntax" : {
1288
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1289
+ },
1290
+ "access" : "readonly",
1291
+ "description" :
1292
+ """Total number of replies with invalid Identification
1293
+ fields.""",
1294
+ }, # scalar
1295
+ "mnRepliesDroppedInvalidExtension" : {
1296
+ "nodetype" : "scalar",
1297
+ "moduleName" : "MIP-MIB",
1298
+ "oid" : "1.3.6.1.2.1.44.1.3.3.10",
1299
+ "status" : "current",
1300
+ "syntax" : {
1301
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1302
+ },
1303
+ "access" : "readonly",
1304
+ "description" :
1305
+ """Total number of Registration Replies dropped by the
1306
+ mobile node due to both poorly formed extensions and
1307
+ unrecognized extensions with extension number in the
1308
+ range 0-127.""",
1309
+ }, # scalar
1310
+ "mnRepliesIgnoredUnknownExtension" : {
1311
+ "nodetype" : "scalar",
1312
+ "moduleName" : "MIP-MIB",
1313
+ "oid" : "1.3.6.1.2.1.44.1.3.3.11",
1314
+ "status" : "current",
1315
+ "syntax" : {
1316
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1317
+ },
1318
+ "access" : "readonly",
1319
+ "description" :
1320
+ """Total number of Registration Replies that contained
1321
+ one or more unrecognized extensions in the range
1322
+ 128-255 that were ignored by the mobile node.""",
1323
+ }, # scalar
1324
+ "mnRepliesHAAuthenticationFailure" : {
1325
+ "nodetype" : "scalar",
1326
+ "moduleName" : "MIP-MIB",
1327
+ "oid" : "1.3.6.1.2.1.44.1.3.3.12",
1328
+ "status" : "current",
1329
+ "syntax" : {
1330
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1331
+ },
1332
+ "access" : "readonly",
1333
+ "description" :
1334
+ """Total number of replies without a valid Home Agent to
1335
+ Mobile Node authenticator.""",
1336
+ }, # scalar
1337
+ "mnRepliesFAAuthenticationFailure" : {
1338
+ "nodetype" : "scalar",
1339
+ "moduleName" : "MIP-MIB",
1340
+ "oid" : "1.3.6.1.2.1.44.1.3.3.13",
1341
+ "status" : "current",
1342
+ "syntax" : {
1343
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1344
+ },
1345
+ "access" : "readonly",
1346
+ "description" :
1347
+ """Total number of replies without a valid Foreign Agent
1348
+ to Mobile Node authenticator.""",
1349
+ }, # scalar
1350
+ "mnRegRequestsAccepted" : {
1351
+ "nodetype" : "scalar",
1352
+ "moduleName" : "MIP-MIB",
1353
+ "oid" : "1.3.6.1.2.1.44.1.3.3.14",
1354
+ "status" : "current",
1355
+ "syntax" : {
1356
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1357
+ },
1358
+ "access" : "readonly",
1359
+ "description" :
1360
+ """Total number of registration requests accepted by the
1361
+ mobile node's home agent (Code 0 and Code 1).""",
1362
+ }, # scalar
1363
+ "mnRegRequestsDeniedByHA" : {
1364
+ "nodetype" : "scalar",
1365
+ "moduleName" : "MIP-MIB",
1366
+ "oid" : "1.3.6.1.2.1.44.1.3.3.15",
1367
+ "status" : "current",
1368
+ "syntax" : {
1369
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1370
+ },
1371
+ "access" : "readonly",
1372
+ "description" :
1373
+ """Total number of registration requests denied by
1374
+ mobile node's home agent (Sum of Code 128 through
1375
+ Code 191).""",
1376
+ }, # scalar
1377
+ "mnRegRequestsDeniedByFA" : {
1378
+ "nodetype" : "scalar",
1379
+ "moduleName" : "MIP-MIB",
1380
+ "oid" : "1.3.6.1.2.1.44.1.3.3.16",
1381
+ "status" : "current",
1382
+ "syntax" : {
1383
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1384
+ },
1385
+ "access" : "readonly",
1386
+ "description" :
1387
+ """Total number of registration requests denied by the
1388
+ foreign agent (Sum of Codes 64 through Code 127).""",
1389
+ }, # scalar
1390
+ "mnRegRequestsDeniedByHADueToID" : {
1391
+ "nodetype" : "scalar",
1392
+ "moduleName" : "MIP-MIB",
1393
+ "oid" : "1.3.6.1.2.1.44.1.3.3.17",
1394
+ "status" : "current",
1395
+ "syntax" : {
1396
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1397
+ },
1398
+ "access" : "readonly",
1399
+ "description" :
1400
+ """Total number of Registration Request denied by home
1401
+ agent due to identification mismatch.""",
1402
+ }, # scalar
1403
+ "mnRegRequestsWithDirectedBroadcast" : {
1404
+ "nodetype" : "scalar",
1405
+ "moduleName" : "MIP-MIB",
1406
+ "oid" : "1.3.6.1.2.1.44.1.3.3.18",
1407
+ "status" : "current",
1408
+ "syntax" : {
1409
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1410
+ },
1411
+ "access" : "readonly",
1412
+ "description" :
1413
+ """Total number of Registration Requests sent by mobile
1414
+ node with a directed broadcast address in the home
1415
+ agent field.""",
1416
+ }, # scalar
1417
+ "mipMA" : {
1418
+ "nodetype" : "node",
1419
+ "moduleName" : "MIP-MIB",
1420
+ "oid" : "1.3.6.1.2.1.44.1.4",
1421
+ }, # node
1422
+ "maAdvertisement" : {
1423
+ "nodetype" : "node",
1424
+ "moduleName" : "MIP-MIB",
1425
+ "oid" : "1.3.6.1.2.1.44.1.4.2",
1426
+ }, # node
1427
+ "maAdvConfigTable" : {
1428
+ "nodetype" : "table",
1429
+ "moduleName" : "MIP-MIB",
1430
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1",
1431
+ "status" : "current",
1432
+ "description" :
1433
+ """A table containing configurable advertisement
1434
+ parameters for all advertisement interfaces in
1435
+ the mobility agent.""",
1436
+ }, # table
1437
+ "maAdvConfigEntry" : {
1438
+ "nodetype" : "row",
1439
+ "moduleName" : "MIP-MIB",
1440
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1",
1441
+ "create" : "true",
1442
+ "status" : "current",
1443
+ "linkage" : [
1444
+ "maInterfaceAddress",
1445
+ ],
1446
+ "description" :
1447
+ """Advertisement parameters for one advertisement
1448
+ interface.""",
1449
+ }, # row
1450
+ "maInterfaceAddress" : {
1451
+ "nodetype" : "column",
1452
+ "moduleName" : "MIP-MIB",
1453
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.1",
1454
+ "status" : "current",
1455
+ "syntax" : {
1456
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1457
+ },
1458
+ "access" : "noaccess",
1459
+ "description" :
1460
+ """IP address for advertisement interface.""",
1461
+ }, # column
1462
+ "maAdvMaxRegLifetime" : {
1463
+ "nodetype" : "column",
1464
+ "moduleName" : "MIP-MIB",
1465
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.2",
1466
+ "status" : "current",
1467
+ "syntax" : {
1468
+ "type" : {
1469
+ "basetype" : "Integer32",
1470
+ "ranges" : [
1471
+ {
1472
+ "min" : "0",
1473
+ "max" : "65535"
1474
+ },
1475
+ ],
1476
+ "range" : {
1477
+ "min" : "0",
1478
+ "max" : "65535"
1479
+ },
1480
+ },
1481
+ },
1482
+ "access" : "readwrite",
1483
+ "units" : "seconds",
1484
+ "description" :
1485
+ """The longest lifetime in seconds that mobility agent
1486
+ is willing to accept in any Registration Request.""",
1487
+ }, # column
1488
+ "maAdvPrefixLengthInclusion" : {
1489
+ "nodetype" : "column",
1490
+ "moduleName" : "MIP-MIB",
1491
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.3",
1492
+ "status" : "current",
1493
+ "syntax" : {
1494
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1495
+ },
1496
+ "access" : "readwrite",
1497
+ "description" :
1498
+ """Whether the advertisement should include the Prefix-
1499
+ Lengths Extension. If it is true, all advertisements
1500
+ sent over this interface should include the
1501
+ Prefix-Lengths Extension.""",
1502
+ }, # column
1503
+ "maAdvAddress" : {
1504
+ "nodetype" : "column",
1505
+ "moduleName" : "MIP-MIB",
1506
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.4",
1507
+ "status" : "current",
1508
+ "syntax" : {
1509
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1510
+ },
1511
+ "access" : "readwrite",
1512
+ "description" :
1513
+ """The IP destination address to be used for
1514
+ advertisements sent from the interface. The only
1515
+ permissible values are the all-systems multicast
1516
+ address (224.0.0.1) or the limited-broadcast address
1517
+ (255.255.255.255).""",
1518
+ "reference" :
1519
+ """AdvertisementAddress in RFC1256.""",
1520
+ }, # column
1521
+ "maAdvMaxInterval" : {
1522
+ "nodetype" : "column",
1523
+ "moduleName" : "MIP-MIB",
1524
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.5",
1525
+ "status" : "current",
1526
+ "syntax" : {
1527
+ "type" : {
1528
+ "basetype" : "Integer32",
1529
+ "ranges" : [
1530
+ {
1531
+ "min" : "4",
1532
+ "max" : "1800"
1533
+ },
1534
+ ],
1535
+ "range" : {
1536
+ "min" : "4",
1537
+ "max" : "1800"
1538
+ },
1539
+ },
1540
+ },
1541
+ "access" : "readwrite",
1542
+ "units" : "seconds",
1543
+ "description" :
1544
+ """The maximum time in seconds between successive
1545
+ transmissions of Agent Advertisements from this
1546
+ interface.""",
1547
+ "reference" :
1548
+ """MaxAdvertisementInterval in RFC1256.""",
1549
+ }, # column
1550
+ "maAdvMinInterval" : {
1551
+ "nodetype" : "column",
1552
+ "moduleName" : "MIP-MIB",
1553
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.6",
1554
+ "status" : "current",
1555
+ "syntax" : {
1556
+ "type" : {
1557
+ "basetype" : "Integer32",
1558
+ "ranges" : [
1559
+ {
1560
+ "min" : "3",
1561
+ "max" : "1800"
1562
+ },
1563
+ ],
1564
+ "range" : {
1565
+ "min" : "3",
1566
+ "max" : "1800"
1567
+ },
1568
+ },
1569
+ },
1570
+ "access" : "readwrite",
1571
+ "units" : "seconds",
1572
+ "description" :
1573
+ """The minimum time in seconds between successive
1574
+ transmissions of Agent Advertisements from this
1575
+ interface.""",
1576
+ "reference" :
1577
+ """MinAdvertisementInterval in RFC1256.""",
1578
+ }, # column
1579
+ "maAdvMaxAdvLifetime" : {
1580
+ "nodetype" : "column",
1581
+ "moduleName" : "MIP-MIB",
1582
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.7",
1583
+ "status" : "current",
1584
+ "syntax" : {
1585
+ "type" : {
1586
+ "basetype" : "Integer32",
1587
+ "ranges" : [
1588
+ {
1589
+ "min" : "4",
1590
+ "max" : "9000"
1591
+ },
1592
+ ],
1593
+ "range" : {
1594
+ "min" : "4",
1595
+ "max" : "9000"
1596
+ },
1597
+ },
1598
+ },
1599
+ "access" : "readwrite",
1600
+ "units" : "seconds",
1601
+ "description" :
1602
+ """The time (in seconds) to be placed in the Lifetime
1603
+ field of the RFC 1256-portion of the Agent
1604
+ Advertisements sent over this interface.""",
1605
+ "reference" :
1606
+ """AdvertisementLifetime in RFC1256.""",
1607
+ }, # column
1608
+ "maAdvResponseSolicitationOnly" : {
1609
+ "nodetype" : "column",
1610
+ "moduleName" : "MIP-MIB",
1611
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.8",
1612
+ "status" : "current",
1613
+ "syntax" : {
1614
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1615
+ },
1616
+ "access" : "readwrite",
1617
+ "default" : "false",
1618
+ "description" :
1619
+ """The flag indicates whether the advertisement from
1620
+ that interface should be sent only in response to an
1621
+ Agent Solicitation message.""",
1622
+ }, # column
1623
+ "maAdvStatus" : {
1624
+ "nodetype" : "column",
1625
+ "moduleName" : "MIP-MIB",
1626
+ "oid" : "1.3.6.1.2.1.44.1.4.2.1.1.9",
1627
+ "status" : "current",
1628
+ "syntax" : {
1629
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1630
+ },
1631
+ "access" : "readwrite",
1632
+ "description" :
1633
+ """The row status for the agent advertisement table. If
1634
+ this column status is 'active', the manager should not
1635
+ change any column in the row.""",
1636
+ }, # column
1637
+ "maAdvertisementsSent" : {
1638
+ "nodetype" : "scalar",
1639
+ "moduleName" : "MIP-MIB",
1640
+ "oid" : "1.3.6.1.2.1.44.1.4.2.2",
1641
+ "status" : "current",
1642
+ "syntax" : {
1643
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1644
+ },
1645
+ "access" : "readonly",
1646
+ "description" :
1647
+ """Total number of advertisements sent by the mobility
1648
+ agent.""",
1649
+ }, # scalar
1650
+ "maAdvsSentForSolicitation" : {
1651
+ "nodetype" : "scalar",
1652
+ "moduleName" : "MIP-MIB",
1653
+ "oid" : "1.3.6.1.2.1.44.1.4.2.3",
1654
+ "status" : "current",
1655
+ "syntax" : {
1656
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1657
+ },
1658
+ "access" : "readonly",
1659
+ "description" :
1660
+ """Total number of advertisements sent by mobility agent
1661
+ in response to mobile node solicitations.""",
1662
+ }, # scalar
1663
+ "maSolicitationsReceived" : {
1664
+ "nodetype" : "scalar",
1665
+ "moduleName" : "MIP-MIB",
1666
+ "oid" : "1.3.6.1.2.1.44.1.4.2.4",
1667
+ "status" : "current",
1668
+ "syntax" : {
1669
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1670
+ },
1671
+ "access" : "readonly",
1672
+ "description" :
1673
+ """Total number of solicitations received by the
1674
+ mobility agent.""",
1675
+ }, # scalar
1676
+ "mipFA" : {
1677
+ "nodetype" : "node",
1678
+ "moduleName" : "MIP-MIB",
1679
+ "oid" : "1.3.6.1.2.1.44.1.5",
1680
+ }, # node
1681
+ "faSystem" : {
1682
+ "nodetype" : "node",
1683
+ "moduleName" : "MIP-MIB",
1684
+ "oid" : "1.3.6.1.2.1.44.1.5.1",
1685
+ }, # node
1686
+ "faCOATable" : {
1687
+ "nodetype" : "table",
1688
+ "moduleName" : "MIP-MIB",
1689
+ "oid" : "1.3.6.1.2.1.44.1.5.1.1",
1690
+ "status" : "current",
1691
+ "description" :
1692
+ """A table containing all of the care-of addresses
1693
+ (COAs) supported by the foreign agent. New entries can
1694
+ be added to the table. The order of entries in the
1695
+ faCOATAble is also the order in which the COAs are
1696
+ listed in the Agent Advertisement.""",
1697
+ }, # table
1698
+ "faCOAEntry" : {
1699
+ "nodetype" : "row",
1700
+ "moduleName" : "MIP-MIB",
1701
+ "oid" : "1.3.6.1.2.1.44.1.5.1.1.1",
1702
+ "create" : "true",
1703
+ "status" : "current",
1704
+ "linkage" : [
1705
+ "faSupportedCOA",
1706
+ ],
1707
+ "description" :
1708
+ """Entry of COA""",
1709
+ }, # row
1710
+ "faSupportedCOA" : {
1711
+ "nodetype" : "column",
1712
+ "moduleName" : "MIP-MIB",
1713
+ "oid" : "1.3.6.1.2.1.44.1.5.1.1.1.1",
1714
+ "status" : "current",
1715
+ "syntax" : {
1716
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1717
+ },
1718
+ "access" : "noaccess",
1719
+ "description" :
1720
+ """Care-of-address supported by this foreign agent.""",
1721
+ }, # column
1722
+ "faCOAStatus" : {
1723
+ "nodetype" : "column",
1724
+ "moduleName" : "MIP-MIB",
1725
+ "oid" : "1.3.6.1.2.1.44.1.5.1.1.1.2",
1726
+ "status" : "current",
1727
+ "syntax" : {
1728
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1729
+ },
1730
+ "access" : "readwrite",
1731
+ "description" :
1732
+ """The row status for COA entry.""",
1733
+ }, # column
1734
+ "faAdvertisement" : {
1735
+ "nodetype" : "node",
1736
+ "moduleName" : "MIP-MIB",
1737
+ "oid" : "1.3.6.1.2.1.44.1.5.2",
1738
+ }, # node
1739
+ "faIsBusy" : {
1740
+ "nodetype" : "scalar",
1741
+ "moduleName" : "MIP-MIB",
1742
+ "oid" : "1.3.6.1.2.1.44.1.5.2.1",
1743
+ "status" : "current",
1744
+ "syntax" : {
1745
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1746
+ },
1747
+ "access" : "readonly",
1748
+ "description" :
1749
+ """Whether or not the foreign agent is too busy to
1750
+ accept additional registrations. If true(1), the agent
1751
+ is busy and any Agent advertisements sent from this
1752
+ agent should have the 'B' bit set to 1.""",
1753
+ }, # scalar
1754
+ "faRegistrationRequired" : {
1755
+ "nodetype" : "scalar",
1756
+ "moduleName" : "MIP-MIB",
1757
+ "oid" : "1.3.6.1.2.1.44.1.5.2.2",
1758
+ "status" : "current",
1759
+ "syntax" : {
1760
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1761
+ },
1762
+ "access" : "readwrite",
1763
+ "description" :
1764
+ """Whether or not this foreign agent requires
1765
+ registration even from those mobile nodes that have
1766
+ acquired their own, colocated care-of address. If
1767
+ true(1), registration is required and any Agent
1768
+ Advertisements sent from this agent should have the
1769
+ 'R' bit set to 1.""",
1770
+ }, # scalar
1771
+ "faRegistration" : {
1772
+ "nodetype" : "node",
1773
+ "moduleName" : "MIP-MIB",
1774
+ "oid" : "1.3.6.1.2.1.44.1.5.3",
1775
+ }, # node
1776
+ "faVisitorTable" : {
1777
+ "nodetype" : "table",
1778
+ "moduleName" : "MIP-MIB",
1779
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1",
1780
+ "status" : "current",
1781
+ "description" :
1782
+ """A table containing the foreign agent's visitor list.
1783
+ The foreign agent updates this table in response to
1784
+ registration events from mobile nodes.""",
1785
+ }, # table
1786
+ "faVisitorEntry" : {
1787
+ "nodetype" : "row",
1788
+ "moduleName" : "MIP-MIB",
1789
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1",
1790
+ "status" : "current",
1791
+ "linkage" : [
1792
+ "faVisitorIPAddress",
1793
+ ],
1794
+ "description" :
1795
+ """Information for one visitor.""",
1796
+ }, # row
1797
+ "faVisitorIPAddress" : {
1798
+ "nodetype" : "column",
1799
+ "moduleName" : "MIP-MIB",
1800
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.1",
1801
+ "status" : "current",
1802
+ "syntax" : {
1803
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1804
+ },
1805
+ "access" : "readonly",
1806
+ "description" :
1807
+ """Source IP address of visitor's Registration Request.""",
1808
+ }, # column
1809
+ "faVisitorHomeAddress" : {
1810
+ "nodetype" : "column",
1811
+ "moduleName" : "MIP-MIB",
1812
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.2",
1813
+ "status" : "current",
1814
+ "syntax" : {
1815
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1816
+ },
1817
+ "access" : "readonly",
1818
+ "description" :
1819
+ """Home (IP) address of visiting mobile node.""",
1820
+ }, # column
1821
+ "faVisitorHomeAgentAddress" : {
1822
+ "nodetype" : "column",
1823
+ "moduleName" : "MIP-MIB",
1824
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.3",
1825
+ "status" : "current",
1826
+ "syntax" : {
1827
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
1828
+ },
1829
+ "access" : "readonly",
1830
+ "description" :
1831
+ """Home agent IP address for that visiting mobile node.""",
1832
+ }, # column
1833
+ "faVisitorTimeGranted" : {
1834
+ "nodetype" : "column",
1835
+ "moduleName" : "MIP-MIB",
1836
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.4",
1837
+ "status" : "current",
1838
+ "syntax" : {
1839
+ "type" : { "module" :"", "name" : "Integer32"},
1840
+ },
1841
+ "access" : "readonly",
1842
+ "units" : "seconds",
1843
+ "description" :
1844
+ """The lifetime in seconds granted to the mobile node
1845
+ for this registration. Only valid if
1846
+ faVisitorRegIsAccepted is true(1).""",
1847
+ }, # column
1848
+ "faVisitorTimeRemaining" : {
1849
+ "nodetype" : "column",
1850
+ "moduleName" : "MIP-MIB",
1851
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.5",
1852
+ "status" : "current",
1853
+ "syntax" : {
1854
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1855
+ },
1856
+ "access" : "readonly",
1857
+ "units" : "seconds",
1858
+ "description" :
1859
+ """The number of seconds remaining until the
1860
+ registration is expired. It has the same initial value
1861
+ as faVisitorTimeGranted, and is counted down by the
1862
+ foreign agent.""",
1863
+ }, # column
1864
+ "faVisitorRegFlags" : {
1865
+ "nodetype" : "column",
1866
+ "moduleName" : "MIP-MIB",
1867
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.6",
1868
+ "status" : "current",
1869
+ "syntax" : {
1870
+ "type" : { "module" :"MIP-MIB", "name" : "RegistrationFlags"},
1871
+ },
1872
+ "access" : "readonly",
1873
+ "description" :
1874
+ """Registration flags sent by mobile node.""",
1875
+ }, # column
1876
+ "faVisitorRegIDLow" : {
1877
+ "nodetype" : "column",
1878
+ "moduleName" : "MIP-MIB",
1879
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.7",
1880
+ "status" : "current",
1881
+ "syntax" : {
1882
+ "type" : { "module" :"", "name" : "Integer32"},
1883
+ },
1884
+ "access" : "readonly",
1885
+ "description" :
1886
+ """Low 32 bits of Identification used in that
1887
+ registration by the mobile node.""",
1888
+ }, # column
1889
+ "faVisitorRegIDHigh" : {
1890
+ "nodetype" : "column",
1891
+ "moduleName" : "MIP-MIB",
1892
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.8",
1893
+ "status" : "current",
1894
+ "syntax" : {
1895
+ "type" : { "module" :"", "name" : "Integer32"},
1896
+ },
1897
+ "access" : "readonly",
1898
+ "description" :
1899
+ """High 32 bits of Identification used in that
1900
+ registration by the mobile node.""",
1901
+ }, # column
1902
+ "faVisitorRegIsAccepted" : {
1903
+ "nodetype" : "column",
1904
+ "moduleName" : "MIP-MIB",
1905
+ "oid" : "1.3.6.1.2.1.44.1.5.3.1.1.9",
1906
+ "status" : "current",
1907
+ "syntax" : {
1908
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
1909
+ },
1910
+ "access" : "readonly",
1911
+ "description" :
1912
+ """Whether the registration has been accepted or not. If
1913
+ it is false(2), this registration is still pending for
1914
+ reply.""",
1915
+ }, # column
1916
+ "faRegRequestsReceived" : {
1917
+ "nodetype" : "scalar",
1918
+ "moduleName" : "MIP-MIB",
1919
+ "oid" : "1.3.6.1.2.1.44.1.5.3.2",
1920
+ "status" : "current",
1921
+ "syntax" : {
1922
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1923
+ },
1924
+ "access" : "readonly",
1925
+ "description" :
1926
+ """Total number of valid Registration Requests
1927
+ received.""",
1928
+ }, # scalar
1929
+ "faRegRequestsRelayed" : {
1930
+ "nodetype" : "scalar",
1931
+ "moduleName" : "MIP-MIB",
1932
+ "oid" : "1.3.6.1.2.1.44.1.5.3.3",
1933
+ "status" : "current",
1934
+ "syntax" : {
1935
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1936
+ },
1937
+ "access" : "readonly",
1938
+ "description" :
1939
+ """Total number of Registration Requests relayed to home
1940
+ agent by foreign agent.""",
1941
+ }, # scalar
1942
+ "faReasonUnspecified" : {
1943
+ "nodetype" : "scalar",
1944
+ "moduleName" : "MIP-MIB",
1945
+ "oid" : "1.3.6.1.2.1.44.1.5.3.4",
1946
+ "status" : "current",
1947
+ "syntax" : {
1948
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1949
+ },
1950
+ "access" : "readonly",
1951
+ "description" :
1952
+ """Total number of Registration Requests denied by
1953
+ foreign agent -- reason unspecified (Code 64).""",
1954
+ }, # scalar
1955
+ "faAdmProhibited" : {
1956
+ "nodetype" : "scalar",
1957
+ "moduleName" : "MIP-MIB",
1958
+ "oid" : "1.3.6.1.2.1.44.1.5.3.5",
1959
+ "status" : "current",
1960
+ "syntax" : {
1961
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1962
+ },
1963
+ "access" : "readonly",
1964
+ "description" :
1965
+ """Total number of Registration Requests denied by
1966
+ foreign agent -- administratively prohibited (Code
1967
+ 65).""",
1968
+ }, # scalar
1969
+ "faInsufficientResource" : {
1970
+ "nodetype" : "scalar",
1971
+ "moduleName" : "MIP-MIB",
1972
+ "oid" : "1.3.6.1.2.1.44.1.5.3.6",
1973
+ "status" : "current",
1974
+ "syntax" : {
1975
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1976
+ },
1977
+ "access" : "readonly",
1978
+ "description" :
1979
+ """Total number of Registration Requests denied by
1980
+ foreign agent -- insufficient resources (Code 66).""",
1981
+ }, # scalar
1982
+ "faMNAuthenticationFailure" : {
1983
+ "nodetype" : "scalar",
1984
+ "moduleName" : "MIP-MIB",
1985
+ "oid" : "1.3.6.1.2.1.44.1.5.3.7",
1986
+ "status" : "current",
1987
+ "syntax" : {
1988
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
1989
+ },
1990
+ "access" : "readonly",
1991
+ "description" :
1992
+ """Total number of Registration Requests denied by
1993
+ foreign agent -- mobile node failed authentication
1994
+ (Code 67).""",
1995
+ }, # scalar
1996
+ "faRegLifetimeTooLong" : {
1997
+ "nodetype" : "scalar",
1998
+ "moduleName" : "MIP-MIB",
1999
+ "oid" : "1.3.6.1.2.1.44.1.5.3.8",
2000
+ "status" : "current",
2001
+ "syntax" : {
2002
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2003
+ },
2004
+ "access" : "readonly",
2005
+ "description" :
2006
+ """Total number of Registration Requests denied by
2007
+ foreign agent -- requested lifetime too long (Code
2008
+ 69).""",
2009
+ }, # scalar
2010
+ "faPoorlyFormedRequests" : {
2011
+ "nodetype" : "scalar",
2012
+ "moduleName" : "MIP-MIB",
2013
+ "oid" : "1.3.6.1.2.1.44.1.5.3.9",
2014
+ "status" : "current",
2015
+ "syntax" : {
2016
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2017
+ },
2018
+ "access" : "readonly",
2019
+ "description" :
2020
+ """Total number of Registration Requests denied by
2021
+ foreign agent -- poorly formed request (Code 70).""",
2022
+ }, # scalar
2023
+ "faEncapsulationUnavailable" : {
2024
+ "nodetype" : "scalar",
2025
+ "moduleName" : "MIP-MIB",
2026
+ "oid" : "1.3.6.1.2.1.44.1.5.3.10",
2027
+ "status" : "current",
2028
+ "syntax" : {
2029
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2030
+ },
2031
+ "access" : "readonly",
2032
+ "description" :
2033
+ """Total number of Registration Requests denied by
2034
+ foreign agent -- requested encapsulation unavailable
2035
+ (Code 72).""",
2036
+ }, # scalar
2037
+ "faVJCompressionUnavailable" : {
2038
+ "nodetype" : "scalar",
2039
+ "moduleName" : "MIP-MIB",
2040
+ "oid" : "1.3.6.1.2.1.44.1.5.3.11",
2041
+ "status" : "current",
2042
+ "syntax" : {
2043
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2044
+ },
2045
+ "access" : "readonly",
2046
+ "description" :
2047
+ """Total number of Registration Requests denied by
2048
+ foreign agent -- requested Van Jacobson header
2049
+ compression unavailable (Code 73).""",
2050
+ }, # scalar
2051
+ "faHAUnreachable" : {
2052
+ "nodetype" : "scalar",
2053
+ "moduleName" : "MIP-MIB",
2054
+ "oid" : "1.3.6.1.2.1.44.1.5.3.12",
2055
+ "status" : "current",
2056
+ "syntax" : {
2057
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2058
+ },
2059
+ "access" : "readonly",
2060
+ "description" :
2061
+ """Total number of Registration Requests denied by
2062
+ foreign agent -- home agent unreachable (Codes
2063
+ 80-95).""",
2064
+ }, # scalar
2065
+ "faRegRepliesRecieved" : {
2066
+ "nodetype" : "scalar",
2067
+ "moduleName" : "MIP-MIB",
2068
+ "oid" : "1.3.6.1.2.1.44.1.5.3.13",
2069
+ "status" : "current",
2070
+ "syntax" : {
2071
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2072
+ },
2073
+ "access" : "readonly",
2074
+ "description" :
2075
+ """Total number of well-formed Registration Replies
2076
+ received by foreign agent.""",
2077
+ }, # scalar
2078
+ "faRegRepliesRelayed" : {
2079
+ "nodetype" : "scalar",
2080
+ "moduleName" : "MIP-MIB",
2081
+ "oid" : "1.3.6.1.2.1.44.1.5.3.14",
2082
+ "status" : "current",
2083
+ "syntax" : {
2084
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2085
+ },
2086
+ "access" : "readonly",
2087
+ "description" :
2088
+ """Total number of valid Registration Replies relayed to
2089
+ the mobile node by foreign agent.""",
2090
+ }, # scalar
2091
+ "faHAAuthenticationFailure" : {
2092
+ "nodetype" : "scalar",
2093
+ "moduleName" : "MIP-MIB",
2094
+ "oid" : "1.3.6.1.2.1.44.1.5.3.15",
2095
+ "status" : "current",
2096
+ "syntax" : {
2097
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2098
+ },
2099
+ "access" : "readonly",
2100
+ "description" :
2101
+ """Total number of Registration Replies denied by
2102
+ foreign agent -- home agent failed authentication
2103
+ (Code 68).""",
2104
+ }, # scalar
2105
+ "faPoorlyFormedReplies" : {
2106
+ "nodetype" : "scalar",
2107
+ "moduleName" : "MIP-MIB",
2108
+ "oid" : "1.3.6.1.2.1.44.1.5.3.16",
2109
+ "status" : "current",
2110
+ "syntax" : {
2111
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2112
+ },
2113
+ "access" : "readonly",
2114
+ "description" :
2115
+ """Total number of Registration Replies denied by
2116
+ foreign agent -- poorly formed reply (Code 71).""",
2117
+ }, # scalar
2118
+ "mipHA" : {
2119
+ "nodetype" : "node",
2120
+ "moduleName" : "MIP-MIB",
2121
+ "oid" : "1.3.6.1.2.1.44.1.6",
2122
+ }, # node
2123
+ "haRegistration" : {
2124
+ "nodetype" : "node",
2125
+ "moduleName" : "MIP-MIB",
2126
+ "oid" : "1.3.6.1.2.1.44.1.6.3",
2127
+ }, # node
2128
+ "haMobilityBindingTable" : {
2129
+ "nodetype" : "table",
2130
+ "moduleName" : "MIP-MIB",
2131
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1",
2132
+ "status" : "current",
2133
+ "description" :
2134
+ """A table containing the home agent's mobility binding
2135
+ list. The home agent updates this table in response
2136
+ to registration events from mobile nodes.""",
2137
+ }, # table
2138
+ "haMobilityBindingEntry" : {
2139
+ "nodetype" : "row",
2140
+ "moduleName" : "MIP-MIB",
2141
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1",
2142
+ "status" : "current",
2143
+ "linkage" : [
2144
+ "haMobilityBindingMN",
2145
+ "haMobilityBindingCOA",
2146
+ ],
2147
+ "description" :
2148
+ """An entry on the mobility binding list.""",
2149
+ }, # row
2150
+ "haMobilityBindingMN" : {
2151
+ "nodetype" : "column",
2152
+ "moduleName" : "MIP-MIB",
2153
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.1",
2154
+ "status" : "current",
2155
+ "syntax" : {
2156
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
2157
+ },
2158
+ "access" : "readonly",
2159
+ "description" :
2160
+ """Mobile node's home (IP) address.""",
2161
+ }, # column
2162
+ "haMobilityBindingCOA" : {
2163
+ "nodetype" : "column",
2164
+ "moduleName" : "MIP-MIB",
2165
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.2",
2166
+ "status" : "current",
2167
+ "syntax" : {
2168
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
2169
+ },
2170
+ "access" : "readonly",
2171
+ "description" :
2172
+ """Mobile node's care-of-address. One mobile node can
2173
+ have multiple bindings with different
2174
+ care-of-addresses.""",
2175
+ }, # column
2176
+ "haMobilityBindingSourceAddress" : {
2177
+ "nodetype" : "column",
2178
+ "moduleName" : "MIP-MIB",
2179
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.3",
2180
+ "status" : "current",
2181
+ "syntax" : {
2182
+ "type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
2183
+ },
2184
+ "access" : "readonly",
2185
+ "description" :
2186
+ """IP source address of the Registration Request as
2187
+ received by the home agent. Will be either a mobile
2188
+ node's co-located care-of address or an address of the
2189
+ foreign agent.""",
2190
+ }, # column
2191
+ "haMobilityBindingRegFlags" : {
2192
+ "nodetype" : "column",
2193
+ "moduleName" : "MIP-MIB",
2194
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.4",
2195
+ "status" : "current",
2196
+ "syntax" : {
2197
+ "type" : { "module" :"MIP-MIB", "name" : "RegistrationFlags"},
2198
+ },
2199
+ "access" : "readonly",
2200
+ "description" :
2201
+ """Registration flags sent by mobile node.""",
2202
+ }, # column
2203
+ "haMobilityBindingRegIDLow" : {
2204
+ "nodetype" : "column",
2205
+ "moduleName" : "MIP-MIB",
2206
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.5",
2207
+ "status" : "current",
2208
+ "syntax" : {
2209
+ "type" : { "module" :"", "name" : "Integer32"},
2210
+ },
2211
+ "access" : "readonly",
2212
+ "description" :
2213
+ """Low 32 bits of Identification used in that binding by
2214
+ the mobile node.""",
2215
+ }, # column
2216
+ "haMobilityBindingRegIDHigh" : {
2217
+ "nodetype" : "column",
2218
+ "moduleName" : "MIP-MIB",
2219
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.6",
2220
+ "status" : "current",
2221
+ "syntax" : {
2222
+ "type" : { "module" :"", "name" : "Integer32"},
2223
+ },
2224
+ "access" : "readonly",
2225
+ "description" :
2226
+ """High 32 bits of Identification used in that binding by
2227
+ the mobile node.""",
2228
+ }, # column
2229
+ "haMobilityBindingTimeGranted" : {
2230
+ "nodetype" : "column",
2231
+ "moduleName" : "MIP-MIB",
2232
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.7",
2233
+ "status" : "current",
2234
+ "syntax" : {
2235
+ "type" : { "module" :"", "name" : "Integer32"},
2236
+ },
2237
+ "access" : "readonly",
2238
+ "units" : "seconds",
2239
+ "description" :
2240
+ """The lifetime in seconds granted to the mobile node
2241
+ for this registration.""",
2242
+ }, # column
2243
+ "haMobilityBindingTimeRemaining" : {
2244
+ "nodetype" : "column",
2245
+ "moduleName" : "MIP-MIB",
2246
+ "oid" : "1.3.6.1.2.1.44.1.6.3.1.1.8",
2247
+ "status" : "current",
2248
+ "syntax" : {
2249
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2250
+ },
2251
+ "access" : "readonly",
2252
+ "units" : "seconds",
2253
+ "description" :
2254
+ """The number of seconds remaining until the
2255
+ registration is expired. It has the same initial value
2256
+ as haMobilityBindingTimeGranted, and is counted down
2257
+ by the home agent.""",
2258
+ }, # column
2259
+ "haCounterTable" : {
2260
+ "nodetype" : "table",
2261
+ "moduleName" : "MIP-MIB",
2262
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2",
2263
+ "status" : "current",
2264
+ "description" :
2265
+ """A table containing registration statistics for all
2266
+ mobile nodes authorized to use this home agent.""",
2267
+ }, # table
2268
+ "haCounterEntry" : {
2269
+ "nodetype" : "row",
2270
+ "moduleName" : "MIP-MIB",
2271
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1",
2272
+ "status" : "current",
2273
+ "linkage" : [
2274
+ "haMobilityBindingMN",
2275
+ ],
2276
+ "description" :
2277
+ """Registration statistics for one mobile node.""",
2278
+ }, # row
2279
+ "haServiceRequestsAccepted" : {
2280
+ "nodetype" : "column",
2281
+ "moduleName" : "MIP-MIB",
2282
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1.2",
2283
+ "status" : "current",
2284
+ "syntax" : {
2285
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2286
+ },
2287
+ "access" : "readonly",
2288
+ "description" :
2289
+ """Total number of service requests for the mobile node
2290
+ accepted by the home agent (Code 0 + Code 1).""",
2291
+ }, # column
2292
+ "haServiceRequestsDenied" : {
2293
+ "nodetype" : "column",
2294
+ "moduleName" : "MIP-MIB",
2295
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1.3",
2296
+ "status" : "current",
2297
+ "syntax" : {
2298
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2299
+ },
2300
+ "access" : "readonly",
2301
+ "description" :
2302
+ """Total number of service requests for the mobile node
2303
+ denied by the home agent (sum of all registrations
2304
+ denied with Code 128 through Code 159).""",
2305
+ }, # column
2306
+ "haOverallServiceTime" : {
2307
+ "nodetype" : "column",
2308
+ "moduleName" : "MIP-MIB",
2309
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1.4",
2310
+ "status" : "current",
2311
+ "syntax" : {
2312
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
2313
+ },
2314
+ "access" : "readonly",
2315
+ "units" : "seconds",
2316
+ "description" :
2317
+ """Overall service time (in seconds) that has
2318
+ accumulated for the mobile node since the home agent
2319
+ last rebooted.""",
2320
+ }, # column
2321
+ "haRecentServiceAcceptedTime" : {
2322
+ "nodetype" : "column",
2323
+ "moduleName" : "MIP-MIB",
2324
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1.5",
2325
+ "status" : "current",
2326
+ "syntax" : {
2327
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2328
+ },
2329
+ "access" : "readonly",
2330
+ "description" :
2331
+ """The time at which the most recent Registration
2332
+ Request was accepted by the home agent for this mobile
2333
+ node.""",
2334
+ }, # column
2335
+ "haRecentServiceDeniedTime" : {
2336
+ "nodetype" : "column",
2337
+ "moduleName" : "MIP-MIB",
2338
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1.6",
2339
+ "status" : "current",
2340
+ "syntax" : {
2341
+ "type" : { "module" :"SNMPv2-TC", "name" : "TimeStamp"},
2342
+ },
2343
+ "access" : "readonly",
2344
+ "description" :
2345
+ """The time at which the most recent Registration
2346
+ Request was denied by the home agent for this mobile
2347
+ node.""",
2348
+ }, # column
2349
+ "haRecentServiceDeniedCode" : {
2350
+ "nodetype" : "column",
2351
+ "moduleName" : "MIP-MIB",
2352
+ "oid" : "1.3.6.1.2.1.44.1.6.3.2.1.7",
2353
+ "status" : "current",
2354
+ "syntax" : {
2355
+ "type" : {
2356
+ "basetype" : "Enumeration",
2357
+ "reasonUnspecified" : {
2358
+ "nodetype" : "namednumber",
2359
+ "number" : "128"
2360
+ },
2361
+ "admProhibited" : {
2362
+ "nodetype" : "namednumber",
2363
+ "number" : "129"
2364
+ },
2365
+ "insufficientResource" : {
2366
+ "nodetype" : "namednumber",
2367
+ "number" : "130"
2368
+ },
2369
+ "mnAuthenticationFailure" : {
2370
+ "nodetype" : "namednumber",
2371
+ "number" : "131"
2372
+ },
2373
+ "faAuthenticationFailure" : {
2374
+ "nodetype" : "namednumber",
2375
+ "number" : "132"
2376
+ },
2377
+ "idMismatch" : {
2378
+ "nodetype" : "namednumber",
2379
+ "number" : "133"
2380
+ },
2381
+ "poorlyFormedRequest" : {
2382
+ "nodetype" : "namednumber",
2383
+ "number" : "134"
2384
+ },
2385
+ "tooManyBindings" : {
2386
+ "nodetype" : "namednumber",
2387
+ "number" : "135"
2388
+ },
2389
+ "unknownHA" : {
2390
+ "nodetype" : "namednumber",
2391
+ "number" : "136"
2392
+ },
2393
+ },
2394
+ },
2395
+ "access" : "readonly",
2396
+ "description" :
2397
+ """The Code indicating the reason why the most recent
2398
+ Registration Request for this mobile node was rejected
2399
+ by the home agent.""",
2400
+ }, # column
2401
+ "haRegistrationAccepted" : {
2402
+ "nodetype" : "scalar",
2403
+ "moduleName" : "MIP-MIB",
2404
+ "oid" : "1.3.6.1.2.1.44.1.6.3.3",
2405
+ "status" : "current",
2406
+ "syntax" : {
2407
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2408
+ },
2409
+ "access" : "readonly",
2410
+ "description" :
2411
+ """Total number of Registration Requests accepted by
2412
+ home agent (Code 0).""",
2413
+ }, # scalar
2414
+ "haMultiBindingUnsupported" : {
2415
+ "nodetype" : "scalar",
2416
+ "moduleName" : "MIP-MIB",
2417
+ "oid" : "1.3.6.1.2.1.44.1.6.3.4",
2418
+ "status" : "current",
2419
+ "syntax" : {
2420
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2421
+ },
2422
+ "access" : "readonly",
2423
+ "description" :
2424
+ """Total number of Registration Requests accepted by
2425
+ home agent -- simultaneous mobility bindings
2426
+ unsupported (Code 1).""",
2427
+ }, # scalar
2428
+ "haReasonUnspecified" : {
2429
+ "nodetype" : "scalar",
2430
+ "moduleName" : "MIP-MIB",
2431
+ "oid" : "1.3.6.1.2.1.44.1.6.3.5",
2432
+ "status" : "current",
2433
+ "syntax" : {
2434
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2435
+ },
2436
+ "access" : "readonly",
2437
+ "description" :
2438
+ """Total number of Registration Requests denied by home
2439
+ agent -- reason unspecified (Code 128).""",
2440
+ }, # scalar
2441
+ "haAdmProhibited" : {
2442
+ "nodetype" : "scalar",
2443
+ "moduleName" : "MIP-MIB",
2444
+ "oid" : "1.3.6.1.2.1.44.1.6.3.6",
2445
+ "status" : "current",
2446
+ "syntax" : {
2447
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2448
+ },
2449
+ "access" : "readonly",
2450
+ "description" :
2451
+ """Total number of Registration Requests denied by home
2452
+ agent -- administratively prohibited (Code 129).""",
2453
+ }, # scalar
2454
+ "haInsufficientResource" : {
2455
+ "nodetype" : "scalar",
2456
+ "moduleName" : "MIP-MIB",
2457
+ "oid" : "1.3.6.1.2.1.44.1.6.3.7",
2458
+ "status" : "current",
2459
+ "syntax" : {
2460
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2461
+ },
2462
+ "access" : "readonly",
2463
+ "description" :
2464
+ """Total number of Registration Requests denied by home
2465
+ agent -- insufficient resources (Code 130).""",
2466
+ }, # scalar
2467
+ "haMNAuthenticationFailure" : {
2468
+ "nodetype" : "scalar",
2469
+ "moduleName" : "MIP-MIB",
2470
+ "oid" : "1.3.6.1.2.1.44.1.6.3.8",
2471
+ "status" : "current",
2472
+ "syntax" : {
2473
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2474
+ },
2475
+ "access" : "readonly",
2476
+ "description" :
2477
+ """Total number of Registration Requests denied by home
2478
+ agent -- mobile node failed authentication (Code
2479
+ 131).""",
2480
+ }, # scalar
2481
+ "haFAAuthenticationFailure" : {
2482
+ "nodetype" : "scalar",
2483
+ "moduleName" : "MIP-MIB",
2484
+ "oid" : "1.3.6.1.2.1.44.1.6.3.9",
2485
+ "status" : "current",
2486
+ "syntax" : {
2487
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2488
+ },
2489
+ "access" : "readonly",
2490
+ "description" :
2491
+ """Total number of Registration Requests denied by home
2492
+ agent -- foreign agent failed authentication (Code
2493
+ 132).""",
2494
+ }, # scalar
2495
+ "haIDMismatch" : {
2496
+ "nodetype" : "scalar",
2497
+ "moduleName" : "MIP-MIB",
2498
+ "oid" : "1.3.6.1.2.1.44.1.6.3.10",
2499
+ "status" : "current",
2500
+ "syntax" : {
2501
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2502
+ },
2503
+ "access" : "readonly",
2504
+ "description" :
2505
+ """Total number of Registration Requests denied by home
2506
+ agent -- Identification mismatch (Code 133).""",
2507
+ }, # scalar
2508
+ "haPoorlyFormedRequest" : {
2509
+ "nodetype" : "scalar",
2510
+ "moduleName" : "MIP-MIB",
2511
+ "oid" : "1.3.6.1.2.1.44.1.6.3.11",
2512
+ "status" : "current",
2513
+ "syntax" : {
2514
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2515
+ },
2516
+ "access" : "readonly",
2517
+ "description" :
2518
+ """Total number of Registration Requests denied by home
2519
+ agent -- poorly formed request (Code 134).""",
2520
+ }, # scalar
2521
+ "haTooManyBindings" : {
2522
+ "nodetype" : "scalar",
2523
+ "moduleName" : "MIP-MIB",
2524
+ "oid" : "1.3.6.1.2.1.44.1.6.3.12",
2525
+ "status" : "current",
2526
+ "syntax" : {
2527
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2528
+ },
2529
+ "access" : "readonly",
2530
+ "description" :
2531
+ """Total number of Registration Requests denied by home
2532
+ agent -- too many simultaneous mobility bindings (Code
2533
+ 135).""",
2534
+ }, # scalar
2535
+ "haUnknownHA" : {
2536
+ "nodetype" : "scalar",
2537
+ "moduleName" : "MIP-MIB",
2538
+ "oid" : "1.3.6.1.2.1.44.1.6.3.13",
2539
+ "status" : "current",
2540
+ "syntax" : {
2541
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2542
+ },
2543
+ "access" : "readonly",
2544
+ "description" :
2545
+ """Total number of Registration Requests denied by home
2546
+ agent -- unknown home agent address (Code 136).""",
2547
+ }, # scalar
2548
+ "haGratuitiousARPsSent" : {
2549
+ "nodetype" : "scalar",
2550
+ "moduleName" : "MIP-MIB",
2551
+ "oid" : "1.3.6.1.2.1.44.1.6.3.14",
2552
+ "status" : "current",
2553
+ "syntax" : {
2554
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2555
+ },
2556
+ "access" : "readonly",
2557
+ "description" :
2558
+ """Total number of gratuition ARPs sent by the home
2559
+ agent on behalf of mobile nodes.""",
2560
+ }, # scalar
2561
+ "haProxyARPsSent" : {
2562
+ "nodetype" : "scalar",
2563
+ "moduleName" : "MIP-MIB",
2564
+ "oid" : "1.3.6.1.2.1.44.1.6.3.15",
2565
+ "status" : "current",
2566
+ "syntax" : {
2567
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2568
+ },
2569
+ "access" : "readonly",
2570
+ "description" :
2571
+ """Total number of proxy ARPs sent by the home agent on
2572
+ behalf of mobile nodes.""",
2573
+ }, # scalar
2574
+ "haRegRequestsReceived" : {
2575
+ "nodetype" : "scalar",
2576
+ "moduleName" : "MIP-MIB",
2577
+ "oid" : "1.3.6.1.2.1.44.1.6.3.16",
2578
+ "status" : "current",
2579
+ "syntax" : {
2580
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2581
+ },
2582
+ "access" : "readonly",
2583
+ "description" :
2584
+ """Total number of Registration Requests received by
2585
+ home agent.""",
2586
+ }, # scalar
2587
+ "haDeRegRequestsReceived" : {
2588
+ "nodetype" : "scalar",
2589
+ "moduleName" : "MIP-MIB",
2590
+ "oid" : "1.3.6.1.2.1.44.1.6.3.17",
2591
+ "status" : "current",
2592
+ "syntax" : {
2593
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2594
+ },
2595
+ "access" : "readonly",
2596
+ "description" :
2597
+ """Total number of Registration Requests received by the
2598
+ home agent with a Lifetime of zero (requests to
2599
+ deregister).""",
2600
+ }, # scalar
2601
+ "haRegRepliesSent" : {
2602
+ "nodetype" : "scalar",
2603
+ "moduleName" : "MIP-MIB",
2604
+ "oid" : "1.3.6.1.2.1.44.1.6.3.18",
2605
+ "status" : "current",
2606
+ "syntax" : {
2607
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2608
+ },
2609
+ "access" : "readonly",
2610
+ "description" :
2611
+ """Total number of Registration Replies sent by the home
2612
+ agent.""",
2613
+ }, # scalar
2614
+ "haDeRegRepliesSent" : {
2615
+ "nodetype" : "scalar",
2616
+ "moduleName" : "MIP-MIB",
2617
+ "oid" : "1.3.6.1.2.1.44.1.6.3.19",
2618
+ "status" : "current",
2619
+ "syntax" : {
2620
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
2621
+ },
2622
+ "access" : "readonly",
2623
+ "description" :
2624
+ """Total number of Registration Replies sent by the home
2625
+ agent in response to requests to deregister.""",
2626
+ }, # scalar
2627
+ "mipMIBNotificationPrefix" : {
2628
+ "nodetype" : "node",
2629
+ "moduleName" : "MIP-MIB",
2630
+ "oid" : "1.3.6.1.2.1.44.2",
2631
+ }, # node
2632
+ "mipMIBNotifications" : {
2633
+ "nodetype" : "node",
2634
+ "moduleName" : "MIP-MIB",
2635
+ "oid" : "1.3.6.1.2.1.44.2.0",
2636
+ }, # node
2637
+ "mipMIBConformance" : {
2638
+ "nodetype" : "node",
2639
+ "moduleName" : "MIP-MIB",
2640
+ "oid" : "1.3.6.1.2.1.44.3",
2641
+ }, # node
2642
+ "mipGroups" : {
2643
+ "nodetype" : "node",
2644
+ "moduleName" : "MIP-MIB",
2645
+ "oid" : "1.3.6.1.2.1.44.3.1",
2646
+ }, # node
2647
+ "mipCompliances" : {
2648
+ "nodetype" : "node",
2649
+ "moduleName" : "MIP-MIB",
2650
+ "oid" : "1.3.6.1.2.1.44.3.2",
2651
+ }, # node
2652
+ }, # nodes
2653
+
2654
+ "notifications" : {
2655
+ "mipAuthFailure" : {
2656
+ "nodetype" : "notification",
2657
+ "moduleName" : "MIP-MIB",
2658
+ "oid" : "1.3.6.1.2.1.44.2.0.1",
2659
+ "status" : "current",
2660
+ "objects" : {
2661
+ "mipSecViolatorAddress" : {
2662
+ "nodetype" : "object",
2663
+ "module" : "MIP-MIB"
2664
+ },
2665
+ "mipSecRecentViolationSPI" : {
2666
+ "nodetype" : "object",
2667
+ "module" : "MIP-MIB"
2668
+ },
2669
+ "mipSecRecentViolationIDLow" : {
2670
+ "nodetype" : "object",
2671
+ "module" : "MIP-MIB"
2672
+ },
2673
+ "mipSecRecentViolationIDHigh" : {
2674
+ "nodetype" : "object",
2675
+ "module" : "MIP-MIB"
2676
+ },
2677
+ "mipSecRecentViolationReason" : {
2678
+ "nodetype" : "object",
2679
+ "module" : "MIP-MIB"
2680
+ },
2681
+ },
2682
+ "description" :
2683
+ """The mipAuthFailure indicates that the Mobile IP
2684
+ entity has an authentication failure when it validates
2685
+ the mobile Registration Request or Reply.
2686
+ Implementation of this trap is optional.""",
2687
+ }, # notification
2688
+ }, # notifications
2689
+
2690
+ "groups" : {
2691
+ "mipSystemGroup" : {
2692
+ "nodetype" : "group",
2693
+ "moduleName" : "MIP-MIB",
2694
+ "oid" : "1.3.6.1.2.1.44.3.1.1",
2695
+ "status" : "current",
2696
+ "members" : {
2697
+ "mipEntities" : {
2698
+ "nodetype" : "member",
2699
+ "module" : "MIP-MIB"
2700
+ },
2701
+ "mipEnable" : {
2702
+ "nodetype" : "member",
2703
+ "module" : "MIP-MIB"
2704
+ },
2705
+ "mipEncapsulationSupported" : {
2706
+ "nodetype" : "member",
2707
+ "module" : "MIP-MIB"
2708
+ },
2709
+ }, # members
2710
+ "description" :
2711
+ """A collection of objects providing the basic Mobile IP
2712
+ entity's management information.""",
2713
+ }, # group
2714
+ "mipSecAssociationGroup" : {
2715
+ "nodetype" : "group",
2716
+ "moduleName" : "MIP-MIB",
2717
+ "oid" : "1.3.6.1.2.1.44.3.1.2",
2718
+ "status" : "current",
2719
+ "members" : {
2720
+ "mipSecAlgorithmType" : {
2721
+ "nodetype" : "member",
2722
+ "module" : "MIP-MIB"
2723
+ },
2724
+ "mipSecAlgorithmMode" : {
2725
+ "nodetype" : "member",
2726
+ "module" : "MIP-MIB"
2727
+ },
2728
+ "mipSecKey" : {
2729
+ "nodetype" : "member",
2730
+ "module" : "MIP-MIB"
2731
+ },
2732
+ "mipSecReplayMethod" : {
2733
+ "nodetype" : "member",
2734
+ "module" : "MIP-MIB"
2735
+ },
2736
+ }, # members
2737
+ "description" :
2738
+ """A collection of objects providing the management
2739
+ information for security associations of Mobile IP
2740
+ entities.""",
2741
+ }, # group
2742
+ "mipSecViolationGroup" : {
2743
+ "nodetype" : "group",
2744
+ "moduleName" : "MIP-MIB",
2745
+ "oid" : "1.3.6.1.2.1.44.3.1.3",
2746
+ "status" : "current",
2747
+ "members" : {
2748
+ "mipSecTotalViolations" : {
2749
+ "nodetype" : "member",
2750
+ "module" : "MIP-MIB"
2751
+ },
2752
+ "mipSecViolationCounter" : {
2753
+ "nodetype" : "member",
2754
+ "module" : "MIP-MIB"
2755
+ },
2756
+ "mipSecRecentViolationSPI" : {
2757
+ "nodetype" : "member",
2758
+ "module" : "MIP-MIB"
2759
+ },
2760
+ "mipSecRecentViolationTime" : {
2761
+ "nodetype" : "member",
2762
+ "module" : "MIP-MIB"
2763
+ },
2764
+ "mipSecRecentViolationIDLow" : {
2765
+ "nodetype" : "member",
2766
+ "module" : "MIP-MIB"
2767
+ },
2768
+ "mipSecRecentViolationIDHigh" : {
2769
+ "nodetype" : "member",
2770
+ "module" : "MIP-MIB"
2771
+ },
2772
+ "mipSecRecentViolationReason" : {
2773
+ "nodetype" : "member",
2774
+ "module" : "MIP-MIB"
2775
+ },
2776
+ }, # members
2777
+ "description" :
2778
+ """A collection of objects providing the management
2779
+ information for security violation logging of Mobile
2780
+ IP entities.""",
2781
+ }, # group
2782
+ "mnSystemGroup" : {
2783
+ "nodetype" : "group",
2784
+ "moduleName" : "MIP-MIB",
2785
+ "oid" : "1.3.6.1.2.1.44.3.1.4",
2786
+ "status" : "current",
2787
+ "members" : {
2788
+ "mnState" : {
2789
+ "nodetype" : "member",
2790
+ "module" : "MIP-MIB"
2791
+ },
2792
+ "mnCurrentHA" : {
2793
+ "nodetype" : "member",
2794
+ "module" : "MIP-MIB"
2795
+ },
2796
+ "mnHomeAddress" : {
2797
+ "nodetype" : "member",
2798
+ "module" : "MIP-MIB"
2799
+ },
2800
+ "mnHAStatus" : {
2801
+ "nodetype" : "member",
2802
+ "module" : "MIP-MIB"
2803
+ },
2804
+ }, # members
2805
+ "description" :
2806
+ """A collection of objects providing the basic
2807
+ management information for mobile nodes.""",
2808
+ }, # group
2809
+ "mnDiscoveryGroup" : {
2810
+ "nodetype" : "group",
2811
+ "moduleName" : "MIP-MIB",
2812
+ "oid" : "1.3.6.1.2.1.44.3.1.5",
2813
+ "status" : "current",
2814
+ "members" : {
2815
+ "mnFAAddress" : {
2816
+ "nodetype" : "member",
2817
+ "module" : "MIP-MIB"
2818
+ },
2819
+ "mnCOA" : {
2820
+ "nodetype" : "member",
2821
+ "module" : "MIP-MIB"
2822
+ },
2823
+ "mnAdvSourceAddress" : {
2824
+ "nodetype" : "member",
2825
+ "module" : "MIP-MIB"
2826
+ },
2827
+ "mnAdvSequence" : {
2828
+ "nodetype" : "member",
2829
+ "module" : "MIP-MIB"
2830
+ },
2831
+ "mnAdvFlags" : {
2832
+ "nodetype" : "member",
2833
+ "module" : "MIP-MIB"
2834
+ },
2835
+ "mnAdvMaxRegLifetime" : {
2836
+ "nodetype" : "member",
2837
+ "module" : "MIP-MIB"
2838
+ },
2839
+ "mnAdvMaxAdvLifetime" : {
2840
+ "nodetype" : "member",
2841
+ "module" : "MIP-MIB"
2842
+ },
2843
+ "mnAdvTimeReceived" : {
2844
+ "nodetype" : "member",
2845
+ "module" : "MIP-MIB"
2846
+ },
2847
+ "mnSolicitationsSent" : {
2848
+ "nodetype" : "member",
2849
+ "module" : "MIP-MIB"
2850
+ },
2851
+ "mnAdvertisementsReceived" : {
2852
+ "nodetype" : "member",
2853
+ "module" : "MIP-MIB"
2854
+ },
2855
+ "mnAdvsDroppedInvalidExtension" : {
2856
+ "nodetype" : "member",
2857
+ "module" : "MIP-MIB"
2858
+ },
2859
+ "mnAdvsIgnoredUnknownExtension" : {
2860
+ "nodetype" : "member",
2861
+ "module" : "MIP-MIB"
2862
+ },
2863
+ "mnMoveFromHAToFA" : {
2864
+ "nodetype" : "member",
2865
+ "module" : "MIP-MIB"
2866
+ },
2867
+ "mnMoveFromFAToFA" : {
2868
+ "nodetype" : "member",
2869
+ "module" : "MIP-MIB"
2870
+ },
2871
+ "mnMoveFromFAToHA" : {
2872
+ "nodetype" : "member",
2873
+ "module" : "MIP-MIB"
2874
+ },
2875
+ "mnGratuitousARPsSend" : {
2876
+ "nodetype" : "member",
2877
+ "module" : "MIP-MIB"
2878
+ },
2879
+ "mnAgentRebootsDectected" : {
2880
+ "nodetype" : "member",
2881
+ "module" : "MIP-MIB"
2882
+ },
2883
+ }, # members
2884
+ "description" :
2885
+ """A collection of objects providing management
2886
+ information for the Agent Discovery function within a
2887
+ mobile node.""",
2888
+ }, # group
2889
+ "mnRegistrationGroup" : {
2890
+ "nodetype" : "group",
2891
+ "moduleName" : "MIP-MIB",
2892
+ "oid" : "1.3.6.1.2.1.44.3.1.6",
2893
+ "status" : "current",
2894
+ "members" : {
2895
+ "mnRegAgentAddress" : {
2896
+ "nodetype" : "member",
2897
+ "module" : "MIP-MIB"
2898
+ },
2899
+ "mnRegCOA" : {
2900
+ "nodetype" : "member",
2901
+ "module" : "MIP-MIB"
2902
+ },
2903
+ "mnRegFlags" : {
2904
+ "nodetype" : "member",
2905
+ "module" : "MIP-MIB"
2906
+ },
2907
+ "mnRegIDLow" : {
2908
+ "nodetype" : "member",
2909
+ "module" : "MIP-MIB"
2910
+ },
2911
+ "mnRegIDHigh" : {
2912
+ "nodetype" : "member",
2913
+ "module" : "MIP-MIB"
2914
+ },
2915
+ "mnRegTimeRequested" : {
2916
+ "nodetype" : "member",
2917
+ "module" : "MIP-MIB"
2918
+ },
2919
+ "mnRegTimeRemaining" : {
2920
+ "nodetype" : "member",
2921
+ "module" : "MIP-MIB"
2922
+ },
2923
+ "mnRegTimeSent" : {
2924
+ "nodetype" : "member",
2925
+ "module" : "MIP-MIB"
2926
+ },
2927
+ "mnRegIsAccepted" : {
2928
+ "nodetype" : "member",
2929
+ "module" : "MIP-MIB"
2930
+ },
2931
+ "mnCOAIsLocal" : {
2932
+ "nodetype" : "member",
2933
+ "module" : "MIP-MIB"
2934
+ },
2935
+ "mnRegRequestsSent" : {
2936
+ "nodetype" : "member",
2937
+ "module" : "MIP-MIB"
2938
+ },
2939
+ "mnRegRepliesRecieved" : {
2940
+ "nodetype" : "member",
2941
+ "module" : "MIP-MIB"
2942
+ },
2943
+ "mnDeRegRequestsSent" : {
2944
+ "nodetype" : "member",
2945
+ "module" : "MIP-MIB"
2946
+ },
2947
+ "mnDeRegRepliesRecieved" : {
2948
+ "nodetype" : "member",
2949
+ "module" : "MIP-MIB"
2950
+ },
2951
+ "mnRepliesInvalidHomeAddress" : {
2952
+ "nodetype" : "member",
2953
+ "module" : "MIP-MIB"
2954
+ },
2955
+ "mnRepliesUnknownHA" : {
2956
+ "nodetype" : "member",
2957
+ "module" : "MIP-MIB"
2958
+ },
2959
+ "mnRepliesUnknownFA" : {
2960
+ "nodetype" : "member",
2961
+ "module" : "MIP-MIB"
2962
+ },
2963
+ "mnRepliesInvalidID" : {
2964
+ "nodetype" : "member",
2965
+ "module" : "MIP-MIB"
2966
+ },
2967
+ "mnRepliesDroppedInvalidExtension" : {
2968
+ "nodetype" : "member",
2969
+ "module" : "MIP-MIB"
2970
+ },
2971
+ "mnRepliesIgnoredUnknownExtension" : {
2972
+ "nodetype" : "member",
2973
+ "module" : "MIP-MIB"
2974
+ },
2975
+ "mnRepliesHAAuthenticationFailure" : {
2976
+ "nodetype" : "member",
2977
+ "module" : "MIP-MIB"
2978
+ },
2979
+ "mnRepliesFAAuthenticationFailure" : {
2980
+ "nodetype" : "member",
2981
+ "module" : "MIP-MIB"
2982
+ },
2983
+ "mnRegRequestsAccepted" : {
2984
+ "nodetype" : "member",
2985
+ "module" : "MIP-MIB"
2986
+ },
2987
+ "mnRegRequestsDeniedByHA" : {
2988
+ "nodetype" : "member",
2989
+ "module" : "MIP-MIB"
2990
+ },
2991
+ "mnRegRequestsDeniedByFA" : {
2992
+ "nodetype" : "member",
2993
+ "module" : "MIP-MIB"
2994
+ },
2995
+ "mnRegRequestsDeniedByHADueToID" : {
2996
+ "nodetype" : "member",
2997
+ "module" : "MIP-MIB"
2998
+ },
2999
+ "mnRegRequestsWithDirectedBroadcast" : {
3000
+ "nodetype" : "member",
3001
+ "module" : "MIP-MIB"
3002
+ },
3003
+ }, # members
3004
+ "description" :
3005
+ """A collection of objects providing management
3006
+ information for the registration function within a
3007
+ mobile node.""",
3008
+ }, # group
3009
+ "maAdvertisementGroup" : {
3010
+ "nodetype" : "group",
3011
+ "moduleName" : "MIP-MIB",
3012
+ "oid" : "1.3.6.1.2.1.44.3.1.7",
3013
+ "status" : "current",
3014
+ "members" : {
3015
+ "maAdvMaxRegLifetime" : {
3016
+ "nodetype" : "member",
3017
+ "module" : "MIP-MIB"
3018
+ },
3019
+ "maAdvPrefixLengthInclusion" : {
3020
+ "nodetype" : "member",
3021
+ "module" : "MIP-MIB"
3022
+ },
3023
+ "maAdvAddress" : {
3024
+ "nodetype" : "member",
3025
+ "module" : "MIP-MIB"
3026
+ },
3027
+ "maAdvMaxInterval" : {
3028
+ "nodetype" : "member",
3029
+ "module" : "MIP-MIB"
3030
+ },
3031
+ "maAdvMinInterval" : {
3032
+ "nodetype" : "member",
3033
+ "module" : "MIP-MIB"
3034
+ },
3035
+ "maAdvMaxAdvLifetime" : {
3036
+ "nodetype" : "member",
3037
+ "module" : "MIP-MIB"
3038
+ },
3039
+ "maAdvResponseSolicitationOnly" : {
3040
+ "nodetype" : "member",
3041
+ "module" : "MIP-MIB"
3042
+ },
3043
+ "maAdvStatus" : {
3044
+ "nodetype" : "member",
3045
+ "module" : "MIP-MIB"
3046
+ },
3047
+ "maAdvertisementsSent" : {
3048
+ "nodetype" : "member",
3049
+ "module" : "MIP-MIB"
3050
+ },
3051
+ "maAdvsSentForSolicitation" : {
3052
+ "nodetype" : "member",
3053
+ "module" : "MIP-MIB"
3054
+ },
3055
+ "maSolicitationsReceived" : {
3056
+ "nodetype" : "member",
3057
+ "module" : "MIP-MIB"
3058
+ },
3059
+ }, # members
3060
+ "description" :
3061
+ """A collection of objects providing management
3062
+ information for the Agent Advertisement function
3063
+ within mobility agents.""",
3064
+ }, # group
3065
+ "faSystemGroup" : {
3066
+ "nodetype" : "group",
3067
+ "moduleName" : "MIP-MIB",
3068
+ "oid" : "1.3.6.1.2.1.44.3.1.8",
3069
+ "status" : "current",
3070
+ "members" : {
3071
+ "faCOAStatus" : {
3072
+ "nodetype" : "member",
3073
+ "module" : "MIP-MIB"
3074
+ },
3075
+ }, # members
3076
+ "description" :
3077
+ """A collection of objects providing the basic
3078
+ management information for foreign agents.""",
3079
+ }, # group
3080
+ "faAdvertisementGroup" : {
3081
+ "nodetype" : "group",
3082
+ "moduleName" : "MIP-MIB",
3083
+ "oid" : "1.3.6.1.2.1.44.3.1.9",
3084
+ "status" : "current",
3085
+ "members" : {
3086
+ "faIsBusy" : {
3087
+ "nodetype" : "member",
3088
+ "module" : "MIP-MIB"
3089
+ },
3090
+ "faRegistrationRequired" : {
3091
+ "nodetype" : "member",
3092
+ "module" : "MIP-MIB"
3093
+ },
3094
+ }, # members
3095
+ "description" :
3096
+ """A collection of objects providing supplemental
3097
+ management information for the Agent Advertisement
3098
+ function within a foreign agent.""",
3099
+ }, # group
3100
+ "faRegistrationGroup" : {
3101
+ "nodetype" : "group",
3102
+ "moduleName" : "MIP-MIB",
3103
+ "oid" : "1.3.6.1.2.1.44.3.1.10",
3104
+ "status" : "current",
3105
+ "members" : {
3106
+ "faVisitorIPAddress" : {
3107
+ "nodetype" : "member",
3108
+ "module" : "MIP-MIB"
3109
+ },
3110
+ "faVisitorHomeAddress" : {
3111
+ "nodetype" : "member",
3112
+ "module" : "MIP-MIB"
3113
+ },
3114
+ "faVisitorHomeAgentAddress" : {
3115
+ "nodetype" : "member",
3116
+ "module" : "MIP-MIB"
3117
+ },
3118
+ "faVisitorTimeGranted" : {
3119
+ "nodetype" : "member",
3120
+ "module" : "MIP-MIB"
3121
+ },
3122
+ "faVisitorTimeRemaining" : {
3123
+ "nodetype" : "member",
3124
+ "module" : "MIP-MIB"
3125
+ },
3126
+ "faVisitorRegFlags" : {
3127
+ "nodetype" : "member",
3128
+ "module" : "MIP-MIB"
3129
+ },
3130
+ "faVisitorRegIDLow" : {
3131
+ "nodetype" : "member",
3132
+ "module" : "MIP-MIB"
3133
+ },
3134
+ "faVisitorRegIDHigh" : {
3135
+ "nodetype" : "member",
3136
+ "module" : "MIP-MIB"
3137
+ },
3138
+ "faVisitorRegIsAccepted" : {
3139
+ "nodetype" : "member",
3140
+ "module" : "MIP-MIB"
3141
+ },
3142
+ "faRegRequestsReceived" : {
3143
+ "nodetype" : "member",
3144
+ "module" : "MIP-MIB"
3145
+ },
3146
+ "faRegRequestsRelayed" : {
3147
+ "nodetype" : "member",
3148
+ "module" : "MIP-MIB"
3149
+ },
3150
+ "faReasonUnspecified" : {
3151
+ "nodetype" : "member",
3152
+ "module" : "MIP-MIB"
3153
+ },
3154
+ "faAdmProhibited" : {
3155
+ "nodetype" : "member",
3156
+ "module" : "MIP-MIB"
3157
+ },
3158
+ "faInsufficientResource" : {
3159
+ "nodetype" : "member",
3160
+ "module" : "MIP-MIB"
3161
+ },
3162
+ "faMNAuthenticationFailure" : {
3163
+ "nodetype" : "member",
3164
+ "module" : "MIP-MIB"
3165
+ },
3166
+ "faRegLifetimeTooLong" : {
3167
+ "nodetype" : "member",
3168
+ "module" : "MIP-MIB"
3169
+ },
3170
+ "faPoorlyFormedRequests" : {
3171
+ "nodetype" : "member",
3172
+ "module" : "MIP-MIB"
3173
+ },
3174
+ "faEncapsulationUnavailable" : {
3175
+ "nodetype" : "member",
3176
+ "module" : "MIP-MIB"
3177
+ },
3178
+ "faVJCompressionUnavailable" : {
3179
+ "nodetype" : "member",
3180
+ "module" : "MIP-MIB"
3181
+ },
3182
+ "faHAUnreachable" : {
3183
+ "nodetype" : "member",
3184
+ "module" : "MIP-MIB"
3185
+ },
3186
+ "faRegRepliesRecieved" : {
3187
+ "nodetype" : "member",
3188
+ "module" : "MIP-MIB"
3189
+ },
3190
+ "faRegRepliesRelayed" : {
3191
+ "nodetype" : "member",
3192
+ "module" : "MIP-MIB"
3193
+ },
3194
+ "faHAAuthenticationFailure" : {
3195
+ "nodetype" : "member",
3196
+ "module" : "MIP-MIB"
3197
+ },
3198
+ "faPoorlyFormedReplies" : {
3199
+ "nodetype" : "member",
3200
+ "module" : "MIP-MIB"
3201
+ },
3202
+ }, # members
3203
+ "description" :
3204
+ """A collection of objects providing management
3205
+ information for the registration function within a
3206
+ foreign agent.""",
3207
+ }, # group
3208
+ "haRegistrationGroup" : {
3209
+ "nodetype" : "group",
3210
+ "moduleName" : "MIP-MIB",
3211
+ "oid" : "1.3.6.1.2.1.44.3.1.11",
3212
+ "status" : "current",
3213
+ "members" : {
3214
+ "haMobilityBindingMN" : {
3215
+ "nodetype" : "member",
3216
+ "module" : "MIP-MIB"
3217
+ },
3218
+ "haMobilityBindingCOA" : {
3219
+ "nodetype" : "member",
3220
+ "module" : "MIP-MIB"
3221
+ },
3222
+ "haMobilityBindingSourceAddress" : {
3223
+ "nodetype" : "member",
3224
+ "module" : "MIP-MIB"
3225
+ },
3226
+ "haMobilityBindingRegFlags" : {
3227
+ "nodetype" : "member",
3228
+ "module" : "MIP-MIB"
3229
+ },
3230
+ "haMobilityBindingRegIDLow" : {
3231
+ "nodetype" : "member",
3232
+ "module" : "MIP-MIB"
3233
+ },
3234
+ "haMobilityBindingRegIDHigh" : {
3235
+ "nodetype" : "member",
3236
+ "module" : "MIP-MIB"
3237
+ },
3238
+ "haMobilityBindingTimeGranted" : {
3239
+ "nodetype" : "member",
3240
+ "module" : "MIP-MIB"
3241
+ },
3242
+ "haMobilityBindingTimeRemaining" : {
3243
+ "nodetype" : "member",
3244
+ "module" : "MIP-MIB"
3245
+ },
3246
+ "haRegistrationAccepted" : {
3247
+ "nodetype" : "member",
3248
+ "module" : "MIP-MIB"
3249
+ },
3250
+ "haMultiBindingUnsupported" : {
3251
+ "nodetype" : "member",
3252
+ "module" : "MIP-MIB"
3253
+ },
3254
+ "haReasonUnspecified" : {
3255
+ "nodetype" : "member",
3256
+ "module" : "MIP-MIB"
3257
+ },
3258
+ "haAdmProhibited" : {
3259
+ "nodetype" : "member",
3260
+ "module" : "MIP-MIB"
3261
+ },
3262
+ "haInsufficientResource" : {
3263
+ "nodetype" : "member",
3264
+ "module" : "MIP-MIB"
3265
+ },
3266
+ "haMNAuthenticationFailure" : {
3267
+ "nodetype" : "member",
3268
+ "module" : "MIP-MIB"
3269
+ },
3270
+ "haFAAuthenticationFailure" : {
3271
+ "nodetype" : "member",
3272
+ "module" : "MIP-MIB"
3273
+ },
3274
+ "haIDMismatch" : {
3275
+ "nodetype" : "member",
3276
+ "module" : "MIP-MIB"
3277
+ },
3278
+ "haPoorlyFormedRequest" : {
3279
+ "nodetype" : "member",
3280
+ "module" : "MIP-MIB"
3281
+ },
3282
+ "haTooManyBindings" : {
3283
+ "nodetype" : "member",
3284
+ "module" : "MIP-MIB"
3285
+ },
3286
+ "haUnknownHA" : {
3287
+ "nodetype" : "member",
3288
+ "module" : "MIP-MIB"
3289
+ },
3290
+ "haGratuitiousARPsSent" : {
3291
+ "nodetype" : "member",
3292
+ "module" : "MIP-MIB"
3293
+ },
3294
+ "haProxyARPsSent" : {
3295
+ "nodetype" : "member",
3296
+ "module" : "MIP-MIB"
3297
+ },
3298
+ "haRegRequestsReceived" : {
3299
+ "nodetype" : "member",
3300
+ "module" : "MIP-MIB"
3301
+ },
3302
+ "haDeRegRequestsReceived" : {
3303
+ "nodetype" : "member",
3304
+ "module" : "MIP-MIB"
3305
+ },
3306
+ "haRegRepliesSent" : {
3307
+ "nodetype" : "member",
3308
+ "module" : "MIP-MIB"
3309
+ },
3310
+ "haDeRegRepliesSent" : {
3311
+ "nodetype" : "member",
3312
+ "module" : "MIP-MIB"
3313
+ },
3314
+ }, # members
3315
+ "description" :
3316
+ """A collection of objects providing management
3317
+ information for the registration function within a
3318
+ home agent.""",
3319
+ }, # group
3320
+ "haRegNodeCountersGroup" : {
3321
+ "nodetype" : "group",
3322
+ "moduleName" : "MIP-MIB",
3323
+ "oid" : "1.3.6.1.2.1.44.3.1.12",
3324
+ "status" : "current",
3325
+ "members" : {
3326
+ "haServiceRequestsAccepted" : {
3327
+ "nodetype" : "member",
3328
+ "module" : "MIP-MIB"
3329
+ },
3330
+ "haServiceRequestsDenied" : {
3331
+ "nodetype" : "member",
3332
+ "module" : "MIP-MIB"
3333
+ },
3334
+ "haOverallServiceTime" : {
3335
+ "nodetype" : "member",
3336
+ "module" : "MIP-MIB"
3337
+ },
3338
+ "haRecentServiceAcceptedTime" : {
3339
+ "nodetype" : "member",
3340
+ "module" : "MIP-MIB"
3341
+ },
3342
+ "haRecentServiceDeniedTime" : {
3343
+ "nodetype" : "member",
3344
+ "module" : "MIP-MIB"
3345
+ },
3346
+ "haRecentServiceDeniedCode" : {
3347
+ "nodetype" : "member",
3348
+ "module" : "MIP-MIB"
3349
+ },
3350
+ }, # members
3351
+ "description" :
3352
+ """A collection of objects providing management
3353
+ information for counters related to the registration
3354
+ function within a home agent.""",
3355
+ }, # group
3356
+ "mipSecNotificationsGroup" : {
3357
+ "nodetype" : "group",
3358
+ "moduleName" : "MIP-MIB",
3359
+ "oid" : "1.3.6.1.2.1.44.3.1.13",
3360
+ "status" : "current",
3361
+ "members" : {
3362
+ "mipAuthFailure" : {
3363
+ "nodetype" : "member",
3364
+ "module" : "MIP-MIB"
3365
+ },
3366
+ }, # members
3367
+ "description" :
3368
+ """The notification related to security violations.""",
3369
+ }, # group
3370
+ }, # groups
3371
+
3372
+ "compliances" : {
3373
+ "mipCompliance" : {
3374
+ "nodetype" : "compliance",
3375
+ "moduleName" : "MIP-MIB",
3376
+ "oid" : "1.3.6.1.2.1.44.3.2.1",
3377
+ "status" : "current",
3378
+ "description" :
3379
+ """The compliance statement for SNMPv2 entities which
3380
+ implement the Mobile IP MIB.""",
3381
+ "requires" : {
3382
+ "mipSystemGroup" : {
3383
+ "nodetype" : "mandatory",
3384
+ "module" : "MIP-MIB"
3385
+ },
3386
+ "mipSecAssociationGroup" : {
3387
+ "nodetype" : "optional",
3388
+ "module" : "MIP-MIB",
3389
+ "description" :
3390
+ """This group is mandatory for Mobile IP entities (MN,
3391
+ FA, and HA) which support security associations.
3392
+ Mobile Nodes and Home Agents must implement this
3393
+ group. Foreign Agents must implement this group if
3394
+ they maintain any security associations.""",
3395
+ },
3396
+ "mipSecViolationGroup" : {
3397
+ "nodetype" : "optional",
3398
+ "module" : "MIP-MIB",
3399
+ "description" :
3400
+ """This group is mandatory for Mobile IP entities (MN,
3401
+ FA, and HA) that can log security violations.""",
3402
+ },
3403
+ "mnSystemGroup" : {
3404
+ "nodetype" : "optional",
3405
+ "module" : "MIP-MIB",
3406
+ "description" :
3407
+ """This group is mandatory for mobile node.""",
3408
+ },
3409
+ "mnDiscoveryGroup" : {
3410
+ "nodetype" : "optional",
3411
+ "module" : "MIP-MIB",
3412
+ "description" :
3413
+ """This group is mandatory for mobile nodes which
3414
+ implement the Agent Discovery function.""",
3415
+ },
3416
+ "mnRegistrationGroup" : {
3417
+ "nodetype" : "optional",
3418
+ "module" : "MIP-MIB",
3419
+ "description" :
3420
+ """This group is mandatory for mobile nodes.""",
3421
+ },
3422
+ "maAdvertisementGroup" : {
3423
+ "nodetype" : "optional",
3424
+ "module" : "MIP-MIB",
3425
+ "description" :
3426
+ """This group is mandatory for the mobility agents (HA
3427
+ and FA) since they must implement Agent
3428
+ Advertisement.""",
3429
+ },
3430
+ "faSystemGroup" : {
3431
+ "nodetype" : "optional",
3432
+ "module" : "MIP-MIB",
3433
+ "description" :
3434
+ """This group is mandatory for foreign agents.""",
3435
+ },
3436
+ "faAdvertisementGroup" : {
3437
+ "nodetype" : "optional",
3438
+ "module" : "MIP-MIB",
3439
+ "description" :
3440
+ """This group is mandatory for foreign agents.""",
3441
+ },
3442
+ "faRegistrationGroup" : {
3443
+ "nodetype" : "optional",
3444
+ "module" : "MIP-MIB",
3445
+ "description" :
3446
+ """This group is mandatory for foreign agents.""",
3447
+ },
3448
+ "haRegistrationGroup" : {
3449
+ "nodetype" : "optional",
3450
+ "module" : "MIP-MIB",
3451
+ "description" :
3452
+ """This group is mandatory for home agents.""",
3453
+ },
3454
+ "haRegNodeCountersGroup" : {
3455
+ "nodetype" : "optional",
3456
+ "module" : "MIP-MIB",
3457
+ "description" :
3458
+ """This group is mandatory for home agents which log
3459
+ registration counters for each individual mobile
3460
+ node.""",
3461
+ },
3462
+ "mipSecNotificationsGroup" : {
3463
+ "nodetype" : "optional",
3464
+ "module" : "MIP-MIB",
3465
+ "description" :
3466
+ """This group is mandatory for Mobile IP entities (MN,
3467
+ FA, and HA) that can report the security violations.""",
3468
+ },
3469
+ }, # requires
3470
+ }, # compliance
3471
+ }, # compliances
3472
+
3473
+ }