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,4713 @@
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 PKTC-IETF-SIG-MIB
6
+
7
+ FILENAME = "./libsmi-0.5.0/mibs/ietf/PKTC-IETF-SIG-MIB"
8
+
9
+ MIB = {
10
+ "moduleName" : "PKTC-IETF-SIG-MIB",
11
+
12
+ "PKTC-IETF-SIG-MIB" : {
13
+ "nodetype" : "module",
14
+ "language" : "SMIv2",
15
+ "organization" :
16
+ """IETF IPCDN Working Group""",
17
+ "contact" :
18
+ """Sumanth Channabasappa
19
+ Cable Television Laboratories, Inc.
20
+ 858 Coal Creek Circle,
21
+ Louisville, CO 80027, USA
22
+ Phone: +1 303-661-3307
23
+ Email: Sumanth@cablelabs.com
24
+
25
+ Gordon Beacham
26
+ Motorola, Inc.
27
+ 6450 Sequence Drive, Bldg. 1
28
+ San Diego, CA 92121, USA
29
+ Phone: +1 858-404-2334
30
+ Email: gordon.beacham@motorola.com
31
+
32
+ Satish Kumar Mudugere Eswaraiah
33
+ Texas Instruments India (P) Ltd.,
34
+ Golf view, Wind Tunnel Road
35
+ Murugesh Palya
36
+ Bangalore 560 017, INDIA
37
+ Phone: +91 80 5269451
38
+ Email: satish.kumar@ti.com
39
+
40
+ IETF IPCDN Working Group
41
+ General Discussion: ipcdn@ietf.org
42
+ Subscribe: http://www.ietf.org/mailman/listinfo/ipcdn
43
+ Archive: ftp://ftp.ietf.org/ietf-mail-archive/ipcdn
44
+ Co-Chair: Jean-Francois Mule, jf.mule@cablelabs.com
45
+ Co-Chair: Richard Woundy, Richard_Woundy@cable.comcast.com""",
46
+ "description" :
47
+ """This MIB module supplies the basic management
48
+ objects for the PacketCable and IPCablecom Signaling
49
+ protocols. This version of the MIB includes
50
+ common signaling and Network Call Signaling
51
+
52
+
53
+
54
+ (NCS)-related signaling objects.
55
+
56
+ Copyright (C) The IETF Trust (2008). This version of
57
+ this MIB module is part of RFC 5098; see the RFC itself for
58
+ full legal notices.""",
59
+ "revisions" : (
60
+ {
61
+ "date" : "2007-12-18 00:00",
62
+ "description" :
63
+ """Initial version, published as RFC 5098.""",
64
+ },
65
+ ),
66
+ "identity node" : "pktcIetfSigMib",
67
+ },
68
+
69
+ "imports" : (
70
+ {"module" : "SNMPv2-SMI", "name" : "MODULE-IDENTITY"},
71
+ {"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
72
+ {"module" : "SNMPv2-SMI", "name" : "Integer32"},
73
+ {"module" : "SNMPv2-SMI", "name" : "Unsigned32"},
74
+ {"module" : "SNMPv2-SMI", "name" : "mib-2"},
75
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
76
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
77
+ {"module" : "INET-ADDRESS-MIB", "name" : "InetPortNumber"},
78
+ {"module" : "SNMPv2-TC", "name" : "TEXTUAL-CONVENTION"},
79
+ {"module" : "SNMPv2-TC", "name" : "RowStatus"},
80
+ {"module" : "SNMPv2-TC", "name" : "TruthValue"},
81
+ {"module" : "SNMPv2-CONF", "name" : "OBJECT-GROUP"},
82
+ {"module" : "SNMPv2-CONF", "name" : "MODULE-COMPLIANCE"},
83
+ {"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
84
+ {"module" : "IF-MIB", "name" : "ifIndex"},
85
+ {"module" : "DIFFSERV-DSCP-TC", "name" : "Dscp"},
86
+ ),
87
+
88
+ "typedefs" : {
89
+ "TenthdBm" : {
90
+ "basetype" : "Integer32",
91
+ "status" : "current",
92
+ "format" : "d-1",
93
+ "description" :
94
+ """This TEXTUAL-CONVENTION represents power levels that are
95
+ normally expressed in dBm. Units are in tenths of a dBm;
96
+ for example, -13.5 dBm will be represented as -135.""",
97
+ },
98
+ "PktcCodecType" : {
99
+ "basetype" : "Enumeration",
100
+ "status" : "current",
101
+ "other" : {
102
+ "nodetype" : "namednumber",
103
+ "number" : "1"
104
+ },
105
+ "unknown" : {
106
+ "nodetype" : "namednumber",
107
+ "number" : "2"
108
+ },
109
+ "g729" : {
110
+ "nodetype" : "namednumber",
111
+ "number" : "3"
112
+ },
113
+ "reserved" : {
114
+ "nodetype" : "namednumber",
115
+ "number" : "4"
116
+ },
117
+ "g729E" : {
118
+ "nodetype" : "namednumber",
119
+ "number" : "5"
120
+ },
121
+ "pcmu" : {
122
+ "nodetype" : "namednumber",
123
+ "number" : "6"
124
+ },
125
+ "g726at32" : {
126
+ "nodetype" : "namednumber",
127
+ "number" : "7"
128
+ },
129
+ "g728" : {
130
+ "nodetype" : "namednumber",
131
+ "number" : "8"
132
+ },
133
+ "pcma" : {
134
+ "nodetype" : "namednumber",
135
+ "number" : "9"
136
+ },
137
+ "g726at16" : {
138
+ "nodetype" : "namednumber",
139
+ "number" : "10"
140
+ },
141
+ "g726at24" : {
142
+ "nodetype" : "namednumber",
143
+ "number" : "11"
144
+ },
145
+ "g726at40" : {
146
+ "nodetype" : "namednumber",
147
+ "number" : "12"
148
+ },
149
+ "ilbc" : {
150
+ "nodetype" : "namednumber",
151
+ "number" : "13"
152
+ },
153
+ "bv16" : {
154
+ "nodetype" : "namednumber",
155
+ "number" : "14"
156
+ },
157
+ "description" :
158
+ """ This TEXTUAL-CONVENTION defines various types of codecs
159
+ that MAY be supported. The description for each
160
+ enumeration is listed below:
161
+
162
+ Enumeration Description
163
+ other a defined codec not in the enumeration
164
+ unknown a codec not defined by the PacketCable
165
+ Codec Specification
166
+ g729 ITU-T Recommendation G.729
167
+ reserved for future use
168
+ g729E ITU-T Recommendation G.729E
169
+ pcmu Pulse Code Modulation u-law (PCMU)
170
+ g726at32 ITU-T Recommendation G.726-32 (32 kbit/s)
171
+ g728 ITU-T Recommendation G.728
172
+ pcma Pulse Code Modulation a-law (PCMA)
173
+ g726at16 ITU-T Recommendation G.726-16 (16 kbit/s)
174
+ g726at24 ITU-T Recommendation G.726-24 (24 kbit/s)
175
+ g726at40 ITU-T Recommendation G.726-40 (40 kbit/s)
176
+ ilbc IETF Internet low-bit rate codec
177
+ bv16 Broadcom BroadVoice16
178
+
179
+ The list of codecs is consistent with the IETF
180
+ Real-Time Transport Protocol (RTP) Profile registry and
181
+
182
+
183
+
184
+ the RTP Map Parameters Table in PacketCable Audio/Video
185
+ Codecs Specification [PKT-SP-CODEC]. The literal codec
186
+ name for each codec is listed below:
187
+
188
+ Codec Literal Codec Name
189
+ g729 G729
190
+ g729E G729E
191
+ pcmu PCMU
192
+ g726at32 G726-32
193
+ g728 G728
194
+ pcma PCMA
195
+ g726at16 G726-16
196
+ g726at24 G726-24
197
+ g726at40 G726-40
198
+ ilbc iLBC
199
+ bv16 BV16
200
+
201
+ The literal codec name is the second column of the table
202
+ with codec RTP Map Parameters. The Literal Codec Name Column
203
+ contains the codec name used in the local connection
204
+ options (LCO) of the NCS messages create connection
205
+ (CRCX)/modify connection (MDCX) and is also used to
206
+ identify the codec in the Call Management System (CMS)
207
+ Provisioning Specification. The RTP Map Parameter column of
208
+ the Table contains the string used in the media attribute
209
+ line (a=) of the session description protocol (SDP)
210
+ parameters in NCS messages.""",
211
+ },
212
+ "PktcRingCadence" : {
213
+ "basetype" : "OctetString",
214
+ "status" : "current",
215
+ "ranges" : [
216
+ {
217
+ "min" : "4",
218
+ "max" : "36"
219
+ },
220
+ ],
221
+ "range" : {
222
+ "min" : "4",
223
+ "max" : "36"
224
+ },
225
+ "description" :
226
+ """This object provides an encoding scheme for ring
227
+
228
+
229
+
230
+ cadences, including repeatability characteristics. All
231
+ fields in this object MUST be encoded in network-byte
232
+ order.
233
+
234
+ The first three higher-order octets are reserved. The
235
+ octets that follow are used to encode a 'bit-string', with
236
+ each bit corresponding to 50 milliseconds. A bit value of
237
+ '1' indicates the presence of a ring-tone, and a bit value
238
+ of '0' indicates the absence of a ring-tone, for that
239
+ duration (50 ms) (Note: A minimum number of octets
240
+ required to encode the bit-string MUST be used).
241
+
242
+ The first two of the reserved octets MUST indicate the
243
+ length of the encoded cadence (in bits) and MUST range
244
+ between 1 and 264. (Note: The length in bits MUST also be
245
+ consistent with the number of octets that encode the
246
+ cadence). The MTA MUST ignore any unused bits in the last
247
+ octet, but MUST reflect the value as provided on
248
+ subsequent SNMP GETs.
249
+
250
+ The third of the reserved octets indicates 'repeatability'
251
+ and MUST be either 0x80 or 0x00 -- the former value
252
+ indicating 'non-repeatability', and the latter indicating
253
+ 'repeatability'.
254
+
255
+ The MTA MUST reject attempts to set a value that violates
256
+ any of the above requirements.""",
257
+ },
258
+ "PktcSigType" : {
259
+ "basetype" : "Enumeration",
260
+ "status" : "current",
261
+ "other" : {
262
+ "nodetype" : "namednumber",
263
+ "number" : "1"
264
+ },
265
+ "ncs" : {
266
+ "nodetype" : "namednumber",
267
+ "number" : "2"
268
+ },
269
+ "description" :
270
+ """ This object lists the various types of signaling that may
271
+ be supported:
272
+
273
+ other(1) - set when signaling other than NCS is used
274
+ ncs(2) - Network Call Signaling is a derivation of MGCP
275
+ (Media Gateway Control Protocol) defined for
276
+ IPCablecom/PacketCable MTAs.""",
277
+ },
278
+ "DtmfCode" : {
279
+ "basetype" : "Enumeration",
280
+ "status" : "current",
281
+ "dtmfcode0" : {
282
+ "nodetype" : "namednumber",
283
+ "number" : "0"
284
+ },
285
+ "dtmfcode1" : {
286
+ "nodetype" : "namednumber",
287
+ "number" : "1"
288
+ },
289
+ "dtmfcode2" : {
290
+ "nodetype" : "namednumber",
291
+ "number" : "2"
292
+ },
293
+ "dtmfcode3" : {
294
+ "nodetype" : "namednumber",
295
+ "number" : "3"
296
+ },
297
+ "dtmfcode4" : {
298
+ "nodetype" : "namednumber",
299
+ "number" : "4"
300
+ },
301
+ "dtmfcode5" : {
302
+ "nodetype" : "namednumber",
303
+ "number" : "5"
304
+ },
305
+ "dtmfcode6" : {
306
+ "nodetype" : "namednumber",
307
+ "number" : "6"
308
+ },
309
+ "dtmfcode7" : {
310
+ "nodetype" : "namednumber",
311
+ "number" : "7"
312
+ },
313
+ "dtmfcode8" : {
314
+ "nodetype" : "namednumber",
315
+ "number" : "8"
316
+ },
317
+ "dtmfcode9" : {
318
+ "nodetype" : "namednumber",
319
+ "number" : "9"
320
+ },
321
+ "dtmfcodeStar" : {
322
+ "nodetype" : "namednumber",
323
+ "number" : "10"
324
+ },
325
+ "dtmfcodeHash" : {
326
+ "nodetype" : "namednumber",
327
+ "number" : "11"
328
+ },
329
+ "dtmfcodeA" : {
330
+ "nodetype" : "namednumber",
331
+ "number" : "12"
332
+ },
333
+ "dtmfcodeB" : {
334
+ "nodetype" : "namednumber",
335
+ "number" : "13"
336
+ },
337
+ "dtmfcodeC" : {
338
+ "nodetype" : "namednumber",
339
+ "number" : "14"
340
+ },
341
+ "dtmfcodeD" : {
342
+ "nodetype" : "namednumber",
343
+ "number" : "15"
344
+ },
345
+ "description" :
346
+ """This TEXTUAL-CONVENTION represents the Dual-Tone
347
+ Multi-Frequency (DTMF) Character used
348
+ to indicate the start or end of the digit transition
349
+ sequence used for caller id or Visual Message Waiting
350
+ Indicator (VMWI).
351
+
352
+ Note: The DTMF code '*' is indicated using 'dtmfcodeStar',
353
+ and the DTMF code '#' is indicated using ' dtmfcodeHash'.""",
354
+ },
355
+ "PktcSubscriberSideSigProtocol" : {
356
+ "basetype" : "Enumeration",
357
+ "status" : "current",
358
+ "fsk" : {
359
+ "nodetype" : "namednumber",
360
+ "number" : "1"
361
+ },
362
+ "dtmf" : {
363
+ "nodetype" : "namednumber",
364
+ "number" : "2"
365
+ },
366
+ "description" :
367
+ """This TEXTUAL-CONVENTION represents the Signaling
368
+ protocol being used for purposes such as caller id
369
+ or VMWI.
370
+
371
+ A value of fsk(1) indicates Frequency Shift Keying
372
+ (FSK).
373
+ A value of dtmf(2) indicates Dual-Tone Multi-Frequency
374
+ (DTMF).""",
375
+ },
376
+ }, # typedefs
377
+
378
+ "nodes" : {
379
+ "pktcIetfSigMib" : {
380
+ "nodetype" : "node",
381
+ "moduleName" : "PKTC-IETF-SIG-MIB",
382
+ "oid" : "1.3.6.1.2.1.169",
383
+ "status" : "current",
384
+ }, # node
385
+ "pktcSigNotification" : {
386
+ "nodetype" : "node",
387
+ "moduleName" : "PKTC-IETF-SIG-MIB",
388
+ "oid" : "1.3.6.1.2.1.169.0",
389
+ }, # node
390
+ "pktcSigMibObjects" : {
391
+ "nodetype" : "node",
392
+ "moduleName" : "PKTC-IETF-SIG-MIB",
393
+ "oid" : "1.3.6.1.2.1.169.1",
394
+ }, # node
395
+ "pktcSigDevObjects" : {
396
+ "nodetype" : "node",
397
+ "moduleName" : "PKTC-IETF-SIG-MIB",
398
+ "oid" : "1.3.6.1.2.1.169.1.1",
399
+ }, # node
400
+ "pktcSigDevCodecTable" : {
401
+ "nodetype" : "table",
402
+ "moduleName" : "PKTC-IETF-SIG-MIB",
403
+ "oid" : "1.3.6.1.2.1.169.1.1.1",
404
+ "status" : "current",
405
+ "description" :
406
+ """ This table describes the MTA-supported codec types. An MTA
407
+ MUST populate this table with all possible combinations of
408
+ codecs it supports for simultaneous operation. For example,
409
+ an MTA with two endpoints may be designed with a particular
410
+ Digital Signal Processing (DSP) and memory architecture that
411
+ allows it to support the following fixed combinations of
412
+ codecs for simultaneous operation:
413
+
414
+ Codec Type Maximum Number of Simultaneous Codecs
415
+ PCMA 3
416
+
417
+ PCMA 2
418
+ PCMU 1
419
+
420
+ PCMA 1
421
+
422
+ PCMU 2
423
+
424
+ PCMU 3
425
+
426
+ PCMA 1
427
+ G729 1
428
+
429
+ G729 2
430
+
431
+ PCMU 1
432
+ G729 1
433
+
434
+ Based on this example, the entries in the codec table
435
+ would be:
436
+
437
+ pktcSigDev pktcSigDev pktcSigDev
438
+ CodecComboIndex CodecType CodecMax
439
+ 1 pcma 3
440
+ 2 pcma 2
441
+ 2 pcmu 1
442
+
443
+
444
+
445
+ 3 pcma 1
446
+ 3 pcmu 2
447
+ 4 pcmu 3
448
+ 5 pcma 1
449
+ 5 g729 1
450
+ 6 g729 2
451
+ 7 pcmu 1
452
+ 7 g729 1
453
+
454
+ An operator querying this table is able to determine all
455
+ possible codec combinations the MTA is capable of
456
+ simultaneously supporting.
457
+
458
+ This table MUST NOT include non-voice codecs.""",
459
+ }, # table
460
+ "pktcSigDevCodecEntry" : {
461
+ "nodetype" : "row",
462
+ "moduleName" : "PKTC-IETF-SIG-MIB",
463
+ "oid" : "1.3.6.1.2.1.169.1.1.1.1",
464
+ "status" : "current",
465
+ "linkage" : [
466
+ "pktcSigDevCodecComboIndex",
467
+ "pktcSigDevCodecType",
468
+ ],
469
+ "description" :
470
+ """Each entry represents the maximum number of active
471
+ connections with a particular codec the MTA is capable of
472
+ supporting. Each row is indexed by a composite key
473
+ consisting of a number enumerating the particular codec
474
+ combination and the codec type.""",
475
+ }, # row
476
+ "pktcSigDevCodecComboIndex" : {
477
+ "nodetype" : "column",
478
+ "moduleName" : "PKTC-IETF-SIG-MIB",
479
+ "oid" : "1.3.6.1.2.1.169.1.1.1.1.1",
480
+ "status" : "current",
481
+ "syntax" : {
482
+ "type" : {
483
+ "basetype" : "Unsigned32",
484
+ "ranges" : [
485
+ {
486
+ "min" : "1",
487
+ "max" : "255"
488
+ },
489
+ ],
490
+ "range" : {
491
+ "min" : "1",
492
+ "max" : "255"
493
+ },
494
+ },
495
+ },
496
+ "access" : "noaccess",
497
+ "description" :
498
+ """ The index value that enumerates a particular codec
499
+ combination in the pktcSigDevCodecTable.""",
500
+ }, # column
501
+ "pktcSigDevCodecType" : {
502
+ "nodetype" : "column",
503
+ "moduleName" : "PKTC-IETF-SIG-MIB",
504
+ "oid" : "1.3.6.1.2.1.169.1.1.1.1.2",
505
+ "status" : "current",
506
+ "syntax" : {
507
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcCodecType"},
508
+ },
509
+ "access" : "noaccess",
510
+ "description" :
511
+ """ A codec type supported by this MTA.""",
512
+ }, # column
513
+ "pktcSigDevCodecMax" : {
514
+ "nodetype" : "column",
515
+ "moduleName" : "PKTC-IETF-SIG-MIB",
516
+ "oid" : "1.3.6.1.2.1.169.1.1.1.1.3",
517
+ "status" : "current",
518
+ "syntax" : {
519
+ "type" : {
520
+ "basetype" : "Unsigned32",
521
+ "ranges" : [
522
+ {
523
+ "min" : "1",
524
+ "max" : "255"
525
+ },
526
+ ],
527
+ "range" : {
528
+ "min" : "1",
529
+ "max" : "255"
530
+ },
531
+ },
532
+ },
533
+ "access" : "readonly",
534
+ "description" :
535
+ """ The maximum number of simultaneous sessions of a
536
+ particular codec that the MTA can support.""",
537
+ }, # column
538
+ "pktcSigDevEchoCancellation" : {
539
+ "nodetype" : "scalar",
540
+ "moduleName" : "PKTC-IETF-SIG-MIB",
541
+ "oid" : "1.3.6.1.2.1.169.1.1.2",
542
+ "status" : "current",
543
+ "syntax" : {
544
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
545
+ },
546
+ "access" : "readonly",
547
+ "description" :
548
+ """ This object specifies if the device is capable of echo
549
+ cancellation. The MTA MUST set this MIB object to a
550
+ value of true(1) if it is capable of echo
551
+ cancellation, and a value of false(2) if not.""",
552
+ }, # scalar
553
+ "pktcSigDevSilenceSuppression" : {
554
+ "nodetype" : "scalar",
555
+ "moduleName" : "PKTC-IETF-SIG-MIB",
556
+ "oid" : "1.3.6.1.2.1.169.1.1.3",
557
+ "status" : "current",
558
+ "syntax" : {
559
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
560
+ },
561
+ "access" : "readonly",
562
+ "description" :
563
+ """ This object specifies if the device is capable of
564
+ silence suppression (as a result of Voice Activity
565
+ Detection). The MTA MUST set this MIB object to a
566
+ value of true(1) if it is capable of silence
567
+ suppression, and a value of false(2) if not.""",
568
+ }, # scalar
569
+ "pktcSigDevCidSigProtocol" : {
570
+ "nodetype" : "scalar",
571
+ "moduleName" : "PKTC-IETF-SIG-MIB",
572
+ "oid" : "1.3.6.1.2.1.169.1.1.4",
573
+ "status" : "current",
574
+ "syntax" : {
575
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcSubscriberSideSigProtocol"},
576
+ },
577
+ "access" : "readwrite",
578
+ "default" : "fsk",
579
+ "description" :
580
+ """This object is used to configure the subscriber-line
581
+ protocol used for signaling on-hook caller id information.
582
+
583
+
584
+
585
+ Different countries define different caller id signaling
586
+ protocols to support caller identification.
587
+
588
+ Setting this object at a value fsk(1) sets the subscriber
589
+ line protocol to be Frequency Shift Keying (FSK).
590
+
591
+ Setting this object at a value dtmf(2) sets the subscriber
592
+ line protocol to be Dual-Tone Multi-Frequency (DTMF).
593
+
594
+ The value of this MIB object MUST NOT persist across MTA
595
+ reboots.""",
596
+ "reference" :
597
+ """ETSI-EN-300-659-1 Specification""",
598
+ }, # scalar
599
+ "pktcSigDevR0Cadence" : {
600
+ "nodetype" : "scalar",
601
+ "moduleName" : "PKTC-IETF-SIG-MIB",
602
+ "oid" : "1.3.6.1.2.1.169.1.1.5",
603
+ "status" : "current",
604
+ "syntax" : {
605
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
606
+ },
607
+ "access" : "readwrite",
608
+ "description" :
609
+ """ This object specifies ring cadence 0 (a user-defined
610
+ field).
611
+
612
+ The value of this MIB object MUST NOT persist across MTA
613
+ reboots.""",
614
+ }, # scalar
615
+ "pktcSigDevR1Cadence" : {
616
+ "nodetype" : "scalar",
617
+ "moduleName" : "PKTC-IETF-SIG-MIB",
618
+ "oid" : "1.3.6.1.2.1.169.1.1.6",
619
+ "status" : "current",
620
+ "syntax" : {
621
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
622
+ },
623
+ "access" : "readwrite",
624
+ "description" :
625
+ """ This object specifies ring cadence 1 (a user-defined
626
+ field).
627
+
628
+ The value of this MIB object MUST NOT persist across MTA
629
+ reboots.""",
630
+ }, # scalar
631
+ "pktcSigDevR2Cadence" : {
632
+ "nodetype" : "scalar",
633
+ "moduleName" : "PKTC-IETF-SIG-MIB",
634
+ "oid" : "1.3.6.1.2.1.169.1.1.7",
635
+ "status" : "current",
636
+ "syntax" : {
637
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
638
+ },
639
+ "access" : "readwrite",
640
+ "description" :
641
+ """ This object specifies ring cadence 2 (a user-defined
642
+ field).
643
+
644
+
645
+
646
+
647
+ The value of this MIB object MUST NOT persist across MTA
648
+ reboots.""",
649
+ }, # scalar
650
+ "pktcSigDevR3Cadence" : {
651
+ "nodetype" : "scalar",
652
+ "moduleName" : "PKTC-IETF-SIG-MIB",
653
+ "oid" : "1.3.6.1.2.1.169.1.1.8",
654
+ "status" : "current",
655
+ "syntax" : {
656
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
657
+ },
658
+ "access" : "readwrite",
659
+ "description" :
660
+ """ This object specifies ring cadence 3 (a user-defined
661
+ field).
662
+
663
+ The value of this MIB object MUST NOT persist across MTA
664
+ reboots.""",
665
+ }, # scalar
666
+ "pktcSigDevR4Cadence" : {
667
+ "nodetype" : "scalar",
668
+ "moduleName" : "PKTC-IETF-SIG-MIB",
669
+ "oid" : "1.3.6.1.2.1.169.1.1.9",
670
+ "status" : "current",
671
+ "syntax" : {
672
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
673
+ },
674
+ "access" : "readwrite",
675
+ "description" :
676
+ """ This object specifies ring cadence 4 (a user-defined
677
+ field).
678
+
679
+ The value of this MIB object MUST NOT persist across MTA
680
+ reboots.""",
681
+ }, # scalar
682
+ "pktcSigDevR5Cadence" : {
683
+ "nodetype" : "scalar",
684
+ "moduleName" : "PKTC-IETF-SIG-MIB",
685
+ "oid" : "1.3.6.1.2.1.169.1.1.10",
686
+ "status" : "current",
687
+ "syntax" : {
688
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
689
+ },
690
+ "access" : "readwrite",
691
+ "description" :
692
+ """ This object specifies ring cadence 5 (a user-defined
693
+ field).
694
+
695
+ The value of this MIB object MUST NOT persist across MTA
696
+ reboots.""",
697
+ }, # scalar
698
+ "pktcSigDevR6Cadence" : {
699
+ "nodetype" : "scalar",
700
+ "moduleName" : "PKTC-IETF-SIG-MIB",
701
+ "oid" : "1.3.6.1.2.1.169.1.1.11",
702
+ "status" : "current",
703
+ "syntax" : {
704
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
705
+ },
706
+ "access" : "readwrite",
707
+ "description" :
708
+ """ This object specifies ring cadence 6 (a user-defined
709
+ field).
710
+
711
+
712
+
713
+
714
+ The value of this MIB object MUST NOT persist across MTA
715
+ reboots.""",
716
+ }, # scalar
717
+ "pktcSigDevR7Cadence" : {
718
+ "nodetype" : "scalar",
719
+ "moduleName" : "PKTC-IETF-SIG-MIB",
720
+ "oid" : "1.3.6.1.2.1.169.1.1.12",
721
+ "status" : "current",
722
+ "syntax" : {
723
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
724
+ },
725
+ "access" : "readwrite",
726
+ "description" :
727
+ """ This object specifies ring cadence 7 (a user-defined
728
+ field).
729
+
730
+ The value of this MIB object MUST NOT persist across MTA
731
+ reboots.""",
732
+ }, # scalar
733
+ "pktcSigDevRgCadence" : {
734
+ "nodetype" : "scalar",
735
+ "moduleName" : "PKTC-IETF-SIG-MIB",
736
+ "oid" : "1.3.6.1.2.1.169.1.1.13",
737
+ "status" : "current",
738
+ "syntax" : {
739
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
740
+ },
741
+ "access" : "readwrite",
742
+ "description" :
743
+ """ This object specifies ring cadence rg (a user-defined
744
+ field).
745
+
746
+ The value of this MIB object MUST NOT persist across MTA
747
+ reboots.""",
748
+ }, # scalar
749
+ "pktcSigDevRsCadence" : {
750
+ "nodetype" : "scalar",
751
+ "moduleName" : "PKTC-IETF-SIG-MIB",
752
+ "oid" : "1.3.6.1.2.1.169.1.1.14",
753
+ "status" : "current",
754
+ "syntax" : {
755
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
756
+ },
757
+ "access" : "readwrite",
758
+ "description" :
759
+ """ This object specifies ring cadence rs (a user-defined
760
+ field). The MTA MUST reject any attempt to make this object
761
+ repeatable.
762
+
763
+ The value of this MIB object MUST NOT persist across MTA
764
+ reboots.""",
765
+ }, # scalar
766
+ "pktcSigDefCallSigDscp" : {
767
+ "nodetype" : "scalar",
768
+ "moduleName" : "PKTC-IETF-SIG-MIB",
769
+ "oid" : "1.3.6.1.2.1.169.1.1.15",
770
+ "status" : "current",
771
+ "syntax" : {
772
+ "type" : { "module" :"DIFFSERV-DSCP-TC", "name" : "Dscp"},
773
+ },
774
+ "access" : "readwrite",
775
+ "default" : "0",
776
+ "description" :
777
+ """ The default value used in the IP header for setting the
778
+ Differentiated Services Code Point (DSCP) value for call
779
+
780
+
781
+
782
+ signaling.
783
+
784
+ The value of this MIB object MUST NOT persist across MTA
785
+ reboots.""",
786
+ }, # scalar
787
+ "pktcSigDefMediaStreamDscp" : {
788
+ "nodetype" : "scalar",
789
+ "moduleName" : "PKTC-IETF-SIG-MIB",
790
+ "oid" : "1.3.6.1.2.1.169.1.1.16",
791
+ "status" : "current",
792
+ "syntax" : {
793
+ "type" : { "module" :"DIFFSERV-DSCP-TC", "name" : "Dscp"},
794
+ },
795
+ "access" : "readwrite",
796
+ "default" : "0",
797
+ "description" :
798
+ """ This object contains the default value used in the IP
799
+ header for setting the Differentiated Services Code Point
800
+ (DSCP) value for media stream packets. The MTA MUST NOT
801
+ update this object with the value supplied by the CMS in
802
+ the NCS messages (if present). Any currently active
803
+ connections are not affected by updates to this object.
804
+ When the value of this object is updated by SNMP, the MTA
805
+ MUST use the new value as a default starting only from
806
+ new connections.
807
+
808
+ The value of this MIB object MUST NOT persist across MTA
809
+ reboots.""",
810
+ }, # scalar
811
+ "pktcSigCapabilityTable" : {
812
+ "nodetype" : "table",
813
+ "moduleName" : "PKTC-IETF-SIG-MIB",
814
+ "oid" : "1.3.6.1.2.1.169.1.1.17",
815
+ "status" : "current",
816
+ "description" :
817
+ """ This table describes the signaling types supported by this
818
+ MTA.""",
819
+ }, # table
820
+ "pktcSigCapabilityEntry" : {
821
+ "nodetype" : "row",
822
+ "moduleName" : "PKTC-IETF-SIG-MIB",
823
+ "oid" : "1.3.6.1.2.1.169.1.1.17.1",
824
+ "status" : "current",
825
+ "linkage" : [
826
+ "pktcSigCapabilityIndex",
827
+ ],
828
+ "description" :
829
+ """ Entries in pktcMtaDevSigCapabilityTable - list of
830
+ supported signaling types, versions, and vendor extensions
831
+
832
+
833
+
834
+ for this MTA. Each entry in the list provides for one
835
+ signaling type and version combination. If the device
836
+ supports multiple versions of the same signaling type, it
837
+ will require multiple entries.""",
838
+ }, # row
839
+ "pktcSigCapabilityIndex" : {
840
+ "nodetype" : "column",
841
+ "moduleName" : "PKTC-IETF-SIG-MIB",
842
+ "oid" : "1.3.6.1.2.1.169.1.1.17.1.1",
843
+ "status" : "current",
844
+ "syntax" : {
845
+ "type" : {
846
+ "basetype" : "Unsigned32",
847
+ "ranges" : [
848
+ {
849
+ "min" : "1",
850
+ "max" : "255"
851
+ },
852
+ ],
853
+ "range" : {
854
+ "min" : "1",
855
+ "max" : "255"
856
+ },
857
+ },
858
+ },
859
+ "access" : "noaccess",
860
+ "description" :
861
+ """ The index value that uniquely identifies an entry in the
862
+ pktcSigCapabilityTable.""",
863
+ }, # column
864
+ "pktcSigCapabilityType" : {
865
+ "nodetype" : "column",
866
+ "moduleName" : "PKTC-IETF-SIG-MIB",
867
+ "oid" : "1.3.6.1.2.1.169.1.1.17.1.2",
868
+ "status" : "current",
869
+ "syntax" : {
870
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcSigType"},
871
+ },
872
+ "access" : "readonly",
873
+ "description" :
874
+ """ This object identifies the type of signaling used. This
875
+ value has to be associated with a single signaling
876
+ version.""",
877
+ }, # column
878
+ "pktcSigCapabilityVersion" : {
879
+ "nodetype" : "column",
880
+ "moduleName" : "PKTC-IETF-SIG-MIB",
881
+ "oid" : "1.3.6.1.2.1.169.1.1.17.1.3",
882
+ "status" : "current",
883
+ "syntax" : {
884
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
885
+ },
886
+ "access" : "readonly",
887
+ "description" :
888
+ """ Provides the version of the signaling type - reference
889
+ pktcSigCapabilityType. Examples would be 1.0 or 2.33 etc.""",
890
+ }, # column
891
+ "pktcSigCapabilityVendorExt" : {
892
+ "nodetype" : "column",
893
+ "moduleName" : "PKTC-IETF-SIG-MIB",
894
+ "oid" : "1.3.6.1.2.1.169.1.1.17.1.4",
895
+ "status" : "current",
896
+ "syntax" : {
897
+ "type" : { "module" :"SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
898
+ },
899
+ "access" : "readonly",
900
+ "description" :
901
+ """ The vendor extension allows vendors to provide a list of
902
+
903
+
904
+
905
+ additional capabilities.
906
+
907
+ The syntax for this MIB object in ABNF ([RFC5234]) is
908
+ specified to be zero or more occurrences of vendor
909
+ extensions, as follows:
910
+
911
+ pktcSigCapabilityVendorExt = *(vendor-extension)
912
+ vendor-extension = (ext symbol alphanum) DQUOTE ; DQUOTE
913
+ ext = DQUOTE %x58 DQUOTE
914
+ symbol = (DQUOTE %x2D DQUOTE)/(DQUOTE %x2D DQUOTE)
915
+ alphanum = 1*6(ALPHA/DIGIT)""",
916
+ }, # column
917
+ "pktcSigDefNcsReceiveUdpPort" : {
918
+ "nodetype" : "scalar",
919
+ "moduleName" : "PKTC-IETF-SIG-MIB",
920
+ "oid" : "1.3.6.1.2.1.169.1.1.18",
921
+ "status" : "current",
922
+ "syntax" : {
923
+ "type" : {
924
+ "basetype" : "Unsigned32",
925
+ "parent module" : {
926
+ "name" : "INET-ADDRESS-MIB",
927
+ "type" : "InetPortNumber",
928
+ },
929
+ "ranges" : [
930
+ {
931
+ "min" : "1025",
932
+ "max" : "65535"
933
+ },
934
+ ],
935
+ "range" : {
936
+ "min" : "1025",
937
+ "max" : "65535"
938
+ },
939
+ },
940
+ },
941
+ "access" : "readonly",
942
+ "description" :
943
+ """ This object contains the MTA User Datagram Protocol (UDP)
944
+ receive port that is being used for NCS call signaling.
945
+ This object should only be changed by the configuration
946
+ file.
947
+
948
+ Unless changed via configuration, this MIB object MUST
949
+ reflect a value of '2427'.""",
950
+ "reference" :
951
+ """PacketCable NCS Specification""",
952
+ }, # scalar
953
+ "pktcSigPowerRingFrequency" : {
954
+ "nodetype" : "scalar",
955
+ "moduleName" : "PKTC-IETF-SIG-MIB",
956
+ "oid" : "1.3.6.1.2.1.169.1.1.19",
957
+ "status" : "current",
958
+ "syntax" : {
959
+ "type" : {
960
+ "basetype" : "Enumeration",
961
+ "f20Hz" : {
962
+ "nodetype" : "namednumber",
963
+ "number" : "1"
964
+ },
965
+ "f25Hz" : {
966
+ "nodetype" : "namednumber",
967
+ "number" : "2"
968
+ },
969
+ "f33Point33Hz" : {
970
+ "nodetype" : "namednumber",
971
+ "number" : "3"
972
+ },
973
+ "f50Hz" : {
974
+ "nodetype" : "namednumber",
975
+ "number" : "4"
976
+ },
977
+ "f15Hz" : {
978
+ "nodetype" : "namednumber",
979
+ "number" : "5"
980
+ },
981
+ "f16Hz" : {
982
+ "nodetype" : "namednumber",
983
+ "number" : "6"
984
+ },
985
+ "f22Hz" : {
986
+ "nodetype" : "namednumber",
987
+ "number" : "7"
988
+ },
989
+ "f23Hz" : {
990
+ "nodetype" : "namednumber",
991
+ "number" : "8"
992
+ },
993
+ "f45Hz" : {
994
+ "nodetype" : "namednumber",
995
+ "number" : "9"
996
+ },
997
+ },
998
+ },
999
+ "access" : "readonly",
1000
+ "description" :
1001
+ """ This object must only be provided via the configuration
1002
+ file during the provisioning process. The power ring
1003
+
1004
+
1005
+
1006
+ frequency is the frequency at which the sinusoidal voltage
1007
+ must travel down the twisted pair to make terminal
1008
+ equipment ring. Different countries define different
1009
+ electrical characteristics to make terminal equipment
1010
+ ring.
1011
+
1012
+ The f20Hz setting corresponds to a power ring frequency
1013
+ of 20 Hertz. The f25Hz setting corresponds to a power ring
1014
+ frequency of 25 Hertz. The f33Point33Hz setting
1015
+ corresponds to a power ring frequency of 33.33 Hertz. The
1016
+ f50Hz setting corresponds to a power ring frequency of 50
1017
+ Hertz. The f15Hz setting corresponds to a power ring
1018
+ frequency of 15 Hertz. The f16Hz setting corresponds to a
1019
+ power ring frequency of 16 Hertz. The f22Hz setting
1020
+ corresponds to a power ring frequency of 22 Hertz. The
1021
+ f23Hz setting corresponds to a power ring frequency of 23
1022
+ Hertz. The f45Hz setting corresponds to a power ring
1023
+ frequency of 45 Hertz.""",
1024
+ "reference" :
1025
+ """ETSI-EN-300-001""",
1026
+ }, # scalar
1027
+ "pktcSigPulseSignalTable" : {
1028
+ "nodetype" : "table",
1029
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1030
+ "oid" : "1.3.6.1.2.1.169.1.1.20",
1031
+ "status" : "current",
1032
+ "description" :
1033
+ """ The Pulse signal table defines the pulse signal operation.
1034
+ There are nine types of international pulse signals,
1035
+ with each signal having a set of provisionable parameters.
1036
+ The values of the MIB objects in this table take effect
1037
+ only if these parameters are not defined via signaling, in
1038
+ which case, the latter determines the values of the
1039
+ parameters. The MIB objects in this table do not persist
1040
+ across MTA reboots.""",
1041
+ "reference" :
1042
+ """ETSI-TS-101-909-4 Specification""",
1043
+ }, # table
1044
+ "pktcSigPulseSignalEntry" : {
1045
+ "nodetype" : "row",
1046
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1047
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1",
1048
+ "status" : "current",
1049
+ "linkage" : [
1050
+ "pktcSigPulseSignalType",
1051
+ ],
1052
+ "description" :
1053
+ """ This object defines the set of parameters associated with
1054
+ each particular value of pktcSigPulseSignalType. Each
1055
+ entry in the pktcSigPulseSignalTable is indexed by the
1056
+ pktcSigPulseSignalType object.
1057
+
1058
+
1059
+
1060
+ The conceptual rows MUST NOT persist across MTA reboots.""",
1061
+ }, # row
1062
+ "pktcSigPulseSignalType" : {
1063
+ "nodetype" : "column",
1064
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1065
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1.1",
1066
+ "status" : "current",
1067
+ "syntax" : {
1068
+ "type" : {
1069
+ "basetype" : "Enumeration",
1070
+ "initialRing" : {
1071
+ "nodetype" : "namednumber",
1072
+ "number" : "1"
1073
+ },
1074
+ "pulseLoopClose" : {
1075
+ "nodetype" : "namednumber",
1076
+ "number" : "2"
1077
+ },
1078
+ "pulseLoopOpen" : {
1079
+ "nodetype" : "namednumber",
1080
+ "number" : "3"
1081
+ },
1082
+ "enableMeterPulse" : {
1083
+ "nodetype" : "namednumber",
1084
+ "number" : "4"
1085
+ },
1086
+ "meterPulseBurst" : {
1087
+ "nodetype" : "namednumber",
1088
+ "number" : "5"
1089
+ },
1090
+ "pulseNoBattery" : {
1091
+ "nodetype" : "namednumber",
1092
+ "number" : "6"
1093
+ },
1094
+ "pulseNormalPolarity" : {
1095
+ "nodetype" : "namednumber",
1096
+ "number" : "7"
1097
+ },
1098
+ "pulseReducedBattery" : {
1099
+ "nodetype" : "namednumber",
1100
+ "number" : "8"
1101
+ },
1102
+ "pulseReversePolarity" : {
1103
+ "nodetype" : "namednumber",
1104
+ "number" : "9"
1105
+ },
1106
+ },
1107
+ },
1108
+ "access" : "noaccess",
1109
+ "description" :
1110
+ """There are nine types of international pulse signals. These
1111
+ signals are defined as follows:
1112
+ initial ring
1113
+ pulse loop close
1114
+ pulse loop open
1115
+ enable meter pulse
1116
+ meter pulse burst
1117
+ pulse no battery
1118
+ pulse normal polarity
1119
+ pulse reduced battery
1120
+ pulse reverse polarity""",
1121
+ "reference" :
1122
+ """ETSI-EN-300-324-1 Specification""",
1123
+ }, # column
1124
+ "pktcSigPulseSignalFrequency" : {
1125
+ "nodetype" : "column",
1126
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1127
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1.2",
1128
+ "status" : "current",
1129
+ "syntax" : {
1130
+ "type" : {
1131
+ "basetype" : "Enumeration",
1132
+ "twentyfive" : {
1133
+ "nodetype" : "namednumber",
1134
+ "number" : "1"
1135
+ },
1136
+ "twelvethousand" : {
1137
+ "nodetype" : "namednumber",
1138
+ "number" : "2"
1139
+ },
1140
+ "sixteenthousand" : {
1141
+ "nodetype" : "namednumber",
1142
+ "number" : "3"
1143
+ },
1144
+ },
1145
+ },
1146
+ "access" : "readwrite",
1147
+ "description" :
1148
+ """ This object is only applicable to the initialRing,
1149
+ enableMeterPulse, and meterPulseBurst signal types. This
1150
+ object identifies the frequency of the generated signal.
1151
+ The following table defines the default values for this
1152
+ object depending on signal type:
1153
+
1154
+ pktcSigPulseSignalType Default
1155
+ initialRing 25
1156
+ enableMeterPulse 16000
1157
+ meterPulseBurst 16000
1158
+
1159
+ The value of twentyfive MUST only be used for the
1160
+ initialRing signal type. The values of twelvethousand and
1161
+ sixteenthousand MUST only be used for enableMeterPulse and
1162
+ meterPulseBurst signal types. An attempt to set this
1163
+ object while the value of pktcSigPulseSignalType is not
1164
+ initialRing, enableMeterPulse, or meterPulseBurst will
1165
+ result in an 'inconsistentValue' error.""",
1166
+ "reference" :
1167
+ """ETSI-EN-300-001 Specification""",
1168
+ }, # column
1169
+ "pktcSigPulseSignalDbLevel" : {
1170
+ "nodetype" : "column",
1171
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1172
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1.3",
1173
+ "status" : "current",
1174
+ "syntax" : {
1175
+ "type" : {
1176
+ "basetype" : "Integer32",
1177
+ "parent module" : {
1178
+ "name" : "PKTC-IETF-SIG-MIB",
1179
+ "type" : "TenthdBm",
1180
+ },
1181
+ "ranges" : [
1182
+ {
1183
+ "min" : "-350",
1184
+ "max" : "0"
1185
+ },
1186
+ ],
1187
+ "range" : {
1188
+ "min" : "-350",
1189
+ "max" : "0"
1190
+ },
1191
+ },
1192
+ },
1193
+ "access" : "readwrite",
1194
+ "default" : "-135",
1195
+ "units" : "1/10 of a dBm",
1196
+ "description" :
1197
+ """ This object is only applicable to the enableMeterPulse and
1198
+ meterPulseBurst signal types. This is the decibel level
1199
+ for each frequency at which tones could be generated at
1200
+ the a and b terminals (TE connection point). An attempt to
1201
+ set this object while the value of pktcSigPulseSignalType
1202
+ is not enableMeterPulse or meterPulseBurst will result in
1203
+ an 'inconsistentValue' error.""",
1204
+ "reference" :
1205
+ """ETSI-EN-300-001 Specification""",
1206
+ }, # column
1207
+ "pktcSigPulseSignalDuration" : {
1208
+ "nodetype" : "column",
1209
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1210
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1.4",
1211
+ "status" : "current",
1212
+ "syntax" : {
1213
+ "type" : {
1214
+ "basetype" : "Unsigned32",
1215
+ "ranges" : [
1216
+ {
1217
+ "min" : "0",
1218
+ "max" : "5000"
1219
+ },
1220
+ ],
1221
+ "range" : {
1222
+ "min" : "0",
1223
+ "max" : "5000"
1224
+ },
1225
+ },
1226
+ },
1227
+ "access" : "readwrite",
1228
+ "units" : "Milliseconds",
1229
+ "description" :
1230
+ """ This object specifies the pulse duration for each
1231
+ signal type. In addition, the MTA must accept the values
1232
+ in the incremental steps specific for each signal type.
1233
+ The following table defines the default values and the
1234
+ incremental steps for this object depending on the signal
1235
+ type:
1236
+
1237
+ pktcSigPulseSignaltype Default (ms) Increment (ms)
1238
+ initialRing 200 50
1239
+ pulseLoopClose 200 10
1240
+ pulseLoopOpen 200 10
1241
+ enableMeterPulse 150 10
1242
+ meterPulseBurst 150 10
1243
+ pulseNoBattery 200 10
1244
+ pulseNormalPolarity 200 10
1245
+ pulseReducedBattery 200 10
1246
+ pulseReversePolarity 200 10
1247
+
1248
+ An attempt to set this object to a value that does not
1249
+ fall on one of the increment boundaries, or on the wrong
1250
+ increment boundary for the specific signal type, will
1251
+ result in an 'inconsistentValue' error.""",
1252
+ "reference" :
1253
+ """ETSI-EN-300-324-1 Specification""",
1254
+ }, # column
1255
+ "pktcSigPulseSignalPulseInterval" : {
1256
+ "nodetype" : "column",
1257
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1258
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1.5",
1259
+ "status" : "current",
1260
+ "syntax" : {
1261
+ "type" : {
1262
+ "basetype" : "Unsigned32",
1263
+ "ranges" : [
1264
+ {
1265
+ "min" : "0",
1266
+ "max" : "5000"
1267
+ },
1268
+ ],
1269
+ "range" : {
1270
+ "min" : "0",
1271
+ "max" : "5000"
1272
+ },
1273
+ },
1274
+ },
1275
+ "access" : "readwrite",
1276
+ "units" : "Milliseconds",
1277
+ "description" :
1278
+ """ This object specifies the repeat interval, or the period,
1279
+ for each signal type. In addition, the MTA must accept
1280
+ the values in the incremental steps specific for each
1281
+ signal type. The following table defines the default
1282
+ values and the incremental steps for this object, depending
1283
+ on the signal type:
1284
+
1285
+ pktcSigPulseSignaltype Default (ms) Increment (ms)
1286
+ initialRing 200 50
1287
+ pulseLoopClose 1000 10
1288
+ pulseLoopOpen 1000 10
1289
+
1290
+
1291
+
1292
+ enableMeterPulse 1000 10
1293
+ meterPulseBurst 1000 10
1294
+ pulseNoBattery 1000 10
1295
+ pulseNormalPolarity 1000 10
1296
+ pulseReducedBattery 1000 10
1297
+ pulseReversePolarity 1000 10
1298
+
1299
+ An attempt to set this object to a value that does not
1300
+ fall on one of the increment boundaries, or on the wrong
1301
+ increment boundary for the specific signal type, will
1302
+ result in an 'inconsistentValue' error.""",
1303
+ "reference" :
1304
+ """ETSI-EN-300-324-1 Specification""",
1305
+ }, # column
1306
+ "pktcSigPulseSignalRepeatCount" : {
1307
+ "nodetype" : "column",
1308
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1309
+ "oid" : "1.3.6.1.2.1.169.1.1.20.1.6",
1310
+ "status" : "current",
1311
+ "syntax" : {
1312
+ "type" : {
1313
+ "basetype" : "Unsigned32",
1314
+ "ranges" : [
1315
+ {
1316
+ "min" : "1",
1317
+ "max" : "50"
1318
+ },
1319
+ ],
1320
+ "range" : {
1321
+ "min" : "1",
1322
+ "max" : "50"
1323
+ },
1324
+ },
1325
+ },
1326
+ "access" : "readwrite",
1327
+ "description" :
1328
+ """ This object specifies how many times to repeat a pulse.
1329
+ This object is not used by the enableMeterPulse signal
1330
+ type, and in that case, the value is irrelevant. The
1331
+ following table defines the default values and the valid
1332
+ ranges for this object, depending on the signal type:
1333
+
1334
+ pktcSigPulseSignaltype Default Range
1335
+
1336
+ initialRing 1 1-5
1337
+ pulseLoopClose 1 1-50
1338
+ pulseLoopOpen 1 1-50
1339
+ enableMeterPulse (any value)(but not used)
1340
+ meterPulseBurst 1 1-50
1341
+ pulseNoBattery 1 1-50
1342
+ pulseNormalPolarity 1 1-50
1343
+ pulseReducedBattery 1 1-50
1344
+ pulseReversePolarity 1 1-50
1345
+
1346
+ An attempt to set this object to a value that does not
1347
+ fall within the range for the specific
1348
+ signal type will result in an 'inconsistentValue' error.""",
1349
+ }, # column
1350
+ "pktcSigDevCidMode" : {
1351
+ "nodetype" : "scalar",
1352
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1353
+ "oid" : "1.3.6.1.2.1.169.1.1.21",
1354
+ "status" : "current",
1355
+ "syntax" : {
1356
+ "type" : {
1357
+ "basetype" : "Enumeration",
1358
+ "duringRingingETS" : {
1359
+ "nodetype" : "namednumber",
1360
+ "number" : "1"
1361
+ },
1362
+ "dtAsETS" : {
1363
+ "nodetype" : "namednumber",
1364
+ "number" : "2"
1365
+ },
1366
+ "rpAsETS" : {
1367
+ "nodetype" : "namednumber",
1368
+ "number" : "3"
1369
+ },
1370
+ "lrAsETS" : {
1371
+ "nodetype" : "namednumber",
1372
+ "number" : "4"
1373
+ },
1374
+ "lrETS" : {
1375
+ "nodetype" : "namednumber",
1376
+ "number" : "5"
1377
+ },
1378
+ },
1379
+ },
1380
+ "access" : "readwrite",
1381
+ "default" : "rpAsETS",
1382
+ "description" :
1383
+ """ For on-hook caller id, pktcSigDevCidMode selects the method
1384
+ for representing and signaling caller identification. For
1385
+ the duringRingingETS method, the Frequency Shift Keying
1386
+ (FSK) or the Dual-Tone Multi-Frequency (DTMF) containing
1387
+ the caller identification information is sent between the
1388
+ first and second ring pattern.
1389
+
1390
+ For the dtAsETS,rpAsETS, lrAsETS and lrETS
1391
+ methods, the FSK or DTMF containing the caller id
1392
+ information is sent before the first ring pattern.
1393
+
1394
+ For the dtAsETS method, the FSK or DTMF is sent after the
1395
+ Dual Tone Alert Signal. For the rpAsETS method, the FSK or
1396
+ DTMF is sent after a Ring Pulse.
1397
+
1398
+ For the lrAsETS method, the Line Reversal occurs first,
1399
+ then the Dual Tone Alert Signal, and, finally, the FSK or
1400
+ DTMF is sent.
1401
+
1402
+ For the lrETS method, the Line Reversal occurs first,
1403
+ then the FSK or DTMF is sent.
1404
+
1405
+ The value of this MIB object MUST NOT persist across MTA
1406
+ reboots.""",
1407
+ }, # scalar
1408
+ "pktcSigDevCidAfterRing" : {
1409
+ "nodetype" : "scalar",
1410
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1411
+ "oid" : "1.3.6.1.2.1.169.1.1.22",
1412
+ "status" : "current",
1413
+ "syntax" : {
1414
+ "type" : {
1415
+ "basetype" : "Unsigned32",
1416
+ "ranges" : [
1417
+ {
1418
+ "min" : "0",
1419
+ "max" : "0"
1420
+ },
1421
+ {
1422
+ "min" : "50",
1423
+ "max" : "2000"
1424
+ },
1425
+ ],
1426
+ "range" : {
1427
+ "min" : "0",
1428
+ "max" : "2000"
1429
+ },
1430
+ },
1431
+ },
1432
+ "access" : "readwrite",
1433
+ "default" : "550",
1434
+ "units" : "Milliseconds",
1435
+ "description" :
1436
+ """ This object specifies the delay between the end of first
1437
+ ringing pattern and the start of the transmission of the
1438
+ FSK or DTMF containing the caller id information. It is
1439
+ only used when pktcSigDevCidMode is set to a value of
1440
+ 'duringRingingETS'.
1441
+
1442
+ The following table defines the default values
1443
+ for this MIB object, depending on the signal type
1444
+
1445
+
1446
+
1447
+ (pktcSigDevCidMode), and MUST be followed:
1448
+
1449
+ Value of pktcSigDevCidMode Default value
1450
+
1451
+ duringringingETS 550 ms
1452
+ dtAsETS any value (not used)
1453
+ rpAsETS any value (not used)
1454
+ lrAsETS any value (not used)
1455
+ lrETS any value (not used)
1456
+
1457
+ An attempt to set this object while the value of
1458
+ pktcSigDevCidMode is not duringringingETS will result in
1459
+ an 'inconsistentValue' error.
1460
+
1461
+ The value of this MIB object MUST NOT persist across MTA
1462
+ reboots.""",
1463
+ "reference" :
1464
+ """ETSI-EN-300-659-1 Specification""",
1465
+ }, # scalar
1466
+ "pktcSigDevCidAfterDTAS" : {
1467
+ "nodetype" : "scalar",
1468
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1469
+ "oid" : "1.3.6.1.2.1.169.1.1.23",
1470
+ "status" : "current",
1471
+ "syntax" : {
1472
+ "type" : {
1473
+ "basetype" : "Unsigned32",
1474
+ "ranges" : [
1475
+ {
1476
+ "min" : "0",
1477
+ "max" : "0"
1478
+ },
1479
+ {
1480
+ "min" : "45",
1481
+ "max" : "500"
1482
+ },
1483
+ ],
1484
+ "range" : {
1485
+ "min" : "0",
1486
+ "max" : "500"
1487
+ },
1488
+ },
1489
+ },
1490
+ "access" : "readwrite",
1491
+ "default" : "50",
1492
+ "units" : "Milliseconds",
1493
+ "description" :
1494
+ """ This object specifies the delay between the end of the
1495
+ Dual Tone Alert Signal (DT-AS) and the start of the
1496
+ transmission of the FSK or DTMF containing the caller id
1497
+ information. This object is only used when
1498
+ pktcSigDevCidMode is set to a value of 'dtAsETS' or
1499
+ 'lrAsETS'.
1500
+
1501
+ The following table defines the default values
1502
+ for this MIB object, depending on the signal type
1503
+ (pktcSigDevCidMode), and MUST be followed:
1504
+
1505
+ Value of pktcSigDevCidMode Default value
1506
+
1507
+
1508
+ duringringingETS any value (not used)
1509
+ dtAsETS 50 ms
1510
+ rpAsETS any value (not used)
1511
+ lrAsETS 50 ms
1512
+ lrETS any value (not used)
1513
+
1514
+ An attempt to set this object while the value of
1515
+
1516
+
1517
+
1518
+ pktcSigDevCidMode is not 'dtAsETS' or 'lrAsETS' will
1519
+ result in an 'inconsistentValue' error.
1520
+
1521
+ The value of this MIB object MUST NOT persist across MTA
1522
+ reboots.""",
1523
+ "reference" :
1524
+ """ETSI-EN-300-659-1 Specification""",
1525
+ }, # scalar
1526
+ "pktcSigDevCidAfterRPAS" : {
1527
+ "nodetype" : "scalar",
1528
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1529
+ "oid" : "1.3.6.1.2.1.169.1.1.24",
1530
+ "status" : "current",
1531
+ "syntax" : {
1532
+ "type" : {
1533
+ "basetype" : "Unsigned32",
1534
+ "ranges" : [
1535
+ {
1536
+ "min" : "0",
1537
+ "max" : "0"
1538
+ },
1539
+ {
1540
+ "min" : "500",
1541
+ "max" : "800"
1542
+ },
1543
+ ],
1544
+ "range" : {
1545
+ "min" : "0",
1546
+ "max" : "800"
1547
+ },
1548
+ },
1549
+ },
1550
+ "access" : "readwrite",
1551
+ "default" : "650",
1552
+ "units" : "Milliseconds",
1553
+ "description" :
1554
+ """ This object specifies the delay between the end of the
1555
+ Ring Pulse Alert Signal (RP-AS) and the start of the
1556
+ transmission of the FSK or DTMF containing the caller id
1557
+ information. This MIB object is only used when
1558
+ pktcSigDevCidMode is set to a value of 'rpAsETS'.
1559
+ The following table defines the default values
1560
+ for this MIB object, depending on the signal type
1561
+ (pktcSigDevCidMode), and MUST be followed:
1562
+
1563
+ Value of pktcSigDevCidMode Default value
1564
+
1565
+ duringringingETS any value (not used)
1566
+ dtAsETS any value (not used)
1567
+ rpAsETS 650 ms
1568
+ lrAsETS any value (not used)
1569
+ lrETS any value (not used)
1570
+
1571
+ An attempt to set this object while the value of
1572
+ pktcSigDevCidMode is not 'rpAsETS' will result in an
1573
+ 'inconsistentValue' error.
1574
+
1575
+ The value of this MIB object MUST NOT persist across MTA
1576
+ reboots.""",
1577
+ "reference" :
1578
+ """ETSI-EN-300-659-1 Specification""",
1579
+ }, # scalar
1580
+ "pktcSigDevRingAfterCID" : {
1581
+ "nodetype" : "scalar",
1582
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1583
+ "oid" : "1.3.6.1.2.1.169.1.1.25",
1584
+ "status" : "current",
1585
+ "syntax" : {
1586
+ "type" : {
1587
+ "basetype" : "Unsigned32",
1588
+ "ranges" : [
1589
+ {
1590
+ "min" : "0",
1591
+ "max" : "0"
1592
+ },
1593
+ {
1594
+ "min" : "50",
1595
+ "max" : "500"
1596
+ },
1597
+ ],
1598
+ "range" : {
1599
+ "min" : "0",
1600
+ "max" : "500"
1601
+ },
1602
+ },
1603
+ },
1604
+ "access" : "readwrite",
1605
+ "default" : "250",
1606
+ "units" : "Milliseconds",
1607
+ "description" :
1608
+ """ This object specifies the delay between the end of the
1609
+ complete transmission of the FSK or DTMF containing the
1610
+ caller id information and the start of the first ring
1611
+ pattern. It is only used when pktcSigDevCidMode is
1612
+ set to a value of 'dtAsETS', 'rpAsETS', 'lrAsETS' or
1613
+ 'lrETS'.
1614
+
1615
+ The following table defines the default values
1616
+ for this MIB object, depending on the signal type
1617
+ (pktcSigDevCidMode), and MUST be followed:
1618
+
1619
+ Value of pktcSigDevCidMode Default value
1620
+
1621
+ duringringingETS any value (not used)
1622
+ dtAsETS 250 ms
1623
+ rpAsETS 250 ms
1624
+ lrAsETS 250 ms
1625
+ lrETS 250 ms
1626
+
1627
+ An attempt to set this object while the value of
1628
+ pktcSigDevCidMode is not 'dtAsETS', 'rpAsETS',
1629
+ 'lrAsETS', or 'lrETS' will result in an 'inconsistent
1630
+ value' error.
1631
+
1632
+ The value of this MIB object MUST NOT persist across MTA
1633
+ reboots.""",
1634
+ "reference" :
1635
+ """ETSI-EN-300-659-1 Specification""",
1636
+ }, # scalar
1637
+ "pktcSigDevCidDTASAfterLR" : {
1638
+ "nodetype" : "scalar",
1639
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1640
+ "oid" : "1.3.6.1.2.1.169.1.1.26",
1641
+ "status" : "current",
1642
+ "syntax" : {
1643
+ "type" : {
1644
+ "basetype" : "Unsigned32",
1645
+ "ranges" : [
1646
+ {
1647
+ "min" : "50",
1648
+ "max" : "655"
1649
+ },
1650
+ ],
1651
+ "range" : {
1652
+ "min" : "50",
1653
+ "max" : "655"
1654
+ },
1655
+ },
1656
+ },
1657
+ "access" : "readwrite",
1658
+ "default" : "250",
1659
+ "units" : "Milliseconds",
1660
+ "description" :
1661
+ """ This object specifies the delay between the end of the
1662
+ Line Reversal and the start of the Dual Tone Alert Signal
1663
+ (DT-AS). This object is only used when pktcSigDevCidMode
1664
+ is set to a value of 'lrAsETS'.
1665
+
1666
+ The following table defines the default values
1667
+ for this MIB object, depending on the signal type
1668
+ (pktcSigDevCidMode), and MUST be followed:
1669
+
1670
+
1671
+
1672
+
1673
+ Value of pktcSigDevCidMode Default value
1674
+
1675
+ duringringingETS any value (not used)
1676
+ dtAsETS any value (not used)
1677
+ rpAsETS any value (not used)
1678
+ lrAsETS 250 ms
1679
+ lrETS any value (not used)
1680
+
1681
+ An attempt to set this object while the value of
1682
+ pktcSigDevCidMode is not lrAsETS will result in an
1683
+ 'inconsistentValue' error.
1684
+
1685
+ The value of this MIB object MUST NOT persist across MTA
1686
+ reboots.""",
1687
+ "reference" :
1688
+ """ETSI-EN-300-659-1 Specification""",
1689
+ }, # scalar
1690
+ "pktcSigDevVmwiMode" : {
1691
+ "nodetype" : "scalar",
1692
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1693
+ "oid" : "1.3.6.1.2.1.169.1.1.27",
1694
+ "status" : "current",
1695
+ "syntax" : {
1696
+ "type" : {
1697
+ "basetype" : "Enumeration",
1698
+ "dtAsETS" : {
1699
+ "nodetype" : "namednumber",
1700
+ "number" : "1"
1701
+ },
1702
+ "rpAsETS" : {
1703
+ "nodetype" : "namednumber",
1704
+ "number" : "2"
1705
+ },
1706
+ "lrAsETS" : {
1707
+ "nodetype" : "namednumber",
1708
+ "number" : "3"
1709
+ },
1710
+ "osi" : {
1711
+ "nodetype" : "namednumber",
1712
+ "number" : "4"
1713
+ },
1714
+ "lrETS" : {
1715
+ "nodetype" : "namednumber",
1716
+ "number" : "5"
1717
+ },
1718
+ },
1719
+ },
1720
+ "access" : "readwrite",
1721
+ "default" : "rpAsETS",
1722
+ "description" :
1723
+ """ For visual message waiting indicator (VMWI),
1724
+ pktcSigDevVmwiMode selects the alerting signal method. For
1725
+ the dtAsETS, rpAsETS, lrAsETS, osi, and lrETS methods,
1726
+ the FSK containing the VMWI information is sent after an
1727
+ alerting signal.
1728
+
1729
+ For the dtAsETS method, the FSK, or DTMF
1730
+ is sent after the Dual Tone Alert Signal. For the rpAsETS
1731
+ method, the FSK or DTMF is sent after a Ring Pulse.
1732
+
1733
+ For the lrAsETS method, the Line Reversal occurs first,
1734
+ then the Dual Tone Alert Signal, and, finally, the FSK or
1735
+ DTMF is sent.
1736
+
1737
+ For the OSI method, the FSK or DTMF is sent after the Open
1738
+ Switching Interval.
1739
+
1740
+
1741
+
1742
+
1743
+ For the lrETS method, the Line Reversal occurs first,
1744
+ then the FSK or DTMF is sent.
1745
+
1746
+ The value of this MIB object MUST NOT persist across MTA
1747
+ reboots.""",
1748
+ }, # scalar
1749
+ "pktcSigDevVmwiAfterDTAS" : {
1750
+ "nodetype" : "scalar",
1751
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1752
+ "oid" : "1.3.6.1.2.1.169.1.1.28",
1753
+ "status" : "current",
1754
+ "syntax" : {
1755
+ "type" : {
1756
+ "basetype" : "Unsigned32",
1757
+ "ranges" : [
1758
+ {
1759
+ "min" : "0",
1760
+ "max" : "0"
1761
+ },
1762
+ {
1763
+ "min" : "45",
1764
+ "max" : "500"
1765
+ },
1766
+ ],
1767
+ "range" : {
1768
+ "min" : "0",
1769
+ "max" : "500"
1770
+ },
1771
+ },
1772
+ },
1773
+ "access" : "readwrite",
1774
+ "default" : "50",
1775
+ "units" : "Milliseconds",
1776
+ "description" :
1777
+ """ This object specifies the delay between the end of the
1778
+ Dual Tone Alert Signal (DT-AS) and the start of the
1779
+ transmission of the FSK or DTMF containing the VMWI
1780
+ information.
1781
+
1782
+ This object is only used when pktcSigDevVmwiMode is
1783
+ set to a value of 'dtAsETS' or 'lrAsETS'.
1784
+
1785
+ The following table defines the default values
1786
+ for this MIB object, depending on the signal type
1787
+ (pktcSigDevVmwiMode), and MUST be followed:
1788
+
1789
+ Value of pktcSigDevVmwiMode Default value
1790
+
1791
+ dtAsETS 50 ms
1792
+ rpAsETS any value (not used)
1793
+ lrAsETS 50 ms
1794
+ lrETS any value (not used)
1795
+
1796
+ An attempt to set this object while the value of
1797
+ pktcSigDevVmwiMode is not 'dtAsETS' or 'lrAsETS' will
1798
+ result in an 'inconsistentValue' error.
1799
+
1800
+ The value of this MIB object MUST NOT persist across MTA
1801
+ reboots.""",
1802
+ "reference" :
1803
+ """ETSI-EN-300-659-1 Specification""",
1804
+ }, # scalar
1805
+ "pktcSigDevVmwiAfterRPAS" : {
1806
+ "nodetype" : "scalar",
1807
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1808
+ "oid" : "1.3.6.1.2.1.169.1.1.29",
1809
+ "status" : "current",
1810
+ "syntax" : {
1811
+ "type" : {
1812
+ "basetype" : "Unsigned32",
1813
+ "ranges" : [
1814
+ {
1815
+ "min" : "0",
1816
+ "max" : "0"
1817
+ },
1818
+ {
1819
+ "min" : "500",
1820
+ "max" : "800"
1821
+ },
1822
+ ],
1823
+ "range" : {
1824
+ "min" : "0",
1825
+ "max" : "800"
1826
+ },
1827
+ },
1828
+ },
1829
+ "access" : "readwrite",
1830
+ "default" : "650",
1831
+ "units" : "Milliseconds",
1832
+ "description" :
1833
+ """ This object specifies the delay between the end of the
1834
+ Ring Pulse Alert Signal (RP-AS) and the start of the
1835
+ transmission of the FSK or DTMF containing the VMWI
1836
+ information.
1837
+
1838
+ This object is only used when pktcSigDevVmwiMode is
1839
+ set to a value of 'rpAsETS'.
1840
+
1841
+ The following table defines the default values
1842
+ for this MIB object, depending on the signal type
1843
+ (pktcSigDevVmwiMode), and MUST be followed:
1844
+
1845
+ Value of pktcSigDevVmwiMode Default value
1846
+
1847
+ dtAsETS any value (not used)
1848
+ rpAsETS 650 ms
1849
+ lrAsETS any value (not used)
1850
+ lrETS any value (not used)
1851
+
1852
+ An attempt to set this object while the value of
1853
+ pktcSigDevVmwiMode is not 'rpAsETS' will result in an
1854
+ 'inconsistentValue' error.
1855
+
1856
+ The value of this MIB object MUST NOT persist across MTA
1857
+ reboots.""",
1858
+ "reference" :
1859
+ """ETSI-EN-300-659-1 Specification""",
1860
+ }, # scalar
1861
+ "pktcSigDevVmwiDTASAfterLR" : {
1862
+ "nodetype" : "scalar",
1863
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1864
+ "oid" : "1.3.6.1.2.1.169.1.1.30",
1865
+ "status" : "current",
1866
+ "syntax" : {
1867
+ "type" : {
1868
+ "basetype" : "Unsigned32",
1869
+ "ranges" : [
1870
+ {
1871
+ "min" : "0",
1872
+ "max" : "0"
1873
+ },
1874
+ {
1875
+ "min" : "50",
1876
+ "max" : "655"
1877
+ },
1878
+ ],
1879
+ "range" : {
1880
+ "min" : "0",
1881
+ "max" : "655"
1882
+ },
1883
+ },
1884
+ },
1885
+ "access" : "readwrite",
1886
+ "default" : "250",
1887
+ "units" : "Milliseconds",
1888
+ "description" :
1889
+ """ This object specifies the delay between the end of the
1890
+ Line Reversal and the start of the Dual Tone Alert Signal
1891
+ (DT-AS) for VMWI information. This object is only used
1892
+ when pktcSigDevVmwiMode is set to a value of 'lrAsETS'.
1893
+
1894
+ The following table defines the default values
1895
+ for this MIB object, depending on the signal type
1896
+ (pktcSigDevVmwiMode), and MUST be followed:
1897
+
1898
+
1899
+
1900
+
1901
+ Value of pktcSigDevVmwiMode Default value
1902
+
1903
+ dtAsETS any value (not used)
1904
+ rpAsETS any value (not used)
1905
+ lrAsETS 250 ms
1906
+ lrETS any value (not used)
1907
+
1908
+ An attempt to set this object while the value of
1909
+ pktcSigDevVmwiMode is not 'lrAsETS' will result in an
1910
+ 'inconsistentValue' error.
1911
+
1912
+ The value of this MIB object MUST NOT persist across MTA
1913
+ reboots.""",
1914
+ "reference" :
1915
+ """ETSI-EN-300-659-1 Specification""",
1916
+ }, # scalar
1917
+ "pktcSigDevRingCadenceTable" : {
1918
+ "nodetype" : "table",
1919
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1920
+ "oid" : "1.3.6.1.2.1.169.1.1.31",
1921
+ "status" : "current",
1922
+ "description" :
1923
+ """Cadence rings are defined by the telco governing
1924
+ body for each country. The MTA must be able to support
1925
+ various ranges of cadence patterns and cadence periods.
1926
+ The MTA will be able to support country-specific
1927
+ provisioning of the cadence and idle period. Each
1928
+ cadence pattern will be assigned a unique value ranging
1929
+ from 0-127 (inclusive) corresponding to the value of x,
1930
+ where x is the value sent in the cadence ringing (cr)
1931
+ signal cr(x), requested per the appropriate NCS
1932
+ message, and defined in the E package. The MTA will derive
1933
+ the cadence periods from the ring cadence table entry, as
1934
+ provisioned by the customer. The MTA is allowed to provide
1935
+ appropriate default values for each of the ring cadences.
1936
+ This table only needs to be supported when the MTA
1937
+ implements the E package.""",
1938
+ "reference" :
1939
+ """ETSI-TS-101-909-4 Specification""",
1940
+ }, # table
1941
+ "pktcSigDevRingCadenceEntry" : {
1942
+ "nodetype" : "row",
1943
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1944
+ "oid" : "1.3.6.1.2.1.169.1.1.31.1",
1945
+ "status" : "current",
1946
+ "linkage" : [
1947
+ "pktcSigDevRingCadenceIndex",
1948
+ ],
1949
+ "description" :
1950
+ """ Each entry in this row corresponds to a ring cadence
1951
+ that is being supported by the device. The conceptual
1952
+ rows MUST NOT persist across MTA reboots.""",
1953
+ }, # row
1954
+ "pktcSigDevRingCadenceIndex" : {
1955
+ "nodetype" : "column",
1956
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1957
+ "oid" : "1.3.6.1.2.1.169.1.1.31.1.1",
1958
+ "status" : "current",
1959
+ "syntax" : {
1960
+ "type" : {
1961
+ "basetype" : "Unsigned32",
1962
+ "ranges" : [
1963
+ {
1964
+ "min" : "0",
1965
+ "max" : "127"
1966
+ },
1967
+ ],
1968
+ "range" : {
1969
+ "min" : "0",
1970
+ "max" : "127"
1971
+ },
1972
+ },
1973
+ },
1974
+ "access" : "noaccess",
1975
+ "description" :
1976
+ """ A unique value ranging from 0 to 127 that corresponds to the
1977
+ value sent by the LE based on country-specific cadences,
1978
+ one row per cadence cycle. In any given system
1979
+ implementation for a particular country, it is anticipated
1980
+ that a small number of ring cadences will be in use. Thus,
1981
+ this table most likely will not be populated to its full
1982
+ size.""",
1983
+ }, # column
1984
+ "pktcSigDevRingCadence" : {
1985
+ "nodetype" : "column",
1986
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1987
+ "oid" : "1.3.6.1.2.1.169.1.1.31.1.2",
1988
+ "status" : "current",
1989
+ "syntax" : {
1990
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcRingCadence"},
1991
+ },
1992
+ "access" : "readwrite",
1993
+ "description" :
1994
+ """This is the Ring Cadence.""",
1995
+ }, # column
1996
+ "pktcSigDevToneTable" : {
1997
+ "nodetype" : "table",
1998
+ "moduleName" : "PKTC-IETF-SIG-MIB",
1999
+ "oid" : "1.3.6.1.2.1.169.1.1.32",
2000
+ "status" : "current",
2001
+ "description" :
2002
+ """ The Tone Table defines the composition of tones and
2003
+ various tone operations.
2004
+
2005
+ The definition of the tones callWaiting1 through
2006
+ callWaiting4 in this table MUST only contain the
2007
+ audible tone itself; the delay between tones or the value
2008
+ of the tone repeat count are not applicable for the call
2009
+ waiting tones.
2010
+
2011
+
2012
+
2013
+
2014
+ The delay between tones or the repeat count is controlled
2015
+ by the objects pktcSigEndPntConfigCallWaitingDelay and
2016
+ pktcSigEndPntConfigCallWaitingMaxRep. If the
2017
+ pktcSigDevToneType is set to either of the values
2018
+ callWaiting1, callWaiting2, callWaiting3, or callWaiting4,
2019
+ then the value of the pktcSigDevToneWholeToneRepeatCount
2020
+ object indicates that the particular frequency group is
2021
+ applicable, as a repeatable part of the tone, based on the
2022
+ value of the MIB object
2023
+ pktcSigDevToneWholeToneRepeatCount.
2024
+
2025
+ The MTA MUST make sure that, after the provisioning
2026
+ cycle, the table is fully populated (i.e., for each
2027
+ possible index, an entry MUST be defined) using
2028
+ reasonable defaults for each row that was not defined
2029
+ by the provisioning information delivered via MTA
2030
+ Configuration.
2031
+
2032
+ The frequency composition of each tone is defined by the
2033
+ pktcSigDevMultiFreqToneTable. For each tone type defined
2034
+ in pktcSigDevToneTable, the MTA MUST populate at least
2035
+ one entry in the pktcSigDevMultiFreqToneTable.
2036
+
2037
+ For each particular value of pktcSigDevToneType, the
2038
+ pktcSigDevToneTable table can define non-repeating and
2039
+ repeating groups of the frequencies defined by the
2040
+ pktcSigDevMultiFreqToneTable, such that each group is
2041
+ represented by the set of the consecutive rows
2042
+ (frequency group) in the pktcSigDevMultiFreqToneTable.
2043
+
2044
+ Objects in this table do not persist across MTA reboots.
2045
+ For tones with multiple frequencies refer to the MIB table
2046
+ pktcSigDevMultiFreqToneTable.""",
2047
+ "reference" :
2048
+ """PacketCable NCS Specification, ETSI-TS-101-909-4
2049
+ Specification.""",
2050
+ }, # table
2051
+ "pktcSigDevToneEntry" : {
2052
+ "nodetype" : "row",
2053
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2054
+ "oid" : "1.3.6.1.2.1.169.1.1.32.1",
2055
+ "status" : "current",
2056
+ "linkage" : [
2057
+ "pktcSigDevToneType",
2058
+ "pktcSigDevToneFreqGroup",
2059
+ ],
2060
+ "description" :
2061
+ """ The different tone types that can be provisioned based on
2062
+ country-specific needs.
2063
+
2064
+ Each entry contains the tone generation parameters for
2065
+ a specific frequency group of the specific Tone Type.
2066
+
2067
+
2068
+
2069
+ The different parameters can be provisioned via MTA
2070
+ configuration based on country specific needs.
2071
+ An MTA MUST populate all entries of this table for each
2072
+ tone type.""",
2073
+ }, # row
2074
+ "pktcSigDevToneType" : {
2075
+ "nodetype" : "column",
2076
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2077
+ "oid" : "1.3.6.1.2.1.169.1.1.32.1.1",
2078
+ "status" : "current",
2079
+ "syntax" : {
2080
+ "type" : {
2081
+ "basetype" : "Enumeration",
2082
+ "busy" : {
2083
+ "nodetype" : "namednumber",
2084
+ "number" : "1"
2085
+ },
2086
+ "confirmation" : {
2087
+ "nodetype" : "namednumber",
2088
+ "number" : "2"
2089
+ },
2090
+ "dial" : {
2091
+ "nodetype" : "namednumber",
2092
+ "number" : "3"
2093
+ },
2094
+ "messageWaiting" : {
2095
+ "nodetype" : "namednumber",
2096
+ "number" : "4"
2097
+ },
2098
+ "offHookWarning" : {
2099
+ "nodetype" : "namednumber",
2100
+ "number" : "5"
2101
+ },
2102
+ "ringBack" : {
2103
+ "nodetype" : "namednumber",
2104
+ "number" : "6"
2105
+ },
2106
+ "reOrder" : {
2107
+ "nodetype" : "namednumber",
2108
+ "number" : "7"
2109
+ },
2110
+ "stutterdial" : {
2111
+ "nodetype" : "namednumber",
2112
+ "number" : "8"
2113
+ },
2114
+ "callWaiting1" : {
2115
+ "nodetype" : "namednumber",
2116
+ "number" : "9"
2117
+ },
2118
+ "callWaiting2" : {
2119
+ "nodetype" : "namednumber",
2120
+ "number" : "10"
2121
+ },
2122
+ "callWaiting3" : {
2123
+ "nodetype" : "namednumber",
2124
+ "number" : "11"
2125
+ },
2126
+ "callWaiting4" : {
2127
+ "nodetype" : "namednumber",
2128
+ "number" : "12"
2129
+ },
2130
+ "alertingSignal" : {
2131
+ "nodetype" : "namednumber",
2132
+ "number" : "13"
2133
+ },
2134
+ "specialDial" : {
2135
+ "nodetype" : "namednumber",
2136
+ "number" : "14"
2137
+ },
2138
+ "specialInfo" : {
2139
+ "nodetype" : "namednumber",
2140
+ "number" : "15"
2141
+ },
2142
+ "release" : {
2143
+ "nodetype" : "namednumber",
2144
+ "number" : "16"
2145
+ },
2146
+ "congestion" : {
2147
+ "nodetype" : "namednumber",
2148
+ "number" : "17"
2149
+ },
2150
+ "userDefined1" : {
2151
+ "nodetype" : "namednumber",
2152
+ "number" : "18"
2153
+ },
2154
+ "userDefined2" : {
2155
+ "nodetype" : "namednumber",
2156
+ "number" : "19"
2157
+ },
2158
+ "userDefined3" : {
2159
+ "nodetype" : "namednumber",
2160
+ "number" : "20"
2161
+ },
2162
+ "userDefined4" : {
2163
+ "nodetype" : "namednumber",
2164
+ "number" : "21"
2165
+ },
2166
+ },
2167
+ },
2168
+ "access" : "noaccess",
2169
+ "description" :
2170
+ """A unique value that will correspond to the different
2171
+ tone types. These tones can be provisioned based on
2172
+ country-specific needs. This object defines the type
2173
+ of tone being accessed.
2174
+
2175
+ The alertingSignal, specialDial, specialInfo, release,
2176
+
2177
+
2178
+
2179
+ congestion, userDefined1, userDefined2, userDefined3,
2180
+ and userDefined4 tone types are used in
2181
+ the E line package.""",
2182
+ }, # column
2183
+ "pktcSigDevToneFreqGroup" : {
2184
+ "nodetype" : "column",
2185
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2186
+ "oid" : "1.3.6.1.2.1.169.1.1.32.1.2",
2187
+ "status" : "current",
2188
+ "syntax" : {
2189
+ "type" : {
2190
+ "basetype" : "Unsigned32",
2191
+ "ranges" : [
2192
+ {
2193
+ "min" : "1",
2194
+ "max" : "4"
2195
+ },
2196
+ ],
2197
+ "range" : {
2198
+ "min" : "1",
2199
+ "max" : "4"
2200
+ },
2201
+ },
2202
+ },
2203
+ "access" : "noaccess",
2204
+ "description" :
2205
+ """This MIB object represents the Tone Sequence reference
2206
+ of a multi-sequence tone.""",
2207
+ }, # column
2208
+ "pktcSigDevToneFreqCounter" : {
2209
+ "nodetype" : "column",
2210
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2211
+ "oid" : "1.3.6.1.2.1.169.1.1.32.1.3",
2212
+ "status" : "current",
2213
+ "syntax" : {
2214
+ "type" : {
2215
+ "basetype" : "Unsigned32",
2216
+ "ranges" : [
2217
+ {
2218
+ "min" : "1",
2219
+ "max" : "8"
2220
+ },
2221
+ ],
2222
+ "range" : {
2223
+ "min" : "1",
2224
+ "max" : "8"
2225
+ },
2226
+ },
2227
+ },
2228
+ "access" : "readonly",
2229
+ "description" :
2230
+ """This MIB object represents the number of consecutive
2231
+ multi-frequency tones for the particular tone type in
2232
+ the multi-frequency table (pktcSigDevMultiFreqToneTable).
2233
+
2234
+ Such a sequence of the consecutive multi-frequency tones
2235
+ forms the tone group for the particular tone type in the
2236
+ pktcSigDevToneTable.""",
2237
+ }, # column
2238
+ "pktcSigDevToneWholeToneRepeatCount" : {
2239
+ "nodetype" : "column",
2240
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2241
+ "oid" : "1.3.6.1.2.1.169.1.1.32.1.4",
2242
+ "status" : "current",
2243
+ "syntax" : {
2244
+ "type" : {
2245
+ "basetype" : "Unsigned32",
2246
+ "ranges" : [
2247
+ {
2248
+ "min" : "0",
2249
+ "max" : "5000"
2250
+ },
2251
+ ],
2252
+ "range" : {
2253
+ "min" : "0",
2254
+ "max" : "5000"
2255
+ },
2256
+ },
2257
+ },
2258
+ "access" : "readonly",
2259
+ "description" :
2260
+ """This is the repeat count, which signifies how many times
2261
+ to repeat the entire on-off cadence sequence. Setting this
2262
+ object may result in a cadence duration longer or shorter
2263
+ than the overall signal duration specified by the time out
2264
+ (TO) object for a particular signal. If the repeat count
2265
+ results in a longer tone duration than the signal duration
2266
+ specified by the TO, the tone duration defined by the
2267
+ TO object for a particular signal always represents
2268
+ the overall signal duration for a tone. In this case, the
2269
+ tone duration repeat count will not be fully exercised, and
2270
+ the desired tone duration will be truncated per the TO
2271
+ setting. If the repeat count results in a shorter tone
2272
+ duration than the signal duration specified by the TO, the
2273
+ tone duration defined by the repeat count takes precedence
2274
+ over the TO and will end the signal event. In this case,
2275
+
2276
+
2277
+
2278
+ the TO represents a time not to be exceeded for the signal.
2279
+ It is recommended to ensure proper telephony signaling so that
2280
+ the TO duration setting should always be longer than the
2281
+ desired repeat count-time duration.""",
2282
+ }, # column
2283
+ "pktcSigDevToneSteady" : {
2284
+ "nodetype" : "column",
2285
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2286
+ "oid" : "1.3.6.1.2.1.169.1.1.32.1.5",
2287
+ "status" : "current",
2288
+ "syntax" : {
2289
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
2290
+ },
2291
+ "access" : "readonly",
2292
+ "description" :
2293
+ """This MIB object represents the steady tone status. A value
2294
+ of 'true(1)' indicates that the steady tone is applied, and
2295
+ a value of 'false(2)' indicates otherwise.
2296
+ Devices must play out the on-off cadence sequence for
2297
+ the number of times indicated by the MIB object
2298
+ 'pktcSigDevToneWholeToneRepeatCount' prior to applying the
2299
+ last tone steadily, indefinitely. If the MIB table
2300
+ 'pktcSigDevToneTable' contains multiple rows with this
2301
+ Object set to a value of 'true(1)', the steady tone is
2302
+ applied to the last repeating frequency group of the tone.
2303
+
2304
+ Setting this MIB object may result in a tone duration that is
2305
+ longer or shorter than the overall signal duration
2306
+ specified by the time out (TO) MIB object for a particular
2307
+ signal. If the repeat count results in a longer tone
2308
+ duration than the signal duration specified by the TO, the
2309
+ tone duration defined by the TO object for a particular
2310
+ signal always represents the overall signal duration for a
2311
+ tone. In this case, the tone duration repeat count will
2312
+ not be fully exercised, and the desired tone duration will
2313
+ be truncated per the TO setting. If the repeat count
2314
+ results in a shorter tone duration than the signal duration
2315
+ specified by the TO, the tone duration defined by the
2316
+ repeat count takes precedence over the TO and will end the
2317
+ signal event. In this case, the TO represents a time not to
2318
+ be exceeded for the signal.
2319
+
2320
+ It is recommended to ensure proper telephony signaling that
2321
+ The TO duration setting should always be longer than the
2322
+ desired repeat count-time duration, plus the desired maximum
2323
+ steady tone period.""",
2324
+ }, # column
2325
+ "pktcSigDevMultiFreqToneTable" : {
2326
+ "nodetype" : "table",
2327
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2328
+ "oid" : "1.3.6.1.2.1.169.1.1.33",
2329
+ "status" : "current",
2330
+ "description" :
2331
+ """ This MIB table defines the characteristics of tones
2332
+ with multiple frequencies. The constraints imposed
2333
+ on the tones by the MIB table pktcSigDevToneTable
2334
+ need to be considered for MIB objects in this table
2335
+ as well.
2336
+
2337
+ The MTA MUST populate the corresponding row(s)
2338
+ of the pktcSigDevMultiFreqToneTable for each tone
2339
+ defined in the pktcSigDevToneTable.
2340
+
2341
+ The contents of the table may be provisioned via
2342
+ MTA configuration.""",
2343
+ "reference" :
2344
+ """PacketCable NCS Specification, ETSI-TS-101-909-4
2345
+ Specification.""",
2346
+ }, # table
2347
+ "pktcSigDevMultiFreqToneEntry" : {
2348
+ "nodetype" : "row",
2349
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2350
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1",
2351
+ "status" : "current",
2352
+ "linkage" : [
2353
+ "pktcSigDevToneType",
2354
+ "pktcSigDevToneNumber",
2355
+ ],
2356
+ "description" :
2357
+ """ The different tone types with multiple frequencies
2358
+ that can be provisioned based on country-specific
2359
+ needs.""",
2360
+ }, # row
2361
+ "pktcSigDevToneNumber" : {
2362
+ "nodetype" : "column",
2363
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2364
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.1",
2365
+ "status" : "current",
2366
+ "syntax" : {
2367
+ "type" : {
2368
+ "basetype" : "Unsigned32",
2369
+ "ranges" : [
2370
+ {
2371
+ "min" : "1",
2372
+ "max" : "8"
2373
+ },
2374
+ ],
2375
+ "range" : {
2376
+ "min" : "1",
2377
+ "max" : "8"
2378
+ },
2379
+ },
2380
+ },
2381
+ "access" : "noaccess",
2382
+ "description" :
2383
+ """This MIB object represents the frequency reference
2384
+ of a multi-frequency tone.""",
2385
+ }, # column
2386
+ "pktcSigDevToneFirstFreqValue" : {
2387
+ "nodetype" : "column",
2388
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2389
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.2",
2390
+ "status" : "current",
2391
+ "syntax" : {
2392
+ "type" : {
2393
+ "basetype" : "Unsigned32",
2394
+ "ranges" : [
2395
+ {
2396
+ "min" : "0",
2397
+ "max" : "4000"
2398
+ },
2399
+ ],
2400
+ "range" : {
2401
+ "min" : "0",
2402
+ "max" : "4000"
2403
+ },
2404
+ },
2405
+ },
2406
+ "access" : "readonly",
2407
+ "description" :
2408
+ """This MIB object represents the value of the first
2409
+ frequency of a tone type. A value of zero implies
2410
+ absence of the referenced frequency.""",
2411
+ }, # column
2412
+ "pktcSigDevToneSecondFreqValue" : {
2413
+ "nodetype" : "column",
2414
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2415
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.3",
2416
+ "status" : "current",
2417
+ "syntax" : {
2418
+ "type" : {
2419
+ "basetype" : "Unsigned32",
2420
+ "ranges" : [
2421
+ {
2422
+ "min" : "0",
2423
+ "max" : "4000"
2424
+ },
2425
+ ],
2426
+ "range" : {
2427
+ "min" : "0",
2428
+ "max" : "4000"
2429
+ },
2430
+ },
2431
+ },
2432
+ "access" : "readonly",
2433
+ "description" :
2434
+ """This MIB object represents the value of the second
2435
+ frequency of a tone type. A value of zero implies
2436
+ absence of the referenced frequency.""",
2437
+ }, # column
2438
+ "pktcSigDevToneThirdFreqValue" : {
2439
+ "nodetype" : "column",
2440
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2441
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.4",
2442
+ "status" : "current",
2443
+ "syntax" : {
2444
+ "type" : {
2445
+ "basetype" : "Unsigned32",
2446
+ "ranges" : [
2447
+ {
2448
+ "min" : "0",
2449
+ "max" : "4000"
2450
+ },
2451
+ ],
2452
+ "range" : {
2453
+ "min" : "0",
2454
+ "max" : "4000"
2455
+ },
2456
+ },
2457
+ },
2458
+ "access" : "readonly",
2459
+ "description" :
2460
+ """This MIB object represents the value of the third
2461
+ frequency of a tone type. A value of zero implies
2462
+ absence of the referenced frequency.""",
2463
+ }, # column
2464
+ "pktcSigDevToneFourthFreqValue" : {
2465
+ "nodetype" : "column",
2466
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2467
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.5",
2468
+ "status" : "current",
2469
+ "syntax" : {
2470
+ "type" : {
2471
+ "basetype" : "Unsigned32",
2472
+ "ranges" : [
2473
+ {
2474
+ "min" : "0",
2475
+ "max" : "4000"
2476
+ },
2477
+ ],
2478
+ "range" : {
2479
+ "min" : "0",
2480
+ "max" : "4000"
2481
+ },
2482
+ },
2483
+ },
2484
+ "access" : "readonly",
2485
+ "description" :
2486
+ """This MIB object represents the value of the fourth
2487
+ frequency of a tone type. A value of zero implies
2488
+ absence of the referenced frequency.""",
2489
+ }, # column
2490
+ "pktcSigDevToneFreqMode" : {
2491
+ "nodetype" : "column",
2492
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2493
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.6",
2494
+ "status" : "current",
2495
+ "syntax" : {
2496
+ "type" : {
2497
+ "basetype" : "Enumeration",
2498
+ "firstModulatedBySecond" : {
2499
+ "nodetype" : "namednumber",
2500
+ "number" : "1"
2501
+ },
2502
+ "summation" : {
2503
+ "nodetype" : "namednumber",
2504
+ "number" : "2"
2505
+ },
2506
+ },
2507
+ },
2508
+ "access" : "readonly",
2509
+ "description" :
2510
+ """This MIB object provides directive on the
2511
+ modulation or summation of the frequencies
2512
+ involved in the tone.
2513
+
2514
+ It is to be noted that while summation can
2515
+ be done without any constraint on the number
2516
+ of frequencies, the modulation (amplitude)
2517
+ holds good only when there are two frequencies
2518
+ (first and second).
2519
+
2520
+ Thus:
2521
+ - If the mode is set to a value of
2522
+ 'firstModulatedBySecond(1)', the first frequency
2523
+ MUST be modulated by the second, and the remaining
2524
+ frequencies (third and fourth) ignored. The
2525
+ percentage of amplitude modulation to be applied
2526
+ is defined by the MIB object
2527
+ pktcSigDevToneFreqAmpModePrtg.
2528
+
2529
+ - If the mode is set to a value of
2530
+ 'summation(2)', all the frequencies MUST be
2531
+ summed without any modulation.""",
2532
+ }, # column
2533
+ "pktcSigDevToneFreqAmpModePrtg" : {
2534
+ "nodetype" : "column",
2535
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2536
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.7",
2537
+ "status" : "current",
2538
+ "syntax" : {
2539
+ "type" : {
2540
+ "basetype" : "Unsigned32",
2541
+ "ranges" : [
2542
+ {
2543
+ "min" : "0",
2544
+ "max" : "100"
2545
+ },
2546
+ ],
2547
+ "range" : {
2548
+ "min" : "0",
2549
+ "max" : "100"
2550
+ },
2551
+ },
2552
+ },
2553
+ "access" : "readonly",
2554
+ "description" :
2555
+ """This MIB object represents the percentage of amplitude
2556
+ modulation applied to the second frequency
2557
+ when the MIB object pktcSigDevToneFreqMode is
2558
+ set to a value of 'firstModulatedBySecond (1)'.
2559
+
2560
+ If the MIB object pktcSigDevToneFreqMode is set to
2561
+ value of 'summation (2)', then this MIB object MUST be
2562
+ ignored.""",
2563
+ }, # column
2564
+ "pktcSigDevToneDbLevel" : {
2565
+ "nodetype" : "column",
2566
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2567
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.8",
2568
+ "status" : "current",
2569
+ "syntax" : {
2570
+ "type" : {
2571
+ "basetype" : "Integer32",
2572
+ "parent module" : {
2573
+ "name" : "PKTC-IETF-SIG-MIB",
2574
+ "type" : "TenthdBm",
2575
+ },
2576
+ "ranges" : [
2577
+ {
2578
+ "min" : "-250",
2579
+ "max" : "-110"
2580
+ },
2581
+ ],
2582
+ "range" : {
2583
+ "min" : "-250",
2584
+ "max" : "-110"
2585
+ },
2586
+ },
2587
+ },
2588
+ "access" : "readonly",
2589
+ "default" : "-120",
2590
+ "units" : "1/10 of a dBm",
2591
+ "description" :
2592
+ """This MIB object contains the decibel level for each
2593
+ analog signal (tone) that is locally generated
2594
+ (versus in-band supervisory tones) and sourced to
2595
+ the a-b terminals (TE connection point). Each tone
2596
+ in itself may consist of multiple frequencies, as
2597
+ defined by the MIB table pktcSigDevMultiFreqToneTable.
2598
+
2599
+ This MIB object reflects the desired level at
2600
+ the Telco (POTS) a-b (T/R) terminals, including the
2601
+ effect of any MTA receiver gain (loss). This is required
2602
+ so that locally generated tones are consistent with
2603
+ remotely generated in-band tones at the a-b terminals,
2604
+ consistent with user expectations.
2605
+
2606
+ This MIB object must be set for each tone.
2607
+ When tones are formed by combining multi-frequencies,
2608
+ the level of each frequency shall be set so as to result
2609
+ in the tone level specified in this object at the a-b
2610
+ (T/R) terminals.
2611
+
2612
+ The wide range of levels for this Object is required
2613
+ to provide signal-generator levels across the wide
2614
+ range of gains (losses) -- but does not imply the entire
2615
+ range is to be achievable given the range of gains (losses)
2616
+ in the MTA.""",
2617
+ }, # column
2618
+ "pktcSigDevToneFreqOnDuration" : {
2619
+ "nodetype" : "column",
2620
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2621
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.9",
2622
+ "status" : "current",
2623
+ "syntax" : {
2624
+ "type" : {
2625
+ "basetype" : "Unsigned32",
2626
+ "ranges" : [
2627
+ {
2628
+ "min" : "0",
2629
+ "max" : "5000"
2630
+ },
2631
+ ],
2632
+ "range" : {
2633
+ "min" : "0",
2634
+ "max" : "5000"
2635
+ },
2636
+ },
2637
+ },
2638
+ "access" : "readonly",
2639
+ "units" : "milliseconds",
2640
+ "description" :
2641
+ """This MIB object represents the duration for which the
2642
+ frequency reference corresponding to the tone type
2643
+ is turned on.""",
2644
+ }, # column
2645
+ "pktcSigDevToneFreqOffDuration" : {
2646
+ "nodetype" : "column",
2647
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2648
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.10",
2649
+ "status" : "current",
2650
+ "syntax" : {
2651
+ "type" : {
2652
+ "basetype" : "Unsigned32",
2653
+ "ranges" : [
2654
+ {
2655
+ "min" : "0",
2656
+ "max" : "5000"
2657
+ },
2658
+ ],
2659
+ "range" : {
2660
+ "min" : "0",
2661
+ "max" : "5000"
2662
+ },
2663
+ },
2664
+ },
2665
+ "access" : "readonly",
2666
+ "units" : "milliseconds",
2667
+ "description" :
2668
+ """This MIB object represents the duration for which the
2669
+
2670
+
2671
+
2672
+ frequency reference corresponding to the tone type
2673
+ is turned off.""",
2674
+ }, # column
2675
+ "pktcSigDevToneFreqRepeatCount" : {
2676
+ "nodetype" : "column",
2677
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2678
+ "oid" : "1.3.6.1.2.1.169.1.1.33.1.11",
2679
+ "status" : "current",
2680
+ "syntax" : {
2681
+ "type" : {
2682
+ "basetype" : "Unsigned32",
2683
+ "ranges" : [
2684
+ {
2685
+ "min" : "0",
2686
+ "max" : "5000"
2687
+ },
2688
+ ],
2689
+ "range" : {
2690
+ "min" : "0",
2691
+ "max" : "5000"
2692
+ },
2693
+ },
2694
+ },
2695
+ "access" : "readonly",
2696
+ "description" :
2697
+ """This MIB object indicates the number of times
2698
+ to repeat the cadence cycle represented by the
2699
+ on/off durations (refer to the MIB objects
2700
+ pktcSigDevToneFreqOnDuration and
2701
+ pktcSigDevToneFreqOffDuration).
2702
+
2703
+ Setting this object may result in a tone duration that is
2704
+ longer or shorter than the overall signal duration
2705
+ specified by the time out (TO) object for the
2706
+ corresponding tone type. If the value of this MIB
2707
+ Object indicates a longer duration than that
2708
+ specified by the TO, the latter overrules the former,
2709
+ and the desired tone duration will be truncated according
2710
+ to the TO.
2711
+
2712
+ However, if the repeat count results in a shorter
2713
+ tone duration than the signal duration specified by
2714
+ the TO, the tone duration defined by the repeat count
2715
+ takes precedence over the TO and will end the signal
2716
+ event. In this case, the TO represents a time not to
2717
+ be exceeded for the signal. It is recommended, to
2718
+ ensure proper telephony signaling, that the TO
2719
+ duration setting should always be longer than the
2720
+ desired repeat count-time duration. A value of zero
2721
+ means the tone sequence is to be played once but not
2722
+ repeated.""",
2723
+ }, # column
2724
+ "pktcSigDevCidDelayAfterLR" : {
2725
+ "nodetype" : "scalar",
2726
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2727
+ "oid" : "1.3.6.1.2.1.169.1.1.34",
2728
+ "status" : "current",
2729
+ "syntax" : {
2730
+ "type" : {
2731
+ "basetype" : "Unsigned32",
2732
+ "ranges" : [
2733
+ {
2734
+ "min" : "300",
2735
+ "max" : "800"
2736
+ },
2737
+ ],
2738
+ "range" : {
2739
+ "min" : "300",
2740
+ "max" : "800"
2741
+ },
2742
+ },
2743
+ },
2744
+ "access" : "readwrite",
2745
+ "default" : "400",
2746
+ "units" : "Milliseconds",
2747
+ "description" :
2748
+ """This object specifies the delay between the end of the
2749
+ Line Reversal and the start of the FSK or DTMF signal.
2750
+ This MIB object is used only when pktcSigDevCidMode is
2751
+ set to a value of 'lrETS'. This timing has a range of
2752
+ 300 to 800 ms.
2753
+
2754
+
2755
+
2756
+ The following table defines the default values
2757
+ for this MIB object, depending on the signal type
2758
+ (pktcSigDevCidMode), and MUST be followed:
2759
+
2760
+ Value of pktcSigDevCidMode Default value
2761
+
2762
+ duringringingETS any value (not used)
2763
+ dtAsETS any value (not used)
2764
+ rpAsETS any value (not used)
2765
+ lrAsETS any value (not used)
2766
+ lrETS 400
2767
+
2768
+ An attempt to set this object while the value of
2769
+ pktcSigDevCidMode is not set to a value of 'lrETS' will
2770
+ result in an 'inconsistentValue' error.
2771
+
2772
+ The value of this MIB object MUST NOT persist across MTA
2773
+ reboots.""",
2774
+ }, # scalar
2775
+ "pktcSigDevCidDtmfStartCode" : {
2776
+ "nodetype" : "scalar",
2777
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2778
+ "oid" : "1.3.6.1.2.1.169.1.1.35",
2779
+ "status" : "current",
2780
+ "syntax" : {
2781
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "DtmfCode"},
2782
+ },
2783
+ "access" : "readwrite",
2784
+ "default" : "dtmfcodeA",
2785
+ "description" :
2786
+ """This object identifies optional start codes used when
2787
+ the MIB object pktcSigDevCidSigProtocol is set
2788
+ to a value of 'dtmf(2)'.
2789
+
2790
+ Different countries define different caller id signaling
2791
+ codes to support caller identification. When Dual-Tone
2792
+ Multi-Frequency (DTMF) is used, the caller id digits are
2793
+ preceded by a 'start code' digit, followed by the digit
2794
+ transmission sequence <S1>...<Sn> (where Sx represents
2795
+ the digits 0-9), and terminated by the 'end code' digit.
2796
+
2797
+ For example,
2798
+ <A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
2799
+ The start code for calling number delivery may be DTMF
2800
+ 'A' or 'D'. The start code for redirecting a number may be
2801
+ DTMF 'D'. The DTMF code 'B' may be sent by the network
2802
+ as a start code for the transfer of information values,
2803
+ through which special events can be indicated to the
2804
+ user. In some countries, the '*' or '#' may be used
2805
+ instead of 'A', 'B', 'C', or 'D'.
2806
+
2807
+ The value of this MIB object MUST NOT persist across MTA
2808
+
2809
+
2810
+
2811
+ reboots.""",
2812
+ "reference" :
2813
+ """ETSI-EN-300-659-1 specification""",
2814
+ }, # scalar
2815
+ "pktcSigDevCidDtmfEndCode" : {
2816
+ "nodetype" : "scalar",
2817
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2818
+ "oid" : "1.3.6.1.2.1.169.1.1.36",
2819
+ "status" : "current",
2820
+ "syntax" : {
2821
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "DtmfCode"},
2822
+ },
2823
+ "access" : "readwrite",
2824
+ "default" : "dtmfcodeC",
2825
+ "description" :
2826
+ """This object identifies optional end codes used when the
2827
+ pktcSigDevCidSigProtocol is set to a value of
2828
+ 'dtmf(2)'.
2829
+
2830
+ Different countries define different caller id signaling
2831
+ protocols to support caller identification. When
2832
+ Dual-Tone Multi-Frequency (DTMF) is used, the caller id
2833
+ digits are preceded by a 'start code' digit, followed by
2834
+ the digit transmission sequence <S1>...<Sn> (where Sx
2835
+ represents the digits 0-9), and terminated by the 'end
2836
+ code' digit.
2837
+
2838
+ For example,
2839
+ <A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
2840
+
2841
+ The DTMF code 'C' may be sent by the network as an
2842
+ end code for the transfer of information values, through
2843
+ which special events can be indicated to the user. In
2844
+ some countries, the '*' or '#' may be used instead of
2845
+ 'A', 'B', 'C', or 'D'.
2846
+
2847
+ The value of this MIB object MUST NOT persist across MTA
2848
+ reboots.""",
2849
+ "reference" :
2850
+ """ETSI-EN-300-659-1 specification""",
2851
+ }, # scalar
2852
+ "pktcSigDevVmwiSigProtocol" : {
2853
+ "nodetype" : "scalar",
2854
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2855
+ "oid" : "1.3.6.1.2.1.169.1.1.37",
2856
+ "status" : "current",
2857
+ "syntax" : {
2858
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "PktcSubscriberSideSigProtocol"},
2859
+ },
2860
+ "access" : "readwrite",
2861
+ "default" : "fsk",
2862
+ "description" :
2863
+ """This object identifies the subscriber line protocol used
2864
+ for signaling the information on Visual Message Waiting
2865
+ Indicator (VMWI). Different countries define different
2866
+ VMWI signaling protocols to support VMWI service.
2867
+
2868
+
2869
+
2870
+ Frequency shift keying (FSK) is most commonly used.
2871
+ DTMF is an alternative.
2872
+
2873
+ The value of this MIB object MUST NOT persist across MTA
2874
+ reboots.""",
2875
+ }, # scalar
2876
+ "pktcSigDevVmwiDelayAfterLR" : {
2877
+ "nodetype" : "scalar",
2878
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2879
+ "oid" : "1.3.6.1.2.1.169.1.1.38",
2880
+ "status" : "current",
2881
+ "syntax" : {
2882
+ "type" : {
2883
+ "basetype" : "Unsigned32",
2884
+ "ranges" : [
2885
+ {
2886
+ "min" : "0",
2887
+ "max" : "0"
2888
+ },
2889
+ {
2890
+ "min" : "300",
2891
+ "max" : "800"
2892
+ },
2893
+ ],
2894
+ "range" : {
2895
+ "min" : "0",
2896
+ "max" : "800"
2897
+ },
2898
+ },
2899
+ },
2900
+ "access" : "readwrite",
2901
+ "default" : "400",
2902
+ "units" : "Milliseconds",
2903
+ "description" :
2904
+ """This object specifies the delay between the end of the
2905
+ Line Reversal and the start of the FSK or DTMF signal.
2906
+ This object is only used when pktcSigDevVmwiMode is
2907
+ set to a value of 'lrETS'.
2908
+ This timing has a range of 300 to 800 ms.
2909
+
2910
+ The following table defines the default values
2911
+ for this MIB object, depending on the signal type
2912
+ (pktcSigDevVmwiMode), and MUST be followed:
2913
+
2914
+ Value of pktcSigDevVmwiMode Default value
2915
+
2916
+ duringringingETS any value (not used)
2917
+ dtAsETS any value (not used)
2918
+ rpAsETS any value (not used)
2919
+ lrAsETS any value (not used)
2920
+ lrETS 400
2921
+
2922
+ An attempt to set this object while the value of
2923
+ pktcSigDevVmwiMode is not 'lrETS' will result in an
2924
+ 'inconsistentValue' error.
2925
+
2926
+ The value of this MIB object MUST NOT persist across MTA
2927
+ reboots.""",
2928
+ }, # scalar
2929
+ "pktcSigDevVmwiDtmfStartCode" : {
2930
+ "nodetype" : "scalar",
2931
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2932
+ "oid" : "1.3.6.1.2.1.169.1.1.39",
2933
+ "status" : "current",
2934
+ "syntax" : {
2935
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "DtmfCode"},
2936
+ },
2937
+ "access" : "readwrite",
2938
+ "default" : "dtmfcodeA",
2939
+ "description" :
2940
+ """This object identifies optional start codes used when
2941
+
2942
+
2943
+
2944
+ the pktcSigDevVmwiSigProtocol is set to a value of
2945
+ 'dtmf(2)'. Different countries define different On Hook
2946
+ Data Transmission Protocol signaling codes to support
2947
+ VMWI.
2948
+
2949
+ When Dual-Tone Multi-Frequency (DTMF) is used, the VMWI
2950
+ digits are preceded by a 'start code' digit, followed
2951
+ by the digit transmission sequence <S1>...<Sn> (where
2952
+ Sx represents the digits 0-9), and terminated by the 'end
2953
+ code' digit.
2954
+
2955
+ For example,
2956
+ <A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
2957
+
2958
+ The start code for redirecting VMWI may be DTMF 'D'
2959
+ The DTMF code 'B' may be sent by the network as a start
2960
+ code for the transfer of information values, through
2961
+ which special events can be indicated to the user. In
2962
+ some countries, the '*' or '#' may be used instead of
2963
+ 'A', 'B', 'C', or 'D'.
2964
+
2965
+ The value of this MIB object MUST NOT persist across MTA
2966
+ reboots.""",
2967
+ "reference" :
2968
+ """ETSI-EN-300-659-1 specification""",
2969
+ }, # scalar
2970
+ "pktcSigDevVmwiDtmfEndCode" : {
2971
+ "nodetype" : "scalar",
2972
+ "moduleName" : "PKTC-IETF-SIG-MIB",
2973
+ "oid" : "1.3.6.1.2.1.169.1.1.40",
2974
+ "status" : "current",
2975
+ "syntax" : {
2976
+ "type" : { "module" :"PKTC-IETF-SIG-MIB", "name" : "DtmfCode"},
2977
+ },
2978
+ "access" : "readwrite",
2979
+ "default" : "dtmfcodeC",
2980
+ "description" :
2981
+ """This object identifies an optional end code used when the
2982
+ pktcSigDevVmwiSigProtocol is set to a value of
2983
+ 'dtmf(2)'. Different countries define different on-hook
2984
+ Data Transmission Protocol signaling codes to support
2985
+ VMWI.
2986
+
2987
+ When Dual-Tone Multi-Frequency (DTMF) is used, the VMWI
2988
+ digits are preceded by a 'start code' digit, followed
2989
+ by the digit transmission sequence <S1>...<Sn> (where
2990
+ Sx represents the digits 0-9), and terminated by the 'end
2991
+ code' digit.
2992
+
2993
+ For example,
2994
+ <A><S1>...<Sn> <D><S1>...<Sn> <B><S1>...<Sn> <C>.
2995
+
2996
+
2997
+
2998
+
2999
+ The DTMF code 'C' may be sent by the network as an end code
3000
+ for the transfer of information values, through which
3001
+ special events can be indicated to the user. In some
3002
+ countries, the '*' or '#' may be used instead of 'A',
3003
+ 'B', 'C', or 'D'.
3004
+
3005
+ The value of this MIB object MUST NOT persist across MTA
3006
+ reboots.""",
3007
+ "reference" :
3008
+ """ETSI-EN-300-659-1 specification""",
3009
+ }, # scalar
3010
+ "pktcSigDevrpAsDtsDuration" : {
3011
+ "nodetype" : "scalar",
3012
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3013
+ "oid" : "1.3.6.1.2.1.169.1.1.41",
3014
+ "status" : "current",
3015
+ "syntax" : {
3016
+ "type" : {
3017
+ "basetype" : "Unsigned32",
3018
+ "ranges" : [
3019
+ {
3020
+ "min" : "0",
3021
+ "max" : "0"
3022
+ },
3023
+ {
3024
+ "min" : "200",
3025
+ "max" : "500"
3026
+ },
3027
+ ],
3028
+ "range" : {
3029
+ "min" : "0",
3030
+ "max" : "500"
3031
+ },
3032
+ },
3033
+ },
3034
+ "access" : "readwrite",
3035
+ "default" : "250",
3036
+ "units" : "Milliseconds",
3037
+ "description" :
3038
+ """ This object specifies the duration of the rpASDTS ring
3039
+ pulse prior to the start of the transmission of the
3040
+ FSK or DTMF containing the caller id information. It is
3041
+ only used when pktcSigDevCidMode is set to a value of
3042
+ 'rpAsETS'.
3043
+
3044
+ The following table defines the default values
3045
+ for this MIB object, depending on the signal type
3046
+ (pktcSigDevCidMode), and MUST be followed:
3047
+
3048
+ Value of pktcSigDevCidMode Default value
3049
+
3050
+ duringringingETS any value (not used)
3051
+ dtAsETS any value (not used)
3052
+ rpAsETS 250
3053
+ lrAsETS any value (not used)
3054
+ lrETS any value (not used)
3055
+
3056
+ An attempt to set this object while the value of
3057
+ pktcSigDevCidMode is not 'rpAsETS' will result in
3058
+ an 'inconsistentValue' error.
3059
+
3060
+ The value of this MIB object MUST NOT persist across MTA
3061
+ reboots.""",
3062
+ "reference" :
3063
+ """ETSI-EN-300-659-1 Specification and Belgacom
3064
+ BGC_D_48_9811_30_09_EDOC version 3.3""",
3065
+ }, # scalar
3066
+ "pktcSigEndPntConfigObjects" : {
3067
+ "nodetype" : "node",
3068
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3069
+ "oid" : "1.3.6.1.2.1.169.1.2",
3070
+ }, # node
3071
+ "pktcSigEndPntConfigTable" : {
3072
+ "nodetype" : "table",
3073
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3074
+ "oid" : "1.3.6.1.2.1.169.1.2.1",
3075
+ "status" : "current",
3076
+ "description" :
3077
+ """ This table describes the information pertaining to each
3078
+ endpoint of the MTA. All entries in this table represent
3079
+ the provisioned endpoints provisioned with the information
3080
+ required by the MTA to maintain the NCS protocol
3081
+ communication with the CMS. Each endpoint can be assigned
3082
+ to its own CMS. If the specific endpoint does not have
3083
+ the corresponding CMS information in this table, the
3084
+ endpoint is considered as not provisioned with voice
3085
+ services. Objects in this table do not persist across
3086
+ MTA reboots.""",
3087
+ }, # table
3088
+ "pktcSigEndPntConfigEntry" : {
3089
+ "nodetype" : "row",
3090
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3091
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1",
3092
+ "create" : "true",
3093
+ "status" : "current",
3094
+ "linkage" : [
3095
+ "ifIndex",
3096
+ ],
3097
+ "description" :
3098
+ """Each entry in the pktcSigEndPntConfigTable represents
3099
+ required signaling parameters for the specific endpoint
3100
+ provisioned with voice services. The conceptual rows MUST
3101
+ NOT persist across MTA reboots.""",
3102
+ }, # row
3103
+ "pktcSigEndPntConfigCallAgentId" : {
3104
+ "nodetype" : "column",
3105
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3106
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.1",
3107
+ "status" : "current",
3108
+ "syntax" : {
3109
+ "type" : {
3110
+ "basetype" : "OctetString",
3111
+ "parent module" : {
3112
+ "name" : "SNMP-FRAMEWORK-MIB",
3113
+ "type" : "SnmpAdminString",
3114
+ },
3115
+ "ranges" : [
3116
+ {
3117
+ "min" : "3",
3118
+ "max" : "255"
3119
+ },
3120
+ ],
3121
+ "range" : {
3122
+ "min" : "3",
3123
+ "max" : "255"
3124
+ },
3125
+ },
3126
+ },
3127
+ "access" : "readwrite",
3128
+ "description" :
3129
+ """ This object contains a string indicating the call agent
3130
+ name (e.g., ca@example.com). The call agent name, after
3131
+ the character '@', MUST be a fully qualified domain name
3132
+ (FQDN) and MUST have a corresponding pktcMtaDevCmsFqdn
3133
+ entry in the pktcMtaDevCmsTable. The object
3134
+ pktcMtaDevCmsFqdn is defined in the PacketCable MIBMTA
3135
+ Specification. For each particular endpoint, the MTA MUST
3136
+ use the current value of this object to communicate with
3137
+ the corresponding CMS. The MTA MUST update this object
3138
+ with the value of the 'Notified Entity' parameter of the
3139
+ NCS message. Because of the high importance of this object
3140
+ to the ability of the MTA to maintain reliable NCS
3141
+ communication with the CMS, it is highly recommended not
3142
+ to change this object's value using SNMP during normal
3143
+ operation.""",
3144
+ }, # column
3145
+ "pktcSigEndPntConfigCallAgentUdpPort" : {
3146
+ "nodetype" : "column",
3147
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3148
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.2",
3149
+ "status" : "current",
3150
+ "syntax" : {
3151
+ "type" : {
3152
+ "basetype" : "Unsigned32",
3153
+ "parent module" : {
3154
+ "name" : "INET-ADDRESS-MIB",
3155
+ "type" : "InetPortNumber",
3156
+ },
3157
+ "ranges" : [
3158
+ {
3159
+ "min" : "1025",
3160
+ "max" : "65535"
3161
+ },
3162
+ ],
3163
+ "range" : {
3164
+ "min" : "1025",
3165
+ "max" : "65535"
3166
+ },
3167
+ },
3168
+ },
3169
+ "access" : "readwrite",
3170
+ "default" : "2727",
3171
+ "description" :
3172
+ """ This object contains the current value of the User
3173
+ Datagram Protocol (UDP) receive port on which the
3174
+ call agent will receive NCS from the endpoint.
3175
+ For each particular endpoint, the MTA MUST use the current
3176
+ value of this object to communicate with the corresponding
3177
+ CMS. The MTA MUST update this object with the value of the
3178
+ 'Notified Entity' parameter of the NCS message. If the
3179
+ Notified Entity parameter does not contain a CallAgent
3180
+ port, the MTA MUST update this object with the default
3181
+ value of 2727. Because of the high importance of this
3182
+ object to the ability of the MTA to maintain reliable NCS
3183
+ communication with the CMS, it is highly recommended not
3184
+ to change this object's value using SNMP during normal
3185
+ operation.""",
3186
+ "reference" :
3187
+ """PacketCable NCS Specification""",
3188
+ }, # column
3189
+ "pktcSigEndPntConfigPartialDialTO" : {
3190
+ "nodetype" : "column",
3191
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3192
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.3",
3193
+ "status" : "current",
3194
+ "syntax" : {
3195
+ "type" : { "module" :"", "name" : "Unsigned32"},
3196
+ },
3197
+ "access" : "readwrite",
3198
+ "default" : "16",
3199
+ "units" : "seconds",
3200
+ "description" :
3201
+ """This object contains the value of the partial dial
3202
+ time out.
3203
+ The time out (TO) elements are intended to limit the time a
3204
+ tone or frequency is generated. When this MIB object is set
3205
+ to a value of '0', the MTA MUST NOT generate the
3206
+ corresponding frequency or tone, regardless of the
3207
+ definitions pertaining to frequency, tone duration, or
3208
+ cadence.""",
3209
+ "reference" :
3210
+ """PacketCable NCS Specification""",
3211
+ }, # column
3212
+ "pktcSigEndPntConfigCriticalDialTO" : {
3213
+ "nodetype" : "column",
3214
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3215
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.4",
3216
+ "status" : "current",
3217
+ "syntax" : {
3218
+ "type" : { "module" :"", "name" : "Unsigned32"},
3219
+ },
3220
+ "access" : "readwrite",
3221
+ "default" : "4",
3222
+ "units" : "seconds",
3223
+ "description" :
3224
+ """This object contains the value of the critical
3225
+ dial time out.
3226
+ The time out (TO) elements are intended to limit the time a
3227
+ tone or frequency is generated. When this MIB object is set
3228
+ to a value of '0', the MTA MUST NOT generate the
3229
+ corresponding frequency or tone, regardless of the
3230
+ definitions pertaining to frequency, tone duration, or
3231
+ cadence.""",
3232
+ "reference" :
3233
+ """PacketCable NCS Specification""",
3234
+ }, # column
3235
+ "pktcSigEndPntConfigBusyToneTO" : {
3236
+ "nodetype" : "column",
3237
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3238
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.5",
3239
+ "status" : "current",
3240
+ "syntax" : {
3241
+ "type" : { "module" :"", "name" : "Unsigned32"},
3242
+ },
3243
+ "access" : "readwrite",
3244
+ "default" : "30",
3245
+ "units" : "seconds",
3246
+ "description" :
3247
+ """ This object contains the default time out value for busy
3248
+ tone. The MTA MUST NOT update this object with the
3249
+ value provided in the NCS message (if present). If
3250
+ the value of the object is modified by the SNMP Management
3251
+ Station, the MTA MUST use the new value as a default only
3252
+ for a new signal requested by the NCS message.
3253
+ The time out (TO) elements are intended to limit the time
3254
+ a tone or frequency is generated. When this MIB object is
3255
+ set to a value of '0', the MTA MUST NOT generate the
3256
+ corresponding frequency or tone, regardless of the
3257
+ definitions pertaining to frequency, tone duration, or
3258
+ cadence.""",
3259
+ "reference" :
3260
+ """PacketCable NCS Specification""",
3261
+ }, # column
3262
+ "pktcSigEndPntConfigDialToneTO" : {
3263
+ "nodetype" : "column",
3264
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3265
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.6",
3266
+ "status" : "current",
3267
+ "syntax" : {
3268
+ "type" : { "module" :"", "name" : "Unsigned32"},
3269
+ },
3270
+ "access" : "readwrite",
3271
+ "default" : "16",
3272
+ "units" : "seconds",
3273
+ "description" :
3274
+ """ This object contains the default time out value for dial
3275
+ tone. The MTA MUST NOT update this object with the
3276
+ value provided in the NCS message (if present). If
3277
+
3278
+
3279
+
3280
+ the value of the object is modified by the SNMP Management
3281
+ Station, the MTA MUST use the new value as a default only
3282
+ for a new signal requested by the NCS message.
3283
+ The time out (TO) elements are intended to limit the time
3284
+ a tone or frequency is generated. When this MIB object is
3285
+ set to a value of '0', the MTA MUST NOT generate the
3286
+ corresponding frequency or tone, regardless of the
3287
+ definitions pertaining to frequency, tone duration, or
3288
+ cadence.""",
3289
+ "reference" :
3290
+ """PacketCable NCS Specification""",
3291
+ }, # column
3292
+ "pktcSigEndPntConfigMessageWaitingTO" : {
3293
+ "nodetype" : "column",
3294
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3295
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.7",
3296
+ "status" : "current",
3297
+ "syntax" : {
3298
+ "type" : { "module" :"", "name" : "Unsigned32"},
3299
+ },
3300
+ "access" : "readwrite",
3301
+ "default" : "16",
3302
+ "units" : "seconds",
3303
+ "description" :
3304
+ """ This object contains the default time out value for message
3305
+ waiting indicator. The MTA MUST NOT update this object
3306
+ with the value provided in the NCS message (if
3307
+ present). If the value of the object is modified by the
3308
+ SNMP Manager application, the MTA MUST use the new value
3309
+ as a default only for a new signal requested by the NCS
3310
+ message.
3311
+ The time out (TO) elements are intended to limit the time
3312
+ a tone or frequency is generated. When this MIB object is
3313
+ set to a value of '0', the MTA MUST NOT generate the
3314
+ corresponding frequency or tone, regardless of the
3315
+ definitions pertaining to frequency, tone duration, or
3316
+ cadence.""",
3317
+ "reference" :
3318
+ """PacketCable NCS Specification""",
3319
+ }, # column
3320
+ "pktcSigEndPntConfigOffHookWarnToneTO" : {
3321
+ "nodetype" : "column",
3322
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3323
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.8",
3324
+ "status" : "current",
3325
+ "syntax" : {
3326
+ "type" : { "module" :"", "name" : "Unsigned32"},
3327
+ },
3328
+ "access" : "readwrite",
3329
+ "default" : "0",
3330
+ "units" : "seconds",
3331
+ "description" :
3332
+ """ This object contains the default time out value for the
3333
+ off-hook warning tone. The MTA MUST NOT update this object
3334
+ with the value provided in the NCS message (if present). If
3335
+ the value of the object is modified by the SNMP Manager
3336
+
3337
+
3338
+
3339
+ application, the MTA MUST use the new value as a default
3340
+ only for a new signal requested by the NCS message. The
3341
+ time out (TO) elements are intended to limit the time a tone
3342
+ or frequency is generated. When this MIB object is set to a
3343
+ value of '0', the MTA MUST NOT generate the corresponding
3344
+ frequency or tone, regardless of the definitions pertaining
3345
+ to frequency, tone duration, or cadence.""",
3346
+ "reference" :
3347
+ """PacketCable NCS Specification""",
3348
+ }, # column
3349
+ "pktcSigEndPntConfigRingingTO" : {
3350
+ "nodetype" : "column",
3351
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3352
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.9",
3353
+ "status" : "current",
3354
+ "syntax" : {
3355
+ "type" : { "module" :"", "name" : "Unsigned32"},
3356
+ },
3357
+ "access" : "readwrite",
3358
+ "default" : "180",
3359
+ "units" : "seconds",
3360
+ "description" :
3361
+ """ This object contains the default time out value for
3362
+ ringing. The MTA MUST NOT update this object with the
3363
+ value provided in the NCS message (if present). If
3364
+ the value of the object is modified by the SNMP Management
3365
+ Station, the MTA MUST use the new value as a default only
3366
+ for a new signal requested by the NCS message.
3367
+ The time out (TO) elements are intended to limit the time
3368
+ a tone or frequency is generated. When this MIB object is
3369
+ set to a value of '0', the MTA MUST NOT generate the
3370
+ corresponding frequency or tone, regardless of the
3371
+ definitions pertaining to frequency, tone duration, or
3372
+ cadence.""",
3373
+ "reference" :
3374
+ """PacketCable NCS Specification""",
3375
+ }, # column
3376
+ "pktcSigEndPntConfigRingBackTO" : {
3377
+ "nodetype" : "column",
3378
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3379
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.10",
3380
+ "status" : "current",
3381
+ "syntax" : {
3382
+ "type" : { "module" :"", "name" : "Unsigned32"},
3383
+ },
3384
+ "access" : "readwrite",
3385
+ "default" : "180",
3386
+ "units" : "seconds",
3387
+ "description" :
3388
+ """ This object contains the default time out value for ring
3389
+ back. The MTA MUST NOT update this object with the
3390
+ value provided in the NCS message (if present). If
3391
+ the value of the object is modified by the SNMP Management
3392
+ Station, the MTA MUST use the new value as a default only
3393
+ for a new signal requested by the NCS message.
3394
+ The time out (TO) elements are intended to limit the time
3395
+
3396
+
3397
+
3398
+ a tone or frequency is generated. When this MIB object is
3399
+ set to a value of '0', the MTA MUST NOT generate the
3400
+ corresponding frequency or tone, regardless of the
3401
+ definitions pertaining to frequency, tone duration, or
3402
+ cadence.""",
3403
+ "reference" :
3404
+ """PacketCable NCS Specification""",
3405
+ }, # column
3406
+ "pktcSigEndPntConfigReorderToneTO" : {
3407
+ "nodetype" : "column",
3408
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3409
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.11",
3410
+ "status" : "current",
3411
+ "syntax" : {
3412
+ "type" : { "module" :"", "name" : "Unsigned32"},
3413
+ },
3414
+ "access" : "readwrite",
3415
+ "default" : "30",
3416
+ "units" : "seconds",
3417
+ "description" :
3418
+ """ This object contains the default time out value for reorder
3419
+ tone. The MTA MUST NOT update this object with the
3420
+ value provided in the NCS message (if present). If
3421
+ the value of the object is modified by the SNMP Management
3422
+ Station, the MTA MUST use the new value as a default only
3423
+ for a new signal requested by the NCS message.
3424
+ The time out (TO) elements are intended to limit the time
3425
+ a tone or frequency is generated. When this MIB object is
3426
+ set to a value of '0', the MTA MUST NOT generate the
3427
+ corresponding frequency or tone, regardless of the
3428
+ definitions pertaining to frequency, tone duration, or
3429
+ cadence.""",
3430
+ "reference" :
3431
+ """PacketCable NCS Specification""",
3432
+ }, # column
3433
+ "pktcSigEndPntConfigStutterDialToneTO" : {
3434
+ "nodetype" : "column",
3435
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3436
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.12",
3437
+ "status" : "current",
3438
+ "syntax" : {
3439
+ "type" : { "module" :"", "name" : "Unsigned32"},
3440
+ },
3441
+ "access" : "readwrite",
3442
+ "default" : "16",
3443
+ "units" : "seconds",
3444
+ "description" :
3445
+ """ This object contains the default time out value for stutter
3446
+ dial tone. The MTA MUST NOT update this object with the
3447
+ value provided in the NCS message (if present). If
3448
+ the value of the object is modified by the SNMP Management
3449
+ Station, the MTA MUST use the new value as a default only
3450
+ for a new signal requested by the NCS message.
3451
+ The time out (TO) elements are intended to limit the time
3452
+ a tone or frequency is generated. When this MIB object is
3453
+ set to a value of '0', the MTA MUST NOT generate the
3454
+
3455
+
3456
+
3457
+ corresponding frequency or tone, regardless of the
3458
+ definitions pertaining to frequency, tone duration, or
3459
+ cadence.""",
3460
+ "reference" :
3461
+ """PacketCable NCS Specification""",
3462
+ }, # column
3463
+ "pktcSigEndPntConfigTSMax" : {
3464
+ "nodetype" : "column",
3465
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3466
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.13",
3467
+ "status" : "current",
3468
+ "syntax" : {
3469
+ "type" : { "module" :"", "name" : "Unsigned32"},
3470
+ },
3471
+ "access" : "readwrite",
3472
+ "default" : "20",
3473
+ "description" :
3474
+ """This MIB object is used as part of an NCS
3475
+ retransmission algorithm. Prior to any retransmission,
3476
+ the MTA must check to make sure that the time elapsed
3477
+ since the sending of the initial datagram does not
3478
+ exceed the value specified by this MIB object. If more
3479
+ than Tsmax time has elapsed, then the retransmissions
3480
+ MUST cease.
3481
+
3482
+ Refer to the MIB object pktcSigEndPntConfigThist for
3483
+ information on when the endpoint becomes disconnected.""",
3484
+ "reference" :
3485
+ """PacketCable NCS Specification""",
3486
+ }, # column
3487
+ "pktcSigEndPntConfigMax1" : {
3488
+ "nodetype" : "column",
3489
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3490
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.14",
3491
+ "status" : "current",
3492
+ "syntax" : {
3493
+ "type" : { "module" :"", "name" : "Unsigned32"},
3494
+ },
3495
+ "access" : "readwrite",
3496
+ "default" : "5",
3497
+ "description" :
3498
+ """This object contains the suspicious error threshold for
3499
+ signaling messages. The pktcSigEndPntConfigMax1 object
3500
+ indicates the retransmission threshold at which the MTA MAY
3501
+ actively query the domain name server (DNS) in order to
3502
+ detect the possible change of call agent interfaces.""",
3503
+ "reference" :
3504
+ """PacketCable NCS Specification""",
3505
+ }, # column
3506
+ "pktcSigEndPntConfigMax2" : {
3507
+ "nodetype" : "column",
3508
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3509
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.15",
3510
+ "status" : "current",
3511
+ "syntax" : {
3512
+ "type" : { "module" :"", "name" : "Unsigned32"},
3513
+ },
3514
+ "access" : "readwrite",
3515
+ "default" : "7",
3516
+ "description" :
3517
+ """This object contains the disconnect error threshold for
3518
+ signaling messages. The pktcSigEndPntConfigMax2 object
3519
+ indicates the retransmission threshold at which the MTA
3520
+ SHOULD contact the DNS one more time to see if any other
3521
+ interfaces to the call agent have become available.""",
3522
+ "reference" :
3523
+ """PacketCable NCS Specification""",
3524
+ }, # column
3525
+ "pktcSigEndPntConfigMax1QEnable" : {
3526
+ "nodetype" : "column",
3527
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3528
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.16",
3529
+ "status" : "current",
3530
+ "syntax" : {
3531
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3532
+ },
3533
+ "access" : "readwrite",
3534
+ "default" : "true",
3535
+ "description" :
3536
+ """This object enables/disables the Max1 domain name server
3537
+ (DNS) query operation when the pktcSigEndPntConfigMax1
3538
+ threshold has been reached.
3539
+ A value of true(1) indicates enabling, and a value of
3540
+ false(2) indicates disabling.""",
3541
+ }, # column
3542
+ "pktcSigEndPntConfigMax2QEnable" : {
3543
+ "nodetype" : "column",
3544
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3545
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.17",
3546
+ "status" : "current",
3547
+ "syntax" : {
3548
+ "type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
3549
+ },
3550
+ "access" : "readwrite",
3551
+ "default" : "true",
3552
+ "description" :
3553
+ """This object enables/disables the Max2 domain name server
3554
+ (DNS) query operation when the pktcSigEndPntConfigMax2
3555
+ threshold has been reached.
3556
+ A value of true(1) indicates enabling, and a value of
3557
+ false(2) indicates disabling.""",
3558
+ }, # column
3559
+ "pktcSigEndPntConfigMWD" : {
3560
+ "nodetype" : "column",
3561
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3562
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.18",
3563
+ "status" : "current",
3564
+ "syntax" : {
3565
+ "type" : { "module" :"", "name" : "Unsigned32"},
3566
+ },
3567
+ "access" : "readwrite",
3568
+ "default" : "600",
3569
+ "units" : "seconds",
3570
+ "description" :
3571
+ """Maximum Waiting Delay (MWD) contains the maximum number of
3572
+ seconds an MTA waits, after powering on, before initiating
3573
+ the restart procedure with the call agent.""",
3574
+ "reference" :
3575
+ """PacketCable NCS Specification""",
3576
+ }, # column
3577
+ "pktcSigEndPntConfigTdinit" : {
3578
+ "nodetype" : "column",
3579
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3580
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.19",
3581
+ "status" : "current",
3582
+ "syntax" : {
3583
+ "type" : { "module" :"", "name" : "Unsigned32"},
3584
+ },
3585
+ "access" : "readwrite",
3586
+ "default" : "15",
3587
+ "units" : "seconds",
3588
+ "description" :
3589
+ """This MIB object represents the 'disconnected' initial
3590
+ waiting delay within the context of an MTA's 'disconnected
3591
+ procedure'. The 'disconnected procedure' is initiated when
3592
+ an endpoint becomes 'disconnected' while attempting to
3593
+ communicate with a call agent.
3594
+
3595
+ The 'disconnected timer' associated with the 'disconnected
3596
+ Procedure' is initialized to a random value, uniformly
3597
+ distributed between zero and the value contained in this
3598
+ MIB object.
3599
+
3600
+ For more information on the usage of this timer, please
3601
+ refer to the PacketCable NCS Specification.""",
3602
+ "reference" :
3603
+ """PacketCable NCS Specification""",
3604
+ }, # column
3605
+ "pktcSigEndPntConfigTdmin" : {
3606
+ "nodetype" : "column",
3607
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3608
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.20",
3609
+ "status" : "current",
3610
+ "syntax" : {
3611
+ "type" : { "module" :"", "name" : "Unsigned32"},
3612
+ },
3613
+ "access" : "readwrite",
3614
+ "default" : "15",
3615
+ "units" : "seconds",
3616
+ "description" :
3617
+ """This MIB object represents the 'disconnected' minimum
3618
+ waiting delay within the context of an MTA's
3619
+ 'disconnected procedure', specifically when local user
3620
+ activity is detected.
3621
+ The 'disconnected procedure' is initiated when
3622
+ an endpoint becomes 'disconnected' while attempting to
3623
+ communicate with a call agent.
3624
+ For more information on the usage of this timer, please
3625
+ refer to the PacketCable NCS Specification.""",
3626
+ "reference" :
3627
+ """PacketCable NCS Specification""",
3628
+ }, # column
3629
+ "pktcSigEndPntConfigTdmax" : {
3630
+ "nodetype" : "column",
3631
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3632
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.21",
3633
+ "status" : "current",
3634
+ "syntax" : {
3635
+ "type" : { "module" :"", "name" : "Unsigned32"},
3636
+ },
3637
+ "access" : "readwrite",
3638
+ "default" : "600",
3639
+ "units" : "seconds",
3640
+ "description" :
3641
+ """ This object contains the maximum number of seconds the MTA
3642
+ waits, after a disconnect, before initiating the
3643
+ disconnected procedure with the call agent.
3644
+ """,
3645
+ "reference" :
3646
+ """PacketCable NCS Specification""",
3647
+ }, # column
3648
+ "pktcSigEndPntConfigRtoMax" : {
3649
+ "nodetype" : "column",
3650
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3651
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.22",
3652
+ "status" : "current",
3653
+ "syntax" : {
3654
+ "type" : { "module" :"", "name" : "Unsigned32"},
3655
+ },
3656
+ "access" : "readwrite",
3657
+ "default" : "4",
3658
+ "units" : "seconds",
3659
+ "description" :
3660
+ """This object specifies the maximum number of seconds the MTA
3661
+ waits for a response to an NCS message before initiating
3662
+ a retransmission.""",
3663
+ "reference" :
3664
+ """PacketCable NCS Specification""",
3665
+ }, # column
3666
+ "pktcSigEndPntConfigRtoInit" : {
3667
+ "nodetype" : "column",
3668
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3669
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.23",
3670
+ "status" : "current",
3671
+ "syntax" : {
3672
+ "type" : { "module" :"", "name" : "Unsigned32"},
3673
+ },
3674
+ "access" : "readwrite",
3675
+ "default" : "200",
3676
+ "units" : "milliseconds",
3677
+ "description" :
3678
+ """ This object contains the initial number of seconds for the
3679
+ retransmission timer.""",
3680
+ "reference" :
3681
+ """PacketCable NCS Specification""",
3682
+ }, # column
3683
+ "pktcSigEndPntConfigLongDurationKeepAlive" : {
3684
+ "nodetype" : "column",
3685
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3686
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.24",
3687
+ "status" : "current",
3688
+ "syntax" : {
3689
+ "type" : { "module" :"", "name" : "Unsigned32"},
3690
+ },
3691
+ "access" : "readwrite",
3692
+ "default" : "60",
3693
+ "units" : "minutes",
3694
+ "description" :
3695
+ """ Specifies a time out value, in minutes, for sending long
3696
+ duration call notification messages.""",
3697
+ "reference" :
3698
+ """PacketCable NCS Specification""",
3699
+ }, # column
3700
+ "pktcSigEndPntConfigThist" : {
3701
+ "nodetype" : "column",
3702
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3703
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.25",
3704
+ "status" : "current",
3705
+ "syntax" : {
3706
+ "type" : { "module" :"", "name" : "Unsigned32"},
3707
+ },
3708
+ "access" : "readwrite",
3709
+ "default" : "30",
3710
+ "units" : "seconds",
3711
+ "description" :
3712
+ """ Time out period, in seconds, before no response is declared.""",
3713
+ "reference" :
3714
+ """PacketCable NCS Specification""",
3715
+ }, # column
3716
+ "pktcSigEndPntConfigStatus" : {
3717
+ "nodetype" : "column",
3718
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3719
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.26",
3720
+ "status" : "current",
3721
+ "syntax" : {
3722
+ "type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
3723
+ },
3724
+ "access" : "readwrite",
3725
+ "description" :
3726
+ """ This object contains the Row Status associated with the
3727
+ pktcSigEndPntConfigTable. There are no restrictions or
3728
+ dependencies amidst the columnar objects before this
3729
+ row can be activated or for modifications of the
3730
+ columnar objects when this object is set to a
3731
+ value of 'active(1).""",
3732
+ }, # column
3733
+ "pktcSigEndPntConfigCallWaitingMaxRep" : {
3734
+ "nodetype" : "column",
3735
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3736
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.27",
3737
+ "status" : "current",
3738
+ "syntax" : {
3739
+ "type" : {
3740
+ "basetype" : "Unsigned32",
3741
+ "ranges" : [
3742
+ {
3743
+ "min" : "0",
3744
+ "max" : "10"
3745
+ },
3746
+ ],
3747
+ "range" : {
3748
+ "min" : "0",
3749
+ "max" : "10"
3750
+ },
3751
+ },
3752
+ },
3753
+ "access" : "readwrite",
3754
+ "default" : "1",
3755
+ "description" :
3756
+ """ This object contains the default value of the maximum
3757
+ number of repetitions of the Call Waiting tone that the
3758
+ MTA will play from a single CMS request. The MTA MUST NOT
3759
+ update this object with the information provided in the
3760
+ NCS message (if present). If the value of the object is
3761
+ modified by the SNMP Manager application, the MTA MUST use
3762
+ the new value as a default only for a new signal
3763
+ requested by the NCS message.""",
3764
+ }, # column
3765
+ "pktcSigEndPntConfigCallWaitingDelay" : {
3766
+ "nodetype" : "column",
3767
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3768
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.28",
3769
+ "status" : "current",
3770
+ "syntax" : {
3771
+ "type" : {
3772
+ "basetype" : "Unsigned32",
3773
+ "ranges" : [
3774
+ {
3775
+ "min" : "1",
3776
+ "max" : "100"
3777
+ },
3778
+ ],
3779
+ "range" : {
3780
+ "min" : "1",
3781
+ "max" : "100"
3782
+ },
3783
+ },
3784
+ },
3785
+ "access" : "readwrite",
3786
+ "default" : "10",
3787
+ "units" : "seconds",
3788
+ "description" :
3789
+ """ This object contains the delay between repetitions of the
3790
+ Call Waiting tone that the MTA will play from a single CMS
3791
+ request.""",
3792
+ }, # column
3793
+ "pktcSigEndPntStatusCallIpAddressType" : {
3794
+ "nodetype" : "column",
3795
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3796
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.29",
3797
+ "status" : "current",
3798
+ "syntax" : {
3799
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddressType"},
3800
+ },
3801
+ "access" : "readonly",
3802
+ "description" :
3803
+ """ This object contains the type of Internet address contained
3804
+ in the MIB object 'pktcSigEndPntStatusCallIpAddress'.
3805
+
3806
+ Since pktcSigEndPntStatusCallIpAddress is expected to
3807
+ contain an IP address, a value of dns(16) is disallowed.""",
3808
+ }, # column
3809
+ "pktcSigEndPntStatusCallIpAddress" : {
3810
+ "nodetype" : "column",
3811
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3812
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.30",
3813
+ "status" : "current",
3814
+ "syntax" : {
3815
+ "type" : { "module" :"INET-ADDRESS-MIB", "name" : "InetAddress"},
3816
+ },
3817
+ "access" : "readonly",
3818
+ "description" :
3819
+ """ This MIB object contains the chosen IP address of the CMS
3820
+ currently being used for the corresponding endpoint.
3821
+
3822
+ The device determines the IP address by using DNS to
3823
+ resolve the IP address of the CMS from the FQDN stored in
3824
+ the MIB object 'pktcSigEndPntConfigCallAgentId'. The
3825
+ processes are outlined in the PacketCable NCS and Security
3826
+ specifications, and MUST be followed by the MTA.
3827
+
3828
+ The IP address type contained in this MIB object is
3829
+ indicated by pktcSigEndPntStatusCallIpAddressType.""",
3830
+ "reference" :
3831
+ """PacketCable NCS Specification;
3832
+ PacketCable Security specification, [PKT-SP-SEC].""",
3833
+ }, # column
3834
+ "pktcSigEndPntStatusError" : {
3835
+ "nodetype" : "column",
3836
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3837
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.31",
3838
+ "status" : "current",
3839
+ "syntax" : {
3840
+ "type" : {
3841
+ "basetype" : "Enumeration",
3842
+ "operational" : {
3843
+ "nodetype" : "namednumber",
3844
+ "number" : "1"
3845
+ },
3846
+ "noSecurityAssociation" : {
3847
+ "nodetype" : "namednumber",
3848
+ "number" : "2"
3849
+ },
3850
+ "disconnected" : {
3851
+ "nodetype" : "namednumber",
3852
+ "number" : "3"
3853
+ },
3854
+ },
3855
+ },
3856
+ "access" : "readonly",
3857
+ "description" :
3858
+ """ This object contains the error status for this interface.
3859
+ The operational status indicates that all operations
3860
+ necessary to put the line in service have occurred, and the
3861
+ CMS has acknowledged the Restart In Progress (RSIP)
3862
+ message successfully. If pktcMtaDevCmsIpsecCtrl is enabled
3863
+ for the associated call agent, the noSecurityAssociation
3864
+ status indicates that no Security Association (SA) yet
3865
+ exists for this endpoint. If pktcMtaDevCmsIpsecCtrl is
3866
+ disabled for the associated call agent, the
3867
+ noSecurityAssociation status is not applicable and should
3868
+ not be used by the MTA. The disconnected status indicates
3869
+ one of the following two:
3870
+ If pktcMtaDevCmsIpsecCtrl is disabled, then no security
3871
+ association is involved with this endpoint. The NCS
3872
+ signaling software is in process of establishing the NCS
3873
+ signaling link via an RSIP exchange.
3874
+ Otherwise, when pktcMtaDevCmsIpsecCtrl is enabled,
3875
+ security Association has been established, and the NCS
3876
+ signaling software is in process of establishing the NCS
3877
+ signaling link via an RSIP exchange.""",
3878
+ }, # column
3879
+ "pktcSigEndPntConfigMinHookFlash" : {
3880
+ "nodetype" : "column",
3881
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3882
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.32",
3883
+ "status" : "current",
3884
+ "syntax" : {
3885
+ "type" : {
3886
+ "basetype" : "Unsigned32",
3887
+ "ranges" : [
3888
+ {
3889
+ "min" : "20",
3890
+ "max" : "1550"
3891
+ },
3892
+ ],
3893
+ "range" : {
3894
+ "min" : "20",
3895
+ "max" : "1550"
3896
+ },
3897
+ },
3898
+ },
3899
+ "access" : "readonly",
3900
+ "default" : "300",
3901
+ "units" : "Milliseconds",
3902
+ "description" :
3903
+ """ This is the minimum time a line needs to be on-hook for a
3904
+ valid hook flash. The value of this object MUST be
3905
+ greater than the value of
3906
+ pktcSigEndPntConfigPulseDialMaxBreakTime. The value of
3907
+ pktcSigEndPntConfigMinHookFlash MUST be less than
3908
+ pktcSigEndPntConfigMaxHookFlash. This object MUST only be
3909
+ set via the MTA configuration during the provisioning
3910
+ process.
3911
+ Furthermore, given the possibility for the 'pulse dial'
3912
+ and 'hook flash' to overlap, the value of this object
3913
+ MUST be greater than the value contained by the MIB
3914
+ Object 'pktcSigEndPntConfigPulseDialMaxMakeTime'.""",
3915
+ }, # column
3916
+ "pktcSigEndPntConfigMaxHookFlash" : {
3917
+ "nodetype" : "column",
3918
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3919
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.33",
3920
+ "status" : "current",
3921
+ "syntax" : {
3922
+ "type" : {
3923
+ "basetype" : "Unsigned32",
3924
+ "ranges" : [
3925
+ {
3926
+ "min" : "20",
3927
+ "max" : "1550"
3928
+ },
3929
+ ],
3930
+ "range" : {
3931
+ "min" : "20",
3932
+ "max" : "1550"
3933
+ },
3934
+ },
3935
+ },
3936
+ "access" : "readonly",
3937
+ "default" : "800",
3938
+ "units" : "Milliseconds",
3939
+ "description" :
3940
+ """ This is the maximum time a line needs to be on-hook for a
3941
+ valid hook flash. The value of
3942
+ pktcSigEndPntConfigMaxHookFlash MUST be greater than
3943
+ pktcSigEndPntConfigMinHookFlash. This object MUST only be
3944
+ set via the MTA configuration during the provisioning
3945
+ process.""",
3946
+ }, # column
3947
+ "pktcSigEndPntConfigPulseDialInterdigitTime" : {
3948
+ "nodetype" : "column",
3949
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3950
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.34",
3951
+ "status" : "current",
3952
+ "syntax" : {
3953
+ "type" : {
3954
+ "basetype" : "Unsigned32",
3955
+ "ranges" : [
3956
+ {
3957
+ "min" : "100",
3958
+ "max" : "1500"
3959
+ },
3960
+ ],
3961
+ "range" : {
3962
+ "min" : "100",
3963
+ "max" : "1500"
3964
+ },
3965
+ },
3966
+ },
3967
+ "access" : "readonly",
3968
+ "default" : "100",
3969
+ "units" : "Milliseconds",
3970
+ "description" :
3971
+ """ This is the pulse dial inter-digit time out. This object
3972
+ MUST only be set via the MTA configuration during the
3973
+ provisioning process.""",
3974
+ }, # column
3975
+ "pktcSigEndPntConfigPulseDialMinMakeTime" : {
3976
+ "nodetype" : "column",
3977
+ "moduleName" : "PKTC-IETF-SIG-MIB",
3978
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.35",
3979
+ "status" : "current",
3980
+ "syntax" : {
3981
+ "type" : {
3982
+ "basetype" : "Unsigned32",
3983
+ "ranges" : [
3984
+ {
3985
+ "min" : "20",
3986
+ "max" : "200"
3987
+ },
3988
+ ],
3989
+ "range" : {
3990
+ "min" : "20",
3991
+ "max" : "200"
3992
+ },
3993
+ },
3994
+ },
3995
+ "access" : "readonly",
3996
+ "default" : "25",
3997
+ "units" : "Milliseconds",
3998
+ "description" :
3999
+ """ This is the minimum make pulse width for the dial pulse.
4000
+ The value of pktcSigEndPntConfigPulseDialMinMakeTime MUST
4001
+ be less than pktcSigEndPntConfigPulseDialMaxMakeTime. This
4002
+ object MUST only be set via the MTA configuration during
4003
+ the provisioning process.""",
4004
+ }, # column
4005
+ "pktcSigEndPntConfigPulseDialMaxMakeTime" : {
4006
+ "nodetype" : "column",
4007
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4008
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.36",
4009
+ "status" : "current",
4010
+ "syntax" : {
4011
+ "type" : {
4012
+ "basetype" : "Unsigned32",
4013
+ "ranges" : [
4014
+ {
4015
+ "min" : "20",
4016
+ "max" : "200"
4017
+ },
4018
+ ],
4019
+ "range" : {
4020
+ "min" : "20",
4021
+ "max" : "200"
4022
+ },
4023
+ },
4024
+ },
4025
+ "access" : "readonly",
4026
+ "default" : "55",
4027
+ "units" : "Milliseconds",
4028
+ "description" :
4029
+ """ This is the maximum make pulse width for the dial pulse.
4030
+
4031
+
4032
+
4033
+ The value of pktcSigEndPntConfigPulseDialMaxMakeTime MUST
4034
+ be greater than pktcSigEndPntConfigPulseDialMinMakeTime.
4035
+ This object MUST only be provided via the configuration
4036
+ file during the provisioning process.
4037
+ Furthermore, given the possibility for the 'pulse dial'
4038
+ and 'hook flash' to overlap, the value of this object MUST
4039
+ be less than the value contained by the MIB object
4040
+ pktcSigEndPntConfigMinHookFlash.""",
4041
+ }, # column
4042
+ "pktcSigEndPntConfigPulseDialMinBreakTime" : {
4043
+ "nodetype" : "column",
4044
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4045
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.37",
4046
+ "status" : "current",
4047
+ "syntax" : {
4048
+ "type" : {
4049
+ "basetype" : "Unsigned32",
4050
+ "ranges" : [
4051
+ {
4052
+ "min" : "20",
4053
+ "max" : "200"
4054
+ },
4055
+ ],
4056
+ "range" : {
4057
+ "min" : "20",
4058
+ "max" : "200"
4059
+ },
4060
+ },
4061
+ },
4062
+ "access" : "readonly",
4063
+ "default" : "45",
4064
+ "units" : "Milliseconds",
4065
+ "description" :
4066
+ """ This is the minimum break pulse width for the dial pulse.
4067
+ The value of pktcSigEndPntConfigPulseDialMinBreakTime MUST
4068
+ be less than pktcSigEndPntConfigPulseDialMaxBreakTime.
4069
+ This object must only be provided via the configuration
4070
+ file during the provisioning process.""",
4071
+ }, # column
4072
+ "pktcSigEndPntConfigPulseDialMaxBreakTime" : {
4073
+ "nodetype" : "column",
4074
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4075
+ "oid" : "1.3.6.1.2.1.169.1.2.1.1.38",
4076
+ "status" : "current",
4077
+ "syntax" : {
4078
+ "type" : {
4079
+ "basetype" : "Unsigned32",
4080
+ "ranges" : [
4081
+ {
4082
+ "min" : "20",
4083
+ "max" : "200"
4084
+ },
4085
+ ],
4086
+ "range" : {
4087
+ "min" : "20",
4088
+ "max" : "200"
4089
+ },
4090
+ },
4091
+ },
4092
+ "access" : "readonly",
4093
+ "default" : "75",
4094
+ "units" : "Milliseconds",
4095
+ "description" :
4096
+ """ This is the maximum break pulse width for the dial pulse.
4097
+ The value of pktcSigEndPntConfigPulseDialMaxBreakTime MUST
4098
+ be greater than pktcSigEndPntConfigPulseDialMinBreakTime.
4099
+ This object MUST only be provided via the configuration
4100
+ file during the provisioning process.""",
4101
+ }, # column
4102
+ "pktcSigConformance" : {
4103
+ "nodetype" : "node",
4104
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4105
+ "oid" : "1.3.6.1.2.1.169.2",
4106
+ }, # node
4107
+ "pktcSigCompliances" : {
4108
+ "nodetype" : "node",
4109
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4110
+ "oid" : "1.3.6.1.2.1.169.2.1",
4111
+ }, # node
4112
+ "pktcSigGroups" : {
4113
+ "nodetype" : "node",
4114
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4115
+ "oid" : "1.3.6.1.2.1.169.2.2",
4116
+ }, # node
4117
+ }, # nodes
4118
+
4119
+ "groups" : {
4120
+ "pktcSigDeviceGroup" : {
4121
+ "nodetype" : "group",
4122
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4123
+ "oid" : "1.3.6.1.2.1.169.2.2.1",
4124
+ "status" : "current",
4125
+ "members" : {
4126
+ "pktcSigDevCodecMax" : {
4127
+ "nodetype" : "member",
4128
+ "module" : "PKTC-IETF-SIG-MIB"
4129
+ },
4130
+ "pktcSigDevEchoCancellation" : {
4131
+ "nodetype" : "member",
4132
+ "module" : "PKTC-IETF-SIG-MIB"
4133
+ },
4134
+ "pktcSigDevSilenceSuppression" : {
4135
+ "nodetype" : "member",
4136
+ "module" : "PKTC-IETF-SIG-MIB"
4137
+ },
4138
+ "pktcSigDevR0Cadence" : {
4139
+ "nodetype" : "member",
4140
+ "module" : "PKTC-IETF-SIG-MIB"
4141
+ },
4142
+ "pktcSigDevR1Cadence" : {
4143
+ "nodetype" : "member",
4144
+ "module" : "PKTC-IETF-SIG-MIB"
4145
+ },
4146
+ "pktcSigDevR2Cadence" : {
4147
+ "nodetype" : "member",
4148
+ "module" : "PKTC-IETF-SIG-MIB"
4149
+ },
4150
+ "pktcSigDevR3Cadence" : {
4151
+ "nodetype" : "member",
4152
+ "module" : "PKTC-IETF-SIG-MIB"
4153
+ },
4154
+ "pktcSigDevR4Cadence" : {
4155
+ "nodetype" : "member",
4156
+ "module" : "PKTC-IETF-SIG-MIB"
4157
+ },
4158
+ "pktcSigDevR5Cadence" : {
4159
+ "nodetype" : "member",
4160
+ "module" : "PKTC-IETF-SIG-MIB"
4161
+ },
4162
+ "pktcSigDevR6Cadence" : {
4163
+ "nodetype" : "member",
4164
+ "module" : "PKTC-IETF-SIG-MIB"
4165
+ },
4166
+ "pktcSigDevR7Cadence" : {
4167
+ "nodetype" : "member",
4168
+ "module" : "PKTC-IETF-SIG-MIB"
4169
+ },
4170
+ "pktcSigDevRgCadence" : {
4171
+ "nodetype" : "member",
4172
+ "module" : "PKTC-IETF-SIG-MIB"
4173
+ },
4174
+ "pktcSigDevRsCadence" : {
4175
+ "nodetype" : "member",
4176
+ "module" : "PKTC-IETF-SIG-MIB"
4177
+ },
4178
+ "pktcSigDefCallSigDscp" : {
4179
+ "nodetype" : "member",
4180
+ "module" : "PKTC-IETF-SIG-MIB"
4181
+ },
4182
+ "pktcSigDefMediaStreamDscp" : {
4183
+ "nodetype" : "member",
4184
+ "module" : "PKTC-IETF-SIG-MIB"
4185
+ },
4186
+ "pktcSigDevVmwiMode" : {
4187
+ "nodetype" : "member",
4188
+ "module" : "PKTC-IETF-SIG-MIB"
4189
+ },
4190
+ "pktcSigCapabilityType" : {
4191
+ "nodetype" : "member",
4192
+ "module" : "PKTC-IETF-SIG-MIB"
4193
+ },
4194
+ "pktcSigCapabilityVersion" : {
4195
+ "nodetype" : "member",
4196
+ "module" : "PKTC-IETF-SIG-MIB"
4197
+ },
4198
+ "pktcSigCapabilityVendorExt" : {
4199
+ "nodetype" : "member",
4200
+ "module" : "PKTC-IETF-SIG-MIB"
4201
+ },
4202
+ "pktcSigDefNcsReceiveUdpPort" : {
4203
+ "nodetype" : "member",
4204
+ "module" : "PKTC-IETF-SIG-MIB"
4205
+ },
4206
+ }, # members
4207
+ "description" :
4208
+ """Group of MIB objects containing signaling configuration
4209
+ information that is applicable per-device.""",
4210
+ }, # group
4211
+ "pktcSigEndpointGroup" : {
4212
+ "nodetype" : "group",
4213
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4214
+ "oid" : "1.3.6.1.2.1.169.2.2.2",
4215
+ "status" : "current",
4216
+ "members" : {
4217
+ "pktcSigEndPntConfigCallAgentId" : {
4218
+ "nodetype" : "member",
4219
+ "module" : "PKTC-IETF-SIG-MIB"
4220
+ },
4221
+ "pktcSigEndPntConfigCallAgentUdpPort" : {
4222
+ "nodetype" : "member",
4223
+ "module" : "PKTC-IETF-SIG-MIB"
4224
+ },
4225
+ "pktcSigEndPntConfigPartialDialTO" : {
4226
+ "nodetype" : "member",
4227
+ "module" : "PKTC-IETF-SIG-MIB"
4228
+ },
4229
+ "pktcSigEndPntConfigCriticalDialTO" : {
4230
+ "nodetype" : "member",
4231
+ "module" : "PKTC-IETF-SIG-MIB"
4232
+ },
4233
+ "pktcSigEndPntConfigBusyToneTO" : {
4234
+ "nodetype" : "member",
4235
+ "module" : "PKTC-IETF-SIG-MIB"
4236
+ },
4237
+ "pktcSigEndPntConfigDialToneTO" : {
4238
+ "nodetype" : "member",
4239
+ "module" : "PKTC-IETF-SIG-MIB"
4240
+ },
4241
+ "pktcSigEndPntConfigMessageWaitingTO" : {
4242
+ "nodetype" : "member",
4243
+ "module" : "PKTC-IETF-SIG-MIB"
4244
+ },
4245
+ "pktcSigEndPntConfigOffHookWarnToneTO" : {
4246
+ "nodetype" : "member",
4247
+ "module" : "PKTC-IETF-SIG-MIB"
4248
+ },
4249
+ "pktcSigEndPntConfigRingingTO" : {
4250
+ "nodetype" : "member",
4251
+ "module" : "PKTC-IETF-SIG-MIB"
4252
+ },
4253
+ "pktcSigEndPntConfigRingBackTO" : {
4254
+ "nodetype" : "member",
4255
+ "module" : "PKTC-IETF-SIG-MIB"
4256
+ },
4257
+ "pktcSigEndPntConfigReorderToneTO" : {
4258
+ "nodetype" : "member",
4259
+ "module" : "PKTC-IETF-SIG-MIB"
4260
+ },
4261
+ "pktcSigEndPntConfigStutterDialToneTO" : {
4262
+ "nodetype" : "member",
4263
+ "module" : "PKTC-IETF-SIG-MIB"
4264
+ },
4265
+ "pktcSigEndPntConfigTSMax" : {
4266
+ "nodetype" : "member",
4267
+ "module" : "PKTC-IETF-SIG-MIB"
4268
+ },
4269
+ "pktcSigEndPntConfigMax1" : {
4270
+ "nodetype" : "member",
4271
+ "module" : "PKTC-IETF-SIG-MIB"
4272
+ },
4273
+ "pktcSigEndPntConfigMax2" : {
4274
+ "nodetype" : "member",
4275
+ "module" : "PKTC-IETF-SIG-MIB"
4276
+ },
4277
+ "pktcSigEndPntConfigMax1QEnable" : {
4278
+ "nodetype" : "member",
4279
+ "module" : "PKTC-IETF-SIG-MIB"
4280
+ },
4281
+ "pktcSigEndPntConfigMax2QEnable" : {
4282
+ "nodetype" : "member",
4283
+ "module" : "PKTC-IETF-SIG-MIB"
4284
+ },
4285
+ "pktcSigEndPntConfigMWD" : {
4286
+ "nodetype" : "member",
4287
+ "module" : "PKTC-IETF-SIG-MIB"
4288
+ },
4289
+ "pktcSigEndPntConfigTdinit" : {
4290
+ "nodetype" : "member",
4291
+ "module" : "PKTC-IETF-SIG-MIB"
4292
+ },
4293
+ "pktcSigEndPntConfigTdmin" : {
4294
+ "nodetype" : "member",
4295
+ "module" : "PKTC-IETF-SIG-MIB"
4296
+ },
4297
+ "pktcSigEndPntConfigTdmax" : {
4298
+ "nodetype" : "member",
4299
+ "module" : "PKTC-IETF-SIG-MIB"
4300
+ },
4301
+ "pktcSigEndPntConfigRtoMax" : {
4302
+ "nodetype" : "member",
4303
+ "module" : "PKTC-IETF-SIG-MIB"
4304
+ },
4305
+ "pktcSigEndPntConfigRtoInit" : {
4306
+ "nodetype" : "member",
4307
+ "module" : "PKTC-IETF-SIG-MIB"
4308
+ },
4309
+ "pktcSigEndPntConfigLongDurationKeepAlive" : {
4310
+ "nodetype" : "member",
4311
+ "module" : "PKTC-IETF-SIG-MIB"
4312
+ },
4313
+ "pktcSigEndPntConfigThist" : {
4314
+ "nodetype" : "member",
4315
+ "module" : "PKTC-IETF-SIG-MIB"
4316
+ },
4317
+ "pktcSigEndPntConfigStatus" : {
4318
+ "nodetype" : "member",
4319
+ "module" : "PKTC-IETF-SIG-MIB"
4320
+ },
4321
+ "pktcSigEndPntConfigCallWaitingMaxRep" : {
4322
+ "nodetype" : "member",
4323
+ "module" : "PKTC-IETF-SIG-MIB"
4324
+ },
4325
+ "pktcSigEndPntConfigCallWaitingDelay" : {
4326
+ "nodetype" : "member",
4327
+ "module" : "PKTC-IETF-SIG-MIB"
4328
+ },
4329
+ "pktcSigEndPntStatusCallIpAddressType" : {
4330
+ "nodetype" : "member",
4331
+ "module" : "PKTC-IETF-SIG-MIB"
4332
+ },
4333
+ "pktcSigEndPntStatusCallIpAddress" : {
4334
+ "nodetype" : "member",
4335
+ "module" : "PKTC-IETF-SIG-MIB"
4336
+ },
4337
+ "pktcSigEndPntStatusError" : {
4338
+ "nodetype" : "member",
4339
+ "module" : "PKTC-IETF-SIG-MIB"
4340
+ },
4341
+ }, # members
4342
+ "description" :
4343
+ """Group of MIB objects containing signaling configuration
4344
+ information that is applicable per-endpoint.""",
4345
+ }, # group
4346
+ "pktcInternationalGroup" : {
4347
+ "nodetype" : "group",
4348
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4349
+ "oid" : "1.3.6.1.2.1.169.2.2.3",
4350
+ "status" : "current",
4351
+ "members" : {
4352
+ "pktcSigEndPntConfigMinHookFlash" : {
4353
+ "nodetype" : "member",
4354
+ "module" : "PKTC-IETF-SIG-MIB"
4355
+ },
4356
+ "pktcSigEndPntConfigMaxHookFlash" : {
4357
+ "nodetype" : "member",
4358
+ "module" : "PKTC-IETF-SIG-MIB"
4359
+ },
4360
+ "pktcSigEndPntConfigPulseDialInterdigitTime" : {
4361
+ "nodetype" : "member",
4362
+ "module" : "PKTC-IETF-SIG-MIB"
4363
+ },
4364
+ "pktcSigEndPntConfigPulseDialMinMakeTime" : {
4365
+ "nodetype" : "member",
4366
+ "module" : "PKTC-IETF-SIG-MIB"
4367
+ },
4368
+ "pktcSigEndPntConfigPulseDialMaxMakeTime" : {
4369
+ "nodetype" : "member",
4370
+ "module" : "PKTC-IETF-SIG-MIB"
4371
+ },
4372
+ "pktcSigEndPntConfigPulseDialMinBreakTime" : {
4373
+ "nodetype" : "member",
4374
+ "module" : "PKTC-IETF-SIG-MIB"
4375
+ },
4376
+ "pktcSigEndPntConfigPulseDialMaxBreakTime" : {
4377
+ "nodetype" : "member",
4378
+ "module" : "PKTC-IETF-SIG-MIB"
4379
+ },
4380
+ "pktcSigDevRingCadence" : {
4381
+ "nodetype" : "member",
4382
+ "module" : "PKTC-IETF-SIG-MIB"
4383
+ },
4384
+ "pktcSigDevCidSigProtocol" : {
4385
+ "nodetype" : "member",
4386
+ "module" : "PKTC-IETF-SIG-MIB"
4387
+ },
4388
+ "pktcSigDevCidDelayAfterLR" : {
4389
+ "nodetype" : "member",
4390
+ "module" : "PKTC-IETF-SIG-MIB"
4391
+ },
4392
+ "pktcSigDevCidDtmfStartCode" : {
4393
+ "nodetype" : "member",
4394
+ "module" : "PKTC-IETF-SIG-MIB"
4395
+ },
4396
+ "pktcSigDevCidDtmfEndCode" : {
4397
+ "nodetype" : "member",
4398
+ "module" : "PKTC-IETF-SIG-MIB"
4399
+ },
4400
+ "pktcSigDevVmwiSigProtocol" : {
4401
+ "nodetype" : "member",
4402
+ "module" : "PKTC-IETF-SIG-MIB"
4403
+ },
4404
+ "pktcSigDevVmwiDelayAfterLR" : {
4405
+ "nodetype" : "member",
4406
+ "module" : "PKTC-IETF-SIG-MIB"
4407
+ },
4408
+ "pktcSigDevVmwiDtmfStartCode" : {
4409
+ "nodetype" : "member",
4410
+ "module" : "PKTC-IETF-SIG-MIB"
4411
+ },
4412
+ "pktcSigDevVmwiDtmfEndCode" : {
4413
+ "nodetype" : "member",
4414
+ "module" : "PKTC-IETF-SIG-MIB"
4415
+ },
4416
+ "pktcSigDevrpAsDtsDuration" : {
4417
+ "nodetype" : "member",
4418
+ "module" : "PKTC-IETF-SIG-MIB"
4419
+ },
4420
+ "pktcSigDevCidMode" : {
4421
+ "nodetype" : "member",
4422
+ "module" : "PKTC-IETF-SIG-MIB"
4423
+ },
4424
+ "pktcSigDevCidAfterRing" : {
4425
+ "nodetype" : "member",
4426
+ "module" : "PKTC-IETF-SIG-MIB"
4427
+ },
4428
+ "pktcSigDevCidAfterDTAS" : {
4429
+ "nodetype" : "member",
4430
+ "module" : "PKTC-IETF-SIG-MIB"
4431
+ },
4432
+ "pktcSigDevCidAfterRPAS" : {
4433
+ "nodetype" : "member",
4434
+ "module" : "PKTC-IETF-SIG-MIB"
4435
+ },
4436
+ "pktcSigDevRingAfterCID" : {
4437
+ "nodetype" : "member",
4438
+ "module" : "PKTC-IETF-SIG-MIB"
4439
+ },
4440
+ "pktcSigDevCidDTASAfterLR" : {
4441
+ "nodetype" : "member",
4442
+ "module" : "PKTC-IETF-SIG-MIB"
4443
+ },
4444
+ "pktcSigDevVmwiMode" : {
4445
+ "nodetype" : "member",
4446
+ "module" : "PKTC-IETF-SIG-MIB"
4447
+ },
4448
+ "pktcSigDevVmwiAfterDTAS" : {
4449
+ "nodetype" : "member",
4450
+ "module" : "PKTC-IETF-SIG-MIB"
4451
+ },
4452
+ "pktcSigDevVmwiAfterRPAS" : {
4453
+ "nodetype" : "member",
4454
+ "module" : "PKTC-IETF-SIG-MIB"
4455
+ },
4456
+ "pktcSigDevVmwiDTASAfterLR" : {
4457
+ "nodetype" : "member",
4458
+ "module" : "PKTC-IETF-SIG-MIB"
4459
+ },
4460
+ "pktcSigPowerRingFrequency" : {
4461
+ "nodetype" : "member",
4462
+ "module" : "PKTC-IETF-SIG-MIB"
4463
+ },
4464
+ "pktcSigPulseSignalFrequency" : {
4465
+ "nodetype" : "member",
4466
+ "module" : "PKTC-IETF-SIG-MIB"
4467
+ },
4468
+ "pktcSigPulseSignalDbLevel" : {
4469
+ "nodetype" : "member",
4470
+ "module" : "PKTC-IETF-SIG-MIB"
4471
+ },
4472
+ "pktcSigPulseSignalDuration" : {
4473
+ "nodetype" : "member",
4474
+ "module" : "PKTC-IETF-SIG-MIB"
4475
+ },
4476
+ "pktcSigPulseSignalPulseInterval" : {
4477
+ "nodetype" : "member",
4478
+ "module" : "PKTC-IETF-SIG-MIB"
4479
+ },
4480
+ "pktcSigPulseSignalRepeatCount" : {
4481
+ "nodetype" : "member",
4482
+ "module" : "PKTC-IETF-SIG-MIB"
4483
+ },
4484
+ "pktcSigDevToneDbLevel" : {
4485
+ "nodetype" : "member",
4486
+ "module" : "PKTC-IETF-SIG-MIB"
4487
+ },
4488
+ "pktcSigDevToneFreqCounter" : {
4489
+ "nodetype" : "member",
4490
+ "module" : "PKTC-IETF-SIG-MIB"
4491
+ },
4492
+ "pktcSigDevToneWholeToneRepeatCount" : {
4493
+ "nodetype" : "member",
4494
+ "module" : "PKTC-IETF-SIG-MIB"
4495
+ },
4496
+ "pktcSigDevToneSteady" : {
4497
+ "nodetype" : "member",
4498
+ "module" : "PKTC-IETF-SIG-MIB"
4499
+ },
4500
+ "pktcSigDevToneFirstFreqValue" : {
4501
+ "nodetype" : "member",
4502
+ "module" : "PKTC-IETF-SIG-MIB"
4503
+ },
4504
+ "pktcSigDevToneSecondFreqValue" : {
4505
+ "nodetype" : "member",
4506
+ "module" : "PKTC-IETF-SIG-MIB"
4507
+ },
4508
+ "pktcSigDevToneThirdFreqValue" : {
4509
+ "nodetype" : "member",
4510
+ "module" : "PKTC-IETF-SIG-MIB"
4511
+ },
4512
+ "pktcSigDevToneFourthFreqValue" : {
4513
+ "nodetype" : "member",
4514
+ "module" : "PKTC-IETF-SIG-MIB"
4515
+ },
4516
+ "pktcSigDevToneFreqMode" : {
4517
+ "nodetype" : "member",
4518
+ "module" : "PKTC-IETF-SIG-MIB"
4519
+ },
4520
+ "pktcSigDevToneFreqAmpModePrtg" : {
4521
+ "nodetype" : "member",
4522
+ "module" : "PKTC-IETF-SIG-MIB"
4523
+ },
4524
+ "pktcSigDevToneFreqOnDuration" : {
4525
+ "nodetype" : "member",
4526
+ "module" : "PKTC-IETF-SIG-MIB"
4527
+ },
4528
+ "pktcSigDevToneFreqOffDuration" : {
4529
+ "nodetype" : "member",
4530
+ "module" : "PKTC-IETF-SIG-MIB"
4531
+ },
4532
+ "pktcSigDevToneFreqRepeatCount" : {
4533
+ "nodetype" : "member",
4534
+ "module" : "PKTC-IETF-SIG-MIB"
4535
+ },
4536
+ }, # members
4537
+ "description" :
4538
+ """ Group of objects that extend the behavior of existing
4539
+ objects to support operations in the widest possible set
4540
+ of international marketplaces. Note that many of these
4541
+ objects represent a superset of behaviors described in
4542
+ other objects within this MIB module.""",
4543
+ }, # group
4544
+ "pktcLLinePackageGroup" : {
4545
+ "nodetype" : "group",
4546
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4547
+ "oid" : "1.3.6.1.2.1.169.2.2.4",
4548
+ "status" : "current",
4549
+ "members" : {
4550
+ "pktcSigDevR0Cadence" : {
4551
+ "nodetype" : "member",
4552
+ "module" : "PKTC-IETF-SIG-MIB"
4553
+ },
4554
+ "pktcSigDevR1Cadence" : {
4555
+ "nodetype" : "member",
4556
+ "module" : "PKTC-IETF-SIG-MIB"
4557
+ },
4558
+ "pktcSigDevR2Cadence" : {
4559
+ "nodetype" : "member",
4560
+ "module" : "PKTC-IETF-SIG-MIB"
4561
+ },
4562
+ "pktcSigDevR3Cadence" : {
4563
+ "nodetype" : "member",
4564
+ "module" : "PKTC-IETF-SIG-MIB"
4565
+ },
4566
+ "pktcSigDevR4Cadence" : {
4567
+ "nodetype" : "member",
4568
+ "module" : "PKTC-IETF-SIG-MIB"
4569
+ },
4570
+ "pktcSigDevR5Cadence" : {
4571
+ "nodetype" : "member",
4572
+ "module" : "PKTC-IETF-SIG-MIB"
4573
+ },
4574
+ "pktcSigDevR6Cadence" : {
4575
+ "nodetype" : "member",
4576
+ "module" : "PKTC-IETF-SIG-MIB"
4577
+ },
4578
+ "pktcSigDevR7Cadence" : {
4579
+ "nodetype" : "member",
4580
+ "module" : "PKTC-IETF-SIG-MIB"
4581
+ },
4582
+ "pktcSigDevRgCadence" : {
4583
+ "nodetype" : "member",
4584
+ "module" : "PKTC-IETF-SIG-MIB"
4585
+ },
4586
+ "pktcSigDevRsCadence" : {
4587
+ "nodetype" : "member",
4588
+ "module" : "PKTC-IETF-SIG-MIB"
4589
+ },
4590
+ }, # members
4591
+ "description" :
4592
+ """Group of Objects to support the L line package.""",
4593
+ }, # group
4594
+ "pktcELinePackageGroup" : {
4595
+ "nodetype" : "group",
4596
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4597
+ "oid" : "1.3.6.1.2.1.169.2.2.5",
4598
+ "status" : "current",
4599
+ "members" : {
4600
+ "pktcSigDevR0Cadence" : {
4601
+ "nodetype" : "member",
4602
+ "module" : "PKTC-IETF-SIG-MIB"
4603
+ },
4604
+ "pktcSigDevR1Cadence" : {
4605
+ "nodetype" : "member",
4606
+ "module" : "PKTC-IETF-SIG-MIB"
4607
+ },
4608
+ "pktcSigDevR2Cadence" : {
4609
+ "nodetype" : "member",
4610
+ "module" : "PKTC-IETF-SIG-MIB"
4611
+ },
4612
+ "pktcSigDevR3Cadence" : {
4613
+ "nodetype" : "member",
4614
+ "module" : "PKTC-IETF-SIG-MIB"
4615
+ },
4616
+ "pktcSigDevR4Cadence" : {
4617
+ "nodetype" : "member",
4618
+ "module" : "PKTC-IETF-SIG-MIB"
4619
+ },
4620
+ "pktcSigDevR5Cadence" : {
4621
+ "nodetype" : "member",
4622
+ "module" : "PKTC-IETF-SIG-MIB"
4623
+ },
4624
+ "pktcSigDevR6Cadence" : {
4625
+ "nodetype" : "member",
4626
+ "module" : "PKTC-IETF-SIG-MIB"
4627
+ },
4628
+ "pktcSigDevR7Cadence" : {
4629
+ "nodetype" : "member",
4630
+ "module" : "PKTC-IETF-SIG-MIB"
4631
+ },
4632
+ "pktcSigDevRgCadence" : {
4633
+ "nodetype" : "member",
4634
+ "module" : "PKTC-IETF-SIG-MIB"
4635
+ },
4636
+ "pktcSigDevRsCadence" : {
4637
+ "nodetype" : "member",
4638
+ "module" : "PKTC-IETF-SIG-MIB"
4639
+ },
4640
+ "pktcSigPulseSignalFrequency" : {
4641
+ "nodetype" : "member",
4642
+ "module" : "PKTC-IETF-SIG-MIB"
4643
+ },
4644
+ "pktcSigPulseSignalDbLevel" : {
4645
+ "nodetype" : "member",
4646
+ "module" : "PKTC-IETF-SIG-MIB"
4647
+ },
4648
+ "pktcSigPulseSignalDuration" : {
4649
+ "nodetype" : "member",
4650
+ "module" : "PKTC-IETF-SIG-MIB"
4651
+ },
4652
+ "pktcSigPulseSignalPulseInterval" : {
4653
+ "nodetype" : "member",
4654
+ "module" : "PKTC-IETF-SIG-MIB"
4655
+ },
4656
+ "pktcSigPulseSignalRepeatCount" : {
4657
+ "nodetype" : "member",
4658
+ "module" : "PKTC-IETF-SIG-MIB"
4659
+ },
4660
+ "pktcSigDevRingCadence" : {
4661
+ "nodetype" : "member",
4662
+ "module" : "PKTC-IETF-SIG-MIB"
4663
+ },
4664
+ }, # members
4665
+ "description" :
4666
+ """Group of Objects to support the E line package.""",
4667
+ }, # group
4668
+ }, # groups
4669
+
4670
+ "compliances" : {
4671
+ "pktcSigBasicCompliance" : {
4672
+ "nodetype" : "compliance",
4673
+ "moduleName" : "PKTC-IETF-SIG-MIB",
4674
+ "oid" : "1.3.6.1.2.1.169.2.1.1",
4675
+ "status" : "current",
4676
+ "description" :
4677
+ """ The compliance statement for MTAs that implement
4678
+ NCS signaling.""",
4679
+ "requires" : {
4680
+ "pktcSigDeviceGroup" : {
4681
+ "nodetype" : "mandatory",
4682
+ "module" : "PKTC-IETF-SIG-MIB"
4683
+ },
4684
+ "pktcSigEndpointGroup" : {
4685
+ "nodetype" : "mandatory",
4686
+ "module" : "PKTC-IETF-SIG-MIB"
4687
+ },
4688
+ "pktcInternationalGroup" : {
4689
+ "nodetype" : "optional",
4690
+ "module" : "PKTC-IETF-SIG-MIB",
4691
+ "description" :
4692
+ """ This group is mandatory only for MTAs implementing
4693
+ international telephony features.""",
4694
+ },
4695
+ "pktcLLinePackageGroup" : {
4696
+ "nodetype" : "optional",
4697
+ "module" : "PKTC-IETF-SIG-MIB",
4698
+ "description" :
4699
+ """ This group is mandatory only for MTAs implementing the L
4700
+ line package.""",
4701
+ },
4702
+ "pktcELinePackageGroup" : {
4703
+ "nodetype" : "optional",
4704
+ "module" : "PKTC-IETF-SIG-MIB",
4705
+ "description" :
4706
+ """ This group is mandatory only for MTAs implementing the E
4707
+ Line Package.""",
4708
+ },
4709
+ }, # requires
4710
+ }, # compliance
4711
+ }, # compliances
4712
+
4713
+ }