123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="content-type"
- content="text/html; charset=ISO-8859-1">
- <title>DOCSIS Configuration File Format</title>
- <meta name="author" content="Evvolve">
- </head>
- <body>
- <big><big><span style="font-weight: bold;">Configuration file format</span><br
- style="font-weight: bold;">
- </big></big><br>
- The configuration file format somewhat resembles a C program. It is
- designed to be easily readable and easily "parseable". <br>
- <br>
- The general format is the following: <br>
- <br>
- <pre>Main { </pre>
- <pre><configuration_setting_1> ;</pre>
- <pre><configuration_setting_2> ; </pre>
- <pre>..... </pre>
- <pre><br><aggregate_setting 1> { </pre>
- <pre> <Sub-Configuration Setting> ;</pre>
- <pre> <Sub-Configuration Setting> ;</pre>
- <pre>} </pre>
- <pre>} </pre>
- <br>
- A configuration setting is generally a Label and a Value. Examples: <br>
- <br>
- <pre>Network Access 1 </pre>
- <pre>SnmpMibObject sysDescr.0 String "Misc Cable Modem"</pre>
- <br>
- Each configuration setting has to be terminated by the ";" character as
- shown above. <br>
- <br>
- A list of all possible <a href="config-settings.html">Configuration Settings</a> and their type can be
- found <a href="config-settings.html">here</a>. <br>
- <br>
- <big style="font-weight: bold;"><big>Example </big></big><br>
- <br>
- Here is an example DOCSIS 1.0 configuration file. The parts marked in <span
- style="color: rgb(204, 0, 0); font-weight: bold;">bold red</span> are
- mandatory. <br>
- <br>
- <span
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">Main</span><br
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- <span
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">{</span><br
- style="font-family: monospace; font-weight: bold;">
- <span style="font-family: monospace; font-weight: bold;">
- <span style="color: rgb(204, 0, 0);">NetworkAccess 1;</span></span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxCPE 3;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- <span style="color: rgb(204, 0, 0); font-weight: bold;">ClassOfService</span></span><br
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- <span
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- {</span><br
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- <span
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- ClassID 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateDown 512000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateUp 256000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- <span style="color: rgb(204, 0, 0); font-weight: bold;">PrivacyEnable 0;</span></span><br
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- <span
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;"> SnmpMibObject sysDescr.0 String
- "Misc Cable Modem"; </span><br style="font-family: monospace;">
- <span style="font-family: monospace;"> SnmpWriteControl .1.3.6.1 0; </span><br
- style="font-family: monospace;">
- <span
- style="font-family: monospace; color: rgb(204, 0, 0); font-weight: bold;">}</span><br>
- <br>
- In this example, we just allow the cable modem to pass traffic to the
- cable network ( NetworkAccess 1 ) and then we give it a basic class of
- service with a limit of 512 kbps downstream and 256 kbps
- upstream. Baseline Privacy (encryption) is disabled. <br>
- <br>
- Here is a simple DOCSIS 1.1 configuration file example:<br>
- <br>
- <span style="font-family: monospace;">Main</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">{</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"></span><span
- style="font-family: monospace;"> NetworkAccess 1;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"> MaxCPE 3;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"> UsServiceFlow</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"> {</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- UsServiceFlowRef 1;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- QosParamSetType 7;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- TrafficPriority 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateSustained 256000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxTrafficBurst 1522;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;"></span><span
- style="font-family: monospace;"></span><span
- style="font-family: monospace;"></span><span
- style="font-family: monospace;">
- RequestOrTxPolicy 0x00000018;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;"></span><span
- style="font-family: monospace;"> }</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"> DsServiceFlow</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"> {</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- DsServiceFlowRef 101;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- QosParamSetType 7;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- TrafficPriority 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateSustained 512000;</span><span style="font-family: monospace;"></span><span
- style="font-family: monospace;"></span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;"> }<br>
- GlobalPrivacyEnable 0; <br>
- </span><span style="font-family: monospace;"><span
- style="font-family: monospace;"> SnmpMibObject
- sysDescr.0 String "Misc Cable Modem"; </span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpWriteControl .1.3.6.1 0; </span><br style="font-family: monospace;">
- </span><span style="font-family: monospace;">}</span><br>
- <br>
- This file is similar to the one above, except that we have replaced the
- ClassOfService with two service flows - one upstream, one
- downstream. Also the BaselinePrivacy setting is now a global
- configuration setting (and is only recognized by DOCSIS 1.1 cable
- modems). <br>
- <br>
- <br>
- <big style="font-weight: bold;"><big>PacketCable configuration files<br>
- </big></big><br>
- <br>
- MTA config files have to start and end with the MtaConfigDelimiter
- configuration setting (with values of "1" and 255). For example:<br>
- <br>
- <pre>Main { </pre>
- <pre>MtaConfigDelimiter 1; </pre>
- <pre>SnmpMibObject pktcDevMtaEnabled.0 Integer 1; </pre>
- <pre>....</pre>
- <pre>MtaConfigDelimiter 255;</pre>
- <pre>}</pre>
- <big style="font-weight: bold;"><big>Appendix: Complex configuration
- file</big></big><br>
- <br>
- This configuration file is NOT useable. It is only described here as a
- reference and to make the reader more familiar with the format. <br>
- <br>
- <span style="font-family: monospace;">Main</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">{</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- DsPacketClass</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ClassifierRef 255;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ClassifierId 65535;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ServiceFlowRef 65535;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ServiceFlowId 2147483647;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- RulePriority 255;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ActivationState 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpPacketClassifier</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpTos 0x00ffff;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpProto 234;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpSrcAddr 10.1.2.3;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpSrcMask 255.255.0.0;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpDstAddr 10.5.2.5;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- IpDstMask 255.255.0.0;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SrcPortStart 80;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SrcPortEnd 81;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DstPortStart 500;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DstPortEnd 501;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- UsPacketClass</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ClassifierRef 253;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ClassifierId 65533;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ServiceFlowRef 65533;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ServiceFlowId 2147483645;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- RulePriority 255;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ActivationState 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- LLCPacketClassifier</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DstMacAddress 00:00:de:ad:be:ef/00:00:ff:ff:ff:ff;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SrcMacAddress 00:a0:a0:a0:a0:a0;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- EtherType 0x030303;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DsServiceFlow</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DsServiceFlowRef 65535;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DsServiceFlowId 2147483647;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- TrafficPriority 6;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateSustained 3421234;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxTrafficBurst 564343;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxDsLatency 7856345;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- UsServiceFlow</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- UsServiceFlowRef 65533;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- UsServiceFlowId 2147483645;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- TrafficPriority 6;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateSustained 3421234;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxTrafficBurst 564343;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SchedulingType 3;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxConcatenatedBurst 34534;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ToleratedGrantJitter 4653512;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- NetworkAccess 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DownstreamFrequency 123000000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- UpstreamChannelId 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ClassOfService</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ClassID 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateDown 512000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxRateUp 64000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- PriorityUp 3;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- GuaranteedUp 32000;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxBurstUp 254;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- BaselinePrivacy</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- AuthTimeout 10;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ReAuthTimeout 10;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- AuthGraceTime 600;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- OperTimeout 10;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- ReKeyTimeout 10;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- TEKGraceTime 600;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- AuthRejectTimeout 9;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SAMapWaitTimeout 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SAMapMaxRetries 4;</span><br style="font-family: monospace;">
- <br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- DocsisTwoEnable 1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- GenericTLV TlvCode 16 TlvLength 4 TlvValue 0xc0a8fe43; /*
- À¨þC */</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3Kickstart</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3SecurityName "2adfla6";</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapReceiver</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- {</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxIP 10.0.1.253;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxPort 56790;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxType 2;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxTimeout 500;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxRetries 3;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxSecurityName "2adfla6";</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpV3TrapRxFilterOID .1.3.6.1;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- }</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpWriteControl .1.3.6.1 1;</span><br style="font-family: monospace;">
- <br style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject sysContact.0 String "evvolve@users.sourceforge.net" ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject sysName.0 String "DCM105 test" ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDefault.0 Integer 1; /* discard */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.1 Integer 6; /* destroy */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpControl.1 Integer 2; /* accept */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpIfIndex.1 Integer 0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDirection.1 Integer 3; /* both */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpBroadcast.1 Integer 2; /* false */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSaddr.1 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSmask.1 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDaddr.1 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDmask.1 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpProtocol.1 Integer 1 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.1 Integer 4; /* createAndGo */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.2 Integer 6; /* destroy */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpControl.2 Integer 2; /* accept */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpIfIndex.2 Integer 0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDirection.2 Integer 3; /* both */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpBroadcast.2 Integer 2; /* false */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSaddr.2 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSmask.2 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDaddr.2 IPAddress 10.1.1.1 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDmask.2 IPAddress 255.255.255.255 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpProtocol.2 Integer 6 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.2 Integer 4; /* createAndGo */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.3 Integer 6; /* destroy */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpControl.3 Integer 2; /* accept */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpIfIndex.3 Integer 0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDirection.3 Integer 3; /* both */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpBroadcast.3 Integer 2; /* false */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSaddr.3 IPAddress 10.1.1.1 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSmask.3 IPAddress 255.255.255.255 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDaddr.3 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDmask.3 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpProtocol.3 Integer 6 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.3 Integer 4; /* createAndGo */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.4 Integer 6; /* destroy */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpControl.4 Integer 2; /* accept */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpIfIndex.4 Integer 0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDirection.4 Integer 3; /* both */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpBroadcast.4 Integer 1; /* true */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSaddr.4 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSmask.4 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDaddr.4 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDmask.4 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpProtocol.4 Integer 17 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.4 Integer 4; /* createAndGo */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.5 Integer 6; /* destroy */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpControl.5 Integer 2; /* accept */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpIfIndex.5 Integer 0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDirection.5 Integer 3; /* both */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpBroadcast.5 Integer 2; /* false */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSaddr.5 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSmask.5 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDaddr.5 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDmask.5 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpProtocol.5 Integer 17 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.5 Integer 4; /* createAndGo */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.6 Integer 6; /* destroy */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpControl.6 Integer 2; /* accept */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpIfIndex.6 Integer 0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDirection.6 Integer 3; /* both */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpBroadcast.6 Integer 2; /* false */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSaddr.6 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSmask.6 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDaddr.6 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDmask.6 IPAddress 0.0.0.0 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpProtocol.6 Integer 6 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSourcePortLow.6 Integer 53 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpSourcePortHigh.6 Integer 53 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDestPortLow.6 Integer 53 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpDestPortHigh.6 Integer 53 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject docsDevFilterIpStatus.6 Integer 4; /* createAndGo */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject enterprises.19.20.21.22.23.24 Integer -3 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject enterprises.19.20.21.22.23.24 Integer -1 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject enterprises.19.30.31.32.33.34 HexString
- 0x98ffc00ffc00fffff000000000000000 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SnmpMibObject enterprises.19.30.1.1.25.1.3.5 Gauge 250000000 ;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SwUpgradeFilename "example.bin";</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- SwUpgradeServer 10.1.1.1;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- CpeMacAddress 00:00:de:ad:be:ef;</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- MaxCPE 3;</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- /* CmMic 9dcfac758fa60c530ffcdf804c7c83fc; */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- /* CmtsMic 0f74568a9bc661ffcb16c928d9187390; */</span><br
- style="font-family: monospace;">
- <span style="font-family: monospace;">
- /*EndOfDataMkr*/</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">
- /* Pad */</span><br style="font-family: monospace;">
- <span style="font-family: monospace;">}</span><br>
- <br>
- <br>
- </body>
- </html>
|