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,4399 @@
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 APPLETALK-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/APPLETALK-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "APPLETALK-MIB",
11
+
12
+ "APPLETALK-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv1",
15
+ },
16
+
17
+ "imports" : (
18
+ {"module" : "RFC1155-SMI", "name" : "Counter"},
19
+ {"module" : "RFC1155-SMI", "name" : "IpAddress"},
20
+ {"module" : "RFC1155-SMI", "name" : "TimeTicks"},
21
+ {"module" : "RFC1213-MIB", "name" : "DisplayString"},
22
+ {"module" : "RFC1213-MIB", "name" : "mib-2"},
23
+ {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
24
+ ),
25
+
26
+ "typedefs" : {
27
+ "ATNetworkNumber" : {
28
+ "basetype" : "OctetString",
29
+ "ranges" : [
30
+ {
31
+ "min" : "2",
32
+ "max" : "2"
33
+ },
34
+ ],
35
+ "range" : {
36
+ "min" : "2",
37
+ "max" : "2"
38
+ },
39
+ },
40
+ "DdpNodeAddress" : {
41
+ "basetype" : "OctetString",
42
+ "ranges" : [
43
+ {
44
+ "min" : "3",
45
+ "max" : "3"
46
+ },
47
+ ],
48
+ "range" : {
49
+ "min" : "3",
50
+ "max" : "3"
51
+ },
52
+ },
53
+ "DdpSocketAddress" : {
54
+ "basetype" : "OctetString",
55
+ "ranges" : [
56
+ {
57
+ "min" : "4",
58
+ "max" : "4"
59
+ },
60
+ ],
61
+ "range" : {
62
+ "min" : "4",
63
+ "max" : "4"
64
+ },
65
+ },
66
+ "ATName" : {
67
+ "basetype" : "OctetString",
68
+ "ranges" : [
69
+ {
70
+ "min" : "0",
71
+ "max" : "32"
72
+ },
73
+ ],
74
+ "range" : {
75
+ "min" : "0",
76
+ "max" : "32"
77
+ },
78
+ },
79
+ }, # typedefs
80
+
81
+ "nodes" : {
82
+ "appletalk" : {
83
+ "nodetype" : "node",
84
+ "moduleName" : "APPLETALK-MIB",
85
+ "oid" : "1.3.6.1.2.1.13",
86
+ }, # node
87
+ "llap" : {
88
+ "nodetype" : "node",
89
+ "moduleName" : "APPLETALK-MIB",
90
+ "oid" : "1.3.6.1.2.1.13.1",
91
+ }, # node
92
+ "llapTable" : {
93
+ "nodetype" : "table",
94
+ "moduleName" : "APPLETALK-MIB",
95
+ "oid" : "1.3.6.1.2.1.13.1.1",
96
+ "status" : "current",
97
+ "description" :
98
+ """The list of LLAP entries.""",
99
+ }, # table
100
+ "llapEntry" : {
101
+ "nodetype" : "row",
102
+ "moduleName" : "APPLETALK-MIB",
103
+ "oid" : "1.3.6.1.2.1.13.1.1.1",
104
+ "status" : "current",
105
+ "linkage" : [
106
+ "llapIfIndex",
107
+ ],
108
+ "description" :
109
+ """An LLAP entry containing objects for the LocalTalk
110
+ Link Access Protocol for a particular LocalTalk
111
+ interface.
112
+
113
+ As an example, an instance of the llapOutPkts object
114
+ might be named llapOutPks.1""",
115
+ }, # row
116
+ "llapIfIndex" : {
117
+ "nodetype" : "column",
118
+ "moduleName" : "APPLETALK-MIB",
119
+ "oid" : "1.3.6.1.2.1.13.1.1.1.1",
120
+ "status" : "current",
121
+ "syntax" : {
122
+ "type" : { "module" :"", "name" : "Integer32"},
123
+ },
124
+ "access" : "readonly",
125
+ "description" :
126
+ """The LLAP interface to which this entry pertains.
127
+ The interface identified by a particular value of
128
+ this index is the same interface as identified
129
+ by the same value of ifIndex.""",
130
+ }, # column
131
+ "llapInPkts" : {
132
+ "nodetype" : "column",
133
+ "moduleName" : "APPLETALK-MIB",
134
+ "oid" : "1.3.6.1.2.1.13.1.1.1.2",
135
+ "status" : "obsolete",
136
+ "syntax" : {
137
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
138
+ },
139
+ "access" : "readonly",
140
+ "description" :
141
+ """The total number of good data packets received on
142
+ this LocalTalk interface.""",
143
+ }, # column
144
+ "llapOutPkts" : {
145
+ "nodetype" : "column",
146
+ "moduleName" : "APPLETALK-MIB",
147
+ "oid" : "1.3.6.1.2.1.13.1.1.1.3",
148
+ "status" : "obsolete",
149
+ "syntax" : {
150
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
151
+ },
152
+ "access" : "readonly",
153
+ "description" :
154
+ """The total number of data packets transmitted on
155
+ this LocalTalk interface.""",
156
+ }, # column
157
+ "llapInNoHandlers" : {
158
+ "nodetype" : "column",
159
+ "moduleName" : "APPLETALK-MIB",
160
+ "oid" : "1.3.6.1.2.1.13.1.1.1.4",
161
+ "status" : "obsolete",
162
+ "syntax" : {
163
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
164
+ },
165
+ "access" : "readonly",
166
+ "description" :
167
+ """The total number of good packets received on this
168
+ LocalTalk interface for which there was no protocol
169
+ handler.""",
170
+ }, # column
171
+ "llapInLengthErrors" : {
172
+ "nodetype" : "column",
173
+ "moduleName" : "APPLETALK-MIB",
174
+ "oid" : "1.3.6.1.2.1.13.1.1.1.5",
175
+ "status" : "current",
176
+ "syntax" : {
177
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
178
+ },
179
+ "access" : "readonly",
180
+ "description" :
181
+ """The total number of packets received on this LocalTalk
182
+ interface whose actual length did not match the length
183
+ in the header.""",
184
+ }, # column
185
+ "llapInErrors" : {
186
+ "nodetype" : "column",
187
+ "moduleName" : "APPLETALK-MIB",
188
+ "oid" : "1.3.6.1.2.1.13.1.1.1.6",
189
+ "status" : "obsolete",
190
+ "syntax" : {
191
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
192
+ },
193
+ "access" : "readonly",
194
+ "description" :
195
+ """The total number of packets containing errors received
196
+ on this LocalTalk interface.""",
197
+ }, # column
198
+ "llapCollisions" : {
199
+ "nodetype" : "column",
200
+ "moduleName" : "APPLETALK-MIB",
201
+ "oid" : "1.3.6.1.2.1.13.1.1.1.7",
202
+ "status" : "current",
203
+ "syntax" : {
204
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
205
+ },
206
+ "access" : "readonly",
207
+ "description" :
208
+ """The total number of collisions assumed on this
209
+ LocalTalk interface due to the lack of a lapCTS reply.""",
210
+ }, # column
211
+ "llapDefers" : {
212
+ "nodetype" : "column",
213
+ "moduleName" : "APPLETALK-MIB",
214
+ "oid" : "1.3.6.1.2.1.13.1.1.1.8",
215
+ "status" : "current",
216
+ "syntax" : {
217
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
218
+ },
219
+ "access" : "readonly",
220
+ "description" :
221
+ """The total number of times this LocalTalk interface
222
+ deferred to other packets.""",
223
+ }, # column
224
+ "llapNoDataErrors" : {
225
+ "nodetype" : "column",
226
+ "moduleName" : "APPLETALK-MIB",
227
+ "oid" : "1.3.6.1.2.1.13.1.1.1.9",
228
+ "status" : "current",
229
+ "syntax" : {
230
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
231
+ },
232
+ "access" : "readonly",
233
+ "description" :
234
+ """The total number of times this LocalTalk interface
235
+ received a lapRTS packet and expected a data packet,
236
+ but did not receive any data packet.""",
237
+ }, # column
238
+ "llapRandomCTSErrors" : {
239
+ "nodetype" : "column",
240
+ "moduleName" : "APPLETALK-MIB",
241
+ "oid" : "1.3.6.1.2.1.13.1.1.1.10",
242
+ "status" : "current",
243
+ "syntax" : {
244
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
245
+ },
246
+ "access" : "readonly",
247
+ "description" :
248
+ """The total number of times this LocalTalk interface
249
+ received a lapCTS packet that was not solicited by a
250
+ lapRTS packet.""",
251
+ }, # column
252
+ "llapFCSErrors" : {
253
+ "nodetype" : "column",
254
+ "moduleName" : "APPLETALK-MIB",
255
+ "oid" : "1.3.6.1.2.1.13.1.1.1.11",
256
+ "status" : "current",
257
+ "syntax" : {
258
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
259
+ },
260
+ "access" : "readonly",
261
+ "description" :
262
+ """The total number of times this LocalTalk interface
263
+ received a packet with an FCS (Frame Check Sequence)
264
+ error.""",
265
+ }, # column
266
+ "aarp" : {
267
+ "nodetype" : "node",
268
+ "moduleName" : "APPLETALK-MIB",
269
+ "oid" : "1.3.6.1.2.1.13.2",
270
+ }, # node
271
+ "aarpTable" : {
272
+ "nodetype" : "table",
273
+ "moduleName" : "APPLETALK-MIB",
274
+ "oid" : "1.3.6.1.2.1.13.2.1",
275
+ "status" : "current",
276
+ "description" :
277
+ """The AppleTalk Address Translation Table contains an
278
+ equivalence of AppleTalk Network Addresses to the link
279
+ layer physical address.""",
280
+ }, # table
281
+ "aarpEntry" : {
282
+ "nodetype" : "row",
283
+ "moduleName" : "APPLETALK-MIB",
284
+ "oid" : "1.3.6.1.2.1.13.2.1.1",
285
+ "status" : "current",
286
+ "linkage" : [
287
+ "aarpIfIndex",
288
+ "aarpNetAddress",
289
+ ],
290
+ "description" :
291
+ """Each entry contains one AppleTalk Network Address to
292
+ physical address equivalence.
293
+
294
+ As an example, an instance of the aarpPhysAddress
295
+ object might be named aarpPhysAddress.1.0.80.234""",
296
+ }, # row
297
+ "aarpIfIndex" : {
298
+ "nodetype" : "column",
299
+ "moduleName" : "APPLETALK-MIB",
300
+ "oid" : "1.3.6.1.2.1.13.2.1.1.1",
301
+ "status" : "current",
302
+ "syntax" : {
303
+ "type" : { "module" :"", "name" : "Integer32"},
304
+ },
305
+ "access" : "readonly",
306
+ "description" :
307
+ """The interface on which this entry's equivalence is
308
+ effective. The interface identified by a particular
309
+ value of this index is the same interface as
310
+ identified by the same value of ifIndex.""",
311
+ }, # column
312
+ "aarpPhysAddress" : {
313
+ "nodetype" : "column",
314
+ "moduleName" : "APPLETALK-MIB",
315
+ "oid" : "1.3.6.1.2.1.13.2.1.1.2",
316
+ "status" : "current",
317
+ "syntax" : {
318
+ "type" : { "module" :"", "name" : "OctetString"},
319
+ },
320
+ "access" : "readwrite",
321
+ "description" :
322
+ """The media-dependent physical address.""",
323
+ }, # column
324
+ "aarpNetAddress" : {
325
+ "nodetype" : "column",
326
+ "moduleName" : "APPLETALK-MIB",
327
+ "oid" : "1.3.6.1.2.1.13.2.1.1.3",
328
+ "status" : "current",
329
+ "syntax" : {
330
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpNodeAddress"},
331
+ },
332
+ "access" : "readonly",
333
+ "description" :
334
+ """The AppleTalk Network Address corresponding to the
335
+ media-dependent physical address.""",
336
+ }, # column
337
+ "aarpStatus" : {
338
+ "nodetype" : "column",
339
+ "moduleName" : "APPLETALK-MIB",
340
+ "oid" : "1.3.6.1.2.1.13.2.1.1.4",
341
+ "status" : "current",
342
+ "syntax" : {
343
+ "type" : {
344
+ "basetype" : "Enumeration",
345
+ "valid" : {
346
+ "nodetype" : "namednumber",
347
+ "number" : "1"
348
+ },
349
+ "invalid" : {
350
+ "nodetype" : "namednumber",
351
+ "number" : "2"
352
+ },
353
+ },
354
+ },
355
+ "access" : "readwrite",
356
+ "description" :
357
+ """The status of this AARP entry.
358
+ Setting this object to the value invalid(2) has the
359
+ effect of invalidating the corresponding entry in the
360
+ aarpTable. That is, it effectively disassociates
361
+ the mapping identified with said entry. It is an
362
+ implementation-specific matter as to whether the agent
363
+ removes an invalidated entry from the table.
364
+ Accordingly, management stations must be prepared to
365
+ receive from agents tabular information corresponding
366
+ to entries not currently in use. Proper
367
+ interpretation of such entries requires examination
368
+ of the relevant aarpStatus object.""",
369
+ }, # column
370
+ "aarpLookups" : {
371
+ "nodetype" : "scalar",
372
+ "moduleName" : "APPLETALK-MIB",
373
+ "oid" : "1.3.6.1.2.1.13.2.2",
374
+ "status" : "current",
375
+ "syntax" : {
376
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
377
+ },
378
+ "access" : "readonly",
379
+ "description" :
380
+ """The number of times the AARP cache for this entity
381
+ was searched.""",
382
+ }, # scalar
383
+ "aarpHits" : {
384
+ "nodetype" : "scalar",
385
+ "moduleName" : "APPLETALK-MIB",
386
+ "oid" : "1.3.6.1.2.1.13.2.3",
387
+ "status" : "current",
388
+ "syntax" : {
389
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
390
+ },
391
+ "access" : "readonly",
392
+ "description" :
393
+ """The number of times an entry was searched for and
394
+ found in the AARP cache for this entity.""",
395
+ }, # scalar
396
+ "atport" : {
397
+ "nodetype" : "node",
398
+ "moduleName" : "APPLETALK-MIB",
399
+ "oid" : "1.3.6.1.2.1.13.3",
400
+ }, # node
401
+ "atportTable" : {
402
+ "nodetype" : "table",
403
+ "moduleName" : "APPLETALK-MIB",
404
+ "oid" : "1.3.6.1.2.1.13.3.1",
405
+ "status" : "current",
406
+ "description" :
407
+ """A list of AppleTalk ports for this entity.""",
408
+ }, # table
409
+ "atportEntry" : {
410
+ "nodetype" : "row",
411
+ "moduleName" : "APPLETALK-MIB",
412
+ "oid" : "1.3.6.1.2.1.13.3.1.1",
413
+ "status" : "current",
414
+ "linkage" : [
415
+ "atportIndex",
416
+ ],
417
+ "description" :
418
+ """The description of one of the AppleTalk
419
+ ports on this entity.
420
+
421
+ As an example, an instance of the atportNetFrom object
422
+ might be named atportNetFrom.2""",
423
+ }, # row
424
+ "atportIndex" : {
425
+ "nodetype" : "column",
426
+ "moduleName" : "APPLETALK-MIB",
427
+ "oid" : "1.3.6.1.2.1.13.3.1.1.1",
428
+ "status" : "current",
429
+ "syntax" : {
430
+ "type" : { "module" :"", "name" : "Integer32"},
431
+ },
432
+ "access" : "readonly",
433
+ "description" :
434
+ """A unique value for each AppleTalk port.
435
+ Its value is between 1 and the total number of
436
+ AppleTalk ports. The value for each port must
437
+ remain constant at least from the re-initialization
438
+ of the entity's network management system to the
439
+ next re-initialization.""",
440
+ }, # column
441
+ "atportDescr" : {
442
+ "nodetype" : "column",
443
+ "moduleName" : "APPLETALK-MIB",
444
+ "oid" : "1.3.6.1.2.1.13.3.1.1.2",
445
+ "status" : "current",
446
+ "syntax" : {
447
+ "type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
448
+ },
449
+ "access" : "readwrite",
450
+ "description" :
451
+ """A text string containing information about the
452
+ port. This string is intended for presentation
453
+ to a human; it must not contain anything but printable
454
+ ASCII characters.""",
455
+ }, # column
456
+ "atportType" : {
457
+ "nodetype" : "column",
458
+ "moduleName" : "APPLETALK-MIB",
459
+ "oid" : "1.3.6.1.2.1.13.3.1.1.3",
460
+ "status" : "current",
461
+ "syntax" : {
462
+ "type" : {
463
+ "basetype" : "Enumeration",
464
+ "other" : {
465
+ "nodetype" : "namednumber",
466
+ "number" : "1"
467
+ },
468
+ "localtalk" : {
469
+ "nodetype" : "namednumber",
470
+ "number" : "2"
471
+ },
472
+ "ethertalk1" : {
473
+ "nodetype" : "namednumber",
474
+ "number" : "3"
475
+ },
476
+ "ethertalk2" : {
477
+ "nodetype" : "namednumber",
478
+ "number" : "4"
479
+ },
480
+ "tokentalk" : {
481
+ "nodetype" : "namednumber",
482
+ "number" : "5"
483
+ },
484
+ "iptalk" : {
485
+ "nodetype" : "namednumber",
486
+ "number" : "6"
487
+ },
488
+ "serialPPP" : {
489
+ "nodetype" : "namednumber",
490
+ "number" : "7"
491
+ },
492
+ "serialNonstandard" : {
493
+ "nodetype" : "namednumber",
494
+ "number" : "8"
495
+ },
496
+ "virtual" : {
497
+ "nodetype" : "namednumber",
498
+ "number" : "9"
499
+ },
500
+ "fdditalk" : {
501
+ "nodetype" : "namednumber",
502
+ "number" : "10"
503
+ },
504
+ "arctalk" : {
505
+ "nodetype" : "namednumber",
506
+ "number" : "11"
507
+ },
508
+ "smdstalk" : {
509
+ "nodetype" : "namednumber",
510
+ "number" : "12"
511
+ },
512
+ "aurp" : {
513
+ "nodetype" : "namednumber",
514
+ "number" : "13"
515
+ },
516
+ "frameRelay" : {
517
+ "nodetype" : "namednumber",
518
+ "number" : "14"
519
+ },
520
+ "x25" : {
521
+ "nodetype" : "namednumber",
522
+ "number" : "15"
523
+ },
524
+ "ip" : {
525
+ "nodetype" : "namednumber",
526
+ "number" : "16"
527
+ },
528
+ "osi" : {
529
+ "nodetype" : "namednumber",
530
+ "number" : "17"
531
+ },
532
+ "decnetIV" : {
533
+ "nodetype" : "namednumber",
534
+ "number" : "18"
535
+ },
536
+ "arap" : {
537
+ "nodetype" : "namednumber",
538
+ "number" : "19"
539
+ },
540
+ "isdnInThePacketMode" : {
541
+ "nodetype" : "namednumber",
542
+ "number" : "20"
543
+ },
544
+ "nonAppleTalk3Com" : {
545
+ "nodetype" : "namednumber",
546
+ "number" : "21"
547
+ },
548
+ "ipx" : {
549
+ "nodetype" : "namednumber",
550
+ "number" : "22"
551
+ },
552
+ "arns" : {
553
+ "nodetype" : "namednumber",
554
+ "number" : "23"
555
+ },
556
+ "hdlc" : {
557
+ "nodetype" : "namednumber",
558
+ "number" : "24"
559
+ },
560
+ },
561
+ },
562
+ "access" : "readwrite",
563
+ "description" :
564
+ """The type of port, distinguished by the protocol
565
+ immediately below DDP in the protocol stack.""",
566
+ }, # column
567
+ "atportNetStart" : {
568
+ "nodetype" : "column",
569
+ "moduleName" : "APPLETALK-MIB",
570
+ "oid" : "1.3.6.1.2.1.13.3.1.1.4",
571
+ "status" : "current",
572
+ "syntax" : {
573
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
574
+ },
575
+ "access" : "readwrite",
576
+ "description" :
577
+ """The first AppleTalk network address in the range
578
+ configured for this port. If this port is not a
579
+ native AppleTalk port, this object shall have the
580
+ value of two octets of zero.""",
581
+ }, # column
582
+ "atportNetEnd" : {
583
+ "nodetype" : "column",
584
+ "moduleName" : "APPLETALK-MIB",
585
+ "oid" : "1.3.6.1.2.1.13.3.1.1.5",
586
+ "status" : "current",
587
+ "syntax" : {
588
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
589
+ },
590
+ "access" : "readwrite",
591
+ "description" :
592
+ """The last AppleTalk network address in the range
593
+ configured for this port. If the network to which
594
+ this AppleTalk port is connected is a non-extended
595
+ network, or if it is not a native AppleTalk port,
596
+ the value for atportNetEnd shall be two octets of
597
+ zero.""",
598
+ }, # column
599
+ "atportNetAddress" : {
600
+ "nodetype" : "column",
601
+ "moduleName" : "APPLETALK-MIB",
602
+ "oid" : "1.3.6.1.2.1.13.3.1.1.6",
603
+ "status" : "current",
604
+ "syntax" : {
605
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpNodeAddress"},
606
+ },
607
+ "access" : "readwrite",
608
+ "description" :
609
+ """The AppleTalk network address configured for this
610
+ port. In addition, this value may be used as a hint
611
+ for an initial node number used during node-finding.
612
+ If this port is not a native AppleTalk port, this
613
+ object shall have the value of three octets of zero.""",
614
+ }, # column
615
+ "atportStatus" : {
616
+ "nodetype" : "column",
617
+ "moduleName" : "APPLETALK-MIB",
618
+ "oid" : "1.3.6.1.2.1.13.3.1.1.7",
619
+ "status" : "current",
620
+ "syntax" : {
621
+ "type" : {
622
+ "basetype" : "Enumeration",
623
+ "routing" : {
624
+ "nodetype" : "namednumber",
625
+ "number" : "1"
626
+ },
627
+ "unconfigured" : {
628
+ "nodetype" : "namednumber",
629
+ "number" : "2"
630
+ },
631
+ "off" : {
632
+ "nodetype" : "namednumber",
633
+ "number" : "3"
634
+ },
635
+ "invalid" : {
636
+ "nodetype" : "namednumber",
637
+ "number" : "4"
638
+ },
639
+ "endNode" : {
640
+ "nodetype" : "namednumber",
641
+ "number" : "5"
642
+ },
643
+ "offDueToConflict" : {
644
+ "nodetype" : "namednumber",
645
+ "number" : "6"
646
+ },
647
+ "other" : {
648
+ "nodetype" : "namednumber",
649
+ "number" : "7"
650
+ },
651
+ },
652
+ },
653
+ "access" : "readwrite",
654
+ "description" :
655
+ """The configuration status of this port.
656
+
657
+ Setting this object to the value invalid(4) has the
658
+ effect of invalidating the corresponding entry in the
659
+ atportTable. That is, it effectively disassociates the
660
+ mapping identified with said entry. It is an
661
+ implementation-specific matter as to whether the agent
662
+ removes an invalidated entry from the table.
663
+ Accordingly, management stations must be prepared to
664
+ receive from agents tabular information corresponding
665
+ to entries not currently in use. Proper
666
+ interpretation of such entries requires examination
667
+ of the relevant atportStatus object.""",
668
+ }, # column
669
+ "atportNetConfig" : {
670
+ "nodetype" : "column",
671
+ "moduleName" : "APPLETALK-MIB",
672
+ "oid" : "1.3.6.1.2.1.13.3.1.1.8",
673
+ "status" : "current",
674
+ "syntax" : {
675
+ "type" : {
676
+ "basetype" : "Enumeration",
677
+ "conflictOrientedSeed" : {
678
+ "nodetype" : "namednumber",
679
+ "number" : "1"
680
+ },
681
+ "garnered" : {
682
+ "nodetype" : "namednumber",
683
+ "number" : "2"
684
+ },
685
+ "guessed" : {
686
+ "nodetype" : "namednumber",
687
+ "number" : "3"
688
+ },
689
+ "unconfigured" : {
690
+ "nodetype" : "namednumber",
691
+ "number" : "4"
692
+ },
693
+ "conflictAverseSeed" : {
694
+ "nodetype" : "namednumber",
695
+ "number" : "5"
696
+ },
697
+ "softSeed" : {
698
+ "nodetype" : "namednumber",
699
+ "number" : "6"
700
+ },
701
+ },
702
+ },
703
+ "access" : "readwrite",
704
+ "description" :
705
+ """The status of the network information for this port.
706
+ If this port is not a native AppleTalk port, this
707
+ object shall have the value unconfigured(4).""",
708
+ }, # column
709
+ "atportZoneConfig" : {
710
+ "nodetype" : "column",
711
+ "moduleName" : "APPLETALK-MIB",
712
+ "oid" : "1.3.6.1.2.1.13.3.1.1.9",
713
+ "status" : "current",
714
+ "syntax" : {
715
+ "type" : {
716
+ "basetype" : "Enumeration",
717
+ "conflictOrientedSeed" : {
718
+ "nodetype" : "namednumber",
719
+ "number" : "1"
720
+ },
721
+ "garnered" : {
722
+ "nodetype" : "namednumber",
723
+ "number" : "2"
724
+ },
725
+ "guessed" : {
726
+ "nodetype" : "namednumber",
727
+ "number" : "3"
728
+ },
729
+ "unconfigured" : {
730
+ "nodetype" : "namednumber",
731
+ "number" : "4"
732
+ },
733
+ "conflictAverseSeed" : {
734
+ "nodetype" : "namednumber",
735
+ "number" : "5"
736
+ },
737
+ "softSeed" : {
738
+ "nodetype" : "namednumber",
739
+ "number" : "6"
740
+ },
741
+ },
742
+ },
743
+ "access" : "readwrite",
744
+ "description" :
745
+ """The status of the zone information for this port.
746
+ If this port is not a native AppleTalk port, this
747
+ object shall have the value unconfigured(4).""",
748
+ }, # column
749
+ "atportZoneDefault" : {
750
+ "nodetype" : "column",
751
+ "moduleName" : "APPLETALK-MIB",
752
+ "oid" : "1.3.6.1.2.1.13.3.1.1.10",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATName"},
756
+ },
757
+ "access" : "readwrite",
758
+ "description" :
759
+ """The name of the default zone for this port. If
760
+ this port only has one zone, that zone is
761
+ represented here. If this port is not a native
762
+ AppleTalk port, this object shall contain an octet
763
+ string of zero length.
764
+
765
+ When this value is changed in a router, the router
766
+ must send a zipNotify packet on the associated
767
+ network.""",
768
+ }, # column
769
+ "atportIfIndex" : {
770
+ "nodetype" : "column",
771
+ "moduleName" : "APPLETALK-MIB",
772
+ "oid" : "1.3.6.1.2.1.13.3.1.1.11",
773
+ "status" : "current",
774
+ "syntax" : {
775
+ "type" : { "module" :"", "name" : "Integer32"},
776
+ },
777
+ "access" : "readwrite",
778
+ "description" :
779
+ """The physical interface associated with this
780
+ AppleTalk port. The interface identified by a
781
+ particular value of this index is the same interface
782
+ as identified by the same value of ifIndex.""",
783
+ }, # column
784
+ "atportNetFrom" : {
785
+ "nodetype" : "column",
786
+ "moduleName" : "APPLETALK-MIB",
787
+ "oid" : "1.3.6.1.2.1.13.3.1.1.12",
788
+ "status" : "current",
789
+ "syntax" : {
790
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpNodeAddress"},
791
+ },
792
+ "access" : "readonly",
793
+ "description" :
794
+ """When atportNetConfig is set to garnered(2), this
795
+ variable contains the DDP address of an entity from
796
+ which the AppleTalk network number was garnered.
797
+ When atportNetConfig is set to
798
+ conflictOrientedSeed(1), conflictAverseSeed(5),
799
+ or softSeed(6), this variable contains the DDP
800
+ address of an entity which confirmed or supplied our
801
+ AppleTalk network number, for example by replying to
802
+ a ZIP GetNetInfo request.
803
+
804
+ If atportNetConfig is set to guessed(3) or
805
+ unconfigured(4), or if the entity has not received
806
+ any network number confirmation, this variable
807
+ should be set to three octets of zero.""",
808
+ }, # column
809
+ "atportZoneFrom" : {
810
+ "nodetype" : "column",
811
+ "moduleName" : "APPLETALK-MIB",
812
+ "oid" : "1.3.6.1.2.1.13.3.1.1.13",
813
+ "status" : "current",
814
+ "syntax" : {
815
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpNodeAddress"},
816
+ },
817
+ "access" : "readonly",
818
+ "description" :
819
+ """When atportZoneConfig is set to garnered(2), this
820
+ variable contains the DDP address of an entity from
821
+ which the AppleTalk zone list was garnered.
822
+
823
+ When atportZoneConfig is set to
824
+ conflictOrientedSeed(1), conflictAverseSeed(5), or
825
+ softSeed(6), this variable contains the DDP address
826
+ of an entity which confirmed or supplied our
827
+ AppleTalk zone information, for example by replying
828
+ to a ZIP GetNetInfo request or a ZIP Query.
829
+
830
+ If atportZoneConfig is set to guessed(3) or
831
+ unconfigured(4), or if the entity has not received
832
+ any zone confirmation, this variable should be set
833
+ to three octets of zero.""",
834
+ }, # column
835
+ "atportInPkts" : {
836
+ "nodetype" : "column",
837
+ "moduleName" : "APPLETALK-MIB",
838
+ "oid" : "1.3.6.1.2.1.13.3.1.1.14",
839
+ "status" : "current",
840
+ "syntax" : {
841
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
842
+ },
843
+ "access" : "readonly",
844
+ "description" :
845
+ """The number of packets received by this entity on
846
+ this port.""",
847
+ }, # column
848
+ "atportOutPkts" : {
849
+ "nodetype" : "column",
850
+ "moduleName" : "APPLETALK-MIB",
851
+ "oid" : "1.3.6.1.2.1.13.3.1.1.15",
852
+ "status" : "current",
853
+ "syntax" : {
854
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
855
+ },
856
+ "access" : "readonly",
857
+ "description" :
858
+ """The number of packets transmitted by this entity on
859
+ this port.""",
860
+ }, # column
861
+ "atportHome" : {
862
+ "nodetype" : "column",
863
+ "moduleName" : "APPLETALK-MIB",
864
+ "oid" : "1.3.6.1.2.1.13.3.1.1.16",
865
+ "status" : "current",
866
+ "syntax" : {
867
+ "type" : {
868
+ "basetype" : "Enumeration",
869
+ "home" : {
870
+ "nodetype" : "namednumber",
871
+ "number" : "1"
872
+ },
873
+ "notHome" : {
874
+ "nodetype" : "namednumber",
875
+ "number" : "2"
876
+ },
877
+ },
878
+ },
879
+ "access" : "readonly",
880
+ "description" :
881
+ """An indication of whether or not the entity is
882
+ homed on this port, that is to say, a port on which
883
+ the entity could perform NBP registrations for
884
+ services that it chooses to advertise.""",
885
+ }, # column
886
+ "atportCurrentZone" : {
887
+ "nodetype" : "column",
888
+ "moduleName" : "APPLETALK-MIB",
889
+ "oid" : "1.3.6.1.2.1.13.3.1.1.17",
890
+ "status" : "current",
891
+ "syntax" : {
892
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATName"},
893
+ },
894
+ "access" : "readwrite",
895
+ "description" :
896
+ """The current zone for the port. In general, this is
897
+ the zone name in which services on this port will
898
+ be registered. If this port is not a native
899
+ AppleTalk port, this object shall contain an octet
900
+ string of zero length. Note that modifications to
901
+ this object do not affect the nbpTable.""",
902
+ }, # column
903
+ "atportConflictPhysAddr" : {
904
+ "nodetype" : "column",
905
+ "moduleName" : "APPLETALK-MIB",
906
+ "oid" : "1.3.6.1.2.1.13.3.1.1.18",
907
+ "status" : "current",
908
+ "syntax" : {
909
+ "type" : { "module" :"", "name" : "OctetString"},
910
+ },
911
+ "access" : "readonly",
912
+ "description" :
913
+ """The link-layer address of a device which caused
914
+ this entity to set atportStatus to
915
+ offDueToConflict(6). If this address is not
916
+ available, or if the entity has not set atportStatus
917
+ to offDueToConflict, this object shall be a zero
918
+ length OCTET STRING.""",
919
+ }, # column
920
+ "atportZoneTable" : {
921
+ "nodetype" : "table",
922
+ "moduleName" : "APPLETALK-MIB",
923
+ "oid" : "1.3.6.1.2.1.13.3.2",
924
+ "status" : "current",
925
+ "description" :
926
+ """The table of zone information for non-default
927
+ zones on ports.""",
928
+ }, # table
929
+ "atportZoneEntry" : {
930
+ "nodetype" : "row",
931
+ "moduleName" : "APPLETALK-MIB",
932
+ "oid" : "1.3.6.1.2.1.13.3.2.1",
933
+ "status" : "current",
934
+ "linkage" : [
935
+ "atportZonePort",
936
+ "atportZoneName",
937
+ ],
938
+ "description" :
939
+ """An entry of zone information for a port.
940
+
941
+ As an example, an instance of the atportZoneStatus
942
+ object might be named
943
+ atportZoneStatus.2.8.84.119.105.108.105.103.104.116""",
944
+ }, # row
945
+ "atportZonePort" : {
946
+ "nodetype" : "column",
947
+ "moduleName" : "APPLETALK-MIB",
948
+ "oid" : "1.3.6.1.2.1.13.3.2.1.1",
949
+ "status" : "current",
950
+ "syntax" : {
951
+ "type" : { "module" :"", "name" : "Integer32"},
952
+ },
953
+ "access" : "noaccess",
954
+ "description" :
955
+ """An integer representing the port to which this zone
956
+ belongs. The port identified by a particular value
957
+ of this object is the same port as identified by the
958
+ same value of atportIndex.""",
959
+ }, # column
960
+ "atportZoneName" : {
961
+ "nodetype" : "column",
962
+ "moduleName" : "APPLETALK-MIB",
963
+ "oid" : "1.3.6.1.2.1.13.3.2.1.2",
964
+ "status" : "current",
965
+ "syntax" : {
966
+ "type" : {
967
+ "basetype" : "OctetString",
968
+ "parent module" : {
969
+ "name" : "APPLETALK-MIB",
970
+ "type" : "ATName",
971
+ },
972
+ "ranges" : [
973
+ {
974
+ "min" : "1",
975
+ "max" : "32"
976
+ },
977
+ ],
978
+ "range" : {
979
+ "min" : "1",
980
+ "max" : "32"
981
+ },
982
+ },
983
+ },
984
+ "access" : "noaccess",
985
+ "description" :
986
+ """A zone name configured for the AppleTalk port
987
+ referred to in the corresponding entry of
988
+ atportZonePort.
989
+
990
+ When this value is changed in a router, the router
991
+ must send a zipNotify packet on the associated
992
+ network.""",
993
+ }, # column
994
+ "atportZoneStatus" : {
995
+ "nodetype" : "column",
996
+ "moduleName" : "APPLETALK-MIB",
997
+ "oid" : "1.3.6.1.2.1.13.3.2.1.3",
998
+ "status" : "current",
999
+ "syntax" : {
1000
+ "type" : {
1001
+ "basetype" : "Enumeration",
1002
+ "valid" : {
1003
+ "nodetype" : "namednumber",
1004
+ "number" : "1"
1005
+ },
1006
+ "invalid" : {
1007
+ "nodetype" : "namednumber",
1008
+ "number" : "2"
1009
+ },
1010
+ },
1011
+ },
1012
+ "access" : "readwrite",
1013
+ "description" :
1014
+ """The status of this zone entry.
1015
+
1016
+ Setting this object to the value invalid(2) has the
1017
+ effect of invalidating the corresponding entry in
1018
+ the atportZoneTable. That is, it effectively
1019
+ disassociates the mapping identified with said
1020
+ entry. It is an implementation-specific matter as
1021
+ to whether the agent removes an invalidated entry
1022
+ from the table. Accordingly, management stations
1023
+ must be prepared to receive from agents tabular
1024
+ information corresponding to entries not currently
1025
+ in use. Proper interpretation of such entries
1026
+ requires examination of the relevant
1027
+ atportZoneStatus object.""",
1028
+ }, # column
1029
+ "ddp" : {
1030
+ "nodetype" : "node",
1031
+ "moduleName" : "APPLETALK-MIB",
1032
+ "oid" : "1.3.6.1.2.1.13.4",
1033
+ }, # node
1034
+ "ddpOutRequests" : {
1035
+ "nodetype" : "scalar",
1036
+ "moduleName" : "APPLETALK-MIB",
1037
+ "oid" : "1.3.6.1.2.1.13.4.1",
1038
+ "status" : "current",
1039
+ "syntax" : {
1040
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1041
+ },
1042
+ "access" : "readonly",
1043
+ "description" :
1044
+ """The total number of DDP datagrams which were
1045
+ supplied to DDP by local DDP clients in requests for
1046
+ transmission. Note that this counter does not
1047
+ include any datagrams counted in ddpForwRequests.""",
1048
+ }, # scalar
1049
+ "ddpOutShorts" : {
1050
+ "nodetype" : "scalar",
1051
+ "moduleName" : "APPLETALK-MIB",
1052
+ "oid" : "1.3.6.1.2.1.13.4.2",
1053
+ "status" : "current",
1054
+ "syntax" : {
1055
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1056
+ },
1057
+ "access" : "readonly",
1058
+ "description" :
1059
+ """The total number of short DDP datagrams which were
1060
+ transmitted from this entity.""",
1061
+ }, # scalar
1062
+ "ddpOutLongs" : {
1063
+ "nodetype" : "scalar",
1064
+ "moduleName" : "APPLETALK-MIB",
1065
+ "oid" : "1.3.6.1.2.1.13.4.3",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1069
+ },
1070
+ "access" : "readonly",
1071
+ "description" :
1072
+ """The total number of long DDP datagrams which were
1073
+ transmitted from this entity.""",
1074
+ }, # scalar
1075
+ "ddpInReceives" : {
1076
+ "nodetype" : "scalar",
1077
+ "moduleName" : "APPLETALK-MIB",
1078
+ "oid" : "1.3.6.1.2.1.13.4.4",
1079
+ "status" : "current",
1080
+ "syntax" : {
1081
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1082
+ },
1083
+ "access" : "readonly",
1084
+ "description" :
1085
+ """The total number of input datagrams received by
1086
+ DDP, including those received in error.""",
1087
+ }, # scalar
1088
+ "ddpForwRequests" : {
1089
+ "nodetype" : "scalar",
1090
+ "moduleName" : "APPLETALK-MIB",
1091
+ "oid" : "1.3.6.1.2.1.13.4.5",
1092
+ "status" : "current",
1093
+ "syntax" : {
1094
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1095
+ },
1096
+ "access" : "readonly",
1097
+ "description" :
1098
+ """The number of input datagrams for which this entity
1099
+ was not their final DDP destination, as a result of
1100
+ which an attempt was made to find a route to forward
1101
+ them to that final destination.""",
1102
+ }, # scalar
1103
+ "ddpInLocalDatagrams" : {
1104
+ "nodetype" : "scalar",
1105
+ "moduleName" : "APPLETALK-MIB",
1106
+ "oid" : "1.3.6.1.2.1.13.4.6",
1107
+ "status" : "current",
1108
+ "syntax" : {
1109
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1110
+ },
1111
+ "access" : "readonly",
1112
+ "description" :
1113
+ """The total number of input DDP datagrams for which
1114
+ this
1115
+ entity was their final DDP destination.""",
1116
+ }, # scalar
1117
+ "ddpNoProtocolHandlers" : {
1118
+ "nodetype" : "scalar",
1119
+ "moduleName" : "APPLETALK-MIB",
1120
+ "oid" : "1.3.6.1.2.1.13.4.7",
1121
+ "status" : "current",
1122
+ "syntax" : {
1123
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1124
+ },
1125
+ "access" : "readonly",
1126
+ "description" :
1127
+ """The total number of DDP datagrams addressed to this
1128
+ entity that were addressed to an upper layer protocol
1129
+ for which no protocol handler existed.""",
1130
+ }, # scalar
1131
+ "ddpOutNoRoutes" : {
1132
+ "nodetype" : "scalar",
1133
+ "moduleName" : "APPLETALK-MIB",
1134
+ "oid" : "1.3.6.1.2.1.13.4.8",
1135
+ "status" : "current",
1136
+ "syntax" : {
1137
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1138
+ },
1139
+ "access" : "readonly",
1140
+ "description" :
1141
+ """The total number of DDP datagrams dropped because a
1142
+ route could not be found to their final destination.""",
1143
+ }, # scalar
1144
+ "ddpTooShortErrors" : {
1145
+ "nodetype" : "scalar",
1146
+ "moduleName" : "APPLETALK-MIB",
1147
+ "oid" : "1.3.6.1.2.1.13.4.9",
1148
+ "status" : "current",
1149
+ "syntax" : {
1150
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1151
+ },
1152
+ "access" : "readonly",
1153
+ "description" :
1154
+ """The total number of input DDP datagrams dropped
1155
+ because the received data length was less than the
1156
+ data length specified in the DDP header or the
1157
+ received data length was less than the length of the
1158
+ expected DDP header.""",
1159
+ }, # scalar
1160
+ "ddpTooLongErrors" : {
1161
+ "nodetype" : "scalar",
1162
+ "moduleName" : "APPLETALK-MIB",
1163
+ "oid" : "1.3.6.1.2.1.13.4.10",
1164
+ "status" : "current",
1165
+ "syntax" : {
1166
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1167
+ },
1168
+ "access" : "readonly",
1169
+ "description" :
1170
+ """The total number of input DDP datagrams dropped
1171
+ because they exceeded the maximum DDP datagram
1172
+ size.""",
1173
+ }, # scalar
1174
+ "ddpBroadcastErrors" : {
1175
+ "nodetype" : "scalar",
1176
+ "moduleName" : "APPLETALK-MIB",
1177
+ "oid" : "1.3.6.1.2.1.13.4.11",
1178
+ "status" : "current",
1179
+ "syntax" : {
1180
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1181
+ },
1182
+ "access" : "readonly",
1183
+ "description" :
1184
+ """The total number of input DDP datagrams dropped
1185
+ because this entity was not their final destination
1186
+ and they were addressed to the link level broadcast.""",
1187
+ }, # scalar
1188
+ "ddpShortDDPErrors" : {
1189
+ "nodetype" : "scalar",
1190
+ "moduleName" : "APPLETALK-MIB",
1191
+ "oid" : "1.3.6.1.2.1.13.4.12",
1192
+ "status" : "current",
1193
+ "syntax" : {
1194
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1195
+ },
1196
+ "access" : "readonly",
1197
+ "description" :
1198
+ """The total number of input DDP datagrams dropped
1199
+ because this entity was not their final destination
1200
+ and their type was short DDP.""",
1201
+ }, # scalar
1202
+ "ddpHopCountErrors" : {
1203
+ "nodetype" : "scalar",
1204
+ "moduleName" : "APPLETALK-MIB",
1205
+ "oid" : "1.3.6.1.2.1.13.4.13",
1206
+ "status" : "current",
1207
+ "syntax" : {
1208
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1209
+ },
1210
+ "access" : "readonly",
1211
+ "description" :
1212
+ """The total number of input DDP datagrams dropped
1213
+ because this entity was not their final destination
1214
+ and their hop count would exceed 15.""",
1215
+ }, # scalar
1216
+ "ddpChecksumErrors" : {
1217
+ "nodetype" : "scalar",
1218
+ "moduleName" : "APPLETALK-MIB",
1219
+ "oid" : "1.3.6.1.2.1.13.4.14",
1220
+ "status" : "current",
1221
+ "syntax" : {
1222
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1223
+ },
1224
+ "access" : "readonly",
1225
+ "description" :
1226
+ """The total number of input DDP datagrams for which
1227
+ this DDP entity was their final destination, and
1228
+ which were dropped because of a checksum error.""",
1229
+ }, # scalar
1230
+ "ddpListenerTable" : {
1231
+ "nodetype" : "table",
1232
+ "moduleName" : "APPLETALK-MIB",
1233
+ "oid" : "1.3.6.1.2.1.13.4.15",
1234
+ "status" : "current",
1235
+ "description" :
1236
+ """The ddpListenerTable stores information for each
1237
+ DDP socket that has a listener.""",
1238
+ }, # table
1239
+ "ddpListenerEntry" : {
1240
+ "nodetype" : "row",
1241
+ "moduleName" : "APPLETALK-MIB",
1242
+ "oid" : "1.3.6.1.2.1.13.4.15.1",
1243
+ "status" : "current",
1244
+ "linkage" : [
1245
+ "ddpListenerAddress",
1246
+ ],
1247
+ "description" :
1248
+ """This ddpListenerEntry contains information about a
1249
+ particular socket that has a socket listener.
1250
+
1251
+ As an example, an instance of the ddpListenerStatus
1252
+ object might be named ddpListenerStatus.0.80.220.1""",
1253
+ }, # row
1254
+ "ddpListenerAddress" : {
1255
+ "nodetype" : "column",
1256
+ "moduleName" : "APPLETALK-MIB",
1257
+ "oid" : "1.3.6.1.2.1.13.4.15.1.1",
1258
+ "status" : "current",
1259
+ "syntax" : {
1260
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
1261
+ },
1262
+ "access" : "noaccess",
1263
+ "description" :
1264
+ """The DDP address that this socket listener is bound
1265
+ to. If this socket listener isn't bound to a
1266
+ particular address, for instance if it is intended
1267
+ for all interfaces, this object shall have the value
1268
+ of three octets of zero followed by one octet of
1269
+ socket number. The socket number must not equal
1270
+ zero.""",
1271
+ }, # column
1272
+ "ddpListenerInPkts" : {
1273
+ "nodetype" : "column",
1274
+ "moduleName" : "APPLETALK-MIB",
1275
+ "oid" : "1.3.6.1.2.1.13.4.15.1.2",
1276
+ "status" : "current",
1277
+ "syntax" : {
1278
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1279
+ },
1280
+ "access" : "readonly",
1281
+ "description" :
1282
+ """The number of packets received for this listener.""",
1283
+ }, # column
1284
+ "ddpListenerStatus" : {
1285
+ "nodetype" : "column",
1286
+ "moduleName" : "APPLETALK-MIB",
1287
+ "oid" : "1.3.6.1.2.1.13.4.15.1.3",
1288
+ "status" : "current",
1289
+ "syntax" : {
1290
+ "type" : {
1291
+ "basetype" : "Enumeration",
1292
+ "valid" : {
1293
+ "nodetype" : "namednumber",
1294
+ "number" : "1"
1295
+ },
1296
+ "invalid" : {
1297
+ "nodetype" : "namednumber",
1298
+ "number" : "2"
1299
+ },
1300
+ },
1301
+ },
1302
+ "access" : "readwrite",
1303
+ "description" :
1304
+ """The status of this socket listener.
1305
+ Setting this object to the value invalid(2) has the
1306
+ effect of invalidating the corresponding entry in the
1307
+ ddpListenerTable. That is, it effectively
1308
+ disassociates the mapping identified with said
1309
+ entry. It is an implementation-specific matter as
1310
+ to whether the agent removes an invalidated entry
1311
+ from the table. Accordingly, management stations
1312
+ must be prepared to receive from agents tabular
1313
+ information corresponding to entries not currently
1314
+ in use. Proper interpretation of such entries
1315
+ requires examination of the relevant
1316
+ ddpListenerStatus object.""",
1317
+ }, # column
1318
+ "ddpForwardingTable" : {
1319
+ "nodetype" : "table",
1320
+ "moduleName" : "APPLETALK-MIB",
1321
+ "oid" : "1.3.6.1.2.1.13.4.16",
1322
+ "status" : "current",
1323
+ "description" :
1324
+ """A table of forwarding entries for DDP. This table
1325
+ contains a route for each AppleTalk network currently
1326
+ known to the entity.""",
1327
+ }, # table
1328
+ "ddpForwardingEntry" : {
1329
+ "nodetype" : "row",
1330
+ "moduleName" : "APPLETALK-MIB",
1331
+ "oid" : "1.3.6.1.2.1.13.4.16.1",
1332
+ "status" : "current",
1333
+ "linkage" : [
1334
+ "ddpForwardingNetEnd",
1335
+ ],
1336
+ "description" :
1337
+ """A forwarding entry for a particular AppleTalk
1338
+ network.
1339
+
1340
+ As an example, an instance of the ddpForwardingPort
1341
+ object might be named ddpForwardingPort.0.90""",
1342
+ }, # row
1343
+ "ddpForwardingNetEnd" : {
1344
+ "nodetype" : "column",
1345
+ "moduleName" : "APPLETALK-MIB",
1346
+ "oid" : "1.3.6.1.2.1.13.4.16.1.1",
1347
+ "status" : "current",
1348
+ "syntax" : {
1349
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
1350
+ },
1351
+ "access" : "noaccess",
1352
+ "description" :
1353
+ """The last network number in the network range
1354
+ matched by this forwarding entry. This will not be
1355
+ zero even if this corresponds to a non-extended
1356
+ net.""",
1357
+ }, # column
1358
+ "ddpForwardingNetStart" : {
1359
+ "nodetype" : "column",
1360
+ "moduleName" : "APPLETALK-MIB",
1361
+ "oid" : "1.3.6.1.2.1.13.4.16.1.2",
1362
+ "status" : "current",
1363
+ "syntax" : {
1364
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
1365
+ },
1366
+ "access" : "readonly",
1367
+ "description" :
1368
+ """The first network number in the network range
1369
+ matched by this forwarding entry.""",
1370
+ }, # column
1371
+ "ddpForwardingNextHop" : {
1372
+ "nodetype" : "column",
1373
+ "moduleName" : "APPLETALK-MIB",
1374
+ "oid" : "1.3.6.1.2.1.13.4.16.1.3",
1375
+ "status" : "current",
1376
+ "syntax" : {
1377
+ "type" : { "module" :"", "name" : "OctetString"},
1378
+ },
1379
+ "access" : "readonly",
1380
+ "description" :
1381
+ """The next hop in the route to this entry's
1382
+ destination network. The format of this address can
1383
+ be determined by examinating the atportType
1384
+ corresponding to this entry.""",
1385
+ }, # column
1386
+ "ddpForwardingProto" : {
1387
+ "nodetype" : "column",
1388
+ "moduleName" : "APPLETALK-MIB",
1389
+ "oid" : "1.3.6.1.2.1.13.4.16.1.4",
1390
+ "status" : "current",
1391
+ "syntax" : {
1392
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
1393
+ },
1394
+ "access" : "readonly",
1395
+ "description" :
1396
+ """The routing mechanism by which this route was
1397
+ learned.""",
1398
+ }, # column
1399
+ "ddpForwardingModifiedTime" : {
1400
+ "nodetype" : "column",
1401
+ "moduleName" : "APPLETALK-MIB",
1402
+ "oid" : "1.3.6.1.2.1.13.4.16.1.5",
1403
+ "status" : "current",
1404
+ "syntax" : {
1405
+ "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
1406
+ },
1407
+ "access" : "readonly",
1408
+ "description" :
1409
+ """The value of sysUpTime at the time of the last
1410
+ modification to this entry. The initial value of
1411
+ ddpForwardingModified time shall be the value of
1412
+ sysUpTime at the time the entry is created.""",
1413
+ }, # column
1414
+ "ddpForwardingUseCounts" : {
1415
+ "nodetype" : "column",
1416
+ "moduleName" : "APPLETALK-MIB",
1417
+ "oid" : "1.3.6.1.2.1.13.4.16.1.6",
1418
+ "status" : "current",
1419
+ "syntax" : {
1420
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1421
+ },
1422
+ "access" : "readonly",
1423
+ "description" :
1424
+ """The number of times this entry has been used to
1425
+ route a packet to the destination network. Note
1426
+ that this counter is not cleared when the
1427
+ corresponding ddpForwardingNextHop variable
1428
+ changes.""",
1429
+ }, # column
1430
+ "ddpForwardingPort" : {
1431
+ "nodetype" : "column",
1432
+ "moduleName" : "APPLETALK-MIB",
1433
+ "oid" : "1.3.6.1.2.1.13.4.16.1.7",
1434
+ "status" : "current",
1435
+ "syntax" : {
1436
+ "type" : { "module" :"", "name" : "Integer32"},
1437
+ },
1438
+ "access" : "readonly",
1439
+ "description" :
1440
+ """The AppleTalk port through which
1441
+ ddpForwardingNextHop is reached. The interface
1442
+ identified by a particular value of this variable is
1443
+ the same interface as identified by the same value
1444
+ of atportIndex.""",
1445
+ }, # column
1446
+ "ddpForwProtoOids" : {
1447
+ "nodetype" : "node",
1448
+ "moduleName" : "APPLETALK-MIB",
1449
+ "oid" : "1.3.6.1.2.1.13.4.17",
1450
+ }, # node
1451
+ "rtmpRoutingProto" : {
1452
+ "nodetype" : "node",
1453
+ "moduleName" : "APPLETALK-MIB",
1454
+ "oid" : "1.3.6.1.2.1.13.4.17.1",
1455
+ }, # node
1456
+ "kipRoutingProto" : {
1457
+ "nodetype" : "node",
1458
+ "moduleName" : "APPLETALK-MIB",
1459
+ "oid" : "1.3.6.1.2.1.13.4.17.2",
1460
+ }, # node
1461
+ "ddpForwardingTableOverflows" : {
1462
+ "nodetype" : "scalar",
1463
+ "moduleName" : "APPLETALK-MIB",
1464
+ "oid" : "1.3.6.1.2.1.13.4.18",
1465
+ "status" : "current",
1466
+ "syntax" : {
1467
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1468
+ },
1469
+ "access" : "readonly",
1470
+ "description" :
1471
+ """The number of times the entity attempted to add an
1472
+ entry to the forwarding table but failed due to
1473
+ overflow.""",
1474
+ }, # scalar
1475
+ "rtmp" : {
1476
+ "nodetype" : "node",
1477
+ "moduleName" : "APPLETALK-MIB",
1478
+ "oid" : "1.3.6.1.2.1.13.5",
1479
+ }, # node
1480
+ "rtmpTable" : {
1481
+ "nodetype" : "table",
1482
+ "moduleName" : "APPLETALK-MIB",
1483
+ "oid" : "1.3.6.1.2.1.13.5.1",
1484
+ "status" : "current",
1485
+ "description" :
1486
+ """A list of Routing Table Maintenance Protocol
1487
+ entries for this entity.""",
1488
+ }, # table
1489
+ "rtmpEntry" : {
1490
+ "nodetype" : "row",
1491
+ "moduleName" : "APPLETALK-MIB",
1492
+ "oid" : "1.3.6.1.2.1.13.5.1.1",
1493
+ "status" : "current",
1494
+ "linkage" : [
1495
+ "rtmpRangeStart",
1496
+ ],
1497
+ "description" :
1498
+ """The route entry to a particular network range.
1499
+
1500
+ As an example, an instance of the rtmpPort object
1501
+ might be named rtmpPort.0.80""",
1502
+ }, # row
1503
+ "rtmpRangeStart" : {
1504
+ "nodetype" : "column",
1505
+ "moduleName" : "APPLETALK-MIB",
1506
+ "oid" : "1.3.6.1.2.1.13.5.1.1.1",
1507
+ "status" : "current",
1508
+ "syntax" : {
1509
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
1510
+ },
1511
+ "access" : "readonly",
1512
+ "description" :
1513
+ """The first DDP network address in the network range
1514
+ to which this routing entry pertains. This is a two
1515
+ octet DDP network address in network byte order.""",
1516
+ }, # column
1517
+ "rtmpRangeEnd" : {
1518
+ "nodetype" : "column",
1519
+ "moduleName" : "APPLETALK-MIB",
1520
+ "oid" : "1.3.6.1.2.1.13.5.1.1.2",
1521
+ "status" : "current",
1522
+ "syntax" : {
1523
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
1524
+ },
1525
+ "access" : "readonly",
1526
+ "description" :
1527
+ """The last DDP network address in the network range
1528
+ to which this routing entry pertains. This is a two
1529
+ octet DDP network address in network byte order. If
1530
+ the network to which this routing entry pertains is
1531
+ a non-extended network, the value for rtmpRangeEnd
1532
+ shall be two octets of zero.""",
1533
+ }, # column
1534
+ "rtmpNextHop" : {
1535
+ "nodetype" : "column",
1536
+ "moduleName" : "APPLETALK-MIB",
1537
+ "oid" : "1.3.6.1.2.1.13.5.1.1.3",
1538
+ "status" : "current",
1539
+ "syntax" : {
1540
+ "type" : { "module" :"", "name" : "OctetString"},
1541
+ },
1542
+ "access" : "readonly",
1543
+ "description" :
1544
+ """The next internet router in the route to this
1545
+ entry's destination network. The format of this
1546
+ address can be determined by examinating the
1547
+ atportType corresponding to this entry.""",
1548
+ }, # column
1549
+ "rtmpType" : {
1550
+ "nodetype" : "column",
1551
+ "moduleName" : "APPLETALK-MIB",
1552
+ "oid" : "1.3.6.1.2.1.13.5.1.1.4",
1553
+ "status" : "current",
1554
+ "syntax" : {
1555
+ "type" : {
1556
+ "basetype" : "Enumeration",
1557
+ "other" : {
1558
+ "nodetype" : "namednumber",
1559
+ "number" : "1"
1560
+ },
1561
+ "appletalk" : {
1562
+ "nodetype" : "namednumber",
1563
+ "number" : "2"
1564
+ },
1565
+ "serialPPP" : {
1566
+ "nodetype" : "namednumber",
1567
+ "number" : "3"
1568
+ },
1569
+ "serialNonstandard" : {
1570
+ "nodetype" : "namednumber",
1571
+ "number" : "4"
1572
+ },
1573
+ },
1574
+ },
1575
+ "access" : "readonly",
1576
+ "description" :
1577
+ """The type of network over which this route points.""",
1578
+ }, # column
1579
+ "rtmpPort" : {
1580
+ "nodetype" : "column",
1581
+ "moduleName" : "APPLETALK-MIB",
1582
+ "oid" : "1.3.6.1.2.1.13.5.1.1.5",
1583
+ "status" : "current",
1584
+ "syntax" : {
1585
+ "type" : { "module" :"", "name" : "Integer32"},
1586
+ },
1587
+ "access" : "readonly",
1588
+ "description" :
1589
+ """The AppleTalk port over which this route points.
1590
+ The interface identified by a particular value of
1591
+ this variable is the same interface as identified by
1592
+ the same value of atportIndex.""",
1593
+ }, # column
1594
+ "rtmpHops" : {
1595
+ "nodetype" : "column",
1596
+ "moduleName" : "APPLETALK-MIB",
1597
+ "oid" : "1.3.6.1.2.1.13.5.1.1.6",
1598
+ "status" : "current",
1599
+ "syntax" : {
1600
+ "type" : { "module" :"", "name" : "Integer32"},
1601
+ },
1602
+ "access" : "readonly",
1603
+ "description" :
1604
+ """The number of hops required to reach the
1605
+ destination network to which this routing entry
1606
+ pertains.""",
1607
+ }, # column
1608
+ "rtmpState" : {
1609
+ "nodetype" : "column",
1610
+ "moduleName" : "APPLETALK-MIB",
1611
+ "oid" : "1.3.6.1.2.1.13.5.1.1.7",
1612
+ "status" : "current",
1613
+ "syntax" : {
1614
+ "type" : {
1615
+ "basetype" : "Enumeration",
1616
+ "good" : {
1617
+ "nodetype" : "namednumber",
1618
+ "number" : "1"
1619
+ },
1620
+ "suspect" : {
1621
+ "nodetype" : "namednumber",
1622
+ "number" : "2"
1623
+ },
1624
+ "badZero" : {
1625
+ "nodetype" : "namednumber",
1626
+ "number" : "3"
1627
+ },
1628
+ "badOne" : {
1629
+ "nodetype" : "namednumber",
1630
+ "number" : "4"
1631
+ },
1632
+ "invalid" : {
1633
+ "nodetype" : "namednumber",
1634
+ "number" : "5"
1635
+ },
1636
+ },
1637
+ },
1638
+ "access" : "readwrite",
1639
+ "description" :
1640
+ """The status of the information contained in this
1641
+ route entry.
1642
+
1643
+ Setting this object to the value invalid(5) has the
1644
+ effect of invalidating the corresponding entry in
1645
+ the rtmpTable. That is, it effectively
1646
+ disassociates the mapping identified with said
1647
+ entry. It is an implementation-specific matter as
1648
+ to whether the agent removes an invalidated entry
1649
+ from the table. Accordingly, management stations
1650
+ must be prepared to receive from agents tabular
1651
+ information corresponding to entries not currently
1652
+ in use. Proper interpretation of such entries
1653
+ requires examination of the relevant rtmpState
1654
+ object.""",
1655
+ }, # column
1656
+ "rtmpInDataPkts" : {
1657
+ "nodetype" : "scalar",
1658
+ "moduleName" : "APPLETALK-MIB",
1659
+ "oid" : "1.3.6.1.2.1.13.5.2",
1660
+ "status" : "current",
1661
+ "syntax" : {
1662
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1663
+ },
1664
+ "access" : "readonly",
1665
+ "description" :
1666
+ """A count of the number of good RTMP data packets
1667
+ received by this entity.""",
1668
+ }, # scalar
1669
+ "rtmpOutDataPkts" : {
1670
+ "nodetype" : "scalar",
1671
+ "moduleName" : "APPLETALK-MIB",
1672
+ "oid" : "1.3.6.1.2.1.13.5.3",
1673
+ "status" : "current",
1674
+ "syntax" : {
1675
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1676
+ },
1677
+ "access" : "readonly",
1678
+ "description" :
1679
+ """A count of the number of RTMP packets sent by this
1680
+ entity.""",
1681
+ }, # scalar
1682
+ "rtmpInRequestPkts" : {
1683
+ "nodetype" : "scalar",
1684
+ "moduleName" : "APPLETALK-MIB",
1685
+ "oid" : "1.3.6.1.2.1.13.5.4",
1686
+ "status" : "current",
1687
+ "syntax" : {
1688
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1689
+ },
1690
+ "access" : "readonly",
1691
+ "description" :
1692
+ """A count of the number of good RTMP Request packets
1693
+ received by this entity.""",
1694
+ }, # scalar
1695
+ "rtmpNextIREqualChanges" : {
1696
+ "nodetype" : "scalar",
1697
+ "moduleName" : "APPLETALK-MIB",
1698
+ "oid" : "1.3.6.1.2.1.13.5.5",
1699
+ "status" : "current",
1700
+ "syntax" : {
1701
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1702
+ },
1703
+ "access" : "readonly",
1704
+ "description" :
1705
+ """A count of the number of times RTMP changes the
1706
+ Next Internet Router in a routing entry because the
1707
+ hop count advertised in a routing tuple was equal to
1708
+ the current hop count for a particular network.""",
1709
+ }, # scalar
1710
+ "rtmpNextIRLessChanges" : {
1711
+ "nodetype" : "scalar",
1712
+ "moduleName" : "APPLETALK-MIB",
1713
+ "oid" : "1.3.6.1.2.1.13.5.6",
1714
+ "status" : "current",
1715
+ "syntax" : {
1716
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1717
+ },
1718
+ "access" : "readonly",
1719
+ "description" :
1720
+ """A count of the number of times RTMP changes the
1721
+ Next Internet Router in a routing entry because the
1722
+ hop count advertised in a routing tuple was less
1723
+ than the current hop count for a particular network.""",
1724
+ }, # scalar
1725
+ "rtmpRouteDeletes" : {
1726
+ "nodetype" : "scalar",
1727
+ "moduleName" : "APPLETALK-MIB",
1728
+ "oid" : "1.3.6.1.2.1.13.5.7",
1729
+ "status" : "current",
1730
+ "syntax" : {
1731
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1732
+ },
1733
+ "access" : "readonly",
1734
+ "description" :
1735
+ """A count of the number of times RTMP deletes a route
1736
+ because it was aged out of the table. This can help
1737
+ to detect routing problems.""",
1738
+ }, # scalar
1739
+ "rtmpRoutingTableOverflows" : {
1740
+ "nodetype" : "scalar",
1741
+ "moduleName" : "APPLETALK-MIB",
1742
+ "oid" : "1.3.6.1.2.1.13.5.8",
1743
+ "status" : "current",
1744
+ "syntax" : {
1745
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
1746
+ },
1747
+ "access" : "readonly",
1748
+ "description" :
1749
+ """The number of times RTMP attempted to add a route
1750
+ to the RTMP table but failed due to lack of space.""",
1751
+ }, # scalar
1752
+ "kip" : {
1753
+ "nodetype" : "node",
1754
+ "moduleName" : "APPLETALK-MIB",
1755
+ "oid" : "1.3.6.1.2.1.13.6",
1756
+ }, # node
1757
+ "kipTable" : {
1758
+ "nodetype" : "table",
1759
+ "moduleName" : "APPLETALK-MIB",
1760
+ "oid" : "1.3.6.1.2.1.13.6.1",
1761
+ "status" : "current",
1762
+ "description" :
1763
+ """The table of routing information for KIP networks.""",
1764
+ }, # table
1765
+ "kipEntry" : {
1766
+ "nodetype" : "row",
1767
+ "moduleName" : "APPLETALK-MIB",
1768
+ "oid" : "1.3.6.1.2.1.13.6.1.1",
1769
+ "status" : "current",
1770
+ "linkage" : [
1771
+ "kipNetStart",
1772
+ ],
1773
+ "description" :
1774
+ """An entry in the routing table for KIP networks.
1775
+
1776
+ As an example, an instance of the kipCore object
1777
+ might be named kipCore.0.80""",
1778
+ }, # row
1779
+ "kipNetStart" : {
1780
+ "nodetype" : "column",
1781
+ "moduleName" : "APPLETALK-MIB",
1782
+ "oid" : "1.3.6.1.2.1.13.6.1.1.1",
1783
+ "status" : "current",
1784
+ "syntax" : {
1785
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
1786
+ },
1787
+ "access" : "readonly",
1788
+ "description" :
1789
+ """The first AppleTalk network address in the range
1790
+ for this routing entry. This address is a two octet
1791
+ DDP network address in network byte order.""",
1792
+ }, # column
1793
+ "kipNetEnd" : {
1794
+ "nodetype" : "column",
1795
+ "moduleName" : "APPLETALK-MIB",
1796
+ "oid" : "1.3.6.1.2.1.13.6.1.1.2",
1797
+ "status" : "current",
1798
+ "syntax" : {
1799
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
1800
+ },
1801
+ "access" : "readwrite",
1802
+ "description" :
1803
+ """The last AppleTalk network address in the range for
1804
+ this routing entry. This address is a two octet DDP
1805
+ network address in network byte order. If the
1806
+ network to which this AppleTalk port is connected is
1807
+ a non-extended network, the value for kipNetEnd
1808
+ shall be two octets of zero.""",
1809
+ }, # column
1810
+ "kipNextHop" : {
1811
+ "nodetype" : "column",
1812
+ "moduleName" : "APPLETALK-MIB",
1813
+ "oid" : "1.3.6.1.2.1.13.6.1.1.3",
1814
+ "status" : "current",
1815
+ "syntax" : {
1816
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1817
+ },
1818
+ "access" : "readwrite",
1819
+ "description" :
1820
+ """The IP address of the next hop in the route to this
1821
+ entry's destination network.""",
1822
+ }, # column
1823
+ "kipHopCount" : {
1824
+ "nodetype" : "column",
1825
+ "moduleName" : "APPLETALK-MIB",
1826
+ "oid" : "1.3.6.1.2.1.13.6.1.1.4",
1827
+ "status" : "current",
1828
+ "syntax" : {
1829
+ "type" : { "module" :"", "name" : "Integer32"},
1830
+ },
1831
+ "access" : "readwrite",
1832
+ "description" :
1833
+ """The number of hops required to reach the destination
1834
+ network to which this entry pertains.""",
1835
+ }, # column
1836
+ "kipBCastAddr" : {
1837
+ "nodetype" : "column",
1838
+ "moduleName" : "APPLETALK-MIB",
1839
+ "oid" : "1.3.6.1.2.1.13.6.1.1.5",
1840
+ "status" : "current",
1841
+ "syntax" : {
1842
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1843
+ },
1844
+ "access" : "readwrite",
1845
+ "description" :
1846
+ """The form of the IP address used to broadcast on this
1847
+ network.""",
1848
+ }, # column
1849
+ "kipCore" : {
1850
+ "nodetype" : "column",
1851
+ "moduleName" : "APPLETALK-MIB",
1852
+ "oid" : "1.3.6.1.2.1.13.6.1.1.6",
1853
+ "status" : "current",
1854
+ "syntax" : {
1855
+ "type" : {
1856
+ "basetype" : "Enumeration",
1857
+ "core" : {
1858
+ "nodetype" : "namednumber",
1859
+ "number" : "1"
1860
+ },
1861
+ "notcore" : {
1862
+ "nodetype" : "namednumber",
1863
+ "number" : "2"
1864
+ },
1865
+ },
1866
+ },
1867
+ "access" : "readwrite",
1868
+ "description" :
1869
+ """The status of kipNextHop as a core gateway.""",
1870
+ }, # column
1871
+ "kipType" : {
1872
+ "nodetype" : "column",
1873
+ "moduleName" : "APPLETALK-MIB",
1874
+ "oid" : "1.3.6.1.2.1.13.6.1.1.7",
1875
+ "status" : "current",
1876
+ "syntax" : {
1877
+ "type" : {
1878
+ "basetype" : "Enumeration",
1879
+ "kipRouter" : {
1880
+ "nodetype" : "namednumber",
1881
+ "number" : "1"
1882
+ },
1883
+ "net" : {
1884
+ "nodetype" : "namednumber",
1885
+ "number" : "2"
1886
+ },
1887
+ "host" : {
1888
+ "nodetype" : "namednumber",
1889
+ "number" : "3"
1890
+ },
1891
+ "other" : {
1892
+ "nodetype" : "namednumber",
1893
+ "number" : "4"
1894
+ },
1895
+ "async" : {
1896
+ "nodetype" : "namednumber",
1897
+ "number" : "5"
1898
+ },
1899
+ },
1900
+ },
1901
+ "access" : "readwrite",
1902
+ "description" :
1903
+ """The type of the entity that this route points to.""",
1904
+ }, # column
1905
+ "kipState" : {
1906
+ "nodetype" : "column",
1907
+ "moduleName" : "APPLETALK-MIB",
1908
+ "oid" : "1.3.6.1.2.1.13.6.1.1.8",
1909
+ "status" : "current",
1910
+ "syntax" : {
1911
+ "type" : {
1912
+ "basetype" : "Enumeration",
1913
+ "configured" : {
1914
+ "nodetype" : "namednumber",
1915
+ "number" : "1"
1916
+ },
1917
+ "learned" : {
1918
+ "nodetype" : "namednumber",
1919
+ "number" : "2"
1920
+ },
1921
+ "invalid" : {
1922
+ "nodetype" : "namednumber",
1923
+ "number" : "3"
1924
+ },
1925
+ },
1926
+ },
1927
+ "access" : "readwrite",
1928
+ "description" :
1929
+ """The state of this network entry.
1930
+
1931
+ Setting this object to the value invalid(3) has the
1932
+ effect of invalidating the corresponding entry in the
1933
+ kipTable. That is, it effectively disassociates the
1934
+ mapping identified with said entry. It is an
1935
+ implementation-specific matter as to whether the agent
1936
+ removes an invalidated entry from the table.
1937
+ Accordingly, management stations must be prepared to
1938
+ receive from agents tabular information corresponding
1939
+ to entries not currently in use. Proper
1940
+ interpretation of such entries requires examination
1941
+ of the relevant kipState object.""",
1942
+ }, # column
1943
+ "kipShare" : {
1944
+ "nodetype" : "column",
1945
+ "moduleName" : "APPLETALK-MIB",
1946
+ "oid" : "1.3.6.1.2.1.13.6.1.1.9",
1947
+ "status" : "current",
1948
+ "syntax" : {
1949
+ "type" : {
1950
+ "basetype" : "Enumeration",
1951
+ "shared" : {
1952
+ "nodetype" : "namednumber",
1953
+ "number" : "1"
1954
+ },
1955
+ "private" : {
1956
+ "nodetype" : "namednumber",
1957
+ "number" : "2"
1958
+ },
1959
+ },
1960
+ },
1961
+ "access" : "readwrite",
1962
+ "description" :
1963
+ """If the information in this entry is propagated to
1964
+ other routers as part of the AA routing protocol,
1965
+ the value of this variable is equal to shared(1).
1966
+ Otherwise its value is private(2).""",
1967
+ }, # column
1968
+ "kipFrom" : {
1969
+ "nodetype" : "column",
1970
+ "moduleName" : "APPLETALK-MIB",
1971
+ "oid" : "1.3.6.1.2.1.13.6.1.1.10",
1972
+ "status" : "current",
1973
+ "syntax" : {
1974
+ "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
1975
+ },
1976
+ "access" : "readonly",
1977
+ "description" :
1978
+ """The IP address from which the routing entry was
1979
+ learned via the AA protocol. If this entry was not
1980
+ created via the AA protocol, it should contain IP
1981
+ address 0.0.0.0.""",
1982
+ }, # column
1983
+ "zipRouter" : {
1984
+ "nodetype" : "node",
1985
+ "moduleName" : "APPLETALK-MIB",
1986
+ "oid" : "1.3.6.1.2.1.13.7",
1987
+ }, # node
1988
+ "zipTable" : {
1989
+ "nodetype" : "table",
1990
+ "moduleName" : "APPLETALK-MIB",
1991
+ "oid" : "1.3.6.1.2.1.13.7.1",
1992
+ "status" : "current",
1993
+ "description" :
1994
+ """The table of zone information for reachable
1995
+ AppleTalk networks.""",
1996
+ }, # table
1997
+ "zipEntry" : {
1998
+ "nodetype" : "row",
1999
+ "moduleName" : "APPLETALK-MIB",
2000
+ "oid" : "1.3.6.1.2.1.13.7.1.1",
2001
+ "status" : "current",
2002
+ "linkage" : [
2003
+ "zipZoneNetStart",
2004
+ "zipZoneIndex",
2005
+ ],
2006
+ "description" :
2007
+ """An entry of zone information for a particular zone
2008
+ and network combination.
2009
+
2010
+ As an example, an instance of the zipZoneState object
2011
+ might be named zipZoneState.0.80.4""",
2012
+ }, # row
2013
+ "zipZoneName" : {
2014
+ "nodetype" : "column",
2015
+ "moduleName" : "APPLETALK-MIB",
2016
+ "oid" : "1.3.6.1.2.1.13.7.1.1.1",
2017
+ "status" : "current",
2018
+ "syntax" : {
2019
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATName"},
2020
+ },
2021
+ "access" : "readonly",
2022
+ "description" :
2023
+ """The zone name of this entry. This is stored in
2024
+ Mac ASCII format. If the full zone list for the
2025
+ entry is not known, the value for zipZoneName shall
2026
+ be a zero length octet string.""",
2027
+ }, # column
2028
+ "zipZoneIndex" : {
2029
+ "nodetype" : "column",
2030
+ "moduleName" : "APPLETALK-MIB",
2031
+ "oid" : "1.3.6.1.2.1.13.7.1.1.2",
2032
+ "status" : "current",
2033
+ "syntax" : {
2034
+ "type" : { "module" :"", "name" : "Integer32"},
2035
+ },
2036
+ "access" : "readonly",
2037
+ "description" :
2038
+ """An integer that is unique to the zipZoneName that
2039
+ is present in this entry. For any given zone name,
2040
+ every zipEntry that has an equal zone name will have
2041
+ the same zipZoneIndex. When a zone name is
2042
+ discovered which is not currently in the table, it
2043
+ will be assigned an index greater than any
2044
+ previously assigned index.""",
2045
+ }, # column
2046
+ "zipZoneNetStart" : {
2047
+ "nodetype" : "column",
2048
+ "moduleName" : "APPLETALK-MIB",
2049
+ "oid" : "1.3.6.1.2.1.13.7.1.1.3",
2050
+ "status" : "current",
2051
+ "syntax" : {
2052
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
2053
+ },
2054
+ "access" : "readonly",
2055
+ "description" :
2056
+ """The network that starts the range for this entry.
2057
+ This address is a two octet DDP network address in
2058
+ network byte order.""",
2059
+ }, # column
2060
+ "zipZoneNetEnd" : {
2061
+ "nodetype" : "column",
2062
+ "moduleName" : "APPLETALK-MIB",
2063
+ "oid" : "1.3.6.1.2.1.13.7.1.1.4",
2064
+ "status" : "current",
2065
+ "syntax" : {
2066
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATNetworkNumber"},
2067
+ },
2068
+ "access" : "readonly",
2069
+ "description" :
2070
+ """The network that ends the range for this entry.
2071
+ This address is a two octet DDP network address in
2072
+ network byte order. If the network to which this
2073
+ zip entry pertains is a non-extended network, the
2074
+ value for zipZoneNetEnd shall be two octets of
2075
+ zero.""",
2076
+ }, # column
2077
+ "zipZoneState" : {
2078
+ "nodetype" : "column",
2079
+ "moduleName" : "APPLETALK-MIB",
2080
+ "oid" : "1.3.6.1.2.1.13.7.1.1.5",
2081
+ "status" : "current",
2082
+ "syntax" : {
2083
+ "type" : {
2084
+ "basetype" : "Enumeration",
2085
+ "valid" : {
2086
+ "nodetype" : "namednumber",
2087
+ "number" : "1"
2088
+ },
2089
+ "invalid" : {
2090
+ "nodetype" : "namednumber",
2091
+ "number" : "2"
2092
+ },
2093
+ },
2094
+ },
2095
+ "access" : "readwrite",
2096
+ "description" :
2097
+ """The state of this zip entry.
2098
+
2099
+ Setting this object to the value invalid(2) has the
2100
+ effect of invalidating the corresponding entry in
2101
+ the zipTable. That is, it effectively
2102
+ disassociates the mapping identified with said
2103
+ entry. It is an implementation-specific matter as
2104
+ to whether the agent removes an invalidated entry
2105
+ from the table. Accordingly, management stations
2106
+ must be prepared to receive from agents tabular
2107
+ information corresponding to entries not currently
2108
+ in use. Proper interpretation of such entries
2109
+ requires examination of the relevant zipZoneState
2110
+ object.""",
2111
+ }, # column
2112
+ "zipZoneFrom" : {
2113
+ "nodetype" : "column",
2114
+ "moduleName" : "APPLETALK-MIB",
2115
+ "oid" : "1.3.6.1.2.1.13.7.1.1.6",
2116
+ "status" : "current",
2117
+ "syntax" : {
2118
+ "type" : { "module" :"", "name" : "OctetString"},
2119
+ },
2120
+ "access" : "readonly",
2121
+ "description" :
2122
+ """The address from which this zone name to network
2123
+ number mapping was learned. The format of this
2124
+ address can be determined by examining the
2125
+ atportType corresponding to this entry. When this
2126
+ mapping is learned from the entity itself, this
2127
+ object shall have the value of three
2128
+ octets of zero.""",
2129
+ }, # column
2130
+ "zipZonePort" : {
2131
+ "nodetype" : "column",
2132
+ "moduleName" : "APPLETALK-MIB",
2133
+ "oid" : "1.3.6.1.2.1.13.7.1.1.7",
2134
+ "status" : "current",
2135
+ "syntax" : {
2136
+ "type" : { "module" :"", "name" : "Integer32"},
2137
+ },
2138
+ "access" : "readonly",
2139
+ "description" :
2140
+ """The AppleTalk port through which this zone name to
2141
+ network number mapping was learned. The interface
2142
+ identified by a particular value of this variable is
2143
+ the same interface as identified by the same value
2144
+ of atportIndex.""",
2145
+ }, # column
2146
+ "zipInZipQueries" : {
2147
+ "nodetype" : "scalar",
2148
+ "moduleName" : "APPLETALK-MIB",
2149
+ "oid" : "1.3.6.1.2.1.13.7.2",
2150
+ "status" : "current",
2151
+ "syntax" : {
2152
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2153
+ },
2154
+ "access" : "readonly",
2155
+ "description" :
2156
+ """The number of ZIP Queries received by this entity.""",
2157
+ }, # scalar
2158
+ "zipInZipReplies" : {
2159
+ "nodetype" : "scalar",
2160
+ "moduleName" : "APPLETALK-MIB",
2161
+ "oid" : "1.3.6.1.2.1.13.7.3",
2162
+ "status" : "current",
2163
+ "syntax" : {
2164
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2165
+ },
2166
+ "access" : "readonly",
2167
+ "description" :
2168
+ """The number of ZIP Replies received by this entity.""",
2169
+ }, # scalar
2170
+ "zipInZipExtendedReplies" : {
2171
+ "nodetype" : "scalar",
2172
+ "moduleName" : "APPLETALK-MIB",
2173
+ "oid" : "1.3.6.1.2.1.13.7.4",
2174
+ "status" : "current",
2175
+ "syntax" : {
2176
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2177
+ },
2178
+ "access" : "readonly",
2179
+ "description" :
2180
+ """The number of ZIP Extended Replies received by this
2181
+ entity.""",
2182
+ }, # scalar
2183
+ "zipZoneConflictErrors" : {
2184
+ "nodetype" : "scalar",
2185
+ "moduleName" : "APPLETALK-MIB",
2186
+ "oid" : "1.3.6.1.2.1.13.7.5",
2187
+ "status" : "current",
2188
+ "syntax" : {
2189
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2190
+ },
2191
+ "access" : "readonly",
2192
+ "description" :
2193
+ """The number of times a conflict has been detected
2194
+ between this entity's zone information and another
2195
+ entity's zone information.""",
2196
+ }, # scalar
2197
+ "zipInObsoletes" : {
2198
+ "nodetype" : "scalar",
2199
+ "moduleName" : "APPLETALK-MIB",
2200
+ "oid" : "1.3.6.1.2.1.13.7.6",
2201
+ "status" : "current",
2202
+ "syntax" : {
2203
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2204
+ },
2205
+ "access" : "readonly",
2206
+ "description" :
2207
+ """The number of ZIP Takedown or ZIP Bringup packets
2208
+ received by this entity. Note that as the ZIP
2209
+ Takedown and ZIP Bringup packets have been
2210
+ obsoleted, the receipt of one of these packets
2211
+ indicates that a node sent it in error.""",
2212
+ }, # scalar
2213
+ "zipRouterNetInfoTable" : {
2214
+ "nodetype" : "table",
2215
+ "moduleName" : "APPLETALK-MIB",
2216
+ "oid" : "1.3.6.1.2.1.13.7.7",
2217
+ "status" : "current",
2218
+ "description" :
2219
+ """The table of Net Info packets received by each port
2220
+ on this entity.""",
2221
+ }, # table
2222
+ "zipRouterNetInfoEntry" : {
2223
+ "nodetype" : "row",
2224
+ "moduleName" : "APPLETALK-MIB",
2225
+ "oid" : "1.3.6.1.2.1.13.7.7.1",
2226
+ "status" : "current",
2227
+ "linkage" : [
2228
+ "atportIndex",
2229
+ ],
2230
+ "description" :
2231
+ """The description of the Net Info packets received on
2232
+ a particular port on this entity. One such entry
2233
+ shall exist for each atport on this router entity.
2234
+
2235
+ As an example, an instance of the zipInGetNetInfos
2236
+ object might be named zipInGetNetInfos.2""",
2237
+ }, # row
2238
+ "zipInGetNetInfos" : {
2239
+ "nodetype" : "column",
2240
+ "moduleName" : "APPLETALK-MIB",
2241
+ "oid" : "1.3.6.1.2.1.13.7.7.1.1",
2242
+ "status" : "current",
2243
+ "syntax" : {
2244
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2245
+ },
2246
+ "access" : "readonly",
2247
+ "description" :
2248
+ """The number of ZIP GetNetInfo packets received on
2249
+ this port by this entity.""",
2250
+ }, # column
2251
+ "zipOutGetNetInfoReplies" : {
2252
+ "nodetype" : "column",
2253
+ "moduleName" : "APPLETALK-MIB",
2254
+ "oid" : "1.3.6.1.2.1.13.7.7.1.2",
2255
+ "status" : "current",
2256
+ "syntax" : {
2257
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2258
+ },
2259
+ "access" : "readonly",
2260
+ "description" :
2261
+ """The number of ZIP GetNetInfo Reply packets sent out
2262
+ this port by this entity.""",
2263
+ }, # column
2264
+ "zipZoneOutInvalids" : {
2265
+ "nodetype" : "column",
2266
+ "moduleName" : "APPLETALK-MIB",
2267
+ "oid" : "1.3.6.1.2.1.13.7.7.1.3",
2268
+ "status" : "current",
2269
+ "syntax" : {
2270
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2271
+ },
2272
+ "access" : "readonly",
2273
+ "description" :
2274
+ """The number of times this entity has sent a ZIP
2275
+ GetNetInfo Reply with the zone invalid bit set in
2276
+ response to a GetNetInfo Request with an invalid
2277
+ zone name.""",
2278
+ }, # column
2279
+ "zipAddressInvalids" : {
2280
+ "nodetype" : "column",
2281
+ "moduleName" : "APPLETALK-MIB",
2282
+ "oid" : "1.3.6.1.2.1.13.7.7.1.4",
2283
+ "status" : "current",
2284
+ "syntax" : {
2285
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2286
+ },
2287
+ "access" : "readonly",
2288
+ "description" :
2289
+ """The number of times this entity had to broadcast a
2290
+ ZIP GetNetInfo Reply because the GetNetInfo Request
2291
+ had an invalid address.""",
2292
+ }, # column
2293
+ "nbp" : {
2294
+ "nodetype" : "node",
2295
+ "moduleName" : "APPLETALK-MIB",
2296
+ "oid" : "1.3.6.1.2.1.13.8",
2297
+ }, # node
2298
+ "nbpTable" : {
2299
+ "nodetype" : "table",
2300
+ "moduleName" : "APPLETALK-MIB",
2301
+ "oid" : "1.3.6.1.2.1.13.8.1",
2302
+ "status" : "current",
2303
+ "description" :
2304
+ """The table of NBP services registered on this entity.""",
2305
+ }, # table
2306
+ "nbpEntry" : {
2307
+ "nodetype" : "row",
2308
+ "moduleName" : "APPLETALK-MIB",
2309
+ "oid" : "1.3.6.1.2.1.13.8.1.1",
2310
+ "status" : "current",
2311
+ "linkage" : [
2312
+ "nbpIndex",
2313
+ ],
2314
+ "description" :
2315
+ """The description of an NBP service registered on this
2316
+ entity.
2317
+
2318
+ As an example, an instance of the nbpZone object
2319
+ might be named nbpZone.2""",
2320
+ }, # row
2321
+ "nbpIndex" : {
2322
+ "nodetype" : "column",
2323
+ "moduleName" : "APPLETALK-MIB",
2324
+ "oid" : "1.3.6.1.2.1.13.8.1.1.1",
2325
+ "status" : "current",
2326
+ "syntax" : {
2327
+ "type" : { "module" :"", "name" : "Integer32"},
2328
+ },
2329
+ "access" : "readwrite",
2330
+ "description" :
2331
+ """The index of this NBP entry. This index is unique
2332
+ with respect to the indexes of all other NBP entries,
2333
+ and shall remain constant throughout the lifetime
2334
+ of this object.""",
2335
+ }, # column
2336
+ "nbpObject" : {
2337
+ "nodetype" : "column",
2338
+ "moduleName" : "APPLETALK-MIB",
2339
+ "oid" : "1.3.6.1.2.1.13.8.1.1.2",
2340
+ "status" : "current",
2341
+ "syntax" : {
2342
+ "type" : {
2343
+ "basetype" : "OctetString",
2344
+ "parent module" : {
2345
+ "name" : "APPLETALK-MIB",
2346
+ "type" : "ATName",
2347
+ },
2348
+ "ranges" : [
2349
+ {
2350
+ "min" : "1",
2351
+ "max" : "32"
2352
+ },
2353
+ ],
2354
+ "range" : {
2355
+ "min" : "1",
2356
+ "max" : "32"
2357
+ },
2358
+ },
2359
+ },
2360
+ "access" : "readwrite",
2361
+ "description" :
2362
+ """The name of the service described by this entity.
2363
+ When this variable is changed, the entity should
2364
+ perform an NBP registration using the new nbpObject.""",
2365
+ }, # column
2366
+ "nbpType" : {
2367
+ "nodetype" : "column",
2368
+ "moduleName" : "APPLETALK-MIB",
2369
+ "oid" : "1.3.6.1.2.1.13.8.1.1.3",
2370
+ "status" : "current",
2371
+ "syntax" : {
2372
+ "type" : {
2373
+ "basetype" : "OctetString",
2374
+ "parent module" : {
2375
+ "name" : "APPLETALK-MIB",
2376
+ "type" : "ATName",
2377
+ },
2378
+ "ranges" : [
2379
+ {
2380
+ "min" : "1",
2381
+ "max" : "32"
2382
+ },
2383
+ ],
2384
+ "range" : {
2385
+ "min" : "1",
2386
+ "max" : "32"
2387
+ },
2388
+ },
2389
+ },
2390
+ "access" : "readwrite",
2391
+ "description" :
2392
+ """The type of the service described by this entity.
2393
+ When this variable is changed, the entity should
2394
+ perform an NBP registration using the new nbpType.""",
2395
+ }, # column
2396
+ "nbpZone" : {
2397
+ "nodetype" : "column",
2398
+ "moduleName" : "APPLETALK-MIB",
2399
+ "oid" : "1.3.6.1.2.1.13.8.1.1.4",
2400
+ "status" : "current",
2401
+ "syntax" : {
2402
+ "type" : { "module" :"APPLETALK-MIB", "name" : "ATName"},
2403
+ },
2404
+ "access" : "readwrite",
2405
+ "description" :
2406
+ """The zone the service described by this entity is
2407
+ registered in. This must be the actual zone name,
2408
+ without any wildcard characters. When this variable
2409
+ is changed, the entity should perform an NBP
2410
+ registration using the new nbpZone.""",
2411
+ }, # column
2412
+ "nbpState" : {
2413
+ "nodetype" : "column",
2414
+ "moduleName" : "APPLETALK-MIB",
2415
+ "oid" : "1.3.6.1.2.1.13.8.1.1.5",
2416
+ "status" : "current",
2417
+ "syntax" : {
2418
+ "type" : {
2419
+ "basetype" : "Enumeration",
2420
+ "valid" : {
2421
+ "nodetype" : "namednumber",
2422
+ "number" : "1"
2423
+ },
2424
+ "registering" : {
2425
+ "nodetype" : "namednumber",
2426
+ "number" : "2"
2427
+ },
2428
+ "registrationFailed" : {
2429
+ "nodetype" : "namednumber",
2430
+ "number" : "3"
2431
+ },
2432
+ "invalid" : {
2433
+ "nodetype" : "namednumber",
2434
+ "number" : "4"
2435
+ },
2436
+ },
2437
+ },
2438
+ "access" : "readwrite",
2439
+ "description" :
2440
+ """The state of this NBP entry.
2441
+ When the registration for an entry in the nbpTable
2442
+ fails, it is an implementation-specific matter as to
2443
+ how long the entry will remain in the
2444
+ registrationFailed(3) state before moving to the
2445
+ invalid(4) state. Note that the entry may pass
2446
+ immediately from the registrationFailed state to
2447
+ the invalid state.
2448
+
2449
+ Setting this object to the value invalid(4) has the
2450
+ effect of invalidating the corresponding entry in the
2451
+ nbpTable. That is, it effectively disassociates the
2452
+ mapping identified with said entry. It is an
2453
+ implementation-specific matter as to whether the agent
2454
+ removes an invalidated entry from the table.
2455
+ Accordingly, management stations must be prepared to
2456
+ receive from agents tabular information corresponding
2457
+ to entries not currently in use. Proper
2458
+ interpretation of such entries requires examination
2459
+ of the relevant nbpState object.""",
2460
+ }, # column
2461
+ "nbpAddress" : {
2462
+ "nodetype" : "column",
2463
+ "moduleName" : "APPLETALK-MIB",
2464
+ "oid" : "1.3.6.1.2.1.13.8.1.1.6",
2465
+ "status" : "current",
2466
+ "syntax" : {
2467
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
2468
+ },
2469
+ "access" : "readwrite",
2470
+ "description" :
2471
+ """The DDP network, node, and socket number of this
2472
+ entity. If this is unspecified, for instance if the
2473
+ registration is on all ports of a multiport device,
2474
+ this object shall have the value of three octets of
2475
+ zero, followed by one octet of socket number.""",
2476
+ }, # column
2477
+ "nbpEnumerator" : {
2478
+ "nodetype" : "column",
2479
+ "moduleName" : "APPLETALK-MIB",
2480
+ "oid" : "1.3.6.1.2.1.13.8.1.1.7",
2481
+ "status" : "current",
2482
+ "syntax" : {
2483
+ "type" : {
2484
+ "basetype" : "Integer32",
2485
+ "ranges" : [
2486
+ {
2487
+ "min" : "0",
2488
+ "max" : "255"
2489
+ },
2490
+ ],
2491
+ "range" : {
2492
+ "min" : "0",
2493
+ "max" : "255"
2494
+ },
2495
+ },
2496
+ },
2497
+ "access" : "readonly",
2498
+ "description" :
2499
+ """The enumerator assigned to this entity.""",
2500
+ }, # column
2501
+ "nbpInLookUpRequests" : {
2502
+ "nodetype" : "scalar",
2503
+ "moduleName" : "APPLETALK-MIB",
2504
+ "oid" : "1.3.6.1.2.1.13.8.2",
2505
+ "status" : "current",
2506
+ "syntax" : {
2507
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2508
+ },
2509
+ "access" : "readonly",
2510
+ "description" :
2511
+ """The number of NBP LookUp Requests received.""",
2512
+ }, # scalar
2513
+ "nbpInLookUpReplies" : {
2514
+ "nodetype" : "scalar",
2515
+ "moduleName" : "APPLETALK-MIB",
2516
+ "oid" : "1.3.6.1.2.1.13.8.3",
2517
+ "status" : "current",
2518
+ "syntax" : {
2519
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2520
+ },
2521
+ "access" : "readonly",
2522
+ "description" :
2523
+ """The number of NBP LookUp Replies received.""",
2524
+ }, # scalar
2525
+ "nbpInBroadcastRequests" : {
2526
+ "nodetype" : "scalar",
2527
+ "moduleName" : "APPLETALK-MIB",
2528
+ "oid" : "1.3.6.1.2.1.13.8.4",
2529
+ "status" : "current",
2530
+ "syntax" : {
2531
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2532
+ },
2533
+ "access" : "readonly",
2534
+ "description" :
2535
+ """The number of NBP Broadcast Requests received.""",
2536
+ }, # scalar
2537
+ "nbpInForwardRequests" : {
2538
+ "nodetype" : "scalar",
2539
+ "moduleName" : "APPLETALK-MIB",
2540
+ "oid" : "1.3.6.1.2.1.13.8.5",
2541
+ "status" : "current",
2542
+ "syntax" : {
2543
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2544
+ },
2545
+ "access" : "readonly",
2546
+ "description" :
2547
+ """The number of NBP Forward Requests received.""",
2548
+ }, # scalar
2549
+ "nbpOutLookUpReplies" : {
2550
+ "nodetype" : "scalar",
2551
+ "moduleName" : "APPLETALK-MIB",
2552
+ "oid" : "1.3.6.1.2.1.13.8.6",
2553
+ "status" : "current",
2554
+ "syntax" : {
2555
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2556
+ },
2557
+ "access" : "readonly",
2558
+ "description" :
2559
+ """The number of NBP LookUp Replies sent.""",
2560
+ }, # scalar
2561
+ "nbpRegistrationFailures" : {
2562
+ "nodetype" : "scalar",
2563
+ "moduleName" : "APPLETALK-MIB",
2564
+ "oid" : "1.3.6.1.2.1.13.8.7",
2565
+ "status" : "current",
2566
+ "syntax" : {
2567
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2568
+ },
2569
+ "access" : "readonly",
2570
+ "description" :
2571
+ """The number of times this node experienced a failure
2572
+ in attempting to register an NBP entity.""",
2573
+ }, # scalar
2574
+ "nbpInErrors" : {
2575
+ "nodetype" : "scalar",
2576
+ "moduleName" : "APPLETALK-MIB",
2577
+ "oid" : "1.3.6.1.2.1.13.8.8",
2578
+ "status" : "current",
2579
+ "syntax" : {
2580
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2581
+ },
2582
+ "access" : "readonly",
2583
+ "description" :
2584
+ """The number of NBP packets received by this entity
2585
+ that were rejected for any error.""",
2586
+ }, # scalar
2587
+ "atecho" : {
2588
+ "nodetype" : "node",
2589
+ "moduleName" : "APPLETALK-MIB",
2590
+ "oid" : "1.3.6.1.2.1.13.9",
2591
+ }, # node
2592
+ "atechoRequests" : {
2593
+ "nodetype" : "scalar",
2594
+ "moduleName" : "APPLETALK-MIB",
2595
+ "oid" : "1.3.6.1.2.1.13.9.1",
2596
+ "status" : "current",
2597
+ "syntax" : {
2598
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2599
+ },
2600
+ "access" : "readonly",
2601
+ "description" :
2602
+ """The number of AppleTalk Echo requests received.""",
2603
+ }, # scalar
2604
+ "atechoReplies" : {
2605
+ "nodetype" : "scalar",
2606
+ "moduleName" : "APPLETALK-MIB",
2607
+ "oid" : "1.3.6.1.2.1.13.9.2",
2608
+ "status" : "current",
2609
+ "syntax" : {
2610
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2611
+ },
2612
+ "access" : "readonly",
2613
+ "description" :
2614
+ """The number of AppleTalk Echo replies sent.""",
2615
+ }, # scalar
2616
+ "atechoOutRequests" : {
2617
+ "nodetype" : "scalar",
2618
+ "moduleName" : "APPLETALK-MIB",
2619
+ "oid" : "1.3.6.1.2.1.13.9.3",
2620
+ "status" : "current",
2621
+ "syntax" : {
2622
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2623
+ },
2624
+ "access" : "readonly",
2625
+ "description" :
2626
+ """The count of AppleTalk Echo requests sent.""",
2627
+ }, # scalar
2628
+ "atechoInReplies" : {
2629
+ "nodetype" : "scalar",
2630
+ "moduleName" : "APPLETALK-MIB",
2631
+ "oid" : "1.3.6.1.2.1.13.9.4",
2632
+ "status" : "current",
2633
+ "syntax" : {
2634
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2635
+ },
2636
+ "access" : "readonly",
2637
+ "description" :
2638
+ """The count of AppleTalk Echo replies received.""",
2639
+ }, # scalar
2640
+ "atp" : {
2641
+ "nodetype" : "node",
2642
+ "moduleName" : "APPLETALK-MIB",
2643
+ "oid" : "1.3.6.1.2.1.13.10",
2644
+ }, # node
2645
+ "atpInPkts" : {
2646
+ "nodetype" : "scalar",
2647
+ "moduleName" : "APPLETALK-MIB",
2648
+ "oid" : "1.3.6.1.2.1.13.10.1",
2649
+ "status" : "current",
2650
+ "syntax" : {
2651
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2652
+ },
2653
+ "access" : "readonly",
2654
+ "description" :
2655
+ """The number of ATP packets received by this entity.""",
2656
+ }, # scalar
2657
+ "atpOutPkts" : {
2658
+ "nodetype" : "scalar",
2659
+ "moduleName" : "APPLETALK-MIB",
2660
+ "oid" : "1.3.6.1.2.1.13.10.2",
2661
+ "status" : "current",
2662
+ "syntax" : {
2663
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2664
+ },
2665
+ "access" : "readonly",
2666
+ "description" :
2667
+ """The number of ATP packets sent by this entity.""",
2668
+ }, # scalar
2669
+ "atpTRequestRetransmissions" : {
2670
+ "nodetype" : "scalar",
2671
+ "moduleName" : "APPLETALK-MIB",
2672
+ "oid" : "1.3.6.1.2.1.13.10.3",
2673
+ "status" : "current",
2674
+ "syntax" : {
2675
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2676
+ },
2677
+ "access" : "readonly",
2678
+ "description" :
2679
+ """The number of times that a timeout occurred and a
2680
+ Transaction Request packet needed to be
2681
+ retransmitted by this host.""",
2682
+ }, # scalar
2683
+ "atpTResponseRetransmissions" : {
2684
+ "nodetype" : "scalar",
2685
+ "moduleName" : "APPLETALK-MIB",
2686
+ "oid" : "1.3.6.1.2.1.13.10.4",
2687
+ "status" : "current",
2688
+ "syntax" : {
2689
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2690
+ },
2691
+ "access" : "readonly",
2692
+ "description" :
2693
+ """The number of times a timeout was detected and a
2694
+ Transaction Response packet needed to be
2695
+ retransmitted by this host.""",
2696
+ }, # scalar
2697
+ "atpReleaseTimerExpiredCounts" : {
2698
+ "nodetype" : "scalar",
2699
+ "moduleName" : "APPLETALK-MIB",
2700
+ "oid" : "1.3.6.1.2.1.13.10.5",
2701
+ "status" : "current",
2702
+ "syntax" : {
2703
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2704
+ },
2705
+ "access" : "readonly",
2706
+ "description" :
2707
+ """The number of times the release timer expired, as a
2708
+ result of which a Request Control Block had to be
2709
+ deleted.""",
2710
+ }, # scalar
2711
+ "atpRetryCountExceededs" : {
2712
+ "nodetype" : "scalar",
2713
+ "moduleName" : "APPLETALK-MIB",
2714
+ "oid" : "1.3.6.1.2.1.13.10.6",
2715
+ "status" : "current",
2716
+ "syntax" : {
2717
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2718
+ },
2719
+ "access" : "readonly",
2720
+ "description" :
2721
+ """The number of times the retry count was exceeded,
2722
+ and an error was returned to the client of ATP.""",
2723
+ }, # scalar
2724
+ "atpListenerTable" : {
2725
+ "nodetype" : "table",
2726
+ "moduleName" : "APPLETALK-MIB",
2727
+ "oid" : "1.3.6.1.2.1.13.10.7",
2728
+ "status" : "current",
2729
+ "description" :
2730
+ """The atpListenerTable stores information for each ATP
2731
+ socket that has a listener.""",
2732
+ }, # table
2733
+ "atpListenerEntry" : {
2734
+ "nodetype" : "row",
2735
+ "moduleName" : "APPLETALK-MIB",
2736
+ "oid" : "1.3.6.1.2.1.13.10.7.1",
2737
+ "status" : "current",
2738
+ "linkage" : [
2739
+ "atpListenerAddress",
2740
+ ],
2741
+ "description" :
2742
+ """This atpListenerEntry contains information about a
2743
+ particular socket that has a socket listener.
2744
+
2745
+ As an example, an instance of the atpListenerStatus
2746
+ object might be named atpListenerStatus.0.80.220.3""",
2747
+ }, # row
2748
+ "atpListenerAddress" : {
2749
+ "nodetype" : "column",
2750
+ "moduleName" : "APPLETALK-MIB",
2751
+ "oid" : "1.3.6.1.2.1.13.10.7.1.1",
2752
+ "status" : "current",
2753
+ "syntax" : {
2754
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
2755
+ },
2756
+ "access" : "noaccess",
2757
+ "description" :
2758
+ """The DDP address that this socket listener is bound
2759
+ to. If this socket listener isn't bound to a
2760
+ particular address, for instance if it is intended
2761
+ for all interfaces, this object shall have the value
2762
+ of three octets of zero followed by one octet of
2763
+ socket number.""",
2764
+ }, # column
2765
+ "atpListenerStatus" : {
2766
+ "nodetype" : "column",
2767
+ "moduleName" : "APPLETALK-MIB",
2768
+ "oid" : "1.3.6.1.2.1.13.10.7.1.2",
2769
+ "status" : "current",
2770
+ "syntax" : {
2771
+ "type" : {
2772
+ "basetype" : "Enumeration",
2773
+ "valid" : {
2774
+ "nodetype" : "namednumber",
2775
+ "number" : "1"
2776
+ },
2777
+ "invalid" : {
2778
+ "nodetype" : "namednumber",
2779
+ "number" : "2"
2780
+ },
2781
+ },
2782
+ },
2783
+ "access" : "readwrite",
2784
+ "description" :
2785
+ """The status of this socket.
2786
+
2787
+ Setting this object to the value invalid(2) has the
2788
+ effect of invalidating the corresponding entry in
2789
+ the atpListenerTable. That is, it effectively
2790
+ disassociates the mapping identified with said
2791
+ entry. It is an implementation-specific matter as
2792
+ to whether the agent removes an invalidated entry
2793
+ from the table. Accordingly, management stations
2794
+ must be prepared to receive from agents tabular
2795
+ information corresponding to entries not currently
2796
+ in use. Proper interpretation of such entries
2797
+ requires examination of the relevant
2798
+ atpListenerStatus object.""",
2799
+ }, # column
2800
+ "pap" : {
2801
+ "nodetype" : "node",
2802
+ "moduleName" : "APPLETALK-MIB",
2803
+ "oid" : "1.3.6.1.2.1.13.11",
2804
+ }, # node
2805
+ "papInOpenConns" : {
2806
+ "nodetype" : "scalar",
2807
+ "moduleName" : "APPLETALK-MIB",
2808
+ "oid" : "1.3.6.1.2.1.13.11.1",
2809
+ "status" : "current",
2810
+ "syntax" : {
2811
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2812
+ },
2813
+ "access" : "readonly",
2814
+ "description" :
2815
+ """The number of PAP Open Connection requests received
2816
+ by this entity.""",
2817
+ }, # scalar
2818
+ "papOutOpenConns" : {
2819
+ "nodetype" : "scalar",
2820
+ "moduleName" : "APPLETALK-MIB",
2821
+ "oid" : "1.3.6.1.2.1.13.11.2",
2822
+ "status" : "current",
2823
+ "syntax" : {
2824
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2825
+ },
2826
+ "access" : "readonly",
2827
+ "description" :
2828
+ """The number of PAP Open Connection requests sent by
2829
+ this entity.""",
2830
+ }, # scalar
2831
+ "papInDatas" : {
2832
+ "nodetype" : "scalar",
2833
+ "moduleName" : "APPLETALK-MIB",
2834
+ "oid" : "1.3.6.1.2.1.13.11.3",
2835
+ "status" : "current",
2836
+ "syntax" : {
2837
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2838
+ },
2839
+ "access" : "readonly",
2840
+ "description" :
2841
+ """The number of PAP Data messages received by
2842
+ this entity.""",
2843
+ }, # scalar
2844
+ "papOutDatas" : {
2845
+ "nodetype" : "scalar",
2846
+ "moduleName" : "APPLETALK-MIB",
2847
+ "oid" : "1.3.6.1.2.1.13.11.4",
2848
+ "status" : "current",
2849
+ "syntax" : {
2850
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2851
+ },
2852
+ "access" : "readonly",
2853
+ "description" :
2854
+ """The number of PAP Data messages sent by
2855
+ this entity.""",
2856
+ }, # scalar
2857
+ "papInCloseConns" : {
2858
+ "nodetype" : "scalar",
2859
+ "moduleName" : "APPLETALK-MIB",
2860
+ "oid" : "1.3.6.1.2.1.13.11.5",
2861
+ "status" : "current",
2862
+ "syntax" : {
2863
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2864
+ },
2865
+ "access" : "readonly",
2866
+ "description" :
2867
+ """The number of PAP Close Connection requests
2868
+ received by this entity.""",
2869
+ }, # scalar
2870
+ "papOutCloseConns" : {
2871
+ "nodetype" : "scalar",
2872
+ "moduleName" : "APPLETALK-MIB",
2873
+ "oid" : "1.3.6.1.2.1.13.11.6",
2874
+ "status" : "current",
2875
+ "syntax" : {
2876
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2877
+ },
2878
+ "access" : "readonly",
2879
+ "description" :
2880
+ """The number of PAP Close Connection requests sent by
2881
+ this entity.""",
2882
+ }, # scalar
2883
+ "papTickleTimeoutCloses" : {
2884
+ "nodetype" : "scalar",
2885
+ "moduleName" : "APPLETALK-MIB",
2886
+ "oid" : "1.3.6.1.2.1.13.11.7",
2887
+ "status" : "current",
2888
+ "syntax" : {
2889
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2890
+ },
2891
+ "access" : "readonly",
2892
+ "description" :
2893
+ """The number of times the PAP entity on this node
2894
+ closed a connection because it didn't receive a
2895
+ Tickle message before its timer expired.""",
2896
+ }, # scalar
2897
+ "papServerTable" : {
2898
+ "nodetype" : "table",
2899
+ "moduleName" : "APPLETALK-MIB",
2900
+ "oid" : "1.3.6.1.2.1.13.11.8",
2901
+ "status" : "current",
2902
+ "description" :
2903
+ """A list of servers on this entity that are
2904
+ accessible through the Printer Access Protocol.""",
2905
+ }, # table
2906
+ "papServerEntry" : {
2907
+ "nodetype" : "row",
2908
+ "moduleName" : "APPLETALK-MIB",
2909
+ "oid" : "1.3.6.1.2.1.13.11.8.1",
2910
+ "status" : "current",
2911
+ "linkage" : [
2912
+ "papServerIndex",
2913
+ ],
2914
+ "description" :
2915
+ """A set of information about a particular PAP server's
2916
+ configuration and performance.
2917
+
2918
+ As an example, an instance of the papServerStatus
2919
+ object might be named papServerStatus.1""",
2920
+ }, # row
2921
+ "papServerIndex" : {
2922
+ "nodetype" : "column",
2923
+ "moduleName" : "APPLETALK-MIB",
2924
+ "oid" : "1.3.6.1.2.1.13.11.8.1.1",
2925
+ "status" : "current",
2926
+ "syntax" : {
2927
+ "type" : { "module" :"", "name" : "Integer32"},
2928
+ },
2929
+ "access" : "noaccess",
2930
+ "description" :
2931
+ """An unique value for each Printer Access Protocol
2932
+ Server.""",
2933
+ }, # column
2934
+ "papServerListeningSocket" : {
2935
+ "nodetype" : "column",
2936
+ "moduleName" : "APPLETALK-MIB",
2937
+ "oid" : "1.3.6.1.2.1.13.11.8.1.2",
2938
+ "status" : "current",
2939
+ "syntax" : {
2940
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
2941
+ },
2942
+ "access" : "readwrite",
2943
+ "description" :
2944
+ """The Server Listening Socket that this PAP server is
2945
+ listening on.""",
2946
+ }, # column
2947
+ "papServerStatus" : {
2948
+ "nodetype" : "column",
2949
+ "moduleName" : "APPLETALK-MIB",
2950
+ "oid" : "1.3.6.1.2.1.13.11.8.1.3",
2951
+ "status" : "current",
2952
+ "syntax" : {
2953
+ "type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
2954
+ },
2955
+ "access" : "readonly",
2956
+ "description" :
2957
+ """The status string of this server. This is the
2958
+ message as it would appear in a PAP Status Reply
2959
+ from this server.""",
2960
+ }, # column
2961
+ "papServerCompletedJobs" : {
2962
+ "nodetype" : "column",
2963
+ "moduleName" : "APPLETALK-MIB",
2964
+ "oid" : "1.3.6.1.2.1.13.11.8.1.4",
2965
+ "status" : "current",
2966
+ "syntax" : {
2967
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
2968
+ },
2969
+ "access" : "readonly",
2970
+ "description" :
2971
+ """The number of jobs that have been accepted and
2972
+ successfully executed by this server.""",
2973
+ }, # column
2974
+ "papServerBusyJobs" : {
2975
+ "nodetype" : "column",
2976
+ "moduleName" : "APPLETALK-MIB",
2977
+ "oid" : "1.3.6.1.2.1.13.11.8.1.5",
2978
+ "status" : "current",
2979
+ "syntax" : {
2980
+ "type" : { "module" :"", "name" : "Integer32"},
2981
+ },
2982
+ "access" : "readonly",
2983
+ "description" :
2984
+ """The number of GetNextJob calls that have accepted
2985
+ and are currently executing a job.""",
2986
+ }, # column
2987
+ "papServerFreeJobs" : {
2988
+ "nodetype" : "column",
2989
+ "moduleName" : "APPLETALK-MIB",
2990
+ "oid" : "1.3.6.1.2.1.13.11.8.1.6",
2991
+ "status" : "current",
2992
+ "syntax" : {
2993
+ "type" : { "module" :"", "name" : "Integer32"},
2994
+ },
2995
+ "access" : "readonly",
2996
+ "description" :
2997
+ """The minimum number of GetNextJob calls that are
2998
+ currently waiting for a job.""",
2999
+ }, # column
3000
+ "papServerAuthenticationFailures" : {
3001
+ "nodetype" : "column",
3002
+ "moduleName" : "APPLETALK-MIB",
3003
+ "oid" : "1.3.6.1.2.1.13.11.8.1.7",
3004
+ "status" : "current",
3005
+ "syntax" : {
3006
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3007
+ },
3008
+ "access" : "readonly",
3009
+ "description" :
3010
+ """The number of times this PAP server rejected a job
3011
+ because the job was not correctly authenticated.""",
3012
+ }, # column
3013
+ "papServerAccountingFailures" : {
3014
+ "nodetype" : "column",
3015
+ "moduleName" : "APPLETALK-MIB",
3016
+ "oid" : "1.3.6.1.2.1.13.11.8.1.8",
3017
+ "status" : "current",
3018
+ "syntax" : {
3019
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3020
+ },
3021
+ "access" : "readonly",
3022
+ "description" :
3023
+ """The number of times this PAP server rejected a job
3024
+ because the job did not fit some accounting rule,
3025
+ such as exceeding a quota.""",
3026
+ }, # column
3027
+ "papServerGeneralFailures" : {
3028
+ "nodetype" : "column",
3029
+ "moduleName" : "APPLETALK-MIB",
3030
+ "oid" : "1.3.6.1.2.1.13.11.8.1.9",
3031
+ "status" : "current",
3032
+ "syntax" : {
3033
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3034
+ },
3035
+ "access" : "readonly",
3036
+ "description" :
3037
+ """The number of times this PAP server rejected a job
3038
+ for some reason other than authentication or
3039
+ accounting failures.""",
3040
+ }, # column
3041
+ "papServerState" : {
3042
+ "nodetype" : "column",
3043
+ "moduleName" : "APPLETALK-MIB",
3044
+ "oid" : "1.3.6.1.2.1.13.11.8.1.10",
3045
+ "status" : "current",
3046
+ "syntax" : {
3047
+ "type" : {
3048
+ "basetype" : "Enumeration",
3049
+ "valid" : {
3050
+ "nodetype" : "namednumber",
3051
+ "number" : "1"
3052
+ },
3053
+ "invalid" : {
3054
+ "nodetype" : "namednumber",
3055
+ "number" : "2"
3056
+ },
3057
+ },
3058
+ },
3059
+ "access" : "readwrite",
3060
+ "description" :
3061
+ """The state of this PAP Server entry.
3062
+
3063
+ Setting this object to the value invalid(2) has the
3064
+ effect of invalidating the corresponding entry in
3065
+ the papServerTable. That is, it effectively
3066
+ disassociates the mapping identified with said
3067
+ entry. It is an implementation-specific matter as
3068
+ to whether the agent removes an invalidated entry
3069
+ from the table. Accordingly, management stations
3070
+ must be prepared to receive from agents tabular
3071
+ information corresponding to entries not currently
3072
+ in use. Proper interpretation of such entries
3073
+ requires examination of the relevant papServerState
3074
+ object.""",
3075
+ }, # column
3076
+ "papServerLastStatusMsg" : {
3077
+ "nodetype" : "column",
3078
+ "moduleName" : "APPLETALK-MIB",
3079
+ "oid" : "1.3.6.1.2.1.13.11.8.1.11",
3080
+ "status" : "current",
3081
+ "syntax" : {
3082
+ "type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
3083
+ },
3084
+ "access" : "readonly",
3085
+ "description" :
3086
+ """The last status message that was transmitted by
3087
+ this server.""",
3088
+ }, # column
3089
+ "asp" : {
3090
+ "nodetype" : "node",
3091
+ "moduleName" : "APPLETALK-MIB",
3092
+ "oid" : "1.3.6.1.2.1.13.12",
3093
+ }, # node
3094
+ "aspInputTransactions" : {
3095
+ "nodetype" : "scalar",
3096
+ "moduleName" : "APPLETALK-MIB",
3097
+ "oid" : "1.3.6.1.2.1.13.12.1",
3098
+ "status" : "current",
3099
+ "syntax" : {
3100
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3101
+ },
3102
+ "access" : "readonly",
3103
+ "description" :
3104
+ """The number of ASP requests and replies received by
3105
+ this entity. Note that this is not necessarily the
3106
+ number of packets containing ASP transactions.""",
3107
+ }, # scalar
3108
+ "aspOutputTransactions" : {
3109
+ "nodetype" : "scalar",
3110
+ "moduleName" : "APPLETALK-MIB",
3111
+ "oid" : "1.3.6.1.2.1.13.12.2",
3112
+ "status" : "current",
3113
+ "syntax" : {
3114
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3115
+ },
3116
+ "access" : "readonly",
3117
+ "description" :
3118
+ """The number of ASP requests and replies sent by this
3119
+ entity. Note that this is not necessarily the number
3120
+ of packets containing ASP transactions.""",
3121
+ }, # scalar
3122
+ "aspInOpenSessions" : {
3123
+ "nodetype" : "scalar",
3124
+ "moduleName" : "APPLETALK-MIB",
3125
+ "oid" : "1.3.6.1.2.1.13.12.3",
3126
+ "status" : "current",
3127
+ "syntax" : {
3128
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3129
+ },
3130
+ "access" : "readonly",
3131
+ "description" :
3132
+ """The number of ASP Open Session requests and replies
3133
+ received by this entity.""",
3134
+ }, # scalar
3135
+ "aspOutOpenSessions" : {
3136
+ "nodetype" : "scalar",
3137
+ "moduleName" : "APPLETALK-MIB",
3138
+ "oid" : "1.3.6.1.2.1.13.12.4",
3139
+ "status" : "current",
3140
+ "syntax" : {
3141
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3142
+ },
3143
+ "access" : "readonly",
3144
+ "description" :
3145
+ """The number of ASP Open Session requests and replies
3146
+ sent by this entity.""",
3147
+ }, # scalar
3148
+ "aspInCloseSessions" : {
3149
+ "nodetype" : "scalar",
3150
+ "moduleName" : "APPLETALK-MIB",
3151
+ "oid" : "1.3.6.1.2.1.13.12.5",
3152
+ "status" : "current",
3153
+ "syntax" : {
3154
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3155
+ },
3156
+ "access" : "readonly",
3157
+ "description" :
3158
+ """The number of ASP Close Session requests and replies
3159
+ received by this entity.""",
3160
+ }, # scalar
3161
+ "aspOutCloseSessions" : {
3162
+ "nodetype" : "scalar",
3163
+ "moduleName" : "APPLETALK-MIB",
3164
+ "oid" : "1.3.6.1.2.1.13.12.6",
3165
+ "status" : "current",
3166
+ "syntax" : {
3167
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3168
+ },
3169
+ "access" : "readonly",
3170
+ "description" :
3171
+ """The number of ASP Close Session requests and replies
3172
+ sent by this entity.""",
3173
+ }, # scalar
3174
+ "aspNoMoreSessionsErrors" : {
3175
+ "nodetype" : "scalar",
3176
+ "moduleName" : "APPLETALK-MIB",
3177
+ "oid" : "1.3.6.1.2.1.13.12.7",
3178
+ "status" : "current",
3179
+ "syntax" : {
3180
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3181
+ },
3182
+ "access" : "readonly",
3183
+ "description" :
3184
+ """The number of times an error condition was returned
3185
+ because this server implementation could not support
3186
+ another session.""",
3187
+ }, # scalar
3188
+ "aspTickleTimeOutCloses" : {
3189
+ "nodetype" : "scalar",
3190
+ "moduleName" : "APPLETALK-MIB",
3191
+ "oid" : "1.3.6.1.2.1.13.12.8",
3192
+ "status" : "current",
3193
+ "syntax" : {
3194
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3195
+ },
3196
+ "access" : "readonly",
3197
+ "description" :
3198
+ """The number of times the ASP entity on this node
3199
+ closed a connection because it didn't receive any
3200
+ messages from the remote end before its timer
3201
+ expired.""",
3202
+ }, # scalar
3203
+ "aspConnTable" : {
3204
+ "nodetype" : "table",
3205
+ "moduleName" : "APPLETALK-MIB",
3206
+ "oid" : "1.3.6.1.2.1.13.12.9",
3207
+ "status" : "current",
3208
+ "description" :
3209
+ """A list of ASP connections on this entity.""",
3210
+ }, # table
3211
+ "aspConnEntry" : {
3212
+ "nodetype" : "row",
3213
+ "moduleName" : "APPLETALK-MIB",
3214
+ "oid" : "1.3.6.1.2.1.13.12.9.1",
3215
+ "status" : "current",
3216
+ "linkage" : [
3217
+ "aspConnLocalAddress",
3218
+ "aspConnRemoteAddress",
3219
+ "aspConnID",
3220
+ ],
3221
+ "description" :
3222
+ """A set of information describing an ASP connection.
3223
+
3224
+ As an example, an instance of the aspConnState object
3225
+ might be named
3226
+ aspConnState.0.80.220.135.0.80.239.119.12""",
3227
+ }, # row
3228
+ "aspConnLocalAddress" : {
3229
+ "nodetype" : "column",
3230
+ "moduleName" : "APPLETALK-MIB",
3231
+ "oid" : "1.3.6.1.2.1.13.12.9.1.1",
3232
+ "status" : "current",
3233
+ "syntax" : {
3234
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
3235
+ },
3236
+ "access" : "noaccess",
3237
+ "description" :
3238
+ """The local address of this ASP connection.""",
3239
+ }, # column
3240
+ "aspConnRemoteAddress" : {
3241
+ "nodetype" : "column",
3242
+ "moduleName" : "APPLETALK-MIB",
3243
+ "oid" : "1.3.6.1.2.1.13.12.9.1.2",
3244
+ "status" : "current",
3245
+ "syntax" : {
3246
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
3247
+ },
3248
+ "access" : "noaccess",
3249
+ "description" :
3250
+ """The remote address of this ASP connection. If
3251
+ this entry is in the listening mode, this object
3252
+ shall have a value of four octets of zero.""",
3253
+ }, # column
3254
+ "aspConnID" : {
3255
+ "nodetype" : "column",
3256
+ "moduleName" : "APPLETALK-MIB",
3257
+ "oid" : "1.3.6.1.2.1.13.12.9.1.3",
3258
+ "status" : "current",
3259
+ "syntax" : {
3260
+ "type" : {
3261
+ "basetype" : "Integer32",
3262
+ "ranges" : [
3263
+ {
3264
+ "min" : "1",
3265
+ "max" : "255"
3266
+ },
3267
+ ],
3268
+ "range" : {
3269
+ "min" : "1",
3270
+ "max" : "255"
3271
+ },
3272
+ },
3273
+ },
3274
+ "access" : "noaccess",
3275
+ "description" :
3276
+ """The remote Connection ID of this ASP connection. If
3277
+ this entry is in the listening mode, this object
3278
+ shall have a value of zero.""",
3279
+ }, # column
3280
+ "aspConnLastReqNum" : {
3281
+ "nodetype" : "column",
3282
+ "moduleName" : "APPLETALK-MIB",
3283
+ "oid" : "1.3.6.1.2.1.13.12.9.1.4",
3284
+ "status" : "current",
3285
+ "syntax" : {
3286
+ "type" : {
3287
+ "basetype" : "Integer32",
3288
+ "ranges" : [
3289
+ {
3290
+ "min" : "1",
3291
+ "max" : "65535"
3292
+ },
3293
+ ],
3294
+ "range" : {
3295
+ "min" : "1",
3296
+ "max" : "65535"
3297
+ },
3298
+ },
3299
+ },
3300
+ "access" : "readonly",
3301
+ "description" :
3302
+ """The last request number on this ASP connection. If
3303
+ this entry is in the listening mode, this object
3304
+ shall have a value of zero.""",
3305
+ }, # column
3306
+ "aspConnServerEnd" : {
3307
+ "nodetype" : "column",
3308
+ "moduleName" : "APPLETALK-MIB",
3309
+ "oid" : "1.3.6.1.2.1.13.12.9.1.5",
3310
+ "status" : "current",
3311
+ "syntax" : {
3312
+ "type" : {
3313
+ "basetype" : "Enumeration",
3314
+ "sss" : {
3315
+ "nodetype" : "namednumber",
3316
+ "number" : "1"
3317
+ },
3318
+ "wss" : {
3319
+ "nodetype" : "namednumber",
3320
+ "number" : "2"
3321
+ },
3322
+ "sls" : {
3323
+ "nodetype" : "namednumber",
3324
+ "number" : "3"
3325
+ },
3326
+ },
3327
+ },
3328
+ "access" : "readonly",
3329
+ "description" :
3330
+ """Specifies what mode the local session end is in.""",
3331
+ }, # column
3332
+ "aspConnState" : {
3333
+ "nodetype" : "column",
3334
+ "moduleName" : "APPLETALK-MIB",
3335
+ "oid" : "1.3.6.1.2.1.13.12.9.1.6",
3336
+ "status" : "current",
3337
+ "syntax" : {
3338
+ "type" : {
3339
+ "basetype" : "Enumeration",
3340
+ "open" : {
3341
+ "nodetype" : "namednumber",
3342
+ "number" : "1"
3343
+ },
3344
+ "closed" : {
3345
+ "nodetype" : "namednumber",
3346
+ "number" : "2"
3347
+ },
3348
+ "invalid" : {
3349
+ "nodetype" : "namednumber",
3350
+ "number" : "3"
3351
+ },
3352
+ },
3353
+ },
3354
+ "access" : "readwrite",
3355
+ "description" :
3356
+ """The state of this ASP connection.
3357
+ Setting this object to the value invalid(3) has the
3358
+ effect of invalidating the corresponding entry in the
3359
+ aspConnTable. That is, it effectively disassociates
3360
+ the mapping identified with said entry. It is an
3361
+ implementation-specific matter as to whether the agent
3362
+ removes an invalidated entry from the table.
3363
+ Accordingly, management stations must be prepared to
3364
+ receive from agents tabular information corresponding
3365
+ to entries not currently in use. Proper
3366
+ interpretation of such entries requires examination
3367
+ of the relevant aspConnState object.""",
3368
+ }, # column
3369
+ "adsp" : {
3370
+ "nodetype" : "node",
3371
+ "moduleName" : "APPLETALK-MIB",
3372
+ "oid" : "1.3.6.1.2.1.13.13",
3373
+ }, # node
3374
+ "adspInPkts" : {
3375
+ "nodetype" : "scalar",
3376
+ "moduleName" : "APPLETALK-MIB",
3377
+ "oid" : "1.3.6.1.2.1.13.13.1",
3378
+ "status" : "current",
3379
+ "syntax" : {
3380
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3381
+ },
3382
+ "access" : "readonly",
3383
+ "description" :
3384
+ """The number of ADSP packets received by this entity.""",
3385
+ }, # scalar
3386
+ "adspOutPkts" : {
3387
+ "nodetype" : "scalar",
3388
+ "moduleName" : "APPLETALK-MIB",
3389
+ "oid" : "1.3.6.1.2.1.13.13.2",
3390
+ "status" : "current",
3391
+ "syntax" : {
3392
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3393
+ },
3394
+ "access" : "readonly",
3395
+ "description" :
3396
+ """The number of ADSP packets sent by this entity.""",
3397
+ }, # scalar
3398
+ "adspInOctets" : {
3399
+ "nodetype" : "scalar",
3400
+ "moduleName" : "APPLETALK-MIB",
3401
+ "oid" : "1.3.6.1.2.1.13.13.3",
3402
+ "status" : "current",
3403
+ "syntax" : {
3404
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3405
+ },
3406
+ "access" : "readonly",
3407
+ "description" :
3408
+ """The number of data octets contained in ADSP packets
3409
+ received by this entity. Note that this does not
3410
+ include EOM bits.""",
3411
+ }, # scalar
3412
+ "adspOutOctets" : {
3413
+ "nodetype" : "scalar",
3414
+ "moduleName" : "APPLETALK-MIB",
3415
+ "oid" : "1.3.6.1.2.1.13.13.4",
3416
+ "status" : "current",
3417
+ "syntax" : {
3418
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3419
+ },
3420
+ "access" : "readonly",
3421
+ "description" :
3422
+ """The number of data octets contained in ADSP packets
3423
+ sent by this entity. Note that this does not include
3424
+ EOM bits.""",
3425
+ }, # scalar
3426
+ "adspInDataPkts" : {
3427
+ "nodetype" : "scalar",
3428
+ "moduleName" : "APPLETALK-MIB",
3429
+ "oid" : "1.3.6.1.2.1.13.13.5",
3430
+ "status" : "current",
3431
+ "syntax" : {
3432
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3433
+ },
3434
+ "access" : "readonly",
3435
+ "description" :
3436
+ """The number of ADSP data packets this entity has
3437
+ received.""",
3438
+ }, # scalar
3439
+ "adspOutDataPkts" : {
3440
+ "nodetype" : "scalar",
3441
+ "moduleName" : "APPLETALK-MIB",
3442
+ "oid" : "1.3.6.1.2.1.13.13.6",
3443
+ "status" : "current",
3444
+ "syntax" : {
3445
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3446
+ },
3447
+ "access" : "readonly",
3448
+ "description" :
3449
+ """The number of ADSP data packets this entity has
3450
+ sent.""",
3451
+ }, # scalar
3452
+ "adspTimeoutErrors" : {
3453
+ "nodetype" : "scalar",
3454
+ "moduleName" : "APPLETALK-MIB",
3455
+ "oid" : "1.3.6.1.2.1.13.13.7",
3456
+ "status" : "current",
3457
+ "syntax" : {
3458
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3459
+ },
3460
+ "access" : "readonly",
3461
+ "description" :
3462
+ """The number of times the ADSP on this entity detected
3463
+ an expired connection timer.""",
3464
+ }, # scalar
3465
+ "adspTimeoutCloseErrors" : {
3466
+ "nodetype" : "scalar",
3467
+ "moduleName" : "APPLETALK-MIB",
3468
+ "oid" : "1.3.6.1.2.1.13.13.8",
3469
+ "status" : "current",
3470
+ "syntax" : {
3471
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3472
+ },
3473
+ "access" : "readonly",
3474
+ "description" :
3475
+ """The number of times the ADSP on this entity closed a
3476
+ connection because of too many timeouts.""",
3477
+ }, # scalar
3478
+ "adspConnTable" : {
3479
+ "nodetype" : "table",
3480
+ "moduleName" : "APPLETALK-MIB",
3481
+ "oid" : "1.3.6.1.2.1.13.13.9",
3482
+ "status" : "current",
3483
+ "description" :
3484
+ """A list of ADSP connections on this entity.""",
3485
+ }, # table
3486
+ "adspConnEntry" : {
3487
+ "nodetype" : "row",
3488
+ "moduleName" : "APPLETALK-MIB",
3489
+ "oid" : "1.3.6.1.2.1.13.13.9.1",
3490
+ "status" : "current",
3491
+ "linkage" : [
3492
+ "adspConnLocalAddress",
3493
+ "adspConnRemoteAddress",
3494
+ "adspConnLocalConnID",
3495
+ ],
3496
+ "description" :
3497
+ """A set of information describing an ADSP connection.
3498
+ As an example, an instance of the adspConnState object
3499
+ might be named
3500
+ adspConnState.0.80.220.7.0.80.239.142.31231""",
3501
+ }, # row
3502
+ "adspConnLocalAddress" : {
3503
+ "nodetype" : "column",
3504
+ "moduleName" : "APPLETALK-MIB",
3505
+ "oid" : "1.3.6.1.2.1.13.13.9.1.1",
3506
+ "status" : "current",
3507
+ "syntax" : {
3508
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
3509
+ },
3510
+ "access" : "noaccess",
3511
+ "description" :
3512
+ """The local DDP address of this ADSP connection.""",
3513
+ }, # column
3514
+ "adspConnLocalConnID" : {
3515
+ "nodetype" : "column",
3516
+ "moduleName" : "APPLETALK-MIB",
3517
+ "oid" : "1.3.6.1.2.1.13.13.9.1.2",
3518
+ "status" : "current",
3519
+ "syntax" : {
3520
+ "type" : {
3521
+ "basetype" : "Integer32",
3522
+ "ranges" : [
3523
+ {
3524
+ "min" : "0",
3525
+ "max" : "65535"
3526
+ },
3527
+ ],
3528
+ "range" : {
3529
+ "min" : "0",
3530
+ "max" : "65535"
3531
+ },
3532
+ },
3533
+ },
3534
+ "access" : "noaccess",
3535
+ "description" :
3536
+ """The local Connection ID of this ADSP connection. If
3537
+ this entry specifies an ADSP listener, this value
3538
+ shall be zero.""",
3539
+ }, # column
3540
+ "adspConnRemoteAddress" : {
3541
+ "nodetype" : "column",
3542
+ "moduleName" : "APPLETALK-MIB",
3543
+ "oid" : "1.3.6.1.2.1.13.13.9.1.3",
3544
+ "status" : "current",
3545
+ "syntax" : {
3546
+ "type" : { "module" :"APPLETALK-MIB", "name" : "DdpSocketAddress"},
3547
+ },
3548
+ "access" : "noaccess",
3549
+ "description" :
3550
+ """The remote DDP address of this ADSP connection. If
3551
+ this entry specifies an ADSP listener, this value
3552
+ shall be zero.""",
3553
+ }, # column
3554
+ "adspConnRemoteConnID" : {
3555
+ "nodetype" : "column",
3556
+ "moduleName" : "APPLETALK-MIB",
3557
+ "oid" : "1.3.6.1.2.1.13.13.9.1.4",
3558
+ "status" : "current",
3559
+ "syntax" : {
3560
+ "type" : {
3561
+ "basetype" : "Integer32",
3562
+ "ranges" : [
3563
+ {
3564
+ "min" : "0",
3565
+ "max" : "65535"
3566
+ },
3567
+ ],
3568
+ "range" : {
3569
+ "min" : "0",
3570
+ "max" : "65535"
3571
+ },
3572
+ },
3573
+ },
3574
+ "access" : "readonly",
3575
+ "description" :
3576
+ """The remote Connection ID of this ADSP connection.
3577
+ If this entry specifies an ADSP listener, this value
3578
+ shall be zero.""",
3579
+ }, # column
3580
+ "adspConnState" : {
3581
+ "nodetype" : "column",
3582
+ "moduleName" : "APPLETALK-MIB",
3583
+ "oid" : "1.3.6.1.2.1.13.13.9.1.5",
3584
+ "status" : "current",
3585
+ "syntax" : {
3586
+ "type" : {
3587
+ "basetype" : "Enumeration",
3588
+ "open" : {
3589
+ "nodetype" : "namednumber",
3590
+ "number" : "1"
3591
+ },
3592
+ "localHalfOpen" : {
3593
+ "nodetype" : "namednumber",
3594
+ "number" : "2"
3595
+ },
3596
+ "remoteHalfOpen" : {
3597
+ "nodetype" : "namednumber",
3598
+ "number" : "3"
3599
+ },
3600
+ "listening" : {
3601
+ "nodetype" : "namednumber",
3602
+ "number" : "4"
3603
+ },
3604
+ "closed" : {
3605
+ "nodetype" : "namednumber",
3606
+ "number" : "5"
3607
+ },
3608
+ "invalid" : {
3609
+ "nodetype" : "namednumber",
3610
+ "number" : "6"
3611
+ },
3612
+ },
3613
+ },
3614
+ "access" : "readwrite",
3615
+ "description" :
3616
+ """The state of this ADSP connection. The state is
3617
+ open if both ends are established. If only one end
3618
+ is established, then the state is half-open. If
3619
+ neither end is established, then the state is
3620
+ closed. If an ADSP server is listening on a socket
3621
+ and is not yet connected, its state is set to
3622
+ listening, and the adspConnRemoteAddress,
3623
+ adspConnRemoteSocket, adspConnRemoteConnID, and
3624
+ adspConnRemoteWindowSize are all set to zero.
3625
+
3626
+ Setting this object to the value invalid(6) has the
3627
+ effect of invalidating the corresponding entry in
3628
+ the adspConnTable. That is, it effectively
3629
+ disassociates the mapping identified with said
3630
+ entry. It is an implementation-specific matter as
3631
+ to whether the agent removes an invalidated entry
3632
+ from the table. Accordingly, management stations
3633
+ must be prepared to receive from agents tabular
3634
+ information corresponding to entries not currently
3635
+ in use. Proper interpretation of such entries
3636
+ requires examination of the relevant adspConnState
3637
+ object.""",
3638
+ }, # column
3639
+ "atportptop" : {
3640
+ "nodetype" : "node",
3641
+ "moduleName" : "APPLETALK-MIB",
3642
+ "oid" : "1.3.6.1.2.1.13.14",
3643
+ }, # node
3644
+ "atportPtoPTable" : {
3645
+ "nodetype" : "table",
3646
+ "moduleName" : "APPLETALK-MIB",
3647
+ "oid" : "1.3.6.1.2.1.13.14.1",
3648
+ "status" : "current",
3649
+ "description" :
3650
+ """A list of AppleTalk point-to-point connections for
3651
+ this entity.""",
3652
+ }, # table
3653
+ "atportPtoPEntry" : {
3654
+ "nodetype" : "row",
3655
+ "moduleName" : "APPLETALK-MIB",
3656
+ "oid" : "1.3.6.1.2.1.13.14.1.1",
3657
+ "status" : "current",
3658
+ "linkage" : [
3659
+ "atportPtoPIndex",
3660
+ ],
3661
+ "description" :
3662
+ """The description of one of the AppleTalk
3663
+ point-to-point connections on this entity.
3664
+
3665
+ As an example, an instance of the
3666
+ atportPtoPRemoteAddress object might be named
3667
+ atportPtoPRemoteAddress.2""",
3668
+ }, # row
3669
+ "atportPtoPIndex" : {
3670
+ "nodetype" : "column",
3671
+ "moduleName" : "APPLETALK-MIB",
3672
+ "oid" : "1.3.6.1.2.1.13.14.1.1.1",
3673
+ "status" : "current",
3674
+ "syntax" : {
3675
+ "type" : { "module" :"", "name" : "Integer32"},
3676
+ },
3677
+ "access" : "noaccess",
3678
+ "description" :
3679
+ """A unique value for each AppleTalk point-to-point
3680
+ connection. Its value is between 1 and the total
3681
+ number of AppleTalk point-to-point connections. The
3682
+ value for each connection must remain constant at
3683
+ least from the re-initialization of the entity's
3684
+ network management system to the next
3685
+ re-initialization.""",
3686
+ }, # column
3687
+ "atportPtoPProtocol" : {
3688
+ "nodetype" : "column",
3689
+ "moduleName" : "APPLETALK-MIB",
3690
+ "oid" : "1.3.6.1.2.1.13.14.1.1.2",
3691
+ "status" : "current",
3692
+ "syntax" : {
3693
+ "type" : { "module" :"", "name" : "ObjectIdentifier"},
3694
+ },
3695
+ "access" : "readwrite",
3696
+ "description" :
3697
+ """The protocol type used over the point-to-point
3698
+ connection.""",
3699
+ }, # column
3700
+ "atportPtoPRemoteName" : {
3701
+ "nodetype" : "column",
3702
+ "moduleName" : "APPLETALK-MIB",
3703
+ "oid" : "1.3.6.1.2.1.13.14.1.1.3",
3704
+ "status" : "current",
3705
+ "syntax" : {
3706
+ "type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
3707
+ },
3708
+ "access" : "readwrite",
3709
+ "description" :
3710
+ """A text string containing the network node name of the
3711
+ entity at the other end of the point-to-point link.
3712
+ If the name is unknown or undefined, then this
3713
+ string is zero length.""",
3714
+ }, # column
3715
+ "atportPtoPRemoteAddress" : {
3716
+ "nodetype" : "column",
3717
+ "moduleName" : "APPLETALK-MIB",
3718
+ "oid" : "1.3.6.1.2.1.13.14.1.1.4",
3719
+ "status" : "current",
3720
+ "syntax" : {
3721
+ "type" : { "module" :"", "name" : "OctetString"},
3722
+ },
3723
+ "access" : "readwrite",
3724
+ "description" :
3725
+ """The network address of the entity at the other end
3726
+ of the point-to-point link in network byte order.
3727
+ The format of this address can be determined
3728
+ by examinating the atportType corresponding to this
3729
+ entry. If the address is unknown or undefined, then
3730
+ this string is zero length.""",
3731
+ }, # column
3732
+ "atportPtoPPortIndex" : {
3733
+ "nodetype" : "column",
3734
+ "moduleName" : "APPLETALK-MIB",
3735
+ "oid" : "1.3.6.1.2.1.13.14.1.1.5",
3736
+ "status" : "current",
3737
+ "syntax" : {
3738
+ "type" : { "module" :"", "name" : "Integer32"},
3739
+ },
3740
+ "access" : "readwrite",
3741
+ "description" :
3742
+ """The AppleTalk port associated with this
3743
+ point-to-point connection. The interface identified
3744
+ by a particular value of this index is the same
3745
+ interface as identified by the same value of
3746
+ atportIndex.""",
3747
+ }, # column
3748
+ "atportPtoPStatus" : {
3749
+ "nodetype" : "column",
3750
+ "moduleName" : "APPLETALK-MIB",
3751
+ "oid" : "1.3.6.1.2.1.13.14.1.1.6",
3752
+ "status" : "current",
3753
+ "syntax" : {
3754
+ "type" : {
3755
+ "basetype" : "Enumeration",
3756
+ "valid" : {
3757
+ "nodetype" : "namednumber",
3758
+ "number" : "1"
3759
+ },
3760
+ "invalid" : {
3761
+ "nodetype" : "namednumber",
3762
+ "number" : "2"
3763
+ },
3764
+ },
3765
+ },
3766
+ "access" : "readwrite",
3767
+ "description" :
3768
+ """The status of this entry in the atportPtoPTable.
3769
+
3770
+ Setting this object to the value invalid(2) has the
3771
+ effect of invalidating the corresponding entry in
3772
+ the atportPtoPTable. That is, it effectively
3773
+ disassociates the mapping identified with said
3774
+ entry. It is an implementation-specific matter as
3775
+ to whether the agent removes an invalidated entry
3776
+ from the table. Accordingly, management stations
3777
+ must be prepared to receive from agents tabular
3778
+ information corresponding to entries not currently
3779
+ in use. Proper interpretation of such entries
3780
+ requires examinationr of the relevant
3781
+ atportPtoPStatus object.""",
3782
+ }, # column
3783
+ "atportPtoPProtoOids" : {
3784
+ "nodetype" : "node",
3785
+ "moduleName" : "APPLETALK-MIB",
3786
+ "oid" : "1.3.6.1.2.1.13.14.2",
3787
+ }, # node
3788
+ "pToPProtoOther" : {
3789
+ "nodetype" : "node",
3790
+ "moduleName" : "APPLETALK-MIB",
3791
+ "oid" : "1.3.6.1.2.1.13.14.2.1",
3792
+ }, # node
3793
+ "pToPProtoAurp" : {
3794
+ "nodetype" : "node",
3795
+ "moduleName" : "APPLETALK-MIB",
3796
+ "oid" : "1.3.6.1.2.1.13.14.2.2",
3797
+ }, # node
3798
+ "pToPProtoCaymanUdp" : {
3799
+ "nodetype" : "node",
3800
+ "moduleName" : "APPLETALK-MIB",
3801
+ "oid" : "1.3.6.1.2.1.13.14.2.3",
3802
+ }, # node
3803
+ "pToPProtoAtkvmsDecnetIV" : {
3804
+ "nodetype" : "node",
3805
+ "moduleName" : "APPLETALK-MIB",
3806
+ "oid" : "1.3.6.1.2.1.13.14.2.4",
3807
+ }, # node
3808
+ "pToPProtoLiaisonUdp" : {
3809
+ "nodetype" : "node",
3810
+ "moduleName" : "APPLETALK-MIB",
3811
+ "oid" : "1.3.6.1.2.1.13.14.2.5",
3812
+ }, # node
3813
+ "pToPProtoIpx" : {
3814
+ "nodetype" : "node",
3815
+ "moduleName" : "APPLETALK-MIB",
3816
+ "oid" : "1.3.6.1.2.1.13.14.2.6",
3817
+ }, # node
3818
+ "pToPProtoShivaIp" : {
3819
+ "nodetype" : "node",
3820
+ "moduleName" : "APPLETALK-MIB",
3821
+ "oid" : "1.3.6.1.2.1.13.14.2.7",
3822
+ }, # node
3823
+ "rtmpStub" : {
3824
+ "nodetype" : "node",
3825
+ "moduleName" : "APPLETALK-MIB",
3826
+ "oid" : "1.3.6.1.2.1.13.16",
3827
+ }, # node
3828
+ "rtmpOutRequestPkts" : {
3829
+ "nodetype" : "scalar",
3830
+ "moduleName" : "APPLETALK-MIB",
3831
+ "oid" : "1.3.6.1.2.1.13.16.1",
3832
+ "status" : "current",
3833
+ "syntax" : {
3834
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3835
+ },
3836
+ "access" : "readonly",
3837
+ "description" :
3838
+ """A count of the number of RTMP Request packets sent
3839
+ by this entity.""",
3840
+ }, # scalar
3841
+ "rtmpInVersionMismatches" : {
3842
+ "nodetype" : "scalar",
3843
+ "moduleName" : "APPLETALK-MIB",
3844
+ "oid" : "1.3.6.1.2.1.13.16.2",
3845
+ "status" : "current",
3846
+ "syntax" : {
3847
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3848
+ },
3849
+ "access" : "readonly",
3850
+ "description" :
3851
+ """A count of the number of RTMP packets received by
3852
+ this entity that were rejected due to a version
3853
+ mismatch.""",
3854
+ }, # scalar
3855
+ "rtmpInErrors" : {
3856
+ "nodetype" : "scalar",
3857
+ "moduleName" : "APPLETALK-MIB",
3858
+ "oid" : "1.3.6.1.2.1.13.16.3",
3859
+ "status" : "current",
3860
+ "syntax" : {
3861
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3862
+ },
3863
+ "access" : "readonly",
3864
+ "description" :
3865
+ """A count of the number of RTMP packets received by
3866
+ this entity that were rejected for an error other
3867
+ than version mismatch.""",
3868
+ }, # scalar
3869
+ "zipEndNode" : {
3870
+ "nodetype" : "node",
3871
+ "moduleName" : "APPLETALK-MIB",
3872
+ "oid" : "1.3.6.1.2.1.13.17",
3873
+ }, # node
3874
+ "zipNetInfoTable" : {
3875
+ "nodetype" : "table",
3876
+ "moduleName" : "APPLETALK-MIB",
3877
+ "oid" : "1.3.6.1.2.1.13.17.1",
3878
+ "status" : "current",
3879
+ "description" :
3880
+ """The table of Net Info packets received by each port
3881
+ on this entity.""",
3882
+ }, # table
3883
+ "zipNetInfoEntry" : {
3884
+ "nodetype" : "row",
3885
+ "moduleName" : "APPLETALK-MIB",
3886
+ "oid" : "1.3.6.1.2.1.13.17.1.1",
3887
+ "status" : "current",
3888
+ "linkage" : [
3889
+ "atportIndex",
3890
+ ],
3891
+ "description" :
3892
+ """The description of the Net Info packets received on
3893
+ a particular port on this entity. One such entry
3894
+ shall exist for each atport on this entity.
3895
+
3896
+ As an example, an instance of the zipOutGetNetInfos
3897
+ object might be named zipOutGetNetInfos.2""",
3898
+ }, # row
3899
+ "zipOutGetNetInfos" : {
3900
+ "nodetype" : "column",
3901
+ "moduleName" : "APPLETALK-MIB",
3902
+ "oid" : "1.3.6.1.2.1.13.17.1.1.1",
3903
+ "status" : "current",
3904
+ "syntax" : {
3905
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3906
+ },
3907
+ "access" : "readonly",
3908
+ "description" :
3909
+ """The number of ZIP GetNetInfo packets sent out this
3910
+ port by this entity.""",
3911
+ }, # column
3912
+ "zipInGetNetInfoReplies" : {
3913
+ "nodetype" : "column",
3914
+ "moduleName" : "APPLETALK-MIB",
3915
+ "oid" : "1.3.6.1.2.1.13.17.1.1.2",
3916
+ "status" : "current",
3917
+ "syntax" : {
3918
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3919
+ },
3920
+ "access" : "readonly",
3921
+ "description" :
3922
+ """The number of ZIP GetNetInfo Reply packets received
3923
+ on this port by this entity.""",
3924
+ }, # column
3925
+ "zipZoneInInvalids" : {
3926
+ "nodetype" : "column",
3927
+ "moduleName" : "APPLETALK-MIB",
3928
+ "oid" : "1.3.6.1.2.1.13.17.1.1.3",
3929
+ "status" : "current",
3930
+ "syntax" : {
3931
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3932
+ },
3933
+ "access" : "readonly",
3934
+ "description" :
3935
+ """The number of times this entity has received a ZIP
3936
+ GetNetInfo Reply with the zone invalid bit set
3937
+ because the corresponding GetNetInfo Request had an
3938
+ invalid zone name.""",
3939
+ }, # column
3940
+ "zipInErrors" : {
3941
+ "nodetype" : "scalar",
3942
+ "moduleName" : "APPLETALK-MIB",
3943
+ "oid" : "1.3.6.1.2.1.13.17.2",
3944
+ "status" : "current",
3945
+ "syntax" : {
3946
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3947
+ },
3948
+ "access" : "readonly",
3949
+ "description" :
3950
+ """The number of ZIP packets received by this entity
3951
+ that were rejected for any error.""",
3952
+ }, # scalar
3953
+ "perPort" : {
3954
+ "nodetype" : "node",
3955
+ "moduleName" : "APPLETALK-MIB",
3956
+ "oid" : "1.3.6.1.2.1.13.18",
3957
+ }, # node
3958
+ "perPortTable" : {
3959
+ "nodetype" : "table",
3960
+ "moduleName" : "APPLETALK-MIB",
3961
+ "oid" : "1.3.6.1.2.1.13.18.1",
3962
+ "status" : "current",
3963
+ "description" :
3964
+ """The table of per-port statistics for this entity.""",
3965
+ }, # table
3966
+ "perPortEntry" : {
3967
+ "nodetype" : "row",
3968
+ "moduleName" : "APPLETALK-MIB",
3969
+ "oid" : "1.3.6.1.2.1.13.18.1.1",
3970
+ "status" : "current",
3971
+ "linkage" : [
3972
+ "atportIndex",
3973
+ ],
3974
+ "description" :
3975
+ """The statistics available for a particular port on
3976
+ this entity.
3977
+
3978
+ As an example, an instance of the perPortAarpInProbes
3979
+ object might be named perPortAarpInProbes.2""",
3980
+ }, # row
3981
+ "perPortAarpInProbes" : {
3982
+ "nodetype" : "column",
3983
+ "moduleName" : "APPLETALK-MIB",
3984
+ "oid" : "1.3.6.1.2.1.13.18.1.1.1",
3985
+ "status" : "current",
3986
+ "syntax" : {
3987
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
3988
+ },
3989
+ "access" : "readonly",
3990
+ "description" :
3991
+ """The total number of AARP Probe packets received
3992
+ by this entity on this port.""",
3993
+ }, # column
3994
+ "perPortAarpOutProbes" : {
3995
+ "nodetype" : "column",
3996
+ "moduleName" : "APPLETALK-MIB",
3997
+ "oid" : "1.3.6.1.2.1.13.18.1.1.2",
3998
+ "status" : "current",
3999
+ "syntax" : {
4000
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4001
+ },
4002
+ "access" : "readonly",
4003
+ "description" :
4004
+ """The total number of AARP Probe packets sent by
4005
+ this entity on this port.""",
4006
+ }, # column
4007
+ "perPortAarpInReqs" : {
4008
+ "nodetype" : "column",
4009
+ "moduleName" : "APPLETALK-MIB",
4010
+ "oid" : "1.3.6.1.2.1.13.18.1.1.3",
4011
+ "status" : "current",
4012
+ "syntax" : {
4013
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4014
+ },
4015
+ "access" : "readonly",
4016
+ "description" :
4017
+ """The total number of AARP Request packets received
4018
+ by this entity on this port.""",
4019
+ }, # column
4020
+ "perPortAarpOutReqs" : {
4021
+ "nodetype" : "column",
4022
+ "moduleName" : "APPLETALK-MIB",
4023
+ "oid" : "1.3.6.1.2.1.13.18.1.1.4",
4024
+ "status" : "current",
4025
+ "syntax" : {
4026
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4027
+ },
4028
+ "access" : "readonly",
4029
+ "description" :
4030
+ """The total number of AARP Request packets sent by
4031
+ this entity on this port.""",
4032
+ }, # column
4033
+ "perPortAarpInRsps" : {
4034
+ "nodetype" : "column",
4035
+ "moduleName" : "APPLETALK-MIB",
4036
+ "oid" : "1.3.6.1.2.1.13.18.1.1.5",
4037
+ "status" : "current",
4038
+ "syntax" : {
4039
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4040
+ },
4041
+ "access" : "readonly",
4042
+ "description" :
4043
+ """The total number of AARP Response packets received
4044
+ by this entity on this port.""",
4045
+ }, # column
4046
+ "perPortAarpOutRsps" : {
4047
+ "nodetype" : "column",
4048
+ "moduleName" : "APPLETALK-MIB",
4049
+ "oid" : "1.3.6.1.2.1.13.18.1.1.6",
4050
+ "status" : "current",
4051
+ "syntax" : {
4052
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4053
+ },
4054
+ "access" : "readonly",
4055
+ "description" :
4056
+ """The total number of AARP Response packets sent by
4057
+ this entity on this port.""",
4058
+ }, # column
4059
+ "perPortDdpInReceives" : {
4060
+ "nodetype" : "column",
4061
+ "moduleName" : "APPLETALK-MIB",
4062
+ "oid" : "1.3.6.1.2.1.13.18.1.1.7",
4063
+ "status" : "current",
4064
+ "syntax" : {
4065
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4066
+ },
4067
+ "access" : "readonly",
4068
+ "description" :
4069
+ """The total number of input datagrams received by DDP
4070
+ on this port, including those received in error.""",
4071
+ }, # column
4072
+ "perPortDdpInLocalDatagrams" : {
4073
+ "nodetype" : "column",
4074
+ "moduleName" : "APPLETALK-MIB",
4075
+ "oid" : "1.3.6.1.2.1.13.18.1.1.8",
4076
+ "status" : "current",
4077
+ "syntax" : {
4078
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4079
+ },
4080
+ "access" : "readonly",
4081
+ "description" :
4082
+ """The total number of input DDP datagrams on this
4083
+ port for which this entity was their final DDP
4084
+ destination.""",
4085
+ }, # column
4086
+ "perPortDdpNoProtocolHandlers" : {
4087
+ "nodetype" : "column",
4088
+ "moduleName" : "APPLETALK-MIB",
4089
+ "oid" : "1.3.6.1.2.1.13.18.1.1.9",
4090
+ "status" : "current",
4091
+ "syntax" : {
4092
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4093
+ },
4094
+ "access" : "readonly",
4095
+ "description" :
4096
+ """The total number of DDP datagrams addressed to this
4097
+ entity on this port that were addressed to an upper
4098
+ layer protocol for which no protocol handler
4099
+ existed.""",
4100
+ }, # column
4101
+ "perPortDdpTooShortErrors" : {
4102
+ "nodetype" : "column",
4103
+ "moduleName" : "APPLETALK-MIB",
4104
+ "oid" : "1.3.6.1.2.1.13.18.1.1.10",
4105
+ "status" : "current",
4106
+ "syntax" : {
4107
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4108
+ },
4109
+ "access" : "readonly",
4110
+ "description" :
4111
+ """The total number of input DDP datagrams on this
4112
+ port dropped because the received data length was
4113
+ less than the data length specified in the DDP
4114
+ header or the received data length was less than the
4115
+ length of the expected DDP header.""",
4116
+ }, # column
4117
+ "perPortDdpTooLongErrors" : {
4118
+ "nodetype" : "column",
4119
+ "moduleName" : "APPLETALK-MIB",
4120
+ "oid" : "1.3.6.1.2.1.13.18.1.1.11",
4121
+ "status" : "current",
4122
+ "syntax" : {
4123
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4124
+ },
4125
+ "access" : "readonly",
4126
+ "description" :
4127
+ """The total number of input DDP datagrams on this
4128
+ port dropped because they exceeded the maximum DDP
4129
+ datagram size.""",
4130
+ }, # column
4131
+ "perPortDdpChecksumErrors" : {
4132
+ "nodetype" : "column",
4133
+ "moduleName" : "APPLETALK-MIB",
4134
+ "oid" : "1.3.6.1.2.1.13.18.1.1.12",
4135
+ "status" : "current",
4136
+ "syntax" : {
4137
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4138
+ },
4139
+ "access" : "readonly",
4140
+ "description" :
4141
+ """The total number of input DDP datagrams on this
4142
+ port for which this DDP entity was their final
4143
+ destination, and which were dropped because of a
4144
+ checksum error.""",
4145
+ }, # column
4146
+ "perPortDdpForwRequests" : {
4147
+ "nodetype" : "column",
4148
+ "moduleName" : "APPLETALK-MIB",
4149
+ "oid" : "1.3.6.1.2.1.13.18.1.1.13",
4150
+ "status" : "current",
4151
+ "syntax" : {
4152
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4153
+ },
4154
+ "access" : "readonly",
4155
+ "description" :
4156
+ """The number of input datagrams on this port for
4157
+ which this entity was not their final DDP
4158
+ destination, as a result of which an attempt was
4159
+ made to find a route to forward them to that final
4160
+ destination.""",
4161
+ }, # column
4162
+ "perPortRtmpInDataPkts" : {
4163
+ "nodetype" : "column",
4164
+ "moduleName" : "APPLETALK-MIB",
4165
+ "oid" : "1.3.6.1.2.1.13.18.1.1.14",
4166
+ "status" : "current",
4167
+ "syntax" : {
4168
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4169
+ },
4170
+ "access" : "readonly",
4171
+ "description" :
4172
+ """A count of the number of good RTMP data packets
4173
+ received by this entity on this port.""",
4174
+ }, # column
4175
+ "perPortRtmpOutDataPkts" : {
4176
+ "nodetype" : "column",
4177
+ "moduleName" : "APPLETALK-MIB",
4178
+ "oid" : "1.3.6.1.2.1.13.18.1.1.15",
4179
+ "status" : "current",
4180
+ "syntax" : {
4181
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4182
+ },
4183
+ "access" : "readonly",
4184
+ "description" :
4185
+ """A count of the number of RTMP packets sent by this
4186
+ entity on this port.""",
4187
+ }, # column
4188
+ "perPortRtmpInRequestPkts" : {
4189
+ "nodetype" : "column",
4190
+ "moduleName" : "APPLETALK-MIB",
4191
+ "oid" : "1.3.6.1.2.1.13.18.1.1.16",
4192
+ "status" : "current",
4193
+ "syntax" : {
4194
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4195
+ },
4196
+ "access" : "readonly",
4197
+ "description" :
4198
+ """A count of the number of good RTMP Request packets
4199
+ received by this entity on this port.""",
4200
+ }, # column
4201
+ "perPortRtmpRouteDeletes" : {
4202
+ "nodetype" : "column",
4203
+ "moduleName" : "APPLETALK-MIB",
4204
+ "oid" : "1.3.6.1.2.1.13.18.1.1.17",
4205
+ "status" : "current",
4206
+ "syntax" : {
4207
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4208
+ },
4209
+ "access" : "readonly",
4210
+ "description" :
4211
+ """A count of the number of times RTMP deletes a route
4212
+ on this port because it was aged out of the table.""",
4213
+ }, # column
4214
+ "perPortZipInZipQueries" : {
4215
+ "nodetype" : "column",
4216
+ "moduleName" : "APPLETALK-MIB",
4217
+ "oid" : "1.3.6.1.2.1.13.18.1.1.18",
4218
+ "status" : "current",
4219
+ "syntax" : {
4220
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4221
+ },
4222
+ "access" : "readonly",
4223
+ "description" :
4224
+ """The number of ZIP Queries received by this entity
4225
+ on this port.""",
4226
+ }, # column
4227
+ "perPortZipInZipReplies" : {
4228
+ "nodetype" : "column",
4229
+ "moduleName" : "APPLETALK-MIB",
4230
+ "oid" : "1.3.6.1.2.1.13.18.1.1.19",
4231
+ "status" : "current",
4232
+ "syntax" : {
4233
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4234
+ },
4235
+ "access" : "readonly",
4236
+ "description" :
4237
+ """The number of ZIP Replies received by this entity
4238
+ on this port.""",
4239
+ }, # column
4240
+ "perPortZipInZipExtendedReplies" : {
4241
+ "nodetype" : "column",
4242
+ "moduleName" : "APPLETALK-MIB",
4243
+ "oid" : "1.3.6.1.2.1.13.18.1.1.20",
4244
+ "status" : "current",
4245
+ "syntax" : {
4246
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4247
+ },
4248
+ "access" : "readonly",
4249
+ "description" :
4250
+ """The number of ZIP Extended Replies received by this
4251
+ entity on this port.""",
4252
+ }, # column
4253
+ "perPortZipZoneConflictErrors" : {
4254
+ "nodetype" : "column",
4255
+ "moduleName" : "APPLETALK-MIB",
4256
+ "oid" : "1.3.6.1.2.1.13.18.1.1.21",
4257
+ "status" : "current",
4258
+ "syntax" : {
4259
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4260
+ },
4261
+ "access" : "readonly",
4262
+ "description" :
4263
+ """The number of times a conflict has been detected on
4264
+ this port between this entity's zone information and
4265
+ another entity's zone information.""",
4266
+ }, # column
4267
+ "perPortZipInErrors" : {
4268
+ "nodetype" : "column",
4269
+ "moduleName" : "APPLETALK-MIB",
4270
+ "oid" : "1.3.6.1.2.1.13.18.1.1.22",
4271
+ "status" : "current",
4272
+ "syntax" : {
4273
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4274
+ },
4275
+ "access" : "readonly",
4276
+ "description" :
4277
+ """The number of ZIP packets received by this entity
4278
+ on this port that were rejected for any error.""",
4279
+ }, # column
4280
+ "perPortNbpInLookUpRequests" : {
4281
+ "nodetype" : "column",
4282
+ "moduleName" : "APPLETALK-MIB",
4283
+ "oid" : "1.3.6.1.2.1.13.18.1.1.23",
4284
+ "status" : "current",
4285
+ "syntax" : {
4286
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4287
+ },
4288
+ "access" : "readonly",
4289
+ "description" :
4290
+ """The number of NBP LookUp Requests received on this
4291
+ port.""",
4292
+ }, # column
4293
+ "perPortNbpInLookUpReplies" : {
4294
+ "nodetype" : "column",
4295
+ "moduleName" : "APPLETALK-MIB",
4296
+ "oid" : "1.3.6.1.2.1.13.18.1.1.24",
4297
+ "status" : "current",
4298
+ "syntax" : {
4299
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4300
+ },
4301
+ "access" : "readonly",
4302
+ "description" :
4303
+ """The number of NBP LookUp Replies received on this
4304
+ port.""",
4305
+ }, # column
4306
+ "perPortNbpInBroadcastRequests" : {
4307
+ "nodetype" : "column",
4308
+ "moduleName" : "APPLETALK-MIB",
4309
+ "oid" : "1.3.6.1.2.1.13.18.1.1.25",
4310
+ "status" : "current",
4311
+ "syntax" : {
4312
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4313
+ },
4314
+ "access" : "readonly",
4315
+ "description" :
4316
+ """The number of NBP Broadcast Requests received on
4317
+ this port.""",
4318
+ }, # column
4319
+ "perPortNbpInForwardRequests" : {
4320
+ "nodetype" : "column",
4321
+ "moduleName" : "APPLETALK-MIB",
4322
+ "oid" : "1.3.6.1.2.1.13.18.1.1.26",
4323
+ "status" : "current",
4324
+ "syntax" : {
4325
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4326
+ },
4327
+ "access" : "readonly",
4328
+ "description" :
4329
+ """The number of NBP Forward Requests received on this
4330
+ port.""",
4331
+ }, # column
4332
+ "perPortNbpOutLookUpReplies" : {
4333
+ "nodetype" : "column",
4334
+ "moduleName" : "APPLETALK-MIB",
4335
+ "oid" : "1.3.6.1.2.1.13.18.1.1.27",
4336
+ "status" : "current",
4337
+ "syntax" : {
4338
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4339
+ },
4340
+ "access" : "readonly",
4341
+ "description" :
4342
+ """The number of NBP LookUp Replies sent on this port.""",
4343
+ }, # column
4344
+ "perPortNbpRegistrationFailures" : {
4345
+ "nodetype" : "column",
4346
+ "moduleName" : "APPLETALK-MIB",
4347
+ "oid" : "1.3.6.1.2.1.13.18.1.1.28",
4348
+ "status" : "current",
4349
+ "syntax" : {
4350
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4351
+ },
4352
+ "access" : "readonly",
4353
+ "description" :
4354
+ """The number of times this node experienced a failure
4355
+ in attempting to register an NBP entity on this
4356
+ port.""",
4357
+ }, # column
4358
+ "perPortNbpInErrors" : {
4359
+ "nodetype" : "column",
4360
+ "moduleName" : "APPLETALK-MIB",
4361
+ "oid" : "1.3.6.1.2.1.13.18.1.1.29",
4362
+ "status" : "current",
4363
+ "syntax" : {
4364
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4365
+ },
4366
+ "access" : "readonly",
4367
+ "description" :
4368
+ """The number of NBP packets received by this entity
4369
+ on this port that were rejected for any error.""",
4370
+ }, # column
4371
+ "perPortEchoRequests" : {
4372
+ "nodetype" : "column",
4373
+ "moduleName" : "APPLETALK-MIB",
4374
+ "oid" : "1.3.6.1.2.1.13.18.1.1.30",
4375
+ "status" : "current",
4376
+ "syntax" : {
4377
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4378
+ },
4379
+ "access" : "readonly",
4380
+ "description" :
4381
+ """The number of AppleTalk Echo requests received on
4382
+ this port.""",
4383
+ }, # column
4384
+ "perPortEchoReplies" : {
4385
+ "nodetype" : "column",
4386
+ "moduleName" : "APPLETALK-MIB",
4387
+ "oid" : "1.3.6.1.2.1.13.18.1.1.31",
4388
+ "status" : "current",
4389
+ "syntax" : {
4390
+ "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
4391
+ },
4392
+ "access" : "readonly",
4393
+ "description" :
4394
+ """The count of AppleTalk Echo replies received on
4395
+ this port.""",
4396
+ }, # column
4397
+ }, # nodes
4398
+
4399
+ }