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,3866 @@
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 NAT-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/NAT-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "NAT-MIB",
11
+
12
+ "NAT-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF Transport Area""",
17
+ "contact" :
18
+ """
19
+ Rohit
20
+ Mascon Global Limited
21
+ #59/2 100 ft Ring Road
22
+ Banashankari II Stage
23
+ Bangalore 560 070
24
+ India
25
+ Phone: +91 80 2679 6227
26
+ Email: rrohit74@hotmail.com
27
+
28
+ P. Srisuresh
29
+ Caymas Systems, Inc.
30
+ 1179-A North McDowell Blvd.
31
+ Petaluma, CA 94954
32
+ Tel: (707) 283-5063
33
+ Email: srisuresh@yahoo.com
34
+
35
+ Rajiv Raghunarayan
36
+ Cisco Systems Inc.
37
+ 170 West Tasman Drive
38
+ San Jose, CA 95134
39
+ Phone: +1 408 853 9612
40
+ Email: raraghun@cisco.com
41
+
42
+ Nalinaksh Pai
43
+ Cisco Systems, Inc.
44
+ Prestige Waterford
45
+ No. 9, Brunton Road
46
+ Bangalore - 560 025
47
+
48
+
49
+
50
+ India
51
+ Phone: +91 80 532 1300
52
+ Email: npai@cisco.com
53
+
54
+ Cliff Wang
55
+ Information Security
56
+ Bank One Corp
57
+ 1111 Polaris Pkwy
58
+ Columbus, OH 43240
59
+ Phone: +1 614 213 6117
60
+ Email: cliffwang2000@yahoo.com""",
61
+ "description" :
62
+ """This MIB module defines the generic managed objects
63
+ for NAT.
64
+
65
+ Copyright (C) The Internet Society (2005). This version
66
+ of this MIB module is part of RFC 4008; see the RFC
67
+ itself for full legal notices.""",
68
+ "revisions" : (
69
+ {
70
+ "date" : "2005-03-21 00:00",
71
+ "description" :
72
+ """Initial version, published as RFC 4008.""",
73
+ },
74
+ ),
75
+ "identity node" : "natMIB",
76
+ },
77
+
78
+ "imports" : (
79
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
80
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
81
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
82
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
83
+ {"module" : "SNMPv2-SMI", "name" : "Gauge32"},
84
+ {"module" : "SNMPv2-SMI", "name" : "Counter64"},
85
+ {"module" : "SNMPv2-SMI", "name" : "TimeTicks"},
86
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
87
+ {"module" : "SNMPv2-SMI", "name" : "NOTIFICATION-TYPE"},
88
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
89
+ {"module" : "SNMPv2-TC", "name" : "StorageType"},
90
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
91
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
92
+ {"module" : "SNMPv2-CONF", "name" : "NOTIFICATION-GROUP"},
93
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
94
+ {"module" : "IF-MIB", "name" : "ifIndex"},
95
+ {"module" : "IF-MIB", "name" : "ifCounterDiscontinuityGroup"},
96
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
97
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
98
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
99
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
100
+ ),
101
+
102
+ "typedefs" : {
103
+ "NatProtocolType" : {
104
+ "basetype" : "Enumeration",
105
+ "status" : "current",
106
+ "none" : {
107
+ "nodetype" : "namednumber",
108
+ "number" : "1"
109
+ },
110
+ "other" : {
111
+ "nodetype" : "namednumber",
112
+ "number" : "2"
113
+ },
114
+ "icmp" : {
115
+ "nodetype" : "namednumber",
116
+ "number" : "3"
117
+ },
118
+ "udp" : {
119
+ "nodetype" : "namednumber",
120
+ "number" : "4"
121
+ },
122
+ "tcp" : {
123
+ "nodetype" : "namednumber",
124
+ "number" : "5"
125
+ },
126
+ "description" :
127
+ """A list of protocols that support the network
128
+ address translation. Inclusion of the values is
129
+ not intended to imply that those protocols
130
+ need to be supported. Any change in this
131
+ TEXTUAL-CONVENTION should also be reflected in
132
+ the definition of NatProtocolMap, which is a
133
+ BITS representation of this.""",
134
+ },
135
+ "NatProtocolMap" : {
136
+ "basetype" : "Bits",
137
+ "status" : "current",
138
+ "other" : {
139
+ "nodetype" : "namednumber",
140
+ "number" : "0"
141
+ },
142
+ "icmp" : {
143
+ "nodetype" : "namednumber",
144
+ "number" : "1"
145
+ },
146
+ "udp" : {
147
+ "nodetype" : "namednumber",
148
+ "number" : "2"
149
+ },
150
+ "tcp" : {
151
+ "nodetype" : "namednumber",
152
+ "number" : "3"
153
+ },
154
+ "description" :
155
+ """A bitmap of protocol identifiers that support
156
+
157
+
158
+
159
+ the network address translation. Any change
160
+ in this TEXTUAL-CONVENTION should also be
161
+ reflected in the definition of NatProtocolType.""",
162
+ },
163
+ "NatAddrMapId" : {
164
+ "basetype" : "Unsigned32",
165
+ "status" : "current",
166
+ "ranges" : [
167
+ {
168
+ "min" : "1",
169
+ "max" : "4294967295"
170
+ },
171
+ ],
172
+ "range" : {
173
+ "min" : "1",
174
+ "max" : "4294967295"
175
+ },
176
+ "format" : "d",
177
+ "description" :
178
+ """A unique id that is assigned to each address map
179
+ by a NAT enabled device.""",
180
+ },
181
+ "NatBindIdOrZero" : {
182
+ "basetype" : "Unsigned32",
183
+ "status" : "current",
184
+ "ranges" : [
185
+ {
186
+ "min" : "0",
187
+ "max" : "4294967295"
188
+ },
189
+ ],
190
+ "range" : {
191
+ "min" : "0",
192
+ "max" : "4294967295"
193
+ },
194
+ "format" : "d",
195
+ "description" :
196
+ """A unique id that is assigned to each bind by
197
+ a NAT enabled device. The bind id will be zero
198
+ in the case of a Symmetric NAT.""",
199
+ },
200
+ "NatBindId" : {
201
+ "basetype" : "Unsigned32",
202
+ "status" : "current",
203
+ "ranges" : [
204
+ {
205
+ "min" : "1",
206
+ "max" : "4294967295"
207
+ },
208
+ ],
209
+ "range" : {
210
+ "min" : "1",
211
+ "max" : "4294967295"
212
+ },
213
+ "format" : "d",
214
+ "description" :
215
+ """A unique id that is assigned to each bind by
216
+ a NAT enabled device.""",
217
+ },
218
+ "NatSessionId" : {
219
+ "basetype" : "Unsigned32",
220
+ "status" : "current",
221
+ "ranges" : [
222
+ {
223
+ "min" : "1",
224
+ "max" : "4294967295"
225
+ },
226
+ ],
227
+ "range" : {
228
+ "min" : "1",
229
+ "max" : "4294967295"
230
+ },
231
+ "format" : "d",
232
+ "description" :
233
+ """A unique id that is assigned to each session by
234
+ a NAT enabled device.""",
235
+ },
236
+ "NatBindMode" : {
237
+ "basetype" : "Enumeration",
238
+ "status" : "current",
239
+ "addressBind" : {
240
+ "nodetype" : "namednumber",
241
+ "number" : "1"
242
+ },
243
+ "addressPortBind" : {
244
+ "nodetype" : "namednumber",
245
+ "number" : "2"
246
+ },
247
+ "description" :
248
+ """An indication of whether the bind is
249
+ an address bind or an address port bind.""",
250
+ },
251
+ "NatAssociationType" : {
252
+ "basetype" : "Enumeration",
253
+ "status" : "current",
254
+ "static" : {
255
+ "nodetype" : "namednumber",
256
+ "number" : "1"
257
+ },
258
+ "dynamic" : {
259
+ "nodetype" : "namednumber",
260
+ "number" : "2"
261
+ },
262
+ "description" :
263
+ """An indication of whether the association is
264
+ static or dynamic.""",
265
+ },
266
+ "NatTranslationEntity" : {
267
+ "basetype" : "Bits",
268
+ "status" : "current",
269
+ "inboundSrcEndPoint" : {
270
+ "nodetype" : "namednumber",
271
+ "number" : "0"
272
+ },
273
+ "outboundDstEndPoint" : {
274
+ "nodetype" : "namednumber",
275
+ "number" : "1"
276
+ },
277
+ "inboundDstEndPoint" : {
278
+ "nodetype" : "namednumber",
279
+ "number" : "2"
280
+ },
281
+ "outboundSrcEndPoint" : {
282
+ "nodetype" : "namednumber",
283
+ "number" : "3"
284
+ },
285
+ "description" :
286
+ """An indication of a) the direction of a session for
287
+ which an address map entry, address bind or port
288
+ bind is applicable, and b) the entity (source or
289
+ destination) within the session that is subject to
290
+ translation.""",
291
+ },
292
+ }, # typedefs
293
+
294
+ "nodes" : {
295
+ "natMIB" : {
296
+ "nodetype" : "node",
297
+ "moduleName" : "NAT-MIB",
298
+ "oid" : "1.3.6.1.2.1.123",
299
+ "status" : "current",
300
+ }, # node
301
+ "natMIBNotifications" : {
302
+ "nodetype" : "node",
303
+ "moduleName" : "NAT-MIB",
304
+ "oid" : "1.3.6.1.2.1.123.0",
305
+ }, # node
306
+ "natMIBObjects" : {
307
+ "nodetype" : "node",
308
+ "moduleName" : "NAT-MIB",
309
+ "oid" : "1.3.6.1.2.1.123.1",
310
+ }, # node
311
+ "natDefTimeouts" : {
312
+ "nodetype" : "node",
313
+ "moduleName" : "NAT-MIB",
314
+ "oid" : "1.3.6.1.2.1.123.1.1",
315
+ }, # node
316
+ "natBindDefIdleTimeout" : {
317
+ "nodetype" : "scalar",
318
+ "moduleName" : "NAT-MIB",
319
+ "oid" : "1.3.6.1.2.1.123.1.1.1",
320
+ "status" : "current",
321
+ "syntax" : {
322
+ "type" : {
323
+ "basetype" : "Unsigned32",
324
+ "ranges" : [
325
+ {
326
+ "min" : "0",
327
+ "max" : "4294967295"
328
+ },
329
+ ],
330
+ "range" : {
331
+ "min" : "0",
332
+ "max" : "4294967295"
333
+ },
334
+ },
335
+ },
336
+ "access" : "readwrite",
337
+ "default" : "0",
338
+ "units" : "seconds",
339
+ "description" :
340
+ """The default Bind (Address Bind or Port Bind) idle
341
+ timeout parameter.
342
+
343
+ If the agent is capable of storing non-volatile
344
+ configuration, then the value of this object must be
345
+ restored after a re-initialization of the management
346
+ system.""",
347
+ }, # scalar
348
+ "natUdpDefIdleTimeout" : {
349
+ "nodetype" : "scalar",
350
+ "moduleName" : "NAT-MIB",
351
+ "oid" : "1.3.6.1.2.1.123.1.1.2",
352
+ "status" : "current",
353
+ "syntax" : {
354
+ "type" : {
355
+ "basetype" : "Unsigned32",
356
+ "ranges" : [
357
+ {
358
+ "min" : "1",
359
+ "max" : "4294967295"
360
+ },
361
+ ],
362
+ "range" : {
363
+ "min" : "1",
364
+ "max" : "4294967295"
365
+ },
366
+ },
367
+ },
368
+ "access" : "readwrite",
369
+ "default" : "300",
370
+ "units" : "seconds",
371
+ "description" :
372
+ """The default UDP idle timeout parameter.
373
+
374
+ If the agent is capable of storing non-volatile
375
+ configuration, then the value of this object must be
376
+ restored after a re-initialization of the management
377
+ system.""",
378
+ }, # scalar
379
+ "natIcmpDefIdleTimeout" : {
380
+ "nodetype" : "scalar",
381
+ "moduleName" : "NAT-MIB",
382
+ "oid" : "1.3.6.1.2.1.123.1.1.3",
383
+ "status" : "current",
384
+ "syntax" : {
385
+ "type" : {
386
+ "basetype" : "Unsigned32",
387
+ "ranges" : [
388
+ {
389
+ "min" : "1",
390
+ "max" : "4294967295"
391
+ },
392
+ ],
393
+ "range" : {
394
+ "min" : "1",
395
+ "max" : "4294967295"
396
+ },
397
+ },
398
+ },
399
+ "access" : "readwrite",
400
+ "default" : "300",
401
+ "units" : "seconds",
402
+ "description" :
403
+ """The default ICMP idle timeout parameter.
404
+
405
+ If the agent is capable of storing non-volatile
406
+ configuration, then the value of this object must be
407
+ restored after a re-initialization of the management
408
+ system.""",
409
+ }, # scalar
410
+ "natOtherDefIdleTimeout" : {
411
+ "nodetype" : "scalar",
412
+ "moduleName" : "NAT-MIB",
413
+ "oid" : "1.3.6.1.2.1.123.1.1.4",
414
+ "status" : "current",
415
+ "syntax" : {
416
+ "type" : {
417
+ "basetype" : "Unsigned32",
418
+ "ranges" : [
419
+ {
420
+ "min" : "1",
421
+ "max" : "4294967295"
422
+ },
423
+ ],
424
+ "range" : {
425
+ "min" : "1",
426
+ "max" : "4294967295"
427
+ },
428
+ },
429
+ },
430
+ "access" : "readwrite",
431
+ "default" : "60",
432
+ "units" : "seconds",
433
+ "description" :
434
+ """The default idle timeout parameter for protocols
435
+ represented by the value other (2) in
436
+ NatProtocolType.
437
+
438
+ If the agent is capable of storing non-volatile
439
+ configuration, then the value of this object must be
440
+ restored after a re-initialization of the management
441
+ system.""",
442
+ }, # scalar
443
+ "natTcpDefIdleTimeout" : {
444
+ "nodetype" : "scalar",
445
+ "moduleName" : "NAT-MIB",
446
+ "oid" : "1.3.6.1.2.1.123.1.1.5",
447
+ "status" : "current",
448
+ "syntax" : {
449
+ "type" : {
450
+ "basetype" : "Unsigned32",
451
+ "ranges" : [
452
+ {
453
+ "min" : "1",
454
+ "max" : "4294967295"
455
+ },
456
+ ],
457
+ "range" : {
458
+ "min" : "1",
459
+ "max" : "4294967295"
460
+ },
461
+ },
462
+ },
463
+ "access" : "readwrite",
464
+ "default" : "86400",
465
+ "units" : "seconds",
466
+ "description" :
467
+ """The default time interval that a NAT session for an
468
+ established TCP connection is allowed to remain
469
+ valid without any activity on the TCP connection.
470
+
471
+ If the agent is capable of storing non-volatile
472
+ configuration, then the value of this object must be
473
+ restored after a re-initialization of the management
474
+ system.""",
475
+ }, # scalar
476
+ "natTcpDefNegTimeout" : {
477
+ "nodetype" : "scalar",
478
+ "moduleName" : "NAT-MIB",
479
+ "oid" : "1.3.6.1.2.1.123.1.1.6",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : {
483
+ "basetype" : "Unsigned32",
484
+ "ranges" : [
485
+ {
486
+ "min" : "1",
487
+ "max" : "4294967295"
488
+ },
489
+ ],
490
+ "range" : {
491
+ "min" : "1",
492
+ "max" : "4294967295"
493
+ },
494
+ },
495
+ },
496
+ "access" : "readwrite",
497
+ "default" : "60",
498
+ "units" : "seconds",
499
+ "description" :
500
+ """The default time interval that a NAT session for a TCP
501
+ connection that is not in the established state
502
+ is allowed to remain valid without any activity on
503
+ the TCP connection.
504
+
505
+ If the agent is capable of storing non-volatile
506
+ configuration, then the value of this object must be
507
+ restored after a re-initialization of the management
508
+ system.""",
509
+ }, # scalar
510
+ "natNotifCtrl" : {
511
+ "nodetype" : "node",
512
+ "moduleName" : "NAT-MIB",
513
+ "oid" : "1.3.6.1.2.1.123.1.2",
514
+ }, # node
515
+ "natNotifThrottlingInterval" : {
516
+ "nodetype" : "scalar",
517
+ "moduleName" : "NAT-MIB",
518
+ "oid" : "1.3.6.1.2.1.123.1.2.1",
519
+ "status" : "current",
520
+ "syntax" : {
521
+ "type" : {
522
+ "basetype" : "Integer32",
523
+ "ranges" : [
524
+ {
525
+ "min" : "0",
526
+ "max" : "0"
527
+ },
528
+ {
529
+ "min" : "5",
530
+ "max" : "3600"
531
+ },
532
+ ],
533
+ "range" : {
534
+ "min" : "0",
535
+ "max" : "3600"
536
+ },
537
+ },
538
+ },
539
+ "access" : "readwrite",
540
+ "default" : "0",
541
+ "units" : "seconds",
542
+ "description" :
543
+ """This object controls the generation of the
544
+ natPacketDiscard notification.
545
+
546
+ If this object has a value of zero, then no
547
+ natPacketDiscard notifications will be transmitted by the
548
+ agent.
549
+
550
+ If this object has a non-zero value, then the agent must
551
+ not generate more than one natPacketDiscard
552
+ 'notification-event' in the indicated period, where a
553
+ 'notification-event' is the generation of a single
554
+ notification PDU type to a list of notification
555
+ destinations. If additional NAT packets are discarded
556
+ within the throttling period, then notification-events
557
+ for these changes must be suppressed by the agent until
558
+ the current throttling period expires.
559
+
560
+ If natNotifThrottlingInterval notification generation
561
+ is enabled, the suggested default throttling period is
562
+ 60 seconds, but generation of the natPacketDiscard
563
+ notification should be disabled by default.
564
+
565
+ If the agent is capable of storing non-volatile
566
+ configuration, then the value of this object must be
567
+ restored after a re-initialization of the management
568
+ system.
569
+
570
+ The actual transmission of notifications is controlled
571
+ via the MIB modules in RFC 3413.""",
572
+ }, # scalar
573
+ "natInterfaceTable" : {
574
+ "nodetype" : "table",
575
+ "moduleName" : "NAT-MIB",
576
+ "oid" : "1.3.6.1.2.1.123.1.3",
577
+ "status" : "current",
578
+ "description" :
579
+ """This table specifies the attributes for interfaces on a
580
+ device supporting NAT function.""",
581
+ }, # table
582
+ "natInterfaceEntry" : {
583
+ "nodetype" : "row",
584
+ "moduleName" : "NAT-MIB",
585
+ "oid" : "1.3.6.1.2.1.123.1.3.1",
586
+ "create" : "true",
587
+ "status" : "current",
588
+ "linkage" : [
589
+ "ifIndex",
590
+ ],
591
+ "description" :
592
+ """Each entry in the natInterfaceTable holds a set of
593
+ parameters for an interface, instantiated by
594
+ ifIndex. Therefore, the interface index must have been
595
+ assigned, according to the applicable procedures,
596
+ before it can be meaningfully used.
597
+ Generally, this means that the interface must exist.
598
+
599
+ When natStorageType is of type nonVolatile, however,
600
+ this may reflect the configuration for an interface whose
601
+ ifIndex has been assigned but for which the supporting
602
+ implementation is not currently present.""",
603
+ }, # row
604
+ "natInterfaceRealm" : {
605
+ "nodetype" : "column",
606
+ "moduleName" : "NAT-MIB",
607
+ "oid" : "1.3.6.1.2.1.123.1.3.1.1",
608
+ "status" : "current",
609
+ "syntax" : {
610
+ "type" : {
611
+ "basetype" : "Enumeration",
612
+ "private" : {
613
+ "nodetype" : "namednumber",
614
+ "number" : "1"
615
+ },
616
+ "public" : {
617
+ "nodetype" : "namednumber",
618
+ "number" : "2"
619
+ },
620
+ },
621
+ },
622
+ "access" : "readwrite",
623
+ "default" : "public",
624
+ "description" :
625
+ """This object identifies whether this interface is
626
+ connected to the private or the public realm.""",
627
+ }, # column
628
+ "natInterfaceServiceType" : {
629
+ "nodetype" : "column",
630
+ "moduleName" : "NAT-MIB",
631
+ "oid" : "1.3.6.1.2.1.123.1.3.1.2",
632
+ "status" : "current",
633
+ "syntax" : {
634
+ "type" : {
635
+ "basetype" : "Bits",
636
+ "basicNat" : {
637
+ "nodetype" : "namednumber",
638
+ "number" : "0"
639
+ },
640
+ "napt" : {
641
+ "nodetype" : "namednumber",
642
+ "number" : "1"
643
+ },
644
+ "bidirectionalNat" : {
645
+ "nodetype" : "namednumber",
646
+ "number" : "2"
647
+ },
648
+ "twiceNat" : {
649
+ "nodetype" : "namednumber",
650
+ "number" : "3"
651
+ },
652
+ },
653
+ },
654
+ "access" : "readwrite",
655
+ "description" :
656
+ """An indication of the direction in which new sessions
657
+ are permitted and the extent of translation done within
658
+ the IP and transport headers.""",
659
+ }, # column
660
+ "natInterfaceInTranslates" : {
661
+ "nodetype" : "column",
662
+ "moduleName" : "NAT-MIB",
663
+ "oid" : "1.3.6.1.2.1.123.1.3.1.3",
664
+ "status" : "current",
665
+ "syntax" : {
666
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
667
+ },
668
+ "access" : "readonly",
669
+ "description" :
670
+ """Number of packets received on this interface that
671
+ were translated.
672
+ Discontinuities in the value of this counter can occur at
673
+ reinitialization of the management system and at other
674
+ times as indicated by the value of
675
+ ifCounterDiscontinuityTime on the relevant interface.""",
676
+ }, # column
677
+ "natInterfaceOutTranslates" : {
678
+ "nodetype" : "column",
679
+ "moduleName" : "NAT-MIB",
680
+ "oid" : "1.3.6.1.2.1.123.1.3.1.4",
681
+ "status" : "current",
682
+ "syntax" : {
683
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
684
+ },
685
+ "access" : "readonly",
686
+ "description" :
687
+ """Number of translated packets that were sent out this
688
+ interface.
689
+
690
+ Discontinuities in the value of this counter can occur at
691
+ reinitialization of the management system and at other
692
+ times as indicated by the value of
693
+
694
+
695
+
696
+ ifCounterDiscontinuityTime on the relevant interface.""",
697
+ }, # column
698
+ "natInterfaceDiscards" : {
699
+ "nodetype" : "column",
700
+ "moduleName" : "NAT-MIB",
701
+ "oid" : "1.3.6.1.2.1.123.1.3.1.5",
702
+ "status" : "current",
703
+ "syntax" : {
704
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
705
+ },
706
+ "access" : "readonly",
707
+ "description" :
708
+ """Number of packets that had to be rejected/dropped due to
709
+ a lack of resources for this interface.
710
+
711
+ Discontinuities in the value of this counter can occur at
712
+ reinitialization of the management system and at other
713
+ times as indicated by the value of
714
+ ifCounterDiscontinuityTime on the relevant interface.""",
715
+ }, # column
716
+ "natInterfaceStorageType" : {
717
+ "nodetype" : "column",
718
+ "moduleName" : "NAT-MIB",
719
+ "oid" : "1.3.6.1.2.1.123.1.3.1.6",
720
+ "status" : "current",
721
+ "syntax" : {
722
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
723
+ },
724
+ "access" : "readwrite",
725
+ "default" : "nonVolatile",
726
+ "description" :
727
+ """The storage type for this conceptual row.
728
+ Conceptual rows having the value 'permanent'
729
+ need not allow write-access to any columnar objects
730
+ in the row.""",
731
+ "reference" :
732
+ """Textual Conventions for SMIv2, Section 2.""",
733
+ }, # column
734
+ "natInterfaceRowStatus" : {
735
+ "nodetype" : "column",
736
+ "moduleName" : "NAT-MIB",
737
+ "oid" : "1.3.6.1.2.1.123.1.3.1.7",
738
+ "status" : "current",
739
+ "syntax" : {
740
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
741
+ },
742
+ "access" : "readwrite",
743
+ "description" :
744
+ """The status of this conceptual row.
745
+
746
+ Until instances of all corresponding columns are
747
+ appropriately configured, the value of the
748
+ corresponding instance of the natInterfaceRowStatus
749
+ column is 'notReady'.
750
+
751
+
752
+ In particular, a newly created row cannot be made
753
+ active until the corresponding instance of
754
+ natInterfaceServiceType has been set.
755
+
756
+
757
+
758
+
759
+ None of the objects in this row may be modified
760
+ while the value of this object is active(1).""",
761
+ "reference" :
762
+ """Textual Conventions for SMIv2, Section 2.""",
763
+ }, # column
764
+ "natAddrMapTable" : {
765
+ "nodetype" : "table",
766
+ "moduleName" : "NAT-MIB",
767
+ "oid" : "1.3.6.1.2.1.123.1.4",
768
+ "status" : "current",
769
+ "description" :
770
+ """This table lists address map parameters for NAT.""",
771
+ }, # table
772
+ "natAddrMapEntry" : {
773
+ "nodetype" : "row",
774
+ "moduleName" : "NAT-MIB",
775
+ "oid" : "1.3.6.1.2.1.123.1.4.1",
776
+ "create" : "true",
777
+ "status" : "current",
778
+ "linkage" : [
779
+ "ifIndex",
780
+ "natAddrMapIndex",
781
+ ],
782
+ "description" :
783
+ """This entry represents an address map to be used for
784
+ NAT and contributes to the dynamic and/or static
785
+ address mapping tables of the NAT device.""",
786
+ }, # row
787
+ "natAddrMapIndex" : {
788
+ "nodetype" : "column",
789
+ "moduleName" : "NAT-MIB",
790
+ "oid" : "1.3.6.1.2.1.123.1.4.1.1",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"NAT-MIB", "name" : "NatAddrMapId"},
794
+ },
795
+ "access" : "noaccess",
796
+ "description" :
797
+ """Along with ifIndex, this object uniquely
798
+ identifies an entry in the natAddrMapTable.
799
+ Address map entries are applied in the order
800
+ specified by natAddrMapIndex.""",
801
+ }, # column
802
+ "natAddrMapName" : {
803
+ "nodetype" : "column",
804
+ "moduleName" : "NAT-MIB",
805
+ "oid" : "1.3.6.1.2.1.123.1.4.1.2",
806
+ "status" : "current",
807
+ "syntax" : {
808
+ "type" : {
809
+ "basetype" : "OctetString",
810
+ "parent module" : {
811
+ "name" : "SNMP-FRAMEWORK-MIB",
812
+ "type" : "SnmpAdminString",
813
+ },
814
+ "ranges" : [
815
+ {
816
+ "min" : "1",
817
+ "max" : "32"
818
+ },
819
+ ],
820
+ "range" : {
821
+ "min" : "1",
822
+ "max" : "32"
823
+ },
824
+ },
825
+ },
826
+ "access" : "readwrite",
827
+ "description" :
828
+ """Name identifying all map entries in the table associated
829
+ with the same interface. All map entries with the same
830
+ ifIndex MUST have the same map name.""",
831
+ }, # column
832
+ "natAddrMapEntryType" : {
833
+ "nodetype" : "column",
834
+ "moduleName" : "NAT-MIB",
835
+ "oid" : "1.3.6.1.2.1.123.1.4.1.3",
836
+ "status" : "current",
837
+ "syntax" : {
838
+ "type" : { "module" :"NAT-MIB", "name" : "NatAssociationType"},
839
+ },
840
+ "access" : "readwrite",
841
+ "description" :
842
+ """This parameter can be used to set up static
843
+ or dynamic address maps.""",
844
+ }, # column
845
+ "natAddrMapTranslationEntity" : {
846
+ "nodetype" : "column",
847
+ "moduleName" : "NAT-MIB",
848
+ "oid" : "1.3.6.1.2.1.123.1.4.1.4",
849
+ "status" : "current",
850
+ "syntax" : {
851
+ "type" : { "module" :"NAT-MIB", "name" : "NatTranslationEntity"},
852
+ },
853
+ "access" : "readwrite",
854
+ "description" :
855
+ """The end-point entity (source or destination) in
856
+ inbound or outbound sessions (i.e., first packets) that
857
+ may be translated by an address map entry.
858
+
859
+ Session direction (inbound or outbound) is
860
+ derived from the direction of the first packet
861
+ of a session traversing a NAT interface.
862
+ NAT address (and Transport-ID) maps may be defined
863
+
864
+
865
+
866
+ to effect inbound or outbound sessions.
867
+
868
+ Traditionally, address maps for Basic NAT and NAPT are
869
+ configured on a public interface for outbound sessions,
870
+ effecting translation of source end-point. The value of
871
+ this object must be set to outboundSrcEndPoint for
872
+ those interfaces.
873
+
874
+ Alternately, if address maps for Basic NAT and NAPT were
875
+ to be configured on a private interface, the desired
876
+ value for this object for the map entries
877
+ would be inboundSrcEndPoint (i.e., effecting translation
878
+ of source end-point for inbound sessions).
879
+
880
+ If TwiceNAT were to be configured on a private interface,
881
+ the desired value for this object for the map entries
882
+ would be a bitmask of inboundSrcEndPoint and
883
+ inboundDstEndPoint.""",
884
+ }, # column
885
+ "natAddrMapLocalAddrType" : {
886
+ "nodetype" : "column",
887
+ "moduleName" : "NAT-MIB",
888
+ "oid" : "1.3.6.1.2.1.123.1.4.1.5",
889
+ "status" : "current",
890
+ "syntax" : {
891
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
892
+ },
893
+ "access" : "readwrite",
894
+ "description" :
895
+ """This object specifies the address type used for
896
+ natAddrMapLocalAddrFrom and natAddrMapLocalAddrTo.""",
897
+ }, # column
898
+ "natAddrMapLocalAddrFrom" : {
899
+ "nodetype" : "column",
900
+ "moduleName" : "NAT-MIB",
901
+ "oid" : "1.3.6.1.2.1.123.1.4.1.6",
902
+ "status" : "current",
903
+ "syntax" : {
904
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
905
+ },
906
+ "access" : "readwrite",
907
+ "description" :
908
+ """This object specifies the first IP address of the range
909
+ of IP addresses mapped by this translation entry. The
910
+ value of this object must be less than or equal to the
911
+ value of the natAddrMapLocalAddrTo object.
912
+
913
+ The type of this address is determined by the value of
914
+ the natAddrMapLocalAddrType object.""",
915
+ }, # column
916
+ "natAddrMapLocalAddrTo" : {
917
+ "nodetype" : "column",
918
+ "moduleName" : "NAT-MIB",
919
+ "oid" : "1.3.6.1.2.1.123.1.4.1.7",
920
+ "status" : "current",
921
+ "syntax" : {
922
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
923
+ },
924
+ "access" : "readwrite",
925
+ "description" :
926
+ """This object specifies the last IP address of the range of
927
+ IP addresses mapped by this translation entry. If only
928
+ a single address is being mapped, the value of this object
929
+ is equal to the value of natAddrMapLocalAddrFrom. For a
930
+ static NAT, the number of addresses in the range defined
931
+ by natAddrMapLocalAddrFrom and natAddrMapLocalAddrTo must
932
+ be equal to the number of addresses in the range defined by
933
+ natAddrMapGlobalAddrFrom and natAddrMapGlobalAddrTo.
934
+ The value of this object must be greater than or equal to
935
+ the value of the natAddrMapLocalAddrFrom object.
936
+
937
+ The type of this address is determined by the value of
938
+ the natAddrMapLocalAddrType object.""",
939
+ }, # column
940
+ "natAddrMapLocalPortFrom" : {
941
+ "nodetype" : "column",
942
+ "moduleName" : "NAT-MIB",
943
+ "oid" : "1.3.6.1.2.1.123.1.4.1.8",
944
+ "status" : "current",
945
+ "syntax" : {
946
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
947
+ },
948
+ "access" : "readwrite",
949
+ "default" : "0",
950
+ "description" :
951
+ """If this conceptual row describes a Basic NAT address
952
+ mapping, then the value of this object must be zero. If
953
+ this conceptual row describes NAPT, then the value of
954
+ this object specifies the first port number in the range
955
+ of ports being mapped.
956
+
957
+ The value of this object must be less than or equal to the
958
+ value of the natAddrMapLocalPortTo object. If the
959
+ translation specifies a single port, then the value of this
960
+ object is equal to the value of natAddrMapLocalPortTo.""",
961
+ }, # column
962
+ "natAddrMapLocalPortTo" : {
963
+ "nodetype" : "column",
964
+ "moduleName" : "NAT-MIB",
965
+ "oid" : "1.3.6.1.2.1.123.1.4.1.9",
966
+ "status" : "current",
967
+ "syntax" : {
968
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
969
+ },
970
+ "access" : "readwrite",
971
+ "default" : "0",
972
+ "description" :
973
+ """If this conceptual row describes a Basic NAT address
974
+ mapping, then the value of this object must be zero. If
975
+ this conceptual row describes NAPT, then the value of
976
+ this object specifies the last port number in the range
977
+ of ports being mapped.
978
+
979
+ The value of this object must be greater than or equal to
980
+ the value of the natAddrMapLocalPortFrom object. If the
981
+ translation specifies a single port, then the value of this
982
+ object is equal to the value of natAddrMapLocalPortFrom.""",
983
+ }, # column
984
+ "natAddrMapGlobalAddrType" : {
985
+ "nodetype" : "column",
986
+ "moduleName" : "NAT-MIB",
987
+ "oid" : "1.3.6.1.2.1.123.1.4.1.10",
988
+ "status" : "current",
989
+ "syntax" : {
990
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
991
+ },
992
+ "access" : "readwrite",
993
+ "description" :
994
+ """This object specifies the address type used for
995
+ natAddrMapGlobalAddrFrom and natAddrMapGlobalAddrTo.""",
996
+ }, # column
997
+ "natAddrMapGlobalAddrFrom" : {
998
+ "nodetype" : "column",
999
+ "moduleName" : "NAT-MIB",
1000
+ "oid" : "1.3.6.1.2.1.123.1.4.1.11",
1001
+ "status" : "current",
1002
+ "syntax" : {
1003
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1004
+ },
1005
+ "access" : "readwrite",
1006
+ "description" :
1007
+ """This object specifies the first IP address of the range of
1008
+ IP addresses being mapped to. The value of this object
1009
+ must be less than or equal to the value of the
1010
+ natAddrMapGlobalAddrTo object.
1011
+
1012
+ The type of this address is determined by the value of
1013
+ the natAddrMapGlobalAddrType object.""",
1014
+ }, # column
1015
+ "natAddrMapGlobalAddrTo" : {
1016
+ "nodetype" : "column",
1017
+ "moduleName" : "NAT-MIB",
1018
+ "oid" : "1.3.6.1.2.1.123.1.4.1.12",
1019
+ "status" : "current",
1020
+ "syntax" : {
1021
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1022
+ },
1023
+ "access" : "readwrite",
1024
+ "description" :
1025
+ """This object specifies the last IP address of the range of
1026
+ IP addresses being mapped to. If only a single address is
1027
+ being mapped to, the value of this object is equal to the
1028
+ value of natAddrMapGlobalAddrFrom. For a static NAT, the
1029
+ number of addresses in the range defined by
1030
+ natAddrMapGlobalAddrFrom and natAddrMapGlobalAddrTo must be
1031
+ equal to the number of addresses in the range defined by
1032
+ natAddrMapLocalAddrFrom and natAddrMapLocalAddrTo.
1033
+ The value of this object must be greater than or equal to
1034
+ the value of the natAddrMapGlobalAddrFrom object.
1035
+
1036
+ The type of this address is determined by the value of
1037
+ the natAddrMapGlobalAddrType object.""",
1038
+ }, # column
1039
+ "natAddrMapGlobalPortFrom" : {
1040
+ "nodetype" : "column",
1041
+ "moduleName" : "NAT-MIB",
1042
+ "oid" : "1.3.6.1.2.1.123.1.4.1.13",
1043
+ "status" : "current",
1044
+ "syntax" : {
1045
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
1046
+ },
1047
+ "access" : "readwrite",
1048
+ "default" : "0",
1049
+ "description" :
1050
+ """If this conceptual row describes a Basic NAT address
1051
+ mapping, then the value of this object must be zero. If
1052
+ this conceptual row describes NAPT, then the value of
1053
+ this object specifies the first port number in the range
1054
+ of ports being mapped to.
1055
+
1056
+
1057
+ The value of this object must be less than or equal to the
1058
+ value of the natAddrMapGlobalPortTo object. If the
1059
+ translation specifies a single port, then the value of this
1060
+ object is equal to the value natAddrMapGlobalPortTo.""",
1061
+ }, # column
1062
+ "natAddrMapGlobalPortTo" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "NAT-MIB",
1065
+ "oid" : "1.3.6.1.2.1.123.1.4.1.14",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
1069
+ },
1070
+ "access" : "readwrite",
1071
+ "default" : "0",
1072
+ "description" :
1073
+ """If this conceptual row describes a Basic NAT address
1074
+ mapping, then the value of this object must be zero. If
1075
+ this conceptual row describes NAPT, then the value of this
1076
+ object specifies the last port number in the range of
1077
+ ports being mapped to.
1078
+
1079
+ The value of this object must be greater than or equal to
1080
+ the value of the natAddrMapGlobalPortFrom object. If the
1081
+ translation specifies a single port, then the value of this
1082
+ object is equal to the value of natAddrMapGlobalPortFrom.""",
1083
+ }, # column
1084
+ "natAddrMapProtocol" : {
1085
+ "nodetype" : "column",
1086
+ "moduleName" : "NAT-MIB",
1087
+ "oid" : "1.3.6.1.2.1.123.1.4.1.15",
1088
+ "status" : "current",
1089
+ "syntax" : {
1090
+ "type" : { "module" :"NAT-MIB", "name" : "NatProtocolMap"},
1091
+ },
1092
+ "access" : "readwrite",
1093
+ "description" :
1094
+ """This object specifies a bitmap of protocol identifiers.""",
1095
+ }, # column
1096
+ "natAddrMapInTranslates" : {
1097
+ "nodetype" : "column",
1098
+ "moduleName" : "NAT-MIB",
1099
+ "oid" : "1.3.6.1.2.1.123.1.4.1.16",
1100
+ "status" : "current",
1101
+ "syntax" : {
1102
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1103
+ },
1104
+ "access" : "readonly",
1105
+ "description" :
1106
+ """The number of inbound packets pertaining to this address
1107
+ map entry that were translated.
1108
+
1109
+ Discontinuities in the value of this counter can occur at
1110
+ reinitialization of the management system and at other
1111
+ times, as indicated by the value of
1112
+ ifCounterDiscontinuityTime on the relevant interface.""",
1113
+ }, # column
1114
+ "natAddrMapOutTranslates" : {
1115
+ "nodetype" : "column",
1116
+ "moduleName" : "NAT-MIB",
1117
+ "oid" : "1.3.6.1.2.1.123.1.4.1.17",
1118
+ "status" : "current",
1119
+ "syntax" : {
1120
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1121
+ },
1122
+ "access" : "readonly",
1123
+ "description" :
1124
+ """The number of outbound packets pertaining to this
1125
+ address map entry that were translated.
1126
+
1127
+ Discontinuities in the value of this counter can occur at
1128
+ reinitialization of the management system and at other
1129
+ times, as indicated by the value of
1130
+ ifCounterDiscontinuityTime on the relevant interface.""",
1131
+ }, # column
1132
+ "natAddrMapDiscards" : {
1133
+ "nodetype" : "column",
1134
+ "moduleName" : "NAT-MIB",
1135
+ "oid" : "1.3.6.1.2.1.123.1.4.1.18",
1136
+ "status" : "current",
1137
+ "syntax" : {
1138
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1139
+ },
1140
+ "access" : "readonly",
1141
+ "description" :
1142
+ """The number of packets pertaining to this address map
1143
+ entry that were dropped due to lack of addresses in the
1144
+ address pool identified by this address map. The value of
1145
+ this object must always be zero in case of static
1146
+ address map.
1147
+
1148
+ Discontinuities in the value of this counter can occur at
1149
+ reinitialization of the management system and at other
1150
+ times, as indicated by the value of
1151
+ ifCounterDiscontinuityTime on the relevant interface.""",
1152
+ }, # column
1153
+ "natAddrMapAddrUsed" : {
1154
+ "nodetype" : "column",
1155
+ "moduleName" : "NAT-MIB",
1156
+ "oid" : "1.3.6.1.2.1.123.1.4.1.19",
1157
+ "status" : "current",
1158
+ "syntax" : {
1159
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1160
+ },
1161
+ "access" : "readonly",
1162
+ "description" :
1163
+ """The number of addresses pertaining to this address map
1164
+ that are currently being used from the NAT pool.
1165
+ The value of this object must always be zero in the case
1166
+
1167
+
1168
+
1169
+ of a static address map.""",
1170
+ }, # column
1171
+ "natAddrMapStorageType" : {
1172
+ "nodetype" : "column",
1173
+ "moduleName" : "NAT-MIB",
1174
+ "oid" : "1.3.6.1.2.1.123.1.4.1.20",
1175
+ "status" : "current",
1176
+ "syntax" : {
1177
+ "type" : { "module" :"SNMPv2-TC", "name" : "StorageType"},
1178
+ },
1179
+ "access" : "readwrite",
1180
+ "default" : "nonVolatile",
1181
+ "description" :
1182
+ """The storage type for this conceptual row.
1183
+ Conceptual rows having the value 'permanent'
1184
+ need not allow write-access to any columnar objects
1185
+ in the row.""",
1186
+ "reference" :
1187
+ """Textual Conventions for SMIv2, Section 2.""",
1188
+ }, # column
1189
+ "natAddrMapRowStatus" : {
1190
+ "nodetype" : "column",
1191
+ "moduleName" : "NAT-MIB",
1192
+ "oid" : "1.3.6.1.2.1.123.1.4.1.21",
1193
+ "status" : "current",
1194
+ "syntax" : {
1195
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
1196
+ },
1197
+ "access" : "readwrite",
1198
+ "description" :
1199
+ """The status of this conceptual row.
1200
+
1201
+ Until instances of all corresponding columns are
1202
+ appropriately configured, the value of the
1203
+ corresponding instance of the natAddrMapRowStatus
1204
+ column is 'notReady'.
1205
+
1206
+ None of the objects in this row may be modified
1207
+ while the value of this object is active(1).""",
1208
+ "reference" :
1209
+ """Textual Conventions for SMIv2, Section 2.""",
1210
+ }, # column
1211
+ "natAddrBindNumberOfEntries" : {
1212
+ "nodetype" : "scalar",
1213
+ "moduleName" : "NAT-MIB",
1214
+ "oid" : "1.3.6.1.2.1.123.1.5",
1215
+ "status" : "current",
1216
+ "syntax" : {
1217
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1218
+ },
1219
+ "access" : "readonly",
1220
+ "description" :
1221
+ """This object maintains a count of the number of entries
1222
+ that currently exist in the natAddrBindTable.""",
1223
+ }, # scalar
1224
+ "natAddrBindTable" : {
1225
+ "nodetype" : "table",
1226
+ "moduleName" : "NAT-MIB",
1227
+ "oid" : "1.3.6.1.2.1.123.1.6",
1228
+ "status" : "current",
1229
+ "description" :
1230
+ """This table holds information about the currently
1231
+ active NAT BINDs.""",
1232
+ }, # table
1233
+ "natAddrBindEntry" : {
1234
+ "nodetype" : "row",
1235
+ "moduleName" : "NAT-MIB",
1236
+ "oid" : "1.3.6.1.2.1.123.1.6.1",
1237
+ "status" : "current",
1238
+ "linkage" : [
1239
+ "ifIndex",
1240
+ "natAddrBindLocalAddrType",
1241
+ "natAddrBindLocalAddr",
1242
+ ],
1243
+ "description" :
1244
+ """Each entry in this table holds information about
1245
+ an active address BIND. These entries are lost
1246
+ upon agent restart.
1247
+
1248
+ This row has indexing which may create variables with
1249
+ more than 128 subidentifiers. Implementers of this table
1250
+ must be careful not to create entries that would result
1251
+ in OIDs which exceed the 128 subidentifier limit.
1252
+ Otherwise, the information cannot be accessed using
1253
+ SNMPv1, SNMPv2c or SNMPv3.""",
1254
+ }, # row
1255
+ "natAddrBindLocalAddrType" : {
1256
+ "nodetype" : "column",
1257
+ "moduleName" : "NAT-MIB",
1258
+ "oid" : "1.3.6.1.2.1.123.1.6.1.1",
1259
+ "status" : "current",
1260
+ "syntax" : {
1261
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1262
+ },
1263
+ "access" : "noaccess",
1264
+ "description" :
1265
+ """This object specifies the address type used for
1266
+ natAddrBindLocalAddr.""",
1267
+ }, # column
1268
+ "natAddrBindLocalAddr" : {
1269
+ "nodetype" : "column",
1270
+ "moduleName" : "NAT-MIB",
1271
+ "oid" : "1.3.6.1.2.1.123.1.6.1.2",
1272
+ "status" : "current",
1273
+ "syntax" : {
1274
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1275
+ },
1276
+ "access" : "noaccess",
1277
+ "description" :
1278
+ """This object represents the private-realm specific network
1279
+ layer address, which maps to the public-realm address
1280
+ represented by natAddrBindGlobalAddr.
1281
+
1282
+ The type of this address is determined by the value of
1283
+ the natAddrBindLocalAddrType object.""",
1284
+ }, # column
1285
+ "natAddrBindGlobalAddrType" : {
1286
+ "nodetype" : "column",
1287
+ "moduleName" : "NAT-MIB",
1288
+ "oid" : "1.3.6.1.2.1.123.1.6.1.3",
1289
+ "status" : "current",
1290
+ "syntax" : {
1291
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1292
+ },
1293
+ "access" : "readonly",
1294
+ "description" :
1295
+ """This object specifies the address type used for
1296
+ natAddrBindGlobalAddr.""",
1297
+ }, # column
1298
+ "natAddrBindGlobalAddr" : {
1299
+ "nodetype" : "column",
1300
+ "moduleName" : "NAT-MIB",
1301
+ "oid" : "1.3.6.1.2.1.123.1.6.1.4",
1302
+ "status" : "current",
1303
+ "syntax" : {
1304
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1305
+ },
1306
+ "access" : "readonly",
1307
+ "description" :
1308
+ """This object represents the public-realm network layer
1309
+ address that maps to the private-realm network layer
1310
+ address represented by natAddrBindLocalAddr.
1311
+
1312
+ The type of this address is determined by the value of
1313
+ the natAddrBindGlobalAddrType object.""",
1314
+ }, # column
1315
+ "natAddrBindId" : {
1316
+ "nodetype" : "column",
1317
+ "moduleName" : "NAT-MIB",
1318
+ "oid" : "1.3.6.1.2.1.123.1.6.1.5",
1319
+ "status" : "current",
1320
+ "syntax" : {
1321
+ "type" : { "module" :"NAT-MIB", "name" : "NatBindId"},
1322
+ },
1323
+ "access" : "readonly",
1324
+ "description" :
1325
+ """This object represents a bind id that is dynamically
1326
+ assigned to each bind by a NAT enabled device. Each
1327
+ bind is represented by a bind id that is
1328
+ unique across both, the natAddrBindTable and the
1329
+ natAddrPortBindTable.""",
1330
+ }, # column
1331
+ "natAddrBindTranslationEntity" : {
1332
+ "nodetype" : "column",
1333
+ "moduleName" : "NAT-MIB",
1334
+ "oid" : "1.3.6.1.2.1.123.1.6.1.6",
1335
+ "status" : "current",
1336
+ "syntax" : {
1337
+ "type" : { "module" :"NAT-MIB", "name" : "NatTranslationEntity"},
1338
+ },
1339
+ "access" : "readonly",
1340
+ "description" :
1341
+ """This object represents the direction of sessions
1342
+ for which this bind is applicable and the endpoint entity
1343
+ (source or destination) within the sessions that is
1344
+ subject to translation using the BIND.
1345
+
1346
+ Orientation of the bind can be a superset of
1347
+ translationEntity of the address map entry which
1348
+ forms the basis for this bind.
1349
+
1350
+ For example, if the translationEntity of an
1351
+ address map entry is outboundSrcEndPoint, the
1352
+ translationEntity of a bind derived from this
1353
+ map entry may either be outboundSrcEndPoint or
1354
+ it may be bidirectional (a bitmask of
1355
+ outboundSrcEndPoint and inboundDstEndPoint).""",
1356
+ }, # column
1357
+ "natAddrBindType" : {
1358
+ "nodetype" : "column",
1359
+ "moduleName" : "NAT-MIB",
1360
+ "oid" : "1.3.6.1.2.1.123.1.6.1.7",
1361
+ "status" : "current",
1362
+ "syntax" : {
1363
+ "type" : { "module" :"NAT-MIB", "name" : "NatAssociationType"},
1364
+ },
1365
+ "access" : "readonly",
1366
+ "description" :
1367
+ """This object indicates whether the bind is static or
1368
+ dynamic.""",
1369
+ }, # column
1370
+ "natAddrBindMapIndex" : {
1371
+ "nodetype" : "column",
1372
+ "moduleName" : "NAT-MIB",
1373
+ "oid" : "1.3.6.1.2.1.123.1.6.1.8",
1374
+ "status" : "current",
1375
+ "syntax" : {
1376
+ "type" : { "module" :"NAT-MIB", "name" : "NatAddrMapId"},
1377
+ },
1378
+ "access" : "readonly",
1379
+ "description" :
1380
+ """This object is a pointer to the natAddrMapTable entry
1381
+ (and the parameters of that entry) which was used in
1382
+ creating this BIND. This object, in conjunction with the
1383
+ ifIndex (which identifies a unique addrMapName) points to
1384
+
1385
+
1386
+
1387
+ a unique entry in the natAddrMapTable.""",
1388
+ }, # column
1389
+ "natAddrBindSessions" : {
1390
+ "nodetype" : "column",
1391
+ "moduleName" : "NAT-MIB",
1392
+ "oid" : "1.3.6.1.2.1.123.1.6.1.9",
1393
+ "status" : "current",
1394
+ "syntax" : {
1395
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1396
+ },
1397
+ "access" : "readonly",
1398
+ "description" :
1399
+ """Number of sessions currently using this BIND.""",
1400
+ }, # column
1401
+ "natAddrBindMaxIdleTime" : {
1402
+ "nodetype" : "column",
1403
+ "moduleName" : "NAT-MIB",
1404
+ "oid" : "1.3.6.1.2.1.123.1.6.1.10",
1405
+ "status" : "current",
1406
+ "syntax" : {
1407
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1408
+ },
1409
+ "access" : "readonly",
1410
+ "description" :
1411
+ """This object indicates the maximum time for
1412
+ which this bind can be idle with no sessions
1413
+ attached to it.
1414
+
1415
+ The value of this object is of relevance only for
1416
+ dynamic NAT.""",
1417
+ }, # column
1418
+ "natAddrBindCurrentIdleTime" : {
1419
+ "nodetype" : "column",
1420
+ "moduleName" : "NAT-MIB",
1421
+ "oid" : "1.3.6.1.2.1.123.1.6.1.11",
1422
+ "status" : "current",
1423
+ "syntax" : {
1424
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1425
+ },
1426
+ "access" : "readonly",
1427
+ "description" :
1428
+ """At any given instance, this object indicates the
1429
+ time that this bind has been idle without any sessions
1430
+ attached to it.
1431
+
1432
+ The value of this object is of relevance only for
1433
+ dynamic NAT.""",
1434
+ }, # column
1435
+ "natAddrBindInTranslates" : {
1436
+ "nodetype" : "column",
1437
+ "moduleName" : "NAT-MIB",
1438
+ "oid" : "1.3.6.1.2.1.123.1.6.1.12",
1439
+ "status" : "current",
1440
+ "syntax" : {
1441
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1442
+ },
1443
+ "access" : "readonly",
1444
+ "description" :
1445
+ """The number of inbound packets that were successfully
1446
+ translated by using this bind entry.
1447
+
1448
+ Discontinuities in the value of this counter can occur at
1449
+ reinitialization of the management system and at other
1450
+ times, as indicated by the value of
1451
+
1452
+
1453
+
1454
+ ifCounterDiscontinuityTime on the relevant interface.""",
1455
+ }, # column
1456
+ "natAddrBindOutTranslates" : {
1457
+ "nodetype" : "column",
1458
+ "moduleName" : "NAT-MIB",
1459
+ "oid" : "1.3.6.1.2.1.123.1.6.1.13",
1460
+ "status" : "current",
1461
+ "syntax" : {
1462
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1463
+ },
1464
+ "access" : "readonly",
1465
+ "description" :
1466
+ """The number of outbound packets that were successfully
1467
+ translated using this bind entry.
1468
+
1469
+ Discontinuities in the value of this counter can occur at
1470
+ reinitialization of the management system and at other
1471
+ times as indicated by the value of
1472
+ ifCounterDiscontinuityTime on the relevant interface.""",
1473
+ }, # column
1474
+ "natAddrPortBindNumberOfEntries" : {
1475
+ "nodetype" : "scalar",
1476
+ "moduleName" : "NAT-MIB",
1477
+ "oid" : "1.3.6.1.2.1.123.1.7",
1478
+ "status" : "current",
1479
+ "syntax" : {
1480
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1481
+ },
1482
+ "access" : "readonly",
1483
+ "description" :
1484
+ """This object maintains a count of the number of entries
1485
+ that currently exist in the natAddrPortBindTable.""",
1486
+ }, # scalar
1487
+ "natAddrPortBindTable" : {
1488
+ "nodetype" : "table",
1489
+ "moduleName" : "NAT-MIB",
1490
+ "oid" : "1.3.6.1.2.1.123.1.8",
1491
+ "status" : "current",
1492
+ "description" :
1493
+ """This table holds information about the currently
1494
+ active NAPT BINDs.""",
1495
+ }, # table
1496
+ "natAddrPortBindEntry" : {
1497
+ "nodetype" : "row",
1498
+ "moduleName" : "NAT-MIB",
1499
+ "oid" : "1.3.6.1.2.1.123.1.8.1",
1500
+ "status" : "current",
1501
+ "linkage" : [
1502
+ "ifIndex",
1503
+ "natAddrPortBindLocalAddrType",
1504
+ "natAddrPortBindLocalAddr",
1505
+ "natAddrPortBindLocalPort",
1506
+ "natAddrPortBindProtocol",
1507
+ ],
1508
+ "description" :
1509
+ """Each entry in the this table holds information
1510
+ about a NAPT bind that is currently active.
1511
+ These entries are lost upon agent restart.
1512
+
1513
+ This row has indexing which may create variables with
1514
+ more than 128 subidentifiers. Implementers of this table
1515
+ must be careful not to create entries which would result
1516
+ in OIDs that exceed the 128 subidentifier limit.
1517
+ Otherwise, the information cannot be accessed using
1518
+ SNMPv1, SNMPv2c or SNMPv3.""",
1519
+ }, # row
1520
+ "natAddrPortBindLocalAddrType" : {
1521
+ "nodetype" : "column",
1522
+ "moduleName" : "NAT-MIB",
1523
+ "oid" : "1.3.6.1.2.1.123.1.8.1.1",
1524
+ "status" : "current",
1525
+ "syntax" : {
1526
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1527
+ },
1528
+ "access" : "noaccess",
1529
+ "description" :
1530
+ """This object specifies the address type used for
1531
+ natAddrPortBindLocalAddr.""",
1532
+ }, # column
1533
+ "natAddrPortBindLocalAddr" : {
1534
+ "nodetype" : "column",
1535
+ "moduleName" : "NAT-MIB",
1536
+ "oid" : "1.3.6.1.2.1.123.1.8.1.2",
1537
+ "status" : "current",
1538
+ "syntax" : {
1539
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1540
+ },
1541
+ "access" : "noaccess",
1542
+ "description" :
1543
+ """This object represents the private-realm specific network
1544
+ layer address which, in conjunction with
1545
+ natAddrPortBindLocalPort, maps to the public-realm
1546
+ network layer address and transport id represented by
1547
+ natAddrPortBindGlobalAddr and natAddrPortBindGlobalPort
1548
+ respectively.
1549
+
1550
+
1551
+ The type of this address is determined by the value of
1552
+ the natAddrPortBindLocalAddrType object.""",
1553
+ }, # column
1554
+ "natAddrPortBindLocalPort" : {
1555
+ "nodetype" : "column",
1556
+ "moduleName" : "NAT-MIB",
1557
+ "oid" : "1.3.6.1.2.1.123.1.8.1.3",
1558
+ "status" : "current",
1559
+ "syntax" : {
1560
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
1561
+ },
1562
+ "access" : "noaccess",
1563
+ "description" :
1564
+ """For a protocol value TCP or UDP, this object represents
1565
+ the private-realm specific port number. On the other
1566
+ hand, for ICMP a bind is created only for query/response
1567
+ type ICMP messages such as ICMP echo, Timestamp, and
1568
+ Information request messages, and this object represents
1569
+ the private-realm specific identifier in the ICMP
1570
+ message, as defined in RFC 792 for ICMPv4 and in RFC
1571
+ 2463 for ICMPv6.
1572
+
1573
+ This object, together with natAddrPortBindProtocol,
1574
+ natAddrPortBindLocalAddrType, and natAddrPortBindLocalAddr,
1575
+ constitutes a session endpoint in the private realm. A
1576
+ bind entry binds a private realm specific endpoint to a
1577
+ public realm specific endpoint, as represented by the
1578
+ tuple of (natAddrPortBindGlobalPort,
1579
+ natAddrPortBindProtocol, natAddrPortBindGlobalAddrType,
1580
+ and natAddrPortBindGlobalAddr).""",
1581
+ }, # column
1582
+ "natAddrPortBindProtocol" : {
1583
+ "nodetype" : "column",
1584
+ "moduleName" : "NAT-MIB",
1585
+ "oid" : "1.3.6.1.2.1.123.1.8.1.4",
1586
+ "status" : "current",
1587
+ "syntax" : {
1588
+ "type" : { "module" :"NAT-MIB", "name" : "NatProtocolType"},
1589
+ },
1590
+ "access" : "noaccess",
1591
+ "description" :
1592
+ """This object specifies a protocol identifier. If the
1593
+ value of this object is none(1), then this bind entry
1594
+ applies to all IP traffic. Any other value of this object
1595
+ specifies the class of IP traffic to which this BIND
1596
+ applies.""",
1597
+ }, # column
1598
+ "natAddrPortBindGlobalAddrType" : {
1599
+ "nodetype" : "column",
1600
+ "moduleName" : "NAT-MIB",
1601
+ "oid" : "1.3.6.1.2.1.123.1.8.1.5",
1602
+ "status" : "current",
1603
+ "syntax" : {
1604
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1605
+ },
1606
+ "access" : "readonly",
1607
+ "description" :
1608
+ """This object specifies the address type used for
1609
+ natAddrPortBindGlobalAddr.""",
1610
+ }, # column
1611
+ "natAddrPortBindGlobalAddr" : {
1612
+ "nodetype" : "column",
1613
+ "moduleName" : "NAT-MIB",
1614
+ "oid" : "1.3.6.1.2.1.123.1.8.1.6",
1615
+ "status" : "current",
1616
+ "syntax" : {
1617
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1618
+ },
1619
+ "access" : "readonly",
1620
+ "description" :
1621
+ """This object represents the public-realm specific network
1622
+ layer address that, in conjunction with
1623
+ natAddrPortBindGlobalPort, maps to the private-realm
1624
+
1625
+ network layer address and transport id represented by
1626
+ natAddrPortBindLocalAddr and natAddrPortBindLocalPort,
1627
+ respectively.
1628
+
1629
+ The type of this address is determined by the value of
1630
+ the natAddrPortBindGlobalAddrType object.""",
1631
+ }, # column
1632
+ "natAddrPortBindGlobalPort" : {
1633
+ "nodetype" : "column",
1634
+ "moduleName" : "NAT-MIB",
1635
+ "oid" : "1.3.6.1.2.1.123.1.8.1.7",
1636
+ "status" : "current",
1637
+ "syntax" : {
1638
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
1639
+ },
1640
+ "access" : "readonly",
1641
+ "description" :
1642
+ """For a protocol value TCP or UDP, this object represents
1643
+ the public-realm specific port number. On the other
1644
+ hand, for ICMP a bind is created only for query/response
1645
+ type ICMP messages such as ICMP echo, Timestamp, and
1646
+ Information request messages, and this object represents
1647
+ the public-realm specific identifier in the ICMP message,
1648
+ as defined in RFC 792 for ICMPv4 and in RFC 2463 for
1649
+ ICMPv6.
1650
+
1651
+ This object, together with natAddrPortBindProtocol,
1652
+ natAddrPortBindGlobalAddrType, and
1653
+ natAddrPortBindGlobalAddr, constitutes a session endpoint
1654
+ in the public realm. A bind entry binds a public realm
1655
+ specific endpoint to a private realm specific endpoint,
1656
+ as represented by the tuple of
1657
+ (natAddrPortBindLocalPort, natAddrPortBindProtocol,
1658
+ natAddrPortBindLocalAddrType, and
1659
+
1660
+
1661
+
1662
+ natAddrPortBindLocalAddr).""",
1663
+ }, # column
1664
+ "natAddrPortBindId" : {
1665
+ "nodetype" : "column",
1666
+ "moduleName" : "NAT-MIB",
1667
+ "oid" : "1.3.6.1.2.1.123.1.8.1.8",
1668
+ "status" : "current",
1669
+ "syntax" : {
1670
+ "type" : { "module" :"NAT-MIB", "name" : "NatBindId"},
1671
+ },
1672
+ "access" : "readonly",
1673
+ "description" :
1674
+ """This object represents a bind id that is dynamically
1675
+ assigned to each bind by a NAT enabled device. Each
1676
+ bind is represented by a unique bind id across both
1677
+ the natAddrBindTable and the natAddrPortBindTable.""",
1678
+ }, # column
1679
+ "natAddrPortBindTranslationEntity" : {
1680
+ "nodetype" : "column",
1681
+ "moduleName" : "NAT-MIB",
1682
+ "oid" : "1.3.6.1.2.1.123.1.8.1.9",
1683
+ "status" : "current",
1684
+ "syntax" : {
1685
+ "type" : { "module" :"NAT-MIB", "name" : "NatTranslationEntity"},
1686
+ },
1687
+ "access" : "readonly",
1688
+ "description" :
1689
+ """This object represents the direction of sessions
1690
+ for which this bind is applicable and the entity
1691
+ (source or destination) within the sessions that is
1692
+ subject to translation with the BIND.
1693
+
1694
+ Orientation of the bind can be a superset of the
1695
+ translationEntity of the address map entry that
1696
+ forms the basis for this bind.
1697
+
1698
+ For example, if the translationEntity of an
1699
+ address map entry is outboundSrcEndPoint, the
1700
+ translationEntity of a bind derived from this
1701
+ map entry may either be outboundSrcEndPoint or
1702
+ may be bidirectional (a bitmask of
1703
+ outboundSrcEndPoint and inboundDstEndPoint).""",
1704
+ }, # column
1705
+ "natAddrPortBindType" : {
1706
+ "nodetype" : "column",
1707
+ "moduleName" : "NAT-MIB",
1708
+ "oid" : "1.3.6.1.2.1.123.1.8.1.10",
1709
+ "status" : "current",
1710
+ "syntax" : {
1711
+ "type" : { "module" :"NAT-MIB", "name" : "NatAssociationType"},
1712
+ },
1713
+ "access" : "readonly",
1714
+ "description" :
1715
+ """This object indicates whether the bind is static or
1716
+ dynamic.""",
1717
+ }, # column
1718
+ "natAddrPortBindMapIndex" : {
1719
+ "nodetype" : "column",
1720
+ "moduleName" : "NAT-MIB",
1721
+ "oid" : "1.3.6.1.2.1.123.1.8.1.11",
1722
+ "status" : "current",
1723
+ "syntax" : {
1724
+ "type" : { "module" :"NAT-MIB", "name" : "NatAddrMapId"},
1725
+ },
1726
+ "access" : "readonly",
1727
+ "description" :
1728
+ """This object is a pointer to the natAddrMapTable entry
1729
+ (and the parameters of that entry) used in
1730
+ creating this BIND. This object, in conjunction with the
1731
+ ifIndex (which identifies a unique addrMapName), points
1732
+ to a unique entry in the natAddrMapTable.""",
1733
+ }, # column
1734
+ "natAddrPortBindSessions" : {
1735
+ "nodetype" : "column",
1736
+ "moduleName" : "NAT-MIB",
1737
+ "oid" : "1.3.6.1.2.1.123.1.8.1.12",
1738
+ "status" : "current",
1739
+ "syntax" : {
1740
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Gauge32"},
1741
+ },
1742
+ "access" : "readonly",
1743
+ "description" :
1744
+ """Number of sessions currently using this BIND.""",
1745
+ }, # column
1746
+ "natAddrPortBindMaxIdleTime" : {
1747
+ "nodetype" : "column",
1748
+ "moduleName" : "NAT-MIB",
1749
+ "oid" : "1.3.6.1.2.1.123.1.8.1.13",
1750
+ "status" : "current",
1751
+ "syntax" : {
1752
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1753
+ },
1754
+ "access" : "readonly",
1755
+ "description" :
1756
+ """This object indicates the maximum time for
1757
+ which this bind can be idle without any sessions
1758
+ attached to it.
1759
+ The value of this object is of relevance
1760
+ only for dynamic NAT.""",
1761
+ }, # column
1762
+ "natAddrPortBindCurrentIdleTime" : {
1763
+ "nodetype" : "column",
1764
+ "moduleName" : "NAT-MIB",
1765
+ "oid" : "1.3.6.1.2.1.123.1.8.1.14",
1766
+ "status" : "current",
1767
+ "syntax" : {
1768
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1769
+ },
1770
+ "access" : "readonly",
1771
+ "description" :
1772
+ """At any given instance, this object indicates the
1773
+ time that this bind has been idle without any sessions
1774
+ attached to it.
1775
+
1776
+ The value of this object is of relevance
1777
+ only for dynamic NAT.""",
1778
+ }, # column
1779
+ "natAddrPortBindInTranslates" : {
1780
+ "nodetype" : "column",
1781
+ "moduleName" : "NAT-MIB",
1782
+ "oid" : "1.3.6.1.2.1.123.1.8.1.15",
1783
+ "status" : "current",
1784
+ "syntax" : {
1785
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1786
+ },
1787
+ "access" : "readonly",
1788
+ "description" :
1789
+ """The number of inbound packets that were translated as per
1790
+ this bind entry.
1791
+
1792
+ Discontinuities in the value of this counter can occur at
1793
+ reinitialization of the management system and at other
1794
+ times, as indicated by the value of
1795
+ ifCounterDiscontinuityTime on the relevant interface.""",
1796
+ }, # column
1797
+ "natAddrPortBindOutTranslates" : {
1798
+ "nodetype" : "column",
1799
+ "moduleName" : "NAT-MIB",
1800
+ "oid" : "1.3.6.1.2.1.123.1.8.1.16",
1801
+ "status" : "current",
1802
+ "syntax" : {
1803
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
1804
+ },
1805
+ "access" : "readonly",
1806
+ "description" :
1807
+ """The number of outbound packets that were translated as per
1808
+ this bind entry.
1809
+
1810
+ Discontinuities in the value of this counter can occur at
1811
+ reinitialization of the management system and at other
1812
+ times, as indicated by the value of
1813
+ ifCounterDiscontinuityTime on the relevant interface.""",
1814
+ }, # column
1815
+ "natSessionTable" : {
1816
+ "nodetype" : "table",
1817
+ "moduleName" : "NAT-MIB",
1818
+ "oid" : "1.3.6.1.2.1.123.1.9",
1819
+ "status" : "current",
1820
+ "description" :
1821
+ """The (conceptual) table containing one entry for each
1822
+ NAT session currently active on this NAT device.""",
1823
+ }, # table
1824
+ "natSessionEntry" : {
1825
+ "nodetype" : "row",
1826
+ "moduleName" : "NAT-MIB",
1827
+ "oid" : "1.3.6.1.2.1.123.1.9.1",
1828
+ "status" : "current",
1829
+ "linkage" : [
1830
+ "ifIndex",
1831
+ "natSessionIndex",
1832
+ ],
1833
+ "description" :
1834
+ """An entry (conceptual row) containing information
1835
+ about an active NAT session on this NAT device.
1836
+ These entries are lost upon agent restart.""",
1837
+ }, # row
1838
+ "natSessionIndex" : {
1839
+ "nodetype" : "column",
1840
+ "moduleName" : "NAT-MIB",
1841
+ "oid" : "1.3.6.1.2.1.123.1.9.1.1",
1842
+ "status" : "current",
1843
+ "syntax" : {
1844
+ "type" : { "module" :"NAT-MIB", "name" : "NatSessionId"},
1845
+ },
1846
+ "access" : "noaccess",
1847
+ "description" :
1848
+ """The session ID for this NAT session.""",
1849
+ }, # column
1850
+ "natSessionPrivateSrcEPBindId" : {
1851
+ "nodetype" : "column",
1852
+ "moduleName" : "NAT-MIB",
1853
+ "oid" : "1.3.6.1.2.1.123.1.9.1.2",
1854
+ "status" : "current",
1855
+ "syntax" : {
1856
+ "type" : { "module" :"NAT-MIB", "name" : "NatBindIdOrZero"},
1857
+ },
1858
+ "access" : "readonly",
1859
+ "description" :
1860
+ """The bind id associated between private and public
1861
+ source end points. In the case of Symmetric-NAT,
1862
+ this should be set to zero.""",
1863
+ }, # column
1864
+ "natSessionPrivateSrcEPBindMode" : {
1865
+ "nodetype" : "column",
1866
+ "moduleName" : "NAT-MIB",
1867
+ "oid" : "1.3.6.1.2.1.123.1.9.1.3",
1868
+ "status" : "current",
1869
+ "syntax" : {
1870
+ "type" : { "module" :"NAT-MIB", "name" : "NatBindMode"},
1871
+ },
1872
+ "access" : "readonly",
1873
+ "description" :
1874
+ """This object indicates whether the bind indicated
1875
+ by the object natSessionPrivateSrcEPBindId
1876
+ is an address bind or an address port bind.""",
1877
+ }, # column
1878
+ "natSessionPrivateDstEPBindId" : {
1879
+ "nodetype" : "column",
1880
+ "moduleName" : "NAT-MIB",
1881
+ "oid" : "1.3.6.1.2.1.123.1.9.1.4",
1882
+ "status" : "current",
1883
+ "syntax" : {
1884
+ "type" : { "module" :"NAT-MIB", "name" : "NatBindIdOrZero"},
1885
+ },
1886
+ "access" : "readonly",
1887
+ "description" :
1888
+ """The bind id associated between private and public
1889
+ destination end points.""",
1890
+ }, # column
1891
+ "natSessionPrivateDstEPBindMode" : {
1892
+ "nodetype" : "column",
1893
+ "moduleName" : "NAT-MIB",
1894
+ "oid" : "1.3.6.1.2.1.123.1.9.1.5",
1895
+ "status" : "current",
1896
+ "syntax" : {
1897
+ "type" : { "module" :"NAT-MIB", "name" : "NatBindMode"},
1898
+ },
1899
+ "access" : "readonly",
1900
+ "description" :
1901
+ """This object indicates whether the bind indicated
1902
+ by the object natSessionPrivateDstEPBindId
1903
+ is an address bind or an address port bind.""",
1904
+ }, # column
1905
+ "natSessionDirection" : {
1906
+ "nodetype" : "column",
1907
+ "moduleName" : "NAT-MIB",
1908
+ "oid" : "1.3.6.1.2.1.123.1.9.1.6",
1909
+ "status" : "current",
1910
+ "syntax" : {
1911
+ "type" : {
1912
+ "basetype" : "Enumeration",
1913
+ "inbound" : {
1914
+ "nodetype" : "namednumber",
1915
+ "number" : "1"
1916
+ },
1917
+ "outbound" : {
1918
+ "nodetype" : "namednumber",
1919
+ "number" : "2"
1920
+ },
1921
+ },
1922
+ },
1923
+ "access" : "readonly",
1924
+ "description" :
1925
+ """The direction of this session with respect to the
1926
+ local network. 'inbound' indicates that this session
1927
+ was initiated from the public network into the private
1928
+ network. 'outbound' indicates that this session was
1929
+ initiated from the private network into the public
1930
+ network.""",
1931
+ }, # column
1932
+ "natSessionUpTime" : {
1933
+ "nodetype" : "column",
1934
+ "moduleName" : "NAT-MIB",
1935
+ "oid" : "1.3.6.1.2.1.123.1.9.1.7",
1936
+ "status" : "current",
1937
+ "syntax" : {
1938
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
1939
+ },
1940
+ "access" : "readonly",
1941
+ "description" :
1942
+ """The up time of this session in one-hundredths of a
1943
+ second.""",
1944
+ }, # column
1945
+ "natSessionAddrMapIndex" : {
1946
+ "nodetype" : "column",
1947
+ "moduleName" : "NAT-MIB",
1948
+ "oid" : "1.3.6.1.2.1.123.1.9.1.8",
1949
+ "status" : "current",
1950
+ "syntax" : {
1951
+ "type" : { "module" :"NAT-MIB", "name" : "NatAddrMapId"},
1952
+ },
1953
+ "access" : "readonly",
1954
+ "description" :
1955
+ """This object is a pointer to the natAddrMapTable entry
1956
+ (and the parameters of that entry) used in
1957
+ creating this session. This object, in conjunction with
1958
+ the ifIndex (which identifies a unique addrMapName), points
1959
+ to a unique entry in the natAddrMapTable.""",
1960
+ }, # column
1961
+ "natSessionProtocolType" : {
1962
+ "nodetype" : "column",
1963
+ "moduleName" : "NAT-MIB",
1964
+ "oid" : "1.3.6.1.2.1.123.1.9.1.9",
1965
+ "status" : "current",
1966
+ "syntax" : {
1967
+ "type" : { "module" :"NAT-MIB", "name" : "NatProtocolType"},
1968
+ },
1969
+ "access" : "readonly",
1970
+ "description" :
1971
+ """The protocol type of this session.""",
1972
+ }, # column
1973
+ "natSessionPrivateAddrType" : {
1974
+ "nodetype" : "column",
1975
+ "moduleName" : "NAT-MIB",
1976
+ "oid" : "1.3.6.1.2.1.123.1.9.1.10",
1977
+ "status" : "current",
1978
+ "syntax" : {
1979
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
1980
+ },
1981
+ "access" : "readonly",
1982
+ "description" :
1983
+ """This object specifies the address type used for
1984
+ natSessionPrivateSrcAddr and natSessionPrivateDstAddr.""",
1985
+ }, # column
1986
+ "natSessionPrivateSrcAddr" : {
1987
+ "nodetype" : "column",
1988
+ "moduleName" : "NAT-MIB",
1989
+ "oid" : "1.3.6.1.2.1.123.1.9.1.11",
1990
+ "status" : "current",
1991
+ "syntax" : {
1992
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
1993
+ },
1994
+ "access" : "readonly",
1995
+ "description" :
1996
+ """The source IP address of the session endpoint that
1997
+ lies in the private network.
1998
+
1999
+ The value of this object must be zero only when the
2000
+ natSessionPrivateSrcEPBindId object has a zero value.
2001
+ When the value of this object is zero, the NAT session
2002
+ lookup will match any IP address to this field.
2003
+
2004
+ The type of this address is determined by the value of
2005
+ the natSessionPrivateAddrType object.""",
2006
+ }, # column
2007
+ "natSessionPrivateSrcPort" : {
2008
+ "nodetype" : "column",
2009
+ "moduleName" : "NAT-MIB",
2010
+ "oid" : "1.3.6.1.2.1.123.1.9.1.12",
2011
+ "status" : "current",
2012
+ "syntax" : {
2013
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
2014
+ },
2015
+ "access" : "readonly",
2016
+ "description" :
2017
+ """When the value of protocol is TCP or UDP, this object
2018
+ represents the source port in the first packet of session
2019
+ while in private-realm. On the other hand, when the
2020
+ protocol is ICMP, a NAT session is created only for
2021
+ query/response type ICMP messages such as ICMP echo,
2022
+ Timestamp, and Information request messages, and this
2023
+ object represents the private-realm specific identifier
2024
+ in the ICMP message, as defined in RFC 792 for ICMPv4
2025
+ and in RFC 2463 for ICMPv6.
2026
+
2027
+ The value of this object must be zero when the
2028
+ natSessionPrivateSrcEPBindId object has zero value
2029
+ and value of natSessionPrivateSrcEPBindMode is
2030
+ addressPortBind(2). In such a case, the NAT session
2031
+ lookup will match any port number to this field.
2032
+
2033
+ The value of this object must be zero when the object
2034
+ is not a representative field (SrcPort, DstPort, or
2035
+ ICMP identifier) of the session tuple in either the
2036
+ public realm or the private realm.""",
2037
+ }, # column
2038
+ "natSessionPrivateDstAddr" : {
2039
+ "nodetype" : "column",
2040
+ "moduleName" : "NAT-MIB",
2041
+ "oid" : "1.3.6.1.2.1.123.1.9.1.13",
2042
+ "status" : "current",
2043
+ "syntax" : {
2044
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2045
+ },
2046
+ "access" : "readonly",
2047
+ "description" :
2048
+ """The destination IP address of the session endpoint that
2049
+ lies in the private network.
2050
+
2051
+ The value of this object must be zero when the
2052
+ natSessionPrivateDstEPBindId object has a zero value.
2053
+ In such a scenario, the NAT session lookup will match
2054
+ any IP address to this field.
2055
+
2056
+ The type of this address is determined by the value of
2057
+ the natSessionPrivateAddrType object.""",
2058
+ }, # column
2059
+ "natSessionPrivateDstPort" : {
2060
+ "nodetype" : "column",
2061
+ "moduleName" : "NAT-MIB",
2062
+ "oid" : "1.3.6.1.2.1.123.1.9.1.14",
2063
+ "status" : "current",
2064
+ "syntax" : {
2065
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
2066
+ },
2067
+ "access" : "readonly",
2068
+ "description" :
2069
+ """When the value of protocol is TCP or UDP, this object
2070
+ represents the destination port in the first packet
2071
+ of session while in private-realm. On the other hand,
2072
+ when the protocol is ICMP, this object is not relevant
2073
+ and should be set to zero.
2074
+
2075
+ The value of this object must be zero when the
2076
+ natSessionPrivateDstEPBindId object has a zero
2077
+ value and natSessionPrivateDstEPBindMode is set to
2078
+ addressPortBind(2). In such a case, the NAT session
2079
+ lookup will match any port number to this field.
2080
+
2081
+ The value of this object must be zero when the object
2082
+ is not a representative field (SrcPort, DstPort, or
2083
+ ICMP identifier) of the session tuple in either the
2084
+ public realm or the private realm.""",
2085
+ }, # column
2086
+ "natSessionPublicAddrType" : {
2087
+ "nodetype" : "column",
2088
+ "moduleName" : "NAT-MIB",
2089
+ "oid" : "1.3.6.1.2.1.123.1.9.1.15",
2090
+ "status" : "current",
2091
+ "syntax" : {
2092
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
2093
+ },
2094
+ "access" : "readonly",
2095
+ "description" :
2096
+ """This object specifies the address type used for
2097
+ natSessionPublicSrcAddr and natSessionPublicDstAddr.""",
2098
+ }, # column
2099
+ "natSessionPublicSrcAddr" : {
2100
+ "nodetype" : "column",
2101
+ "moduleName" : "NAT-MIB",
2102
+ "oid" : "1.3.6.1.2.1.123.1.9.1.16",
2103
+ "status" : "current",
2104
+ "syntax" : {
2105
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2106
+ },
2107
+ "access" : "readonly",
2108
+ "description" :
2109
+ """The source IP address of the session endpoint that
2110
+ lies in the public network.
2111
+
2112
+ The value of this object must be zero when the
2113
+ natSessionPrivateSrcEPBindId object has a zero value.
2114
+ In such a scenario, the NAT session lookup will match
2115
+ any IP address to this field.
2116
+
2117
+ The type of this address is determined by the value of
2118
+ the natSessionPublicAddrType object.""",
2119
+ }, # column
2120
+ "natSessionPublicSrcPort" : {
2121
+ "nodetype" : "column",
2122
+ "moduleName" : "NAT-MIB",
2123
+ "oid" : "1.3.6.1.2.1.123.1.9.1.17",
2124
+ "status" : "current",
2125
+ "syntax" : {
2126
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
2127
+ },
2128
+ "access" : "readonly",
2129
+ "description" :
2130
+ """When the value of protocol is TCP or UDP, this object
2131
+ represents the source port in the first packet of
2132
+ session while in public-realm. On the other hand, when
2133
+ protocol is ICMP, a NAT session is created only for
2134
+ query/response type ICMP messages such as ICMP echo,
2135
+ Timestamp, and Information request messages, and this
2136
+ object represents the public-realm specific identifier
2137
+ in the ICMP message, as defined in RFC 792 for ICMPv4
2138
+ and in RFC 2463 for ICMPv6.
2139
+
2140
+ The value of this object must be zero when the
2141
+ natSessionPrivateSrcEPBindId object has a zero value
2142
+ and natSessionPrivateSrcEPBindMode is set to
2143
+ addressPortBind(2). In such a scenario, the NAT
2144
+ session lookup will match any port number to this
2145
+ field.
2146
+
2147
+ The value of this object must be zero when the object
2148
+ is not a representative field (SrcPort, DstPort or
2149
+ ICMP identifier) of the session tuple in either the
2150
+ public realm or the private realm.""",
2151
+ }, # column
2152
+ "natSessionPublicDstAddr" : {
2153
+ "nodetype" : "column",
2154
+ "moduleName" : "NAT-MIB",
2155
+ "oid" : "1.3.6.1.2.1.123.1.9.1.18",
2156
+ "status" : "current",
2157
+ "syntax" : {
2158
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
2159
+ },
2160
+ "access" : "readonly",
2161
+ "description" :
2162
+ """The destination IP address of the session endpoint that
2163
+ lies in the public network.
2164
+
2165
+ The value of this object must be non-zero when the
2166
+ natSessionPrivateDstEPBindId object has a non-zero
2167
+ value. If the value of this object and the
2168
+ corresponding natSessionPrivateDstEPBindId object value
2169
+ is zero, then the NAT session lookup will match any IP
2170
+ address to this field.
2171
+
2172
+ The type of this address is determined by the value of
2173
+ the natSessionPublicAddrType object.""",
2174
+ }, # column
2175
+ "natSessionPublicDstPort" : {
2176
+ "nodetype" : "column",
2177
+ "moduleName" : "NAT-MIB",
2178
+ "oid" : "1.3.6.1.2.1.123.1.9.1.19",
2179
+ "status" : "current",
2180
+ "syntax" : {
2181
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetPortNumber"},
2182
+ },
2183
+ "access" : "readonly",
2184
+ "description" :
2185
+ """When the value of protocol is TCP or UDP, this object
2186
+ represents the destination port in the first packet of
2187
+ session while in public-realm. On the other hand, when
2188
+ the protocol is ICMP, this object is not relevant for
2189
+ translation and should be zero.
2190
+
2191
+ The value of this object must be zero when the
2192
+ natSessionPrivateDstEPBindId object has a zero value
2193
+ and natSessionPrivateDstEPBindMode is
2194
+ addressPortBind(2). In such a scenario, the NAT
2195
+ session lookup will match any port number to this
2196
+ field.
2197
+
2198
+ The value of this object must be zero when the object
2199
+ is not a representative field (SrcPort, DstPort, or
2200
+ ICMP identifier) of the session tuple in either the
2201
+ public realm or the private realm.""",
2202
+ }, # column
2203
+ "natSessionMaxIdleTime" : {
2204
+ "nodetype" : "column",
2205
+ "moduleName" : "NAT-MIB",
2206
+ "oid" : "1.3.6.1.2.1.123.1.9.1.20",
2207
+ "status" : "current",
2208
+ "syntax" : {
2209
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
2210
+ },
2211
+ "access" : "readonly",
2212
+ "description" :
2213
+ """The max time for which this session can be idle
2214
+ without detecting a packet.""",
2215
+ }, # column
2216
+ "natSessionCurrentIdleTime" : {
2217
+ "nodetype" : "column",
2218
+ "moduleName" : "NAT-MIB",
2219
+ "oid" : "1.3.6.1.2.1.123.1.9.1.21",
2220
+ "status" : "current",
2221
+ "syntax" : {
2222
+ "type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
2223
+ },
2224
+ "access" : "readonly",
2225
+ "description" :
2226
+ """The time since a packet belonging to this session was
2227
+ last detected.""",
2228
+ }, # column
2229
+ "natSessionInTranslates" : {
2230
+ "nodetype" : "column",
2231
+ "moduleName" : "NAT-MIB",
2232
+ "oid" : "1.3.6.1.2.1.123.1.9.1.22",
2233
+ "status" : "current",
2234
+ "syntax" : {
2235
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2236
+ },
2237
+ "access" : "readonly",
2238
+ "description" :
2239
+ """The number of inbound packets that were translated for
2240
+ this session.
2241
+
2242
+ Discontinuities in the value of this counter can occur at
2243
+ reinitialization of the management system and at other
2244
+
2245
+
2246
+
2247
+ times, as indicated by the value of
2248
+ ifCounterDiscontinuityTime on the relevant interface.""",
2249
+ }, # column
2250
+ "natSessionOutTranslates" : {
2251
+ "nodetype" : "column",
2252
+ "moduleName" : "NAT-MIB",
2253
+ "oid" : "1.3.6.1.2.1.123.1.9.1.23",
2254
+ "status" : "current",
2255
+ "syntax" : {
2256
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2257
+ },
2258
+ "access" : "readonly",
2259
+ "description" :
2260
+ """The number of outbound packets that were translated for
2261
+ this session.
2262
+
2263
+ Discontinuities in the value of this counter can occur at
2264
+ reinitialization of the management system and at other
2265
+ times, as indicated by the value of
2266
+ ifCounterDiscontinuityTime on the relevant interface.""",
2267
+ }, # column
2268
+ "natProtocolTable" : {
2269
+ "nodetype" : "table",
2270
+ "moduleName" : "NAT-MIB",
2271
+ "oid" : "1.3.6.1.2.1.123.1.10",
2272
+ "status" : "current",
2273
+ "description" :
2274
+ """The (conceptual) table containing per protocol NAT
2275
+ statistics.""",
2276
+ }, # table
2277
+ "natProtocolEntry" : {
2278
+ "nodetype" : "row",
2279
+ "moduleName" : "NAT-MIB",
2280
+ "oid" : "1.3.6.1.2.1.123.1.10.1",
2281
+ "status" : "current",
2282
+ "linkage" : [
2283
+ "natProtocol",
2284
+ ],
2285
+ "description" :
2286
+ """An entry (conceptual row) containing NAT statistics
2287
+ pertaining to a particular protocol.""",
2288
+ }, # row
2289
+ "natProtocol" : {
2290
+ "nodetype" : "column",
2291
+ "moduleName" : "NAT-MIB",
2292
+ "oid" : "1.3.6.1.2.1.123.1.10.1.1",
2293
+ "status" : "current",
2294
+ "syntax" : {
2295
+ "type" : { "module" :"NAT-MIB", "name" : "NatProtocolType"},
2296
+ },
2297
+ "access" : "noaccess",
2298
+ "description" :
2299
+ """This object represents the protocol pertaining to which
2300
+ parameters are reported.""",
2301
+ }, # column
2302
+ "natProtocolInTranslates" : {
2303
+ "nodetype" : "column",
2304
+ "moduleName" : "NAT-MIB",
2305
+ "oid" : "1.3.6.1.2.1.123.1.10.1.2",
2306
+ "status" : "current",
2307
+ "syntax" : {
2308
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2309
+ },
2310
+ "access" : "readonly",
2311
+ "description" :
2312
+ """The number of inbound packets pertaining to the protocol
2313
+ identified by natProtocol that underwent NAT.
2314
+
2315
+ Discontinuities in the value of this counter can occur at
2316
+ reinitialization of the management system and at other
2317
+ times, as indicated by the value of
2318
+ ifCounterDiscontinuityTime on the relevant interface.""",
2319
+ }, # column
2320
+ "natProtocolOutTranslates" : {
2321
+ "nodetype" : "column",
2322
+ "moduleName" : "NAT-MIB",
2323
+ "oid" : "1.3.6.1.2.1.123.1.10.1.3",
2324
+ "status" : "current",
2325
+ "syntax" : {
2326
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2327
+ },
2328
+ "access" : "readonly",
2329
+ "description" :
2330
+ """The number of outbound packets pertaining to the protocol
2331
+ identified by natProtocol that underwent NAT.
2332
+
2333
+ Discontinuities in the value of this counter can occur at
2334
+ reinitialization of the management system and at other
2335
+ times, as indicated by the value of
2336
+ ifCounterDiscontinuityTime on the relevant interface.""",
2337
+ }, # column
2338
+ "natProtocolDiscards" : {
2339
+ "nodetype" : "column",
2340
+ "moduleName" : "NAT-MIB",
2341
+ "oid" : "1.3.6.1.2.1.123.1.10.1.4",
2342
+ "status" : "current",
2343
+ "syntax" : {
2344
+ "type" : { "module" :"SNMPv2-SMI", "name" : "Counter64"},
2345
+ },
2346
+ "access" : "readonly",
2347
+ "description" :
2348
+ """The number of packets pertaining to the protocol
2349
+ identified by natProtocol that had to be
2350
+ rejected/dropped due to lack of resources. These
2351
+ rejections could be due to session timeout, resource
2352
+ unavailability, lack of address space, etc.
2353
+
2354
+
2355
+
2356
+
2357
+ Discontinuities in the value of this counter can occur at
2358
+ reinitialization of the management system and at other
2359
+ times, as indicated by the value of
2360
+ ifCounterDiscontinuityTime on the relevant interface.""",
2361
+ }, # column
2362
+ "natMIBConformance" : {
2363
+ "nodetype" : "node",
2364
+ "moduleName" : "NAT-MIB",
2365
+ "oid" : "1.3.6.1.2.1.123.2",
2366
+ }, # node
2367
+ "natMIBGroups" : {
2368
+ "nodetype" : "node",
2369
+ "moduleName" : "NAT-MIB",
2370
+ "oid" : "1.3.6.1.2.1.123.2.1",
2371
+ }, # node
2372
+ "natMIBCompliances" : {
2373
+ "nodetype" : "node",
2374
+ "moduleName" : "NAT-MIB",
2375
+ "oid" : "1.3.6.1.2.1.123.2.2",
2376
+ }, # node
2377
+ }, # nodes
2378
+
2379
+ "notifications" : {
2380
+ "natPacketDiscard" : {
2381
+ "nodetype" : "notification",
2382
+ "moduleName" : "NAT-MIB",
2383
+ "oid" : "1.3.6.1.2.1.123.0.1",
2384
+ "status" : "current",
2385
+ "objects" : {
2386
+ "ifIndex" : {
2387
+ "nodetype" : "object",
2388
+ "module" : "IF-MIB"
2389
+ },
2390
+ },
2391
+ "description" :
2392
+ """This notification is generated when IP packets are
2393
+ discarded by the NAT function; e.g., due to lack of
2394
+ mapping space when NAT is out of addresses or ports.
2395
+
2396
+ Note that the generation of natPacketDiscard
2397
+ notifications is throttled by the agent, as specified
2398
+ by the 'natNotifThrottlingInterval' object.""",
2399
+ }, # notification
2400
+ }, # notifications
2401
+
2402
+ "groups" : {
2403
+ "natConfigGroup" : {
2404
+ "nodetype" : "group",
2405
+ "moduleName" : "NAT-MIB",
2406
+ "oid" : "1.3.6.1.2.1.123.2.1.1",
2407
+ "status" : "current",
2408
+ "members" : {
2409
+ "natInterfaceRealm" : {
2410
+ "nodetype" : "member",
2411
+ "module" : "NAT-MIB"
2412
+ },
2413
+ "natInterfaceServiceType" : {
2414
+ "nodetype" : "member",
2415
+ "module" : "NAT-MIB"
2416
+ },
2417
+ "natInterfaceStorageType" : {
2418
+ "nodetype" : "member",
2419
+ "module" : "NAT-MIB"
2420
+ },
2421
+ "natInterfaceRowStatus" : {
2422
+ "nodetype" : "member",
2423
+ "module" : "NAT-MIB"
2424
+ },
2425
+ "natAddrMapName" : {
2426
+ "nodetype" : "member",
2427
+ "module" : "NAT-MIB"
2428
+ },
2429
+ "natAddrMapEntryType" : {
2430
+ "nodetype" : "member",
2431
+ "module" : "NAT-MIB"
2432
+ },
2433
+ "natAddrMapTranslationEntity" : {
2434
+ "nodetype" : "member",
2435
+ "module" : "NAT-MIB"
2436
+ },
2437
+ "natAddrMapLocalAddrType" : {
2438
+ "nodetype" : "member",
2439
+ "module" : "NAT-MIB"
2440
+ },
2441
+ "natAddrMapLocalAddrFrom" : {
2442
+ "nodetype" : "member",
2443
+ "module" : "NAT-MIB"
2444
+ },
2445
+ "natAddrMapLocalAddrTo" : {
2446
+ "nodetype" : "member",
2447
+ "module" : "NAT-MIB"
2448
+ },
2449
+ "natAddrMapLocalPortFrom" : {
2450
+ "nodetype" : "member",
2451
+ "module" : "NAT-MIB"
2452
+ },
2453
+ "natAddrMapLocalPortTo" : {
2454
+ "nodetype" : "member",
2455
+ "module" : "NAT-MIB"
2456
+ },
2457
+ "natAddrMapGlobalAddrType" : {
2458
+ "nodetype" : "member",
2459
+ "module" : "NAT-MIB"
2460
+ },
2461
+ "natAddrMapGlobalAddrFrom" : {
2462
+ "nodetype" : "member",
2463
+ "module" : "NAT-MIB"
2464
+ },
2465
+ "natAddrMapGlobalAddrTo" : {
2466
+ "nodetype" : "member",
2467
+ "module" : "NAT-MIB"
2468
+ },
2469
+ "natAddrMapGlobalPortFrom" : {
2470
+ "nodetype" : "member",
2471
+ "module" : "NAT-MIB"
2472
+ },
2473
+ "natAddrMapGlobalPortTo" : {
2474
+ "nodetype" : "member",
2475
+ "module" : "NAT-MIB"
2476
+ },
2477
+ "natAddrMapProtocol" : {
2478
+ "nodetype" : "member",
2479
+ "module" : "NAT-MIB"
2480
+ },
2481
+ "natAddrMapStorageType" : {
2482
+ "nodetype" : "member",
2483
+ "module" : "NAT-MIB"
2484
+ },
2485
+ "natAddrMapRowStatus" : {
2486
+ "nodetype" : "member",
2487
+ "module" : "NAT-MIB"
2488
+ },
2489
+ "natBindDefIdleTimeout" : {
2490
+ "nodetype" : "member",
2491
+ "module" : "NAT-MIB"
2492
+ },
2493
+ "natUdpDefIdleTimeout" : {
2494
+ "nodetype" : "member",
2495
+ "module" : "NAT-MIB"
2496
+ },
2497
+ "natIcmpDefIdleTimeout" : {
2498
+ "nodetype" : "member",
2499
+ "module" : "NAT-MIB"
2500
+ },
2501
+ "natOtherDefIdleTimeout" : {
2502
+ "nodetype" : "member",
2503
+ "module" : "NAT-MIB"
2504
+ },
2505
+ "natTcpDefIdleTimeout" : {
2506
+ "nodetype" : "member",
2507
+ "module" : "NAT-MIB"
2508
+ },
2509
+ "natTcpDefNegTimeout" : {
2510
+ "nodetype" : "member",
2511
+ "module" : "NAT-MIB"
2512
+ },
2513
+ "natNotifThrottlingInterval" : {
2514
+ "nodetype" : "member",
2515
+ "module" : "NAT-MIB"
2516
+ },
2517
+ }, # members
2518
+ "description" :
2519
+ """A collection of configuration-related information
2520
+ required to support management of devices supporting
2521
+ NAT.""",
2522
+ }, # group
2523
+ "natTranslationGroup" : {
2524
+ "nodetype" : "group",
2525
+ "moduleName" : "NAT-MIB",
2526
+ "oid" : "1.3.6.1.2.1.123.2.1.2",
2527
+ "status" : "current",
2528
+ "members" : {
2529
+ "natAddrBindNumberOfEntries" : {
2530
+ "nodetype" : "member",
2531
+ "module" : "NAT-MIB"
2532
+ },
2533
+ "natAddrBindGlobalAddrType" : {
2534
+ "nodetype" : "member",
2535
+ "module" : "NAT-MIB"
2536
+ },
2537
+ "natAddrBindGlobalAddr" : {
2538
+ "nodetype" : "member",
2539
+ "module" : "NAT-MIB"
2540
+ },
2541
+ "natAddrBindId" : {
2542
+ "nodetype" : "member",
2543
+ "module" : "NAT-MIB"
2544
+ },
2545
+ "natAddrBindTranslationEntity" : {
2546
+ "nodetype" : "member",
2547
+ "module" : "NAT-MIB"
2548
+ },
2549
+ "natAddrBindType" : {
2550
+ "nodetype" : "member",
2551
+ "module" : "NAT-MIB"
2552
+ },
2553
+ "natAddrBindMapIndex" : {
2554
+ "nodetype" : "member",
2555
+ "module" : "NAT-MIB"
2556
+ },
2557
+ "natAddrBindSessions" : {
2558
+ "nodetype" : "member",
2559
+ "module" : "NAT-MIB"
2560
+ },
2561
+ "natAddrBindMaxIdleTime" : {
2562
+ "nodetype" : "member",
2563
+ "module" : "NAT-MIB"
2564
+ },
2565
+ "natAddrBindCurrentIdleTime" : {
2566
+ "nodetype" : "member",
2567
+ "module" : "NAT-MIB"
2568
+ },
2569
+ "natAddrBindInTranslates" : {
2570
+ "nodetype" : "member",
2571
+ "module" : "NAT-MIB"
2572
+ },
2573
+ "natAddrBindOutTranslates" : {
2574
+ "nodetype" : "member",
2575
+ "module" : "NAT-MIB"
2576
+ },
2577
+ "natAddrPortBindNumberOfEntries" : {
2578
+ "nodetype" : "member",
2579
+ "module" : "NAT-MIB"
2580
+ },
2581
+ "natAddrPortBindGlobalAddrType" : {
2582
+ "nodetype" : "member",
2583
+ "module" : "NAT-MIB"
2584
+ },
2585
+ "natAddrPortBindGlobalAddr" : {
2586
+ "nodetype" : "member",
2587
+ "module" : "NAT-MIB"
2588
+ },
2589
+ "natAddrPortBindGlobalPort" : {
2590
+ "nodetype" : "member",
2591
+ "module" : "NAT-MIB"
2592
+ },
2593
+ "natAddrPortBindId" : {
2594
+ "nodetype" : "member",
2595
+ "module" : "NAT-MIB"
2596
+ },
2597
+ "natAddrPortBindTranslationEntity" : {
2598
+ "nodetype" : "member",
2599
+ "module" : "NAT-MIB"
2600
+ },
2601
+ "natAddrPortBindType" : {
2602
+ "nodetype" : "member",
2603
+ "module" : "NAT-MIB"
2604
+ },
2605
+ "natAddrPortBindMapIndex" : {
2606
+ "nodetype" : "member",
2607
+ "module" : "NAT-MIB"
2608
+ },
2609
+ "natAddrPortBindSessions" : {
2610
+ "nodetype" : "member",
2611
+ "module" : "NAT-MIB"
2612
+ },
2613
+ "natAddrPortBindMaxIdleTime" : {
2614
+ "nodetype" : "member",
2615
+ "module" : "NAT-MIB"
2616
+ },
2617
+ "natAddrPortBindCurrentIdleTime" : {
2618
+ "nodetype" : "member",
2619
+ "module" : "NAT-MIB"
2620
+ },
2621
+ "natAddrPortBindInTranslates" : {
2622
+ "nodetype" : "member",
2623
+ "module" : "NAT-MIB"
2624
+ },
2625
+ "natAddrPortBindOutTranslates" : {
2626
+ "nodetype" : "member",
2627
+ "module" : "NAT-MIB"
2628
+ },
2629
+ "natSessionPrivateSrcEPBindId" : {
2630
+ "nodetype" : "member",
2631
+ "module" : "NAT-MIB"
2632
+ },
2633
+ "natSessionPrivateSrcEPBindMode" : {
2634
+ "nodetype" : "member",
2635
+ "module" : "NAT-MIB"
2636
+ },
2637
+ "natSessionPrivateDstEPBindId" : {
2638
+ "nodetype" : "member",
2639
+ "module" : "NAT-MIB"
2640
+ },
2641
+ "natSessionPrivateDstEPBindMode" : {
2642
+ "nodetype" : "member",
2643
+ "module" : "NAT-MIB"
2644
+ },
2645
+ "natSessionDirection" : {
2646
+ "nodetype" : "member",
2647
+ "module" : "NAT-MIB"
2648
+ },
2649
+ "natSessionUpTime" : {
2650
+ "nodetype" : "member",
2651
+ "module" : "NAT-MIB"
2652
+ },
2653
+ "natSessionAddrMapIndex" : {
2654
+ "nodetype" : "member",
2655
+ "module" : "NAT-MIB"
2656
+ },
2657
+ "natSessionProtocolType" : {
2658
+ "nodetype" : "member",
2659
+ "module" : "NAT-MIB"
2660
+ },
2661
+ "natSessionPrivateAddrType" : {
2662
+ "nodetype" : "member",
2663
+ "module" : "NAT-MIB"
2664
+ },
2665
+ "natSessionPrivateSrcAddr" : {
2666
+ "nodetype" : "member",
2667
+ "module" : "NAT-MIB"
2668
+ },
2669
+ "natSessionPrivateSrcPort" : {
2670
+ "nodetype" : "member",
2671
+ "module" : "NAT-MIB"
2672
+ },
2673
+ "natSessionPrivateDstAddr" : {
2674
+ "nodetype" : "member",
2675
+ "module" : "NAT-MIB"
2676
+ },
2677
+ "natSessionPrivateDstPort" : {
2678
+ "nodetype" : "member",
2679
+ "module" : "NAT-MIB"
2680
+ },
2681
+ "natSessionPublicAddrType" : {
2682
+ "nodetype" : "member",
2683
+ "module" : "NAT-MIB"
2684
+ },
2685
+ "natSessionPublicSrcAddr" : {
2686
+ "nodetype" : "member",
2687
+ "module" : "NAT-MIB"
2688
+ },
2689
+ "natSessionPublicSrcPort" : {
2690
+ "nodetype" : "member",
2691
+ "module" : "NAT-MIB"
2692
+ },
2693
+ "natSessionPublicDstAddr" : {
2694
+ "nodetype" : "member",
2695
+ "module" : "NAT-MIB"
2696
+ },
2697
+ "natSessionPublicDstPort" : {
2698
+ "nodetype" : "member",
2699
+ "module" : "NAT-MIB"
2700
+ },
2701
+ "natSessionMaxIdleTime" : {
2702
+ "nodetype" : "member",
2703
+ "module" : "NAT-MIB"
2704
+ },
2705
+ "natSessionCurrentIdleTime" : {
2706
+ "nodetype" : "member",
2707
+ "module" : "NAT-MIB"
2708
+ },
2709
+ "natSessionInTranslates" : {
2710
+ "nodetype" : "member",
2711
+ "module" : "NAT-MIB"
2712
+ },
2713
+ "natSessionOutTranslates" : {
2714
+ "nodetype" : "member",
2715
+ "module" : "NAT-MIB"
2716
+ },
2717
+ }, # members
2718
+ "description" :
2719
+ """A collection of BIND-related objects required to support
2720
+ management of devices supporting NAT.""",
2721
+ }, # group
2722
+ "natStatsInterfaceGroup" : {
2723
+ "nodetype" : "group",
2724
+ "moduleName" : "NAT-MIB",
2725
+ "oid" : "1.3.6.1.2.1.123.2.1.3",
2726
+ "status" : "current",
2727
+ "members" : {
2728
+ "natInterfaceInTranslates" : {
2729
+ "nodetype" : "member",
2730
+ "module" : "NAT-MIB"
2731
+ },
2732
+ "natInterfaceOutTranslates" : {
2733
+ "nodetype" : "member",
2734
+ "module" : "NAT-MIB"
2735
+ },
2736
+ "natInterfaceDiscards" : {
2737
+ "nodetype" : "member",
2738
+ "module" : "NAT-MIB"
2739
+ },
2740
+ }, # members
2741
+ "description" :
2742
+ """A collection of NAT statistics associated with the
2743
+ interface on which NAT is configured, to aid
2744
+ troubleshooting/monitoring of the NAT operation.""",
2745
+ }, # group
2746
+ "natStatsProtocolGroup" : {
2747
+ "nodetype" : "group",
2748
+ "moduleName" : "NAT-MIB",
2749
+ "oid" : "1.3.6.1.2.1.123.2.1.4",
2750
+ "status" : "current",
2751
+ "members" : {
2752
+ "natProtocolInTranslates" : {
2753
+ "nodetype" : "member",
2754
+ "module" : "NAT-MIB"
2755
+ },
2756
+ "natProtocolOutTranslates" : {
2757
+ "nodetype" : "member",
2758
+ "module" : "NAT-MIB"
2759
+ },
2760
+ "natProtocolDiscards" : {
2761
+ "nodetype" : "member",
2762
+ "module" : "NAT-MIB"
2763
+ },
2764
+ }, # members
2765
+ "description" :
2766
+ """A collection of protocol specific NAT statistics,
2767
+ to aid troubleshooting/monitoring of NAT operation.""",
2768
+ }, # group
2769
+ "natStatsAddrMapGroup" : {
2770
+ "nodetype" : "group",
2771
+ "moduleName" : "NAT-MIB",
2772
+ "oid" : "1.3.6.1.2.1.123.2.1.5",
2773
+ "status" : "current",
2774
+ "members" : {
2775
+ "natAddrMapInTranslates" : {
2776
+ "nodetype" : "member",
2777
+ "module" : "NAT-MIB"
2778
+ },
2779
+ "natAddrMapOutTranslates" : {
2780
+ "nodetype" : "member",
2781
+ "module" : "NAT-MIB"
2782
+ },
2783
+ "natAddrMapDiscards" : {
2784
+ "nodetype" : "member",
2785
+ "module" : "NAT-MIB"
2786
+ },
2787
+ "natAddrMapAddrUsed" : {
2788
+ "nodetype" : "member",
2789
+ "module" : "NAT-MIB"
2790
+ },
2791
+ }, # members
2792
+ "description" :
2793
+ """A collection of address map specific NAT statistics,
2794
+ to aid troubleshooting/monitoring of NAT operation.""",
2795
+ }, # group
2796
+ "natMIBNotificationGroup" : {
2797
+ "nodetype" : "group",
2798
+ "moduleName" : "NAT-MIB",
2799
+ "oid" : "1.3.6.1.2.1.123.2.1.6",
2800
+ "status" : "current",
2801
+ "members" : {
2802
+ "natPacketDiscard" : {
2803
+ "nodetype" : "member",
2804
+ "module" : "NAT-MIB"
2805
+ },
2806
+ }, # members
2807
+ "description" :
2808
+ """A collection of notifications generated by
2809
+ devices supporting this MIB.""",
2810
+ }, # group
2811
+ }, # groups
2812
+
2813
+ "compliances" : {
2814
+ "natMIBFullCompliance" : {
2815
+ "nodetype" : "compliance",
2816
+ "moduleName" : "NAT-MIB",
2817
+ "oid" : "1.3.6.1.2.1.123.2.2.1",
2818
+ "status" : "current",
2819
+ "description" :
2820
+ """When this MIB is implemented with support for
2821
+ read-create, then such an implementation can claim
2822
+ full compliance. Such devices can then be both
2823
+ monitored and configured with this MIB.
2824
+
2825
+ The following index objects cannot be added as OBJECT
2826
+ clauses but nevertheless have the compliance
2827
+ requirements:
2828
+ """,
2829
+ "requires" : {
2830
+ "ifCounterDiscontinuityGroup" : {
2831
+ "nodetype" : "mandatory",
2832
+ "module" : "IF-MIB"
2833
+ },
2834
+ "natConfigGroup" : {
2835
+ "nodetype" : "mandatory",
2836
+ "module" : "NAT-MIB"
2837
+ },
2838
+ "natTranslationGroup" : {
2839
+ "nodetype" : "mandatory",
2840
+ "module" : "NAT-MIB"
2841
+ },
2842
+ "natStatsInterfaceGroup" : {
2843
+ "nodetype" : "mandatory",
2844
+ "module" : "NAT-MIB"
2845
+ },
2846
+ "natStatsProtocolGroup" : {
2847
+ "nodetype" : "optional",
2848
+ "module" : "NAT-MIB",
2849
+ "description" :
2850
+ """This group is optional.""",
2851
+ },
2852
+ "natStatsAddrMapGroup" : {
2853
+ "nodetype" : "optional",
2854
+ "module" : "NAT-MIB",
2855
+ "description" :
2856
+ """This group is optional.""",
2857
+ },
2858
+ "natMIBNotificationGroup" : {
2859
+ "nodetype" : "optional",
2860
+ "module" : "NAT-MIB",
2861
+ "description" :
2862
+ """This group is optional.""",
2863
+ },
2864
+ }, # requires
2865
+ "refinements" : {
2866
+ "natAddrMapLocalAddrType" : {
2867
+ "module" : "NAT-MIB",
2868
+ "syntax" : {
2869
+ "type" : {
2870
+ "basetype" : "Enumeration",
2871
+ "parent module" : {
2872
+ "name" : "INET-ADDRESS-MIB",
2873
+ "type" : "InetAddressType",
2874
+ },
2875
+ "ipv4" : {
2876
+ "nodetype" : "namednumber",
2877
+ "number" : "1"
2878
+ },
2879
+ "ipv6" : {
2880
+ "nodetype" : "namednumber",
2881
+ "number" : "2"
2882
+ },
2883
+ },
2884
+ }, # syntax
2885
+ "description" :
2886
+ """An implementation is required to support global IPv4
2887
+ and/or IPv6 addresses, depending on its support
2888
+
2889
+
2890
+
2891
+ for IPv4 and IPv6.""",
2892
+ },
2893
+ "natAddrMapLocalAddrFrom" : {
2894
+ "module" : "NAT-MIB",
2895
+ "syntax" : {
2896
+ "type" : {
2897
+ "basetype" : "OctetString",
2898
+ "parent module" : {
2899
+ "name" : "INET-ADDRESS-MIB",
2900
+ "type" : "InetAddress",
2901
+ },
2902
+ "ranges" : [
2903
+ {
2904
+ "min" : "4",
2905
+ "max" : "4"
2906
+ },
2907
+ {
2908
+ "min" : "16",
2909
+ "max" : "16"
2910
+ },
2911
+ ],
2912
+ "range" : {
2913
+ "min" : "4",
2914
+ "max" : "16"
2915
+ },
2916
+ },
2917
+ }, # syntax
2918
+ "description" :
2919
+ """An implementation is required to support global IPv4
2920
+ and/or IPv6 addresses, depending on its support
2921
+ for IPv4 and IPv6.""",
2922
+ },
2923
+ "natAddrMapLocalAddrTo" : {
2924
+ "module" : "NAT-MIB",
2925
+ "syntax" : {
2926
+ "type" : {
2927
+ "basetype" : "OctetString",
2928
+ "parent module" : {
2929
+ "name" : "INET-ADDRESS-MIB",
2930
+ "type" : "InetAddress",
2931
+ },
2932
+ "ranges" : [
2933
+ {
2934
+ "min" : "4",
2935
+ "max" : "4"
2936
+ },
2937
+ {
2938
+ "min" : "16",
2939
+ "max" : "16"
2940
+ },
2941
+ ],
2942
+ "range" : {
2943
+ "min" : "4",
2944
+ "max" : "16"
2945
+ },
2946
+ },
2947
+ }, # syntax
2948
+ "description" :
2949
+ """An implementation is required to support global IPv4
2950
+ and/or IPv6 addresses, depending on its support
2951
+ for IPv4 and IPv6.""",
2952
+ },
2953
+ "natAddrMapGlobalAddrType" : {
2954
+ "module" : "NAT-MIB",
2955
+ "syntax" : {
2956
+ "type" : {
2957
+ "basetype" : "Enumeration",
2958
+ "parent module" : {
2959
+ "name" : "INET-ADDRESS-MIB",
2960
+ "type" : "InetAddressType",
2961
+ },
2962
+ "ipv4" : {
2963
+ "nodetype" : "namednumber",
2964
+ "number" : "1"
2965
+ },
2966
+ "ipv6" : {
2967
+ "nodetype" : "namednumber",
2968
+ "number" : "2"
2969
+ },
2970
+ },
2971
+ }, # syntax
2972
+ "description" :
2973
+ """An implementation is required to support global IPv4
2974
+ and/or IPv6 addresses, depending on its support
2975
+ for IPv4 and IPv6.""",
2976
+ },
2977
+ "natAddrMapGlobalAddrFrom" : {
2978
+ "module" : "NAT-MIB",
2979
+ "syntax" : {
2980
+ "type" : {
2981
+ "basetype" : "OctetString",
2982
+ "parent module" : {
2983
+ "name" : "INET-ADDRESS-MIB",
2984
+ "type" : "InetAddress",
2985
+ },
2986
+ "ranges" : [
2987
+ {
2988
+ "min" : "4",
2989
+ "max" : "4"
2990
+ },
2991
+ {
2992
+ "min" : "16",
2993
+ "max" : "16"
2994
+ },
2995
+ ],
2996
+ "range" : {
2997
+ "min" : "4",
2998
+ "max" : "16"
2999
+ },
3000
+ },
3001
+ }, # syntax
3002
+ "description" :
3003
+ """An implementation is required to support global IPv4
3004
+ and/or IPv6 addresses, depending on its support
3005
+ for IPv4 and IPv6.""",
3006
+ },
3007
+ "natAddrMapGlobalAddrTo" : {
3008
+ "module" : "NAT-MIB",
3009
+ "syntax" : {
3010
+ "type" : {
3011
+ "basetype" : "OctetString",
3012
+ "parent module" : {
3013
+ "name" : "INET-ADDRESS-MIB",
3014
+ "type" : "InetAddress",
3015
+ },
3016
+ "ranges" : [
3017
+ {
3018
+ "min" : "4",
3019
+ "max" : "4"
3020
+ },
3021
+ {
3022
+ "min" : "16",
3023
+ "max" : "16"
3024
+ },
3025
+ ],
3026
+ "range" : {
3027
+ "min" : "4",
3028
+ "max" : "16"
3029
+ },
3030
+ },
3031
+ }, # syntax
3032
+ "description" :
3033
+ """An implementation is required to support global IPv4
3034
+ and/or IPv6 addresses, depending on its support
3035
+ for IPv4 and IPv6.""",
3036
+ },
3037
+ "natAddrBindGlobalAddrType" : {
3038
+ "module" : "NAT-MIB",
3039
+ "syntax" : {
3040
+ "type" : {
3041
+ "basetype" : "Enumeration",
3042
+ "parent module" : {
3043
+ "name" : "INET-ADDRESS-MIB",
3044
+ "type" : "InetAddressType",
3045
+ },
3046
+ "ipv4" : {
3047
+ "nodetype" : "namednumber",
3048
+ "number" : "1"
3049
+ },
3050
+ "ipv6" : {
3051
+ "nodetype" : "namednumber",
3052
+ "number" : "2"
3053
+ },
3054
+ },
3055
+ }, # syntax
3056
+ "description" :
3057
+ """An implementation is required to support global IPv4
3058
+ and/or IPv6 addresses, depending on its support
3059
+ for IPv4 and IPv6.""",
3060
+ },
3061
+ "natAddrBindGlobalAddr" : {
3062
+ "module" : "NAT-MIB",
3063
+ "syntax" : {
3064
+ "type" : {
3065
+ "basetype" : "OctetString",
3066
+ "parent module" : {
3067
+ "name" : "INET-ADDRESS-MIB",
3068
+ "type" : "InetAddress",
3069
+ },
3070
+ "ranges" : [
3071
+ {
3072
+ "min" : "4",
3073
+ "max" : "4"
3074
+ },
3075
+ {
3076
+ "min" : "16",
3077
+ "max" : "16"
3078
+ },
3079
+ ],
3080
+ "range" : {
3081
+ "min" : "4",
3082
+ "max" : "16"
3083
+ },
3084
+ },
3085
+ }, # syntax
3086
+ "description" :
3087
+ """An implementation is required to support global IPv4
3088
+
3089
+
3090
+
3091
+ and/or IPv6 addresses, depending on its support
3092
+ for IPv4 and IPv6.""",
3093
+ },
3094
+ "natAddrPortBindGlobalAddrType" : {
3095
+ "module" : "NAT-MIB",
3096
+ "syntax" : {
3097
+ "type" : {
3098
+ "basetype" : "Enumeration",
3099
+ "parent module" : {
3100
+ "name" : "INET-ADDRESS-MIB",
3101
+ "type" : "InetAddressType",
3102
+ },
3103
+ "ipv4" : {
3104
+ "nodetype" : "namednumber",
3105
+ "number" : "1"
3106
+ },
3107
+ "ipv6" : {
3108
+ "nodetype" : "namednumber",
3109
+ "number" : "2"
3110
+ },
3111
+ },
3112
+ }, # syntax
3113
+ "description" :
3114
+ """An implementation is required to support global IPv4
3115
+ and/or IPv6 addresses, depending on its support
3116
+ for IPv4 and IPv6.""",
3117
+ },
3118
+ "natAddrPortBindGlobalAddr" : {
3119
+ "module" : "NAT-MIB",
3120
+ "syntax" : {
3121
+ "type" : {
3122
+ "basetype" : "OctetString",
3123
+ "parent module" : {
3124
+ "name" : "INET-ADDRESS-MIB",
3125
+ "type" : "InetAddress",
3126
+ },
3127
+ "ranges" : [
3128
+ {
3129
+ "min" : "4",
3130
+ "max" : "4"
3131
+ },
3132
+ {
3133
+ "min" : "16",
3134
+ "max" : "16"
3135
+ },
3136
+ ],
3137
+ "range" : {
3138
+ "min" : "4",
3139
+ "max" : "16"
3140
+ },
3141
+ },
3142
+ }, # syntax
3143
+ "description" :
3144
+ """An implementation is required to support global IPv4
3145
+ and/or IPv6 addresses, depending on its support
3146
+ for IPv4 and IPv6.""",
3147
+ },
3148
+ "natSessionPrivateAddrType" : {
3149
+ "module" : "NAT-MIB",
3150
+ "syntax" : {
3151
+ "type" : {
3152
+ "basetype" : "Enumeration",
3153
+ "parent module" : {
3154
+ "name" : "INET-ADDRESS-MIB",
3155
+ "type" : "InetAddressType",
3156
+ },
3157
+ "ipv4" : {
3158
+ "nodetype" : "namednumber",
3159
+ "number" : "1"
3160
+ },
3161
+ "ipv6" : {
3162
+ "nodetype" : "namednumber",
3163
+ "number" : "2"
3164
+ },
3165
+ },
3166
+ }, # syntax
3167
+ "description" :
3168
+ """An implementation is required to support global IPv4
3169
+ and/or IPv6 addresses, depending on its support
3170
+ for IPv4 and IPv6.""",
3171
+ },
3172
+ "natSessionPrivateSrcAddr" : {
3173
+ "module" : "NAT-MIB",
3174
+ "syntax" : {
3175
+ "type" : {
3176
+ "basetype" : "OctetString",
3177
+ "parent module" : {
3178
+ "name" : "INET-ADDRESS-MIB",
3179
+ "type" : "InetAddress",
3180
+ },
3181
+ "ranges" : [
3182
+ {
3183
+ "min" : "4",
3184
+ "max" : "4"
3185
+ },
3186
+ {
3187
+ "min" : "16",
3188
+ "max" : "16"
3189
+ },
3190
+ ],
3191
+ "range" : {
3192
+ "min" : "4",
3193
+ "max" : "16"
3194
+ },
3195
+ },
3196
+ }, # syntax
3197
+ "description" :
3198
+ """An implementation is required to support global IPv4
3199
+ and/or IPv6 addresses, depending on its support
3200
+ for IPv4 and IPv6.""",
3201
+ },
3202
+ "natSessionPrivateDstAddr" : {
3203
+ "module" : "NAT-MIB",
3204
+ "syntax" : {
3205
+ "type" : {
3206
+ "basetype" : "OctetString",
3207
+ "parent module" : {
3208
+ "name" : "INET-ADDRESS-MIB",
3209
+ "type" : "InetAddress",
3210
+ },
3211
+ "ranges" : [
3212
+ {
3213
+ "min" : "4",
3214
+ "max" : "4"
3215
+ },
3216
+ {
3217
+ "min" : "16",
3218
+ "max" : "16"
3219
+ },
3220
+ ],
3221
+ "range" : {
3222
+ "min" : "4",
3223
+ "max" : "16"
3224
+ },
3225
+ },
3226
+ }, # syntax
3227
+ "description" :
3228
+ """An implementation is required to support global IPv4
3229
+ and/or IPv6 addresses, depending on its support
3230
+ for IPv4 and IPv6.""",
3231
+ },
3232
+ "natSessionPublicAddrType" : {
3233
+ "module" : "NAT-MIB",
3234
+ "syntax" : {
3235
+ "type" : {
3236
+ "basetype" : "Enumeration",
3237
+ "parent module" : {
3238
+ "name" : "INET-ADDRESS-MIB",
3239
+ "type" : "InetAddressType",
3240
+ },
3241
+ "ipv4" : {
3242
+ "nodetype" : "namednumber",
3243
+ "number" : "1"
3244
+ },
3245
+ "ipv6" : {
3246
+ "nodetype" : "namednumber",
3247
+ "number" : "2"
3248
+ },
3249
+ },
3250
+ }, # syntax
3251
+ "description" :
3252
+ """An implementation is required to support global IPv4
3253
+ and/or IPv6 addresses, depending on its support
3254
+ for IPv4 and IPv6.""",
3255
+ },
3256
+ "natSessionPublicSrcAddr" : {
3257
+ "module" : "NAT-MIB",
3258
+ "syntax" : {
3259
+ "type" : {
3260
+ "basetype" : "OctetString",
3261
+ "parent module" : {
3262
+ "name" : "INET-ADDRESS-MIB",
3263
+ "type" : "InetAddress",
3264
+ },
3265
+ "ranges" : [
3266
+ {
3267
+ "min" : "4",
3268
+ "max" : "4"
3269
+ },
3270
+ {
3271
+ "min" : "16",
3272
+ "max" : "16"
3273
+ },
3274
+ ],
3275
+ "range" : {
3276
+ "min" : "4",
3277
+ "max" : "16"
3278
+ },
3279
+ },
3280
+ }, # syntax
3281
+ "description" :
3282
+ """An implementation is required to support global IPv4
3283
+ and/or IPv6 addresses, depending on its support
3284
+ for IPv4 and IPv6.""",
3285
+ },
3286
+ "natSessionPublicDstAddr" : {
3287
+ "module" : "NAT-MIB",
3288
+ "syntax" : {
3289
+ "type" : {
3290
+ "basetype" : "OctetString",
3291
+ "parent module" : {
3292
+ "name" : "INET-ADDRESS-MIB",
3293
+ "type" : "InetAddress",
3294
+ },
3295
+ "ranges" : [
3296
+ {
3297
+ "min" : "4",
3298
+ "max" : "4"
3299
+ },
3300
+ {
3301
+ "min" : "16",
3302
+ "max" : "16"
3303
+ },
3304
+ ],
3305
+ "range" : {
3306
+ "min" : "4",
3307
+ "max" : "16"
3308
+ },
3309
+ },
3310
+ }, # syntax
3311
+ "description" :
3312
+ """An implementation is required to support global IPv4
3313
+ and/or IPv6 addresses, depending on its support
3314
+ for IPv4 and IPv6.""",
3315
+ },
3316
+ }, # refinements
3317
+
3318
+ }, # compliance
3319
+ "natMIBReadOnlyCompliance" : {
3320
+ "nodetype" : "compliance",
3321
+ "moduleName" : "NAT-MIB",
3322
+ "oid" : "1.3.6.1.2.1.123.2.2.2",
3323
+ "status" : "current",
3324
+ "description" :
3325
+ """When this MIB is implemented without support for
3326
+ read-create (i.e., in read-only mode), then such an
3327
+ implementation can claim read-only compliance.
3328
+ Such a device can then be monitored but cannot be
3329
+ configured with this MIB.
3330
+
3331
+ The following index objects cannot be added as OBJECT
3332
+ clauses but nevertheless have the compliance
3333
+ requirements:""",
3334
+ "requires" : {
3335
+ "ifCounterDiscontinuityGroup" : {
3336
+ "nodetype" : "mandatory",
3337
+ "module" : "IF-MIB"
3338
+ },
3339
+ "natConfigGroup" : {
3340
+ "nodetype" : "mandatory",
3341
+ "module" : "NAT-MIB"
3342
+ },
3343
+ "natTranslationGroup" : {
3344
+ "nodetype" : "mandatory",
3345
+ "module" : "NAT-MIB"
3346
+ },
3347
+ "natStatsInterfaceGroup" : {
3348
+ "nodetype" : "mandatory",
3349
+ "module" : "NAT-MIB"
3350
+ },
3351
+ "natStatsProtocolGroup" : {
3352
+ "nodetype" : "optional",
3353
+ "module" : "NAT-MIB",
3354
+ "description" :
3355
+ """This group is optional.""",
3356
+ },
3357
+ "natStatsAddrMapGroup" : {
3358
+ "nodetype" : "optional",
3359
+ "module" : "NAT-MIB",
3360
+ "description" :
3361
+ """This group is optional.""",
3362
+ },
3363
+ "natMIBNotificationGroup" : {
3364
+ "nodetype" : "optional",
3365
+ "module" : "NAT-MIB",
3366
+ "description" :
3367
+ """This group is optional.""",
3368
+ },
3369
+ }, # requires
3370
+ "refinements" : {
3371
+ "natInterfaceRowStatus" : {
3372
+ "module" : "NAT-MIB",
3373
+ "syntax" : {
3374
+ "type" : {
3375
+ "basetype" : "Enumeration",
3376
+ "parent module" : {
3377
+ "name" : "SNMPv2-TC",
3378
+ "type" : "RowStatus",
3379
+ },
3380
+ "active" : {
3381
+ "nodetype" : "namednumber",
3382
+ "number" : "1"
3383
+ },
3384
+ },
3385
+ }, # syntax
3386
+ "access" : "readonly",
3387
+ "description" :
3388
+ """Write access is not required, and active is the only
3389
+ status that needs to be supported.""",
3390
+ },
3391
+ "natAddrMapLocalAddrType" : {
3392
+ "module" : "NAT-MIB",
3393
+ "syntax" : {
3394
+ "type" : {
3395
+ "basetype" : "Enumeration",
3396
+ "parent module" : {
3397
+ "name" : "INET-ADDRESS-MIB",
3398
+ "type" : "InetAddressType",
3399
+ },
3400
+ "ipv4" : {
3401
+ "nodetype" : "namednumber",
3402
+ "number" : "1"
3403
+ },
3404
+ "ipv6" : {
3405
+ "nodetype" : "namednumber",
3406
+ "number" : "2"
3407
+ },
3408
+ },
3409
+ }, # syntax
3410
+ "access" : "readonly",
3411
+ "description" :
3412
+ """Write access is not required. An implementation is
3413
+ required to support global IPv4 and/or IPv6 addresses,
3414
+ depending on its support for IPv4 and IPv6.""",
3415
+ },
3416
+ "natAddrMapLocalAddrFrom" : {
3417
+ "module" : "NAT-MIB",
3418
+ "syntax" : {
3419
+ "type" : {
3420
+ "basetype" : "OctetString",
3421
+ "parent module" : {
3422
+ "name" : "INET-ADDRESS-MIB",
3423
+ "type" : "InetAddress",
3424
+ },
3425
+ "ranges" : [
3426
+ {
3427
+ "min" : "4",
3428
+ "max" : "4"
3429
+ },
3430
+ {
3431
+ "min" : "16",
3432
+ "max" : "16"
3433
+ },
3434
+ ],
3435
+ "range" : {
3436
+ "min" : "4",
3437
+ "max" : "16"
3438
+ },
3439
+ },
3440
+ }, # syntax
3441
+ "access" : "readonly",
3442
+ "description" :
3443
+ """Write access is not required. An implementation is
3444
+ required to support global IPv4 and/or IPv6 addresses,
3445
+ depending on its support for IPv4 and IPv6.""",
3446
+ },
3447
+ "natAddrMapLocalAddrTo" : {
3448
+ "module" : "NAT-MIB",
3449
+ "syntax" : {
3450
+ "type" : {
3451
+ "basetype" : "OctetString",
3452
+ "parent module" : {
3453
+ "name" : "INET-ADDRESS-MIB",
3454
+ "type" : "InetAddress",
3455
+ },
3456
+ "ranges" : [
3457
+ {
3458
+ "min" : "4",
3459
+ "max" : "4"
3460
+ },
3461
+ {
3462
+ "min" : "16",
3463
+ "max" : "16"
3464
+ },
3465
+ ],
3466
+ "range" : {
3467
+ "min" : "4",
3468
+ "max" : "16"
3469
+ },
3470
+ },
3471
+ }, # syntax
3472
+ "access" : "readonly",
3473
+ "description" :
3474
+ """Write access is not required. An implementation is
3475
+ required to support global IPv4 and/or IPv6 addresses,
3476
+ depending on its support for IPv4 and IPv6.""",
3477
+ },
3478
+ "natAddrMapGlobalAddrType" : {
3479
+ "module" : "NAT-MIB",
3480
+ "syntax" : {
3481
+ "type" : {
3482
+ "basetype" : "Enumeration",
3483
+ "parent module" : {
3484
+ "name" : "INET-ADDRESS-MIB",
3485
+ "type" : "InetAddressType",
3486
+ },
3487
+ "ipv4" : {
3488
+ "nodetype" : "namednumber",
3489
+ "number" : "1"
3490
+ },
3491
+ "ipv6" : {
3492
+ "nodetype" : "namednumber",
3493
+ "number" : "2"
3494
+ },
3495
+ },
3496
+ }, # syntax
3497
+ "access" : "readonly",
3498
+ "description" :
3499
+ """Write access is not required. An implementation is
3500
+ required to support global IPv4 and/or IPv6 addresses,
3501
+ depending on its support for IPv4 and IPv6.""",
3502
+ },
3503
+ "natAddrMapGlobalAddrFrom" : {
3504
+ "module" : "NAT-MIB",
3505
+ "syntax" : {
3506
+ "type" : {
3507
+ "basetype" : "OctetString",
3508
+ "parent module" : {
3509
+ "name" : "INET-ADDRESS-MIB",
3510
+ "type" : "InetAddress",
3511
+ },
3512
+ "ranges" : [
3513
+ {
3514
+ "min" : "4",
3515
+ "max" : "4"
3516
+ },
3517
+ {
3518
+ "min" : "16",
3519
+ "max" : "16"
3520
+ },
3521
+ ],
3522
+ "range" : {
3523
+ "min" : "4",
3524
+ "max" : "16"
3525
+ },
3526
+ },
3527
+ }, # syntax
3528
+ "access" : "readonly",
3529
+ "description" :
3530
+ """Write access is not required. An implementation is
3531
+ required to support global IPv4 and/or IPv6 addresses,
3532
+ depending on its support for IPv4 and IPv6.""",
3533
+ },
3534
+ "natAddrMapGlobalAddrTo" : {
3535
+ "module" : "NAT-MIB",
3536
+ "syntax" : {
3537
+ "type" : {
3538
+ "basetype" : "OctetString",
3539
+ "parent module" : {
3540
+ "name" : "INET-ADDRESS-MIB",
3541
+ "type" : "InetAddress",
3542
+ },
3543
+ "ranges" : [
3544
+ {
3545
+ "min" : "4",
3546
+ "max" : "4"
3547
+ },
3548
+ {
3549
+ "min" : "16",
3550
+ "max" : "16"
3551
+ },
3552
+ ],
3553
+ "range" : {
3554
+ "min" : "4",
3555
+ "max" : "16"
3556
+ },
3557
+ },
3558
+ }, # syntax
3559
+ "access" : "readonly",
3560
+ "description" :
3561
+ """Write access is not required. An implementation is
3562
+ required to support global IPv4 and/or IPv6 addresses,
3563
+ depending on its support for IPv4 and IPv6.""",
3564
+ },
3565
+ "natAddrMapRowStatus" : {
3566
+ "module" : "NAT-MIB",
3567
+ "syntax" : {
3568
+ "type" : {
3569
+ "basetype" : "Enumeration",
3570
+ "parent module" : {
3571
+ "name" : "SNMPv2-TC",
3572
+ "type" : "RowStatus",
3573
+ },
3574
+ "active" : {
3575
+ "nodetype" : "namednumber",
3576
+ "number" : "1"
3577
+ },
3578
+ },
3579
+ }, # syntax
3580
+ "access" : "readonly",
3581
+ "description" :
3582
+ """Write access is not required, and active is the only
3583
+ status that needs to be supported.""",
3584
+ },
3585
+ "natAddrBindGlobalAddrType" : {
3586
+ "module" : "NAT-MIB",
3587
+ "syntax" : {
3588
+ "type" : {
3589
+ "basetype" : "Enumeration",
3590
+ "parent module" : {
3591
+ "name" : "INET-ADDRESS-MIB",
3592
+ "type" : "InetAddressType",
3593
+ },
3594
+ "ipv4" : {
3595
+ "nodetype" : "namednumber",
3596
+ "number" : "1"
3597
+ },
3598
+ "ipv6" : {
3599
+ "nodetype" : "namednumber",
3600
+ "number" : "2"
3601
+ },
3602
+ },
3603
+ }, # syntax
3604
+ "description" :
3605
+ """An implementation is required to support global IPv4
3606
+ and/or IPv6 addresses, depending on its support for
3607
+ IPv4 and IPv6.""",
3608
+ },
3609
+ "natAddrBindGlobalAddr" : {
3610
+ "module" : "NAT-MIB",
3611
+ "syntax" : {
3612
+ "type" : {
3613
+ "basetype" : "OctetString",
3614
+ "parent module" : {
3615
+ "name" : "INET-ADDRESS-MIB",
3616
+ "type" : "InetAddress",
3617
+ },
3618
+ "ranges" : [
3619
+ {
3620
+ "min" : "4",
3621
+ "max" : "4"
3622
+ },
3623
+ {
3624
+ "min" : "16",
3625
+ "max" : "16"
3626
+ },
3627
+ ],
3628
+ "range" : {
3629
+ "min" : "4",
3630
+ "max" : "16"
3631
+ },
3632
+ },
3633
+ }, # syntax
3634
+ "description" :
3635
+ """An implementation is required to support global IPv4
3636
+ and/or IPv6 addresses, depending on its support for
3637
+ IPv4 and IPv6.""",
3638
+ },
3639
+ "natAddrPortBindGlobalAddrType" : {
3640
+ "module" : "NAT-MIB",
3641
+ "syntax" : {
3642
+ "type" : {
3643
+ "basetype" : "Enumeration",
3644
+ "parent module" : {
3645
+ "name" : "INET-ADDRESS-MIB",
3646
+ "type" : "InetAddressType",
3647
+ },
3648
+ "ipv4" : {
3649
+ "nodetype" : "namednumber",
3650
+ "number" : "1"
3651
+ },
3652
+ "ipv6" : {
3653
+ "nodetype" : "namednumber",
3654
+ "number" : "2"
3655
+ },
3656
+ },
3657
+ }, # syntax
3658
+ "description" :
3659
+ """An implementation is required to support global IPv4
3660
+ and/or IPv6 addresses, depending on its support for
3661
+ IPv4 and IPv6.""",
3662
+ },
3663
+ "natAddrPortBindGlobalAddr" : {
3664
+ "module" : "NAT-MIB",
3665
+ "syntax" : {
3666
+ "type" : {
3667
+ "basetype" : "OctetString",
3668
+ "parent module" : {
3669
+ "name" : "INET-ADDRESS-MIB",
3670
+ "type" : "InetAddress",
3671
+ },
3672
+ "ranges" : [
3673
+ {
3674
+ "min" : "4",
3675
+ "max" : "4"
3676
+ },
3677
+ {
3678
+ "min" : "16",
3679
+ "max" : "16"
3680
+ },
3681
+ ],
3682
+ "range" : {
3683
+ "min" : "4",
3684
+ "max" : "16"
3685
+ },
3686
+ },
3687
+ }, # syntax
3688
+ "description" :
3689
+ """An implementation is required to support global IPv4
3690
+ and/or IPv6 addresses, depending on its support for
3691
+ IPv4 and IPv6.""",
3692
+ },
3693
+ "natSessionPrivateAddrType" : {
3694
+ "module" : "NAT-MIB",
3695
+ "syntax" : {
3696
+ "type" : {
3697
+ "basetype" : "Enumeration",
3698
+ "parent module" : {
3699
+ "name" : "INET-ADDRESS-MIB",
3700
+ "type" : "InetAddressType",
3701
+ },
3702
+ "ipv4" : {
3703
+ "nodetype" : "namednumber",
3704
+ "number" : "1"
3705
+ },
3706
+ "ipv6" : {
3707
+ "nodetype" : "namednumber",
3708
+ "number" : "2"
3709
+ },
3710
+ },
3711
+ }, # syntax
3712
+ "description" :
3713
+ """An implementation is required to support global IPv4
3714
+ and/or IPv6 addresses, depending on its support for
3715
+ IPv4 and IPv6.""",
3716
+ },
3717
+ "natSessionPrivateSrcAddr" : {
3718
+ "module" : "NAT-MIB",
3719
+ "syntax" : {
3720
+ "type" : {
3721
+ "basetype" : "OctetString",
3722
+ "parent module" : {
3723
+ "name" : "INET-ADDRESS-MIB",
3724
+ "type" : "InetAddress",
3725
+ },
3726
+ "ranges" : [
3727
+ {
3728
+ "min" : "4",
3729
+ "max" : "4"
3730
+ },
3731
+ {
3732
+ "min" : "16",
3733
+ "max" : "16"
3734
+ },
3735
+ ],
3736
+ "range" : {
3737
+ "min" : "4",
3738
+ "max" : "16"
3739
+ },
3740
+ },
3741
+ }, # syntax
3742
+ "description" :
3743
+ """An implementation is required to support global IPv4
3744
+ and/or IPv6 addresses, depending on its support for
3745
+ IPv4 and IPv6.""",
3746
+ },
3747
+ "natSessionPrivateDstAddr" : {
3748
+ "module" : "NAT-MIB",
3749
+ "syntax" : {
3750
+ "type" : {
3751
+ "basetype" : "OctetString",
3752
+ "parent module" : {
3753
+ "name" : "INET-ADDRESS-MIB",
3754
+ "type" : "InetAddress",
3755
+ },
3756
+ "ranges" : [
3757
+ {
3758
+ "min" : "4",
3759
+ "max" : "4"
3760
+ },
3761
+ {
3762
+ "min" : "16",
3763
+ "max" : "16"
3764
+ },
3765
+ ],
3766
+ "range" : {
3767
+ "min" : "4",
3768
+ "max" : "16"
3769
+ },
3770
+ },
3771
+ }, # syntax
3772
+ "description" :
3773
+ """An implementation is required to support global IPv4
3774
+ and/or IPv6 addresses, depending on its support for
3775
+ IPv4 and IPv6.""",
3776
+ },
3777
+ "natSessionPublicAddrType" : {
3778
+ "module" : "NAT-MIB",
3779
+ "syntax" : {
3780
+ "type" : {
3781
+ "basetype" : "Enumeration",
3782
+ "parent module" : {
3783
+ "name" : "INET-ADDRESS-MIB",
3784
+ "type" : "InetAddressType",
3785
+ },
3786
+ "ipv4" : {
3787
+ "nodetype" : "namednumber",
3788
+ "number" : "1"
3789
+ },
3790
+ "ipv6" : {
3791
+ "nodetype" : "namednumber",
3792
+ "number" : "2"
3793
+ },
3794
+ },
3795
+ }, # syntax
3796
+ "description" :
3797
+ """An implementation is required to support global IPv4
3798
+ and/or IPv6 addresses, depending on its support for
3799
+ IPv4 and IPv6.""",
3800
+ },
3801
+ "natSessionPublicSrcAddr" : {
3802
+ "module" : "NAT-MIB",
3803
+ "syntax" : {
3804
+ "type" : {
3805
+ "basetype" : "OctetString",
3806
+ "parent module" : {
3807
+ "name" : "INET-ADDRESS-MIB",
3808
+ "type" : "InetAddress",
3809
+ },
3810
+ "ranges" : [
3811
+ {
3812
+ "min" : "4",
3813
+ "max" : "4"
3814
+ },
3815
+ {
3816
+ "min" : "16",
3817
+ "max" : "16"
3818
+ },
3819
+ ],
3820
+ "range" : {
3821
+ "min" : "4",
3822
+ "max" : "16"
3823
+ },
3824
+ },
3825
+ }, # syntax
3826
+ "description" :
3827
+ """An implementation is required to support global IPv4
3828
+ and/or IPv6 addresses, depending on its support for
3829
+ IPv4 and IPv6.""",
3830
+ },
3831
+ "natSessionPublicDstAddr" : {
3832
+ "module" : "NAT-MIB",
3833
+ "syntax" : {
3834
+ "type" : {
3835
+ "basetype" : "OctetString",
3836
+ "parent module" : {
3837
+ "name" : "INET-ADDRESS-MIB",
3838
+ "type" : "InetAddress",
3839
+ },
3840
+ "ranges" : [
3841
+ {
3842
+ "min" : "4",
3843
+ "max" : "4"
3844
+ },
3845
+ {
3846
+ "min" : "16",
3847
+ "max" : "16"
3848
+ },
3849
+ ],
3850
+ "range" : {
3851
+ "min" : "4",
3852
+ "max" : "16"
3853
+ },
3854
+ },
3855
+ }, # syntax
3856
+ "description" :
3857
+ """An implementation is required to support global IPv4
3858
+ and/or IPv6 addresses, depending on its support for
3859
+ IPv4 and IPv6.""",
3860
+ },
3861
+ }, # refinements
3862
+
3863
+ }, # compliance
3864
+ }, # compliances
3865
+
3866
+ }