config-format.html 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type"
  5. content="text/html; charset=ISO-8859-1">
  6. <title>DOCSIS Configuration File Format</title>
  7. <meta name="author" content="Evvolve">
  8. </head>
  9. <body>
  10. <big><big><span style="font-weight: bold;">Configuration file format</span><br
  11. style="font-weight: bold;">
  12. </big></big><br>
  13. The configuration file format somewhat resembles a C program. It is
  14. designed to be easily readable and easily "parseable".&nbsp; <br>
  15. <br>
  16. The general format is the following: <br>
  17. <br>
  18. <pre>Main { </pre>
  19. <pre>&lt;configuration_setting_1&gt; ;</pre>
  20. <pre>&lt;configuration_setting_2&gt; ; </pre>
  21. <pre>..... </pre>
  22. <pre><br>&lt;aggregate_setting 1&gt; { </pre>
  23. <pre>&nbsp;&nbsp;&nbsp; &lt;Sub-Configuration Setting&gt; ;</pre>
  24. <pre>&nbsp;&nbsp;&nbsp; &lt;Sub-Configuration Setting&gt; ;</pre>
  25. <pre>}&nbsp;&nbsp; </pre>
  26. <pre>} </pre>
  27. <br>
  28. A configuration setting is generally a Label and a Value. Examples: <br>
  29. <br>
  30. <pre>Network Access 1 </pre>
  31. <pre>SnmpMibObject sysDescr.0 String "Misc Cable Modem"</pre>
  32. <br>
  33. Each configuration setting has to be terminated by the ";" character as
  34. shown above. <br>
  35. <br>
  36. A list of all possible <a href="config-settings.html">Configuration Settings</a> and their type can be
  37. found <a href="config-settings.html">here</a>. <br>
  38. <br>
  39. <big style="font-weight: bold;"><big>Example </big></big><br>
  40. <br>
  41. Here is an example DOCSIS 1.0 configuration file. The parts marked in <span
  42. style="color: rgb(204, 0, 0); font-weight: bold;">bold red</span> are
  43. mandatory. <br>
  44. <br>
  45. <span
  46. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">Main</span><br
  47. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
  48. <span
  49. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">{</span><br
  50. style="font-family: monospace; font-weight: bold;">
  51. <span style="font-family: monospace; font-weight: bold;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  52. <span style="color: rgb(204, 0, 0);">NetworkAccess 1;</span></span><br
  53. style="font-family: monospace;">
  54. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  55. MaxCPE 3;</span><br style="font-family: monospace;">
  56. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  57. <span style="color: rgb(204, 0, 0); font-weight: bold;">ClassOfService</span></span><br
  58. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
  59. <span
  60. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  61. {</span><br
  62. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
  63. <span
  64. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  65. ClassID 1;</span><br style="font-family: monospace;">
  66. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  67. MaxRateDown 512000;</span><br style="font-family: monospace;">
  68. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  69. MaxRateUp 256000;</span><br style="font-family: monospace;">
  70. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  71. <span style="color: rgb(204, 0, 0); font-weight: bold;">PrivacyEnable 0;</span></span><br
  72. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
  73. <span
  74. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  75. }</span><br style="font-family: monospace;">
  76. <span style="font-family: monospace;"> SnmpMibObject sysDescr.0 String
  77. "Misc Cable Modem"; </span><br style="font-family: monospace;">
  78. <span style="font-family: monospace;"> SnmpWriteControl .1.3.6.1 0; </span><br
  79. style="font-family: monospace;">
  80. <span
  81. style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">}</span><br>
  82. <br>
  83. In this example, we just allow the cable modem to pass traffic to the
  84. cable network ( NetworkAccess 1 ) and then we give it a basic class of
  85. service with a limit of 512 kbps downstream and 256 kbps
  86. upstream.&nbsp; Baseline Privacy (encryption) is disabled. <br>
  87. <br>
  88. Here is a simple DOCSIS 1.1 configuration file example:<br>
  89. <br>
  90. <span style="font-family: monospace;">Main</span><br
  91. style="font-family: monospace;">
  92. <span style="font-family: monospace;">{</span><br
  93. style="font-family: monospace;">
  94. <span style="font-family: monospace;"></span><span
  95. style="font-family: monospace;">&nbsp;&nbsp;&nbsp; NetworkAccess 1;</span><br
  96. style="font-family: monospace;">
  97. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; MaxCPE 3;</span><br
  98. style="font-family: monospace;">
  99. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; UsServiceFlow</span><br
  100. style="font-family: monospace;">
  101. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; {</span><br
  102. style="font-family: monospace;">
  103. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; &nbsp;
  104. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; UsServiceFlowRef 1;</span><br
  105. style="font-family: monospace;">
  106. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  107. QosParamSetType 7;</span><br style="font-family: monospace;">
  108. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  109. TrafficPriority 1;</span><br style="font-family: monospace;">
  110. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  111. MaxRateSustained 256000;</span><br style="font-family: monospace;">
  112. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  113. MaxTrafficBurst 1522;</span><br style="font-family: monospace;">
  114. <span style="font-family: monospace;"></span><span
  115. style="font-family: monospace;"></span><span
  116. style="font-family: monospace;"></span><span
  117. style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  118. RequestOrTxPolicy 0x00000018;</span><br style="font-family: monospace;">
  119. <span style="font-family: monospace;"></span><span
  120. style="font-family: monospace;">&nbsp;&nbsp;&nbsp; }</span><br
  121. style="font-family: monospace;">
  122. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; DsServiceFlow</span><br
  123. style="font-family: monospace;">
  124. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; {</span><br
  125. style="font-family: monospace;">
  126. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  127. DsServiceFlowRef 101;</span><br style="font-family: monospace;">
  128. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  129. QosParamSetType 7;</span><br style="font-family: monospace;">
  130. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  131. TrafficPriority 1;</span><br style="font-family: monospace;">
  132. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  133. MaxRateSustained 512000;</span><span style="font-family: monospace;"></span><span
  134. style="font-family: monospace;"></span><br
  135. style="font-family: monospace;">
  136. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; }<br>
  137. &nbsp;&nbsp;&nbsp; GlobalPrivacyEnable 0; <br>
  138. </span><span style="font-family: monospace;"><span
  139. style="font-family: monospace;">&nbsp;&nbsp;&nbsp; SnmpMibObject
  140. sysDescr.0 String "Misc Cable Modem"; </span><br
  141. style="font-family: monospace;">
  142. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;
  143. SnmpWriteControl .1.3.6.1 0; </span><br style="font-family: monospace;">
  144. </span><span style="font-family: monospace;">}</span><br>
  145. <br>
  146. This file is similar to the one above, except that we have replaced the
  147. ClassOfService with two service flows - one upstream, one
  148. downstream.&nbsp; Also the BaselinePrivacy setting is now a global
  149. configuration setting (and is only recognized by DOCSIS 1.1 cable
  150. modems). <br>
  151. <br>
  152. <br>
  153. <big style="font-weight: bold;"><big>PacketCable configuration files<br>
  154. </big></big><br>
  155. <br>
  156. MTA config files have to start and end with the MtaConfigDelimiter
  157. configuration setting (with values of "1" and 255). For example:<br>
  158. <br>
  159. <pre>Main { </pre>
  160. <pre>MtaConfigDelimiter 1; </pre>
  161. <pre>SnmpMibObject pktcDevMtaEnabled.0 Integer 1; </pre>
  162. <pre>....</pre>
  163. <pre>MtaConfigDelimiter 255;</pre>
  164. <pre>}</pre>
  165. <big style="font-weight: bold;"><big>Appendix: Complex configuration
  166. file</big></big><br>
  167. <br>
  168. This configuration file is NOT useable. It is only described here as a
  169. reference and to make the reader more familiar with the format. <br>
  170. <br>
  171. <span style="font-family: monospace;">Main</span><br
  172. style="font-family: monospace;">
  173. <span style="font-family: monospace;">{</span><br
  174. style="font-family: monospace;">
  175. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  176. DsPacketClass</span><br style="font-family: monospace;">
  177. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  178. {</span><br style="font-family: monospace;">
  179. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  180. ClassifierRef 255;</span><br style="font-family: monospace;">
  181. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  182. ClassifierId 65535;</span><br style="font-family: monospace;">
  183. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  184. ServiceFlowRef 65535;</span><br style="font-family: monospace;">
  185. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  186. ServiceFlowId 2147483647;</span><br style="font-family: monospace;">
  187. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  188. RulePriority 255;</span><br style="font-family: monospace;">
  189. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  190. ActivationState 1;</span><br style="font-family: monospace;">
  191. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  192. IpPacketClassifier</span><br style="font-family: monospace;">
  193. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  194. {</span><br style="font-family: monospace;">
  195. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  196. IpTos 0x00ffff;</span><br style="font-family: monospace;">
  197. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  198. IpProto 234;</span><br style="font-family: monospace;">
  199. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  200. IpSrcAddr 10.1.2.3;</span><br style="font-family: monospace;">
  201. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  202. IpSrcMask 255.255.0.0;</span><br style="font-family: monospace;">
  203. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  204. IpDstAddr 10.5.2.5;</span><br style="font-family: monospace;">
  205. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  206. IpDstMask 255.255.0.0;</span><br style="font-family: monospace;">
  207. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  208. SrcPortStart 80;</span><br style="font-family: monospace;">
  209. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  210. SrcPortEnd 81;</span><br style="font-family: monospace;">
  211. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  212. DstPortStart 500;</span><br style="font-family: monospace;">
  213. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  214. DstPortEnd 501;</span><br style="font-family: monospace;">
  215. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  216. }</span><br style="font-family: monospace;">
  217. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  218. }</span><br style="font-family: monospace;">
  219. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  220. UsPacketClass</span><br style="font-family: monospace;">
  221. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  222. {</span><br style="font-family: monospace;">
  223. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  224. ClassifierRef 253;</span><br style="font-family: monospace;">
  225. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  226. ClassifierId 65533;</span><br style="font-family: monospace;">
  227. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  228. ServiceFlowRef 65533;</span><br style="font-family: monospace;">
  229. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  230. ServiceFlowId 2147483645;</span><br style="font-family: monospace;">
  231. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  232. RulePriority 255;</span><br style="font-family: monospace;">
  233. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  234. ActivationState 1;</span><br style="font-family: monospace;">
  235. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  236. LLCPacketClassifier</span><br style="font-family: monospace;">
  237. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  238. {</span><br style="font-family: monospace;">
  239. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  240. DstMacAddress 00:00:de:ad:be:ef/00:00:ff:ff:ff:ff;</span><br
  241. style="font-family: monospace;">
  242. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  243. SrcMacAddress 00:a0:a0:a0:a0:a0;</span><br
  244. style="font-family: monospace;">
  245. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  246. EtherType 0x030303;</span><br style="font-family: monospace;">
  247. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  248. }</span><br style="font-family: monospace;">
  249. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  250. }</span><br style="font-family: monospace;">
  251. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  252. DsServiceFlow</span><br style="font-family: monospace;">
  253. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  254. {</span><br style="font-family: monospace;">
  255. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  256. DsServiceFlowRef 65535;</span><br style="font-family: monospace;">
  257. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  258. DsServiceFlowId 2147483647;</span><br style="font-family: monospace;">
  259. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  260. TrafficPriority 6;</span><br style="font-family: monospace;">
  261. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  262. MaxRateSustained 3421234;</span><br style="font-family: monospace;">
  263. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  264. MaxTrafficBurst 564343;</span><br style="font-family: monospace;">
  265. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  266. MaxDsLatency 7856345;</span><br style="font-family: monospace;">
  267. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  268. }</span><br style="font-family: monospace;">
  269. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  270. UsServiceFlow</span><br style="font-family: monospace;">
  271. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  272. {</span><br style="font-family: monospace;">
  273. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  274. UsServiceFlowRef 65533;</span><br style="font-family: monospace;">
  275. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  276. UsServiceFlowId 2147483645;</span><br style="font-family: monospace;">
  277. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  278. TrafficPriority 6;</span><br style="font-family: monospace;">
  279. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  280. MaxRateSustained 3421234;</span><br style="font-family: monospace;">
  281. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  282. MaxTrafficBurst 564343;</span><br style="font-family: monospace;">
  283. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  284. SchedulingType 3;</span><br style="font-family: monospace;">
  285. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  286. MaxConcatenatedBurst 34534;</span><br style="font-family: monospace;">
  287. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  288. ToleratedGrantJitter 4653512;</span><br style="font-family: monospace;">
  289. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  290. }</span><br style="font-family: monospace;">
  291. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  292. NetworkAccess 1;</span><br style="font-family: monospace;">
  293. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  294. DownstreamFrequency 123000000;</span><br style="font-family: monospace;">
  295. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  296. UpstreamChannelId 1;</span><br style="font-family: monospace;">
  297. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  298. ClassOfService</span><br style="font-family: monospace;">
  299. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  300. {</span><br style="font-family: monospace;">
  301. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  302. ClassID 1;</span><br style="font-family: monospace;">
  303. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  304. MaxRateDown 512000;</span><br style="font-family: monospace;">
  305. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  306. MaxRateUp 64000;</span><br style="font-family: monospace;">
  307. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  308. PriorityUp 3;</span><br style="font-family: monospace;">
  309. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  310. GuaranteedUp 32000;</span><br style="font-family: monospace;">
  311. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  312. MaxBurstUp 254;</span><br style="font-family: monospace;">
  313. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  314. }</span><br style="font-family: monospace;">
  315. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  316. BaselinePrivacy</span><br style="font-family: monospace;">
  317. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  318. {</span><br style="font-family: monospace;">
  319. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  320. AuthTimeout 10;</span><br style="font-family: monospace;">
  321. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  322. ReAuthTimeout 10;</span><br style="font-family: monospace;">
  323. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  324. AuthGraceTime 600;</span><br style="font-family: monospace;">
  325. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  326. OperTimeout 10;</span><br style="font-family: monospace;">
  327. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  328. ReKeyTimeout 10;</span><br style="font-family: monospace;">
  329. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  330. TEKGraceTime 600;</span><br style="font-family: monospace;">
  331. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  332. AuthRejectTimeout 9;</span><br style="font-family: monospace;">
  333. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  334. SAMapWaitTimeout 1;</span><br style="font-family: monospace;">
  335. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  336. SAMapMaxRetries 4;</span><br style="font-family: monospace;">
  337. <br style="font-family: monospace;">
  338. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  339. }</span><br style="font-family: monospace;">
  340. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  341. DocsisTwoEnable 1;</span><br style="font-family: monospace;">
  342. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  343. GenericTLV TlvCode 16 TlvLength 4 TlvValue 0xc0a8fe43;&nbsp; /*
  344. &Agrave;&uml;&thorn;C */</span><br style="font-family: monospace;">
  345. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  346. SnmpV3Kickstart</span><br style="font-family: monospace;">
  347. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  348. {</span><br style="font-family: monospace;">
  349. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  350. SnmpV3SecurityName "2adfla6";</span><br style="font-family: monospace;">
  351. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  352. }</span><br style="font-family: monospace;">
  353. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  354. SnmpV3TrapReceiver</span><br style="font-family: monospace;">
  355. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  356. {</span><br style="font-family: monospace;">
  357. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  358. SnmpV3TrapRxIP 10.0.1.253;</span><br style="font-family: monospace;">
  359. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  360. SnmpV3TrapRxPort 56790;</span><br style="font-family: monospace;">
  361. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  362. SnmpV3TrapRxType 2;</span><br style="font-family: monospace;">
  363. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  364. SnmpV3TrapRxTimeout 500;</span><br style="font-family: monospace;">
  365. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  366. SnmpV3TrapRxRetries 3;</span><br style="font-family: monospace;">
  367. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  368. SnmpV3TrapRxSecurityName "2adfla6";</span><br
  369. style="font-family: monospace;">
  370. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  371. SnmpV3TrapRxFilterOID .1.3.6.1;</span><br
  372. style="font-family: monospace;">
  373. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  374. }</span><br style="font-family: monospace;">
  375. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  376. SnmpWriteControl .1.3.6.1 1;</span><br style="font-family: monospace;">
  377. <br style="font-family: monospace;">
  378. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  379. SnmpMibObject sysContact.0 String "evvolve@users.sourceforge.net" ;</span><br
  380. style="font-family: monospace;">
  381. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  382. SnmpMibObject sysName.0 String "DCM105 test" ;</span><br
  383. style="font-family: monospace;">
  384. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  385. SnmpMibObject docsDevFilterIpDefault.0 Integer 1; /* discard */</span><br
  386. style="font-family: monospace;">
  387. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  388. SnmpMibObject docsDevFilterIpStatus.1 Integer 6; /* destroy */</span><br
  389. style="font-family: monospace;">
  390. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  391. SnmpMibObject docsDevFilterIpControl.1 Integer 2; /* accept */</span><br
  392. style="font-family: monospace;">
  393. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  394. SnmpMibObject docsDevFilterIpIfIndex.1 Integer 0 ;</span><br
  395. style="font-family: monospace;">
  396. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  397. SnmpMibObject docsDevFilterIpDirection.1 Integer 3; /* both */</span><br
  398. style="font-family: monospace;">
  399. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  400. SnmpMibObject docsDevFilterIpBroadcast.1 Integer 2; /* false */</span><br
  401. style="font-family: monospace;">
  402. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  403. SnmpMibObject docsDevFilterIpSaddr.1 IPAddress 0.0.0.0 ;</span><br
  404. style="font-family: monospace;">
  405. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  406. SnmpMibObject docsDevFilterIpSmask.1 IPAddress 0.0.0.0 ;</span><br
  407. style="font-family: monospace;">
  408. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  409. SnmpMibObject docsDevFilterIpDaddr.1 IPAddress 0.0.0.0 ;</span><br
  410. style="font-family: monospace;">
  411. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  412. SnmpMibObject docsDevFilterIpDmask.1 IPAddress 0.0.0.0 ;</span><br
  413. style="font-family: monospace;">
  414. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  415. SnmpMibObject docsDevFilterIpProtocol.1 Integer 1 ;</span><br
  416. style="font-family: monospace;">
  417. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  418. SnmpMibObject docsDevFilterIpStatus.1 Integer 4; /* createAndGo */</span><br
  419. style="font-family: monospace;">
  420. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  421. SnmpMibObject docsDevFilterIpStatus.2 Integer 6; /* destroy */</span><br
  422. style="font-family: monospace;">
  423. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  424. SnmpMibObject docsDevFilterIpControl.2 Integer 2; /* accept */</span><br
  425. style="font-family: monospace;">
  426. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  427. SnmpMibObject docsDevFilterIpIfIndex.2 Integer 0 ;</span><br
  428. style="font-family: monospace;">
  429. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  430. SnmpMibObject docsDevFilterIpDirection.2 Integer 3; /* both */</span><br
  431. style="font-family: monospace;">
  432. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  433. SnmpMibObject docsDevFilterIpBroadcast.2 Integer 2; /* false */</span><br
  434. style="font-family: monospace;">
  435. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  436. SnmpMibObject docsDevFilterIpSaddr.2 IPAddress 0.0.0.0 ;</span><br
  437. style="font-family: monospace;">
  438. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  439. SnmpMibObject docsDevFilterIpSmask.2 IPAddress 0.0.0.0 ;</span><br
  440. style="font-family: monospace;">
  441. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  442. SnmpMibObject docsDevFilterIpDaddr.2 IPAddress 10.1.1.1 ;</span><br
  443. style="font-family: monospace;">
  444. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  445. SnmpMibObject docsDevFilterIpDmask.2 IPAddress 255.255.255.255 ;</span><br
  446. style="font-family: monospace;">
  447. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  448. SnmpMibObject docsDevFilterIpProtocol.2 Integer 6 ;</span><br
  449. style="font-family: monospace;">
  450. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  451. SnmpMibObject docsDevFilterIpStatus.2 Integer 4; /* createAndGo */</span><br
  452. style="font-family: monospace;">
  453. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  454. SnmpMibObject docsDevFilterIpStatus.3 Integer 6; /* destroy */</span><br
  455. style="font-family: monospace;">
  456. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  457. SnmpMibObject docsDevFilterIpControl.3 Integer 2; /* accept */</span><br
  458. style="font-family: monospace;">
  459. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  460. SnmpMibObject docsDevFilterIpIfIndex.3 Integer 0 ;</span><br
  461. style="font-family: monospace;">
  462. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  463. SnmpMibObject docsDevFilterIpDirection.3 Integer 3; /* both */</span><br
  464. style="font-family: monospace;">
  465. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  466. SnmpMibObject docsDevFilterIpBroadcast.3 Integer 2; /* false */</span><br
  467. style="font-family: monospace;">
  468. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  469. SnmpMibObject docsDevFilterIpSaddr.3 IPAddress 10.1.1.1 ;</span><br
  470. style="font-family: monospace;">
  471. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  472. SnmpMibObject docsDevFilterIpSmask.3 IPAddress 255.255.255.255 ;</span><br
  473. style="font-family: monospace;">
  474. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  475. SnmpMibObject docsDevFilterIpDaddr.3 IPAddress 0.0.0.0 ;</span><br
  476. style="font-family: monospace;">
  477. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  478. SnmpMibObject docsDevFilterIpDmask.3 IPAddress 0.0.0.0 ;</span><br
  479. style="font-family: monospace;">
  480. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  481. SnmpMibObject docsDevFilterIpProtocol.3 Integer 6 ;</span><br
  482. style="font-family: monospace;">
  483. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  484. SnmpMibObject docsDevFilterIpStatus.3 Integer 4; /* createAndGo */</span><br
  485. style="font-family: monospace;">
  486. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  487. SnmpMibObject docsDevFilterIpStatus.4 Integer 6; /* destroy */</span><br
  488. style="font-family: monospace;">
  489. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  490. SnmpMibObject docsDevFilterIpControl.4 Integer 2; /* accept */</span><br
  491. style="font-family: monospace;">
  492. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  493. SnmpMibObject docsDevFilterIpIfIndex.4 Integer 0 ;</span><br
  494. style="font-family: monospace;">
  495. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  496. SnmpMibObject docsDevFilterIpDirection.4 Integer 3; /* both */</span><br
  497. style="font-family: monospace;">
  498. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  499. SnmpMibObject docsDevFilterIpBroadcast.4 Integer 1; /* true */</span><br
  500. style="font-family: monospace;">
  501. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  502. SnmpMibObject docsDevFilterIpSaddr.4 IPAddress 0.0.0.0 ;</span><br
  503. style="font-family: monospace;">
  504. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  505. SnmpMibObject docsDevFilterIpSmask.4 IPAddress 0.0.0.0 ;</span><br
  506. style="font-family: monospace;">
  507. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  508. SnmpMibObject docsDevFilterIpDaddr.4 IPAddress 0.0.0.0 ;</span><br
  509. style="font-family: monospace;">
  510. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  511. SnmpMibObject docsDevFilterIpDmask.4 IPAddress 0.0.0.0 ;</span><br
  512. style="font-family: monospace;">
  513. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  514. SnmpMibObject docsDevFilterIpProtocol.4 Integer 17 ;</span><br
  515. style="font-family: monospace;">
  516. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  517. SnmpMibObject docsDevFilterIpStatus.4 Integer 4; /* createAndGo */</span><br
  518. style="font-family: monospace;">
  519. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  520. SnmpMibObject docsDevFilterIpStatus.5 Integer 6; /* destroy */</span><br
  521. style="font-family: monospace;">
  522. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  523. SnmpMibObject docsDevFilterIpControl.5 Integer 2; /* accept */</span><br
  524. style="font-family: monospace;">
  525. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  526. SnmpMibObject docsDevFilterIpIfIndex.5 Integer 0 ;</span><br
  527. style="font-family: monospace;">
  528. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  529. SnmpMibObject docsDevFilterIpDirection.5 Integer 3; /* both */</span><br
  530. style="font-family: monospace;">
  531. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  532. SnmpMibObject docsDevFilterIpBroadcast.5 Integer 2; /* false */</span><br
  533. style="font-family: monospace;">
  534. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  535. SnmpMibObject docsDevFilterIpSaddr.5 IPAddress 0.0.0.0 ;</span><br
  536. style="font-family: monospace;">
  537. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  538. SnmpMibObject docsDevFilterIpSmask.5 IPAddress 0.0.0.0 ;</span><br
  539. style="font-family: monospace;">
  540. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  541. SnmpMibObject docsDevFilterIpDaddr.5 IPAddress 0.0.0.0 ;</span><br
  542. style="font-family: monospace;">
  543. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  544. SnmpMibObject docsDevFilterIpDmask.5 IPAddress 0.0.0.0 ;</span><br
  545. style="font-family: monospace;">
  546. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  547. SnmpMibObject docsDevFilterIpProtocol.5 Integer 17 ;</span><br
  548. style="font-family: monospace;">
  549. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  550. SnmpMibObject docsDevFilterIpStatus.5 Integer 4; /* createAndGo */</span><br
  551. style="font-family: monospace;">
  552. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  553. SnmpMibObject docsDevFilterIpStatus.6 Integer 6; /* destroy */</span><br
  554. style="font-family: monospace;">
  555. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  556. SnmpMibObject docsDevFilterIpControl.6 Integer 2; /* accept */</span><br
  557. style="font-family: monospace;">
  558. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  559. SnmpMibObject docsDevFilterIpIfIndex.6 Integer 0 ;</span><br
  560. style="font-family: monospace;">
  561. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  562. SnmpMibObject docsDevFilterIpDirection.6 Integer 3; /* both */</span><br
  563. style="font-family: monospace;">
  564. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  565. SnmpMibObject docsDevFilterIpBroadcast.6 Integer 2; /* false */</span><br
  566. style="font-family: monospace;">
  567. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  568. SnmpMibObject docsDevFilterIpSaddr.6 IPAddress 0.0.0.0 ;</span><br
  569. style="font-family: monospace;">
  570. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  571. SnmpMibObject docsDevFilterIpSmask.6 IPAddress 0.0.0.0 ;</span><br
  572. style="font-family: monospace;">
  573. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  574. SnmpMibObject docsDevFilterIpDaddr.6 IPAddress 0.0.0.0 ;</span><br
  575. style="font-family: monospace;">
  576. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  577. SnmpMibObject docsDevFilterIpDmask.6 IPAddress 0.0.0.0 ;</span><br
  578. style="font-family: monospace;">
  579. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  580. SnmpMibObject docsDevFilterIpProtocol.6 Integer 6 ;</span><br
  581. style="font-family: monospace;">
  582. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  583. SnmpMibObject docsDevFilterIpSourcePortLow.6 Integer 53 ;</span><br
  584. style="font-family: monospace;">
  585. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  586. SnmpMibObject docsDevFilterIpSourcePortHigh.6 Integer 53 ;</span><br
  587. style="font-family: monospace;">
  588. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  589. SnmpMibObject docsDevFilterIpDestPortLow.6 Integer 53 ;</span><br
  590. style="font-family: monospace;">
  591. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  592. SnmpMibObject docsDevFilterIpDestPortHigh.6 Integer 53 ;</span><br
  593. style="font-family: monospace;">
  594. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  595. SnmpMibObject docsDevFilterIpStatus.6 Integer 4; /* createAndGo */</span><br
  596. style="font-family: monospace;">
  597. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  598. SnmpMibObject enterprises.19.20.21.22.23.24 Integer -3 ;</span><br
  599. style="font-family: monospace;">
  600. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  601. SnmpMibObject enterprises.19.20.21.22.23.24 Integer -1 ;</span><br
  602. style="font-family: monospace;">
  603. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  604. SnmpMibObject enterprises.19.30.31.32.33.34 HexString
  605. 0x98ffc00ffc00fffff000000000000000 ;</span><br
  606. style="font-family: monospace;">
  607. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  608. SnmpMibObject enterprises.19.30.1.1.25.1.3.5 Gauge 250000000 ;</span><br
  609. style="font-family: monospace;">
  610. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  611. SwUpgradeFilename "example.bin";</span><br
  612. style="font-family: monospace;">
  613. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  614. SwUpgradeServer 10.1.1.1;</span><br style="font-family: monospace;">
  615. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  616. CpeMacAddress 00:00:de:ad:be:ef;</span><br
  617. style="font-family: monospace;">
  618. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  619. MaxCPE 3;</span><br style="font-family: monospace;">
  620. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  621. /* CmMic 9dcfac758fa60c530ffcdf804c7c83fc; */</span><br
  622. style="font-family: monospace;">
  623. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  624. /* CmtsMic 0f74568a9bc661ffcb16c928d9187390; */</span><br
  625. style="font-family: monospace;">
  626. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  627. /*EndOfDataMkr*/</span><br style="font-family: monospace;">
  628. <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  629. /* Pad */</span><br style="font-family: monospace;">
  630. <span style="font-family: monospace;">}</span><br>
  631. <br>
  632. <br>
  633. </body>
  634. </html>