DOCS-CABLE-DEVICE-MIB 118 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141
  1. DOCS-CABLE-DEVICE-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3. MODULE-IDENTITY,
  4. OBJECT-TYPE,
  5. IpAddress,
  6. Unsigned32,
  7. Counter32,
  8. Integer32,
  9. zeroDotZero,
  10. mib-2
  11. FROM SNMPv2-SMI -- RFC 2578
  12. RowStatus,
  13. RowPointer,
  14. DateAndTime,
  15. TruthValue,
  16. StorageType
  17. FROM SNMPv2-TC -- RFC 2579
  18. InetAddressType,
  19. InetAddress
  20. FROM INET-ADDRESS-MIB -- RFC 4001
  21. OBJECT-GROUP,
  22. MODULE-COMPLIANCE
  23. FROM SNMPv2-CONF -- RFC 2580
  24. SnmpAdminString
  25. FROM SNMP-FRAMEWORK-MIB -- RFC 3411
  26. InterfaceIndexOrZero
  27. FROM IF-MIB -- RFC 2863
  28. ZeroBasedCounter32
  29. FROM RMON2-MIB -- RFC 4502
  30. diffServMIBDataPathGroup,
  31. diffServMIBClfrGroup,
  32. diffServMIBClfrElementGroup,
  33. diffServMIBMultiFieldClfrGroup,
  34. diffServMIBActionGroup,
  35. diffServMIBDscpMarkActGroup,
  36. diffServMIBCounterGroup,
  37. diffServMIBAlgDropGroup,
  38. diffServDataPathStatus,
  39. diffServClfrStatus,
  40. diffServClfrElementStatus,
  41. diffServMultiFieldClfrAddrType,
  42. diffServMultiFieldClfrSrcAddr,
  43. diffServMultiFieldClfrDstAddr,
  44. diffServAlgDropStatus,
  45. diffServDataPathStorage,
  46. diffServClfrStorage,
  47. diffServClfrElementStorage,
  48. diffServMultiFieldClfrStorage,
  49. diffServActionStorage,
  50. diffServCountActStorage,
  51. diffServAlgDropStorage,
  52. diffServAlgDropType
  53. FROM DIFFSERV-MIB; -- RFC 3289
  54. docsDev MODULE-IDENTITY
  55. LAST-UPDATED "200612200000Z" -- December 20, 2006
  56. ORGANIZATION "IETF IP over Cable Data Network
  57. Working Group"
  58. CONTACT-INFO
  59. " Rich Woundy
  60. Postal: Comcast Cable
  61. 27 Industrial Avenue
  62. Chelmsford, MA 01824 U.S.A.
  63. Phone: +1 978 244 4010
  64. E-mail: richard_woundy@cable.comcast.com
  65. Kevin Marez
  66. Postal: Motorola Corporation
  67. 6450 Sequence Drive
  68. San Diego, CA 92121 U.S.A.
  69. Phone: +1 858 404 3785
  70. E-mail: kevin.marez@motorola.com
  71. IETF IPCDN Working Group
  72. General Discussion: ipcdn@ietf.org
  73. Subscribe: http://www.ietf.org/mailman/listinfo/ipcdn
  74. Archive: ftp://ftp.ietf.org/ietf-mail-archive/ipcdn
  75. Co-chairs: Richard Woundy,
  76. richard_woundy@cable.comcast.com
  77. Jean-Francois Mule,
  78. jf.mule@cablelabs.com"
  79. DESCRIPTION
  80. "This is the MIB Module for DOCSIS-compliant cable modems
  81. and cable-modem termination systems.
  82. Copyright (C) The IETF Trust (2006). This version
  83. of this MIB module was published in RFC 4639; for full
  84. legal notices see the RFC itself."
  85. REVISION "200612200000Z" -- December 20, 2006
  86. DESCRIPTION
  87. "Second version, published as RFC 4639.
  88. Modifications to this MIB module since RFC 2669 include:
  89. - Deprecation of the docsDevFilter group in favor of the
  90. DiffServ MIB groups, to enable support for IPv6
  91. filtering and DiffServ Code Point (DSCP) marking.
  92. - Deprecation of the docsDevCpeGroup in favor of the
  93. docsDevCpeInetGroup, to enable support of IPv6.
  94. - Addition of various InetAddress objects to enable
  95. support of IPv6.
  96. - Deprecation of docsDevNmAccessTable in favor of SNMP
  97. Coexistence and SNMPv3 -- yet adding
  98. docsDevNmAccessTrapVersion and clarifying
  99. docsDevNmAccessIp for current use of this table,
  100. - Addition of docsDevIgmpModeControl for management and
  101. control of the IGMP mode of operation,
  102. - Addition of docsDevMaxCpe for management of the
  103. maxmium number of CPEs permitted access through a
  104. cable modem,
  105. - Addition of docsDevSwServerTransportProtocol, and
  106. modifications to docsDevSoftware object DESCRIPTIONS,
  107. to enable software downloads via either TFTP or HTTP,
  108. - Replacement of docsDevEvThrottleInhibited with
  109. docsDevEvThrottleThresholdExceeded to simplify
  110. event threshold management,
  111. - Modification of docsDevEvReporting to enable local
  112. logging to the internal volatile log, and not to the
  113. internal non-volatile log,
  114. - Modification of the compliance statement to make the
  115. docsDevCpe objects optional
  116. - Created placeholders for two OIDs in the
  117. docsDevFilterPolicyTable that were never used
  118. - Modified the DESCRIPTION of
  119. docsDevSwServerTransportProtocol and
  120. docsDevSwServerAddressType to address the
  121. dependence between each object
  122. - Added a reference to docsDevServerConfigTftpAddress
  123. - Clarified the scope of notifications that are covered
  124. by docsDevEvThrottleThreshold
  125. - Clarified an error condition that could occur when
  126. doing a SET to docsDevEvReporting
  127. - Defined each of the enumerated types for both
  128. docsDevEvLevel and docsDevEvPriority
  129. - Added UNITS clause to docsDevFilterLLCMatches,
  130. docsDevFilterIpMatches, docsDevMaxCpe,
  131. docsDevEvThrottleThreshold and docsDevEvCounts.
  132. - Added REFERENCE clause to docsDevFilterIpProtocol
  133. - Modified DESCRIPTION of docsDevCpeInetAddr to be
  134. more protocol-neutral
  135. - Removed the enumerated value (1) from both
  136. docsDevCpeInetSource and docsDevCpeSource
  137. - Covered additional read-write and read-create objects
  138. in the Security Considerations section
  139. - Modified the default value of docsDevNmAccessIpMask
  140. to be consistent with OSSI specification
  141. - Modified the SYNTAX of docsDevNmAccessCommunity and
  142. docsDevNmAccessInterfaces in the Conformance
  143. Statement section
  144. - Added SYNTAX clause to docsDevEvReporting in the
  145. Conformance Statement section
  146. - Modified SYNTAX clause of docsDevEvReporting to
  147. move new enumerated type to byte boundary
  148. - Added references to DOCSIS 2.0 specifications to
  149. multiple objects
  150. - Clarified non-persistency across reboots for
  151. all tables
  152. - Clarified functionality of docsDevSw objects as
  153. they relate to docsDevSwOperStatus
  154. - Clarified enumerated types (9) and (10) for
  155. docsDevServerBootState
  156. - Defined the state of unknown(0) for the following
  157. objects: docsDevServerDhcpAddressType,
  158. docsDevServerTimeAddressType,
  159. docsDevServerConfigTftpAddressType and
  160. docsDevServerConfigTftpAddressType
  161. - Modified the value in docsDevFilterIpDaddr to be
  162. consistent with the SYNTAX
  163. - Specified which rows could be modified in an
  164. active row for docsDevFilterPolicyStatus
  165. - Defined the term 'manually' in docsDevCpeEnroll
  166. - Clarified the description for
  167. docsDevFilterTosOrMask
  168. - Covered the case of a non-existent row for
  169. docsDevFilterPolicyPtr
  170. - Added DEFVAL clauses for multiple objects
  171. - Replaced docsDevNotification OBJECT IDENTIFIER
  172. with docsDevNotifications to address possible
  173. compatibility issues
  174. - Added support for the usage of RFC 3413 and RFC 3014
  175. as event notification mechanisms
  176. - Removed docsDevFilterPolicyObsoleteGroup
  177. - Added stdInterface(9) type to docsDevEvReporting to
  178. support the usage of RFC3413 and RFC3014
  179. - Modified DESCRIPTION for docsDevMaxCpe"
  180. REVISION "199908190000Z"
  181. DESCRIPTION
  182. "Initial version, published as RFC 2669."
  183. ::= { mib-2 69 }
  184. docsDevMIBObjects OBJECT IDENTIFIER ::= { docsDev 1 }
  185. docsDevBase OBJECT IDENTIFIER ::= { docsDevMIBObjects 1 }
  186. --
  187. -- For the following object, there is no concept in the
  188. -- RFI specification corresponding to a backup CMTS. The
  189. -- enumeration is provided here in case someone is able
  190. -- to define such a role or device.
  191. --
  192. docsDevRole OBJECT-TYPE
  193. SYNTAX INTEGER {
  194. cm(1),
  195. cmtsActive(2),
  196. cmtsBackup(3)
  197. }
  198. MAX-ACCESS read-only
  199. STATUS current
  200. DESCRIPTION
  201. "Defines the current role of this device. cm(1) is a
  202. Cable Modem, cmtsActive(2) is a Cable Modem Termination
  203. System that is controlling the system of cable modems,
  204. and cmtsBackup(3) is a CMTS that is currently connected
  205. but is not controlling the system (not currently used).
  206. In general, if this device is a 'cm', its role will not
  207. change during operation or between reboots. If the
  208. device is a 'cmts' it may change between cmtsActive and
  209. cmtsBackup and back again during normal operation. NB:
  210. At this time, the DOCSIS standards do not support the
  211. concept of a backup CMTS, but cmtsBackup is included for
  212. completeness."
  213. ::= { docsDevBase 1 }
  214. docsDevDateTime OBJECT-TYPE
  215. SYNTAX DateAndTime
  216. MAX-ACCESS read-write
  217. STATUS current
  218. DESCRIPTION
  219. "The current date and time, with time zone information
  220. (if known).
  221. If the real data and time cannot be determined, this
  222. shall represent elapsed time from boot relative to
  223. the standard epoch '1970-1-1,0:0:0.0'. In other
  224. words, if this agent has been up for 3 minutes and
  225. not been able to determine what the actual date and
  226. time are, this object will return the value
  227. '1970-1-1,0:03:0.0'."
  228. ::= { docsDevBase 2 }
  229. docsDevResetNow OBJECT-TYPE
  230. SYNTAX TruthValue
  231. MAX-ACCESS read-write
  232. STATUS current
  233. DESCRIPTION
  234. "Setting this object to true(1) causes the device to
  235. reset. Reading this object always returns false(2)."
  236. ::= { docsDevBase 3 }
  237. docsDevSerialNumber OBJECT-TYPE
  238. SYNTAX SnmpAdminString
  239. MAX-ACCESS read-only
  240. STATUS current
  241. DESCRIPTION
  242. "The manufacturer's serial number for this device."
  243. ::= { docsDevBase 4 }
  244. docsDevSTPControl OBJECT-TYPE
  245. SYNTAX INTEGER {
  246. stEnabled(1),
  247. noStFilterBpdu(2),
  248. noStPassBpdu(3)
  249. }
  250. MAX-ACCESS read-write
  251. STATUS current
  252. DESCRIPTION
  253. "This object controls operation of the spanning tree
  254. protocol (as distinguished from transparent bridging).
  255. If set to stEnabled(1), then the spanning tree protocol
  256. is enabled, subject to bridging constraints.
  257. If noStFilterBpdu(2), then spanning tree is not active,
  258. and Bridge PDUs received are discarded.
  259. If noStPassBpdu(3), then spanning tree is not active,
  260. and Bridge PDUs are transparently forwarded.
  261. Note that a device need not implement all of these
  262. options, but that noStFilterBpdu(2) is required."
  263. DEFVAL { noStFilterBpdu }
  264. ::= { docsDevBase 5 }
  265. docsDevIgmpModeControl OBJECT-TYPE
  266. SYNTAX INTEGER {
  267. passive(1),
  268. active(2)
  269. }
  270. MAX-ACCESS read-write
  271. STATUS current
  272. DESCRIPTION
  273. "This object controls the IGMP mode of operation for
  274. the CM or CMTS. In passive mode, the device forwards
  275. IGMP between interfaces as based on knowledge of
  276. Multicast Session activity on the subscriber side
  277. interface and the rules defined in the DOCSIS RFI
  278. specification. In active mode, the device terminates
  279. at and initiates IGMP through its interfaces as based
  280. on the knowledge of Multicast Session activity on the
  281. subscriber side interface."
  282. REFERENCE
  283. "DOCSIS RFI 1.1 Specification, Section 3.3.1. and
  284. DOCSIS RFI 2.0 Specification, Section 5.3.1."
  285. DEFVAL { passive }
  286. ::= { docsDevBase 6 }
  287. docsDevMaxCpe OBJECT-TYPE
  288. SYNTAX Unsigned32 (0..255)
  289. UNITS "CPEs"
  290. MAX-ACCESS read-only
  291. STATUS current
  292. DESCRIPTION
  293. "The maximum number of CPEs that can be granted access
  294. through a CM during a CM epoch. This value can be
  295. obtained from the CM configuration file; however,
  296. it may be adjusted by the CM according to hardware or
  297. software limitations that have been imposed on the
  298. implementation."
  299. REFERENCE
  300. "DOCSIS RFI 1.0 Specification, Appendix C.7.20., and
  301. DOCSIS RFI 1.1 Specification, Appendix C.1.1.7. and
  302. DOCSIS RFI 2.0 Specification, Appendix C.1.1.7."
  303. ::= { docsDevBase 7 }
  304. --
  305. -- The following table provides one level of security for access
  306. -- to the device by network management stations.
  307. -- Note that access is also constrained by the
  308. -- community strings and any vendor-specific security.
  309. --
  310. docsDevNmAccessTable OBJECT-TYPE
  311. SYNTAX SEQUENCE OF DocsDevNmAccessEntry
  312. MAX-ACCESS not-accessible
  313. STATUS deprecated
  314. DESCRIPTION
  315. "This table controls access to SNMP objects by network
  316. management stations. If the table is empty, access to
  317. SNMP objects is unrestricted. The objects in this table
  318. MUST NOT persist across reboots. The objects in this
  319. table are only accessible from cable devices that are
  320. not capable of operating in SNMP Coexistence mode
  321. (RFC 3584) or in SNMPv3 mode (RFC 3410).
  322. See the conformance section for
  323. details. Note that some devices are required by other
  324. specifications (e.g., the DOCSIS OSSIv1.1 specification)
  325. to support the legacy SNMPv1/v2c docsDevNmAccess mode
  326. for backward compatibility.
  327. This table is deprecated. Instead, use the SNMP
  328. coexistence MIBs from RFC 3584, the TARGET and
  329. NOTIFICATION MIBs from RFC 3413, and
  330. the View-Based Access Control Model (VACM) MIBs for
  331. all SNMP protocol versions from RFC 3415."
  332. ::= { docsDevMIBObjects 2 }
  333. docsDevNmAccessEntry OBJECT-TYPE
  334. SYNTAX DocsDevNmAccessEntry
  335. MAX-ACCESS not-accessible
  336. STATUS deprecated
  337. DESCRIPTION
  338. "An entry describing access to SNMP objects by a
  339. particular network management station. An entry in
  340. this table is not readable unless the management station
  341. has read-write permission (either implicit if the table
  342. is empty, or explicit through an entry in this table).
  343. Entries are ordered by docsDevNmAccessIndex. The first
  344. matching entry (e.g., matching IP address and community
  345. string) is used to derive access."
  346. INDEX { docsDevNmAccessIndex }
  347. ::= { docsDevNmAccessTable 1 }
  348. DocsDevNmAccessEntry ::= SEQUENCE {
  349. docsDevNmAccessIndex Integer32,
  350. docsDevNmAccessIp IpAddress,
  351. docsDevNmAccessIpMask IpAddress,
  352. docsDevNmAccessCommunity OCTET STRING,
  353. docsDevNmAccessControl INTEGER,
  354. docsDevNmAccessInterfaces OCTET STRING,
  355. docsDevNmAccessStatus RowStatus,
  356. docsDevNmAccessTrapVersion INTEGER
  357. }
  358. docsDevNmAccessIndex OBJECT-TYPE
  359. SYNTAX Integer32 (1..2147483647)
  360. MAX-ACCESS not-accessible
  361. STATUS deprecated
  362. DESCRIPTION
  363. "Index used to order the application of access
  364. entries."
  365. ::= { docsDevNmAccessEntry 1 }
  366. docsDevNmAccessIp OBJECT-TYPE
  367. SYNTAX IpAddress
  368. MAX-ACCESS read-create
  369. STATUS deprecated
  370. DESCRIPTION
  371. "The IP address (or subnet) of the network management
  372. station. The address 0.0.0.0 is defined to mean
  373. any Network Management Station (NMS). If traps are
  374. enabled for this entry, then the value must be the
  375. address of a specific device. Implementations MAY
  376. recognize 255.255.255.255 as equivalent to 0.0.0.0."
  377. DEFVAL { '00000000'h }
  378. ::= { docsDevNmAccessEntry 2 }
  379. docsDevNmAccessIpMask OBJECT-TYPE
  380. SYNTAX IpAddress
  381. MAX-ACCESS read-create
  382. STATUS deprecated
  383. DESCRIPTION
  384. "The IP subnet mask of the network management stations.
  385. If traps are enabled for this entry, then the value must
  386. be 0.0.0.0. Implementations MAY recognize
  387. 255.255.255.255 as equivalent to 0.0.0.0."
  388. DEFVAL { '00000000'h }
  389. ::= { docsDevNmAccessEntry 3 }
  390. docsDevNmAccessCommunity OBJECT-TYPE
  391. SYNTAX OCTET STRING
  392. MAX-ACCESS read-create
  393. STATUS deprecated
  394. DESCRIPTION
  395. "The community string to be matched for access by this
  396. entry. If set to a zero-length string, then any
  397. community string will match. When read, this object
  398. SHOULD return a zero-length string."
  399. DEFVAL { "public" }
  400. ::= { docsDevNmAccessEntry 4 }
  401. docsDevNmAccessControl OBJECT-TYPE
  402. SYNTAX INTEGER {
  403. none(1),
  404. read(2),
  405. readWrite(3),
  406. roWithTraps(4),
  407. rwWithTraps(5),
  408. trapsOnly(6)
  409. }
  410. MAX-ACCESS read-create
  411. STATUS deprecated
  412. DESCRIPTION
  413. "Specifies the type of access allowed to this NMS.
  414. Setting this object to none(1) causes the table entry
  415. to be destroyed. Read(2) allows access by 'get' and
  416. 'get-next' PDUs. ReadWrite(3) allows access by 'set' as
  417. well. RoWithtraps(4), rwWithTraps(5), and trapsOnly(6)
  418. control distribution of Trap PDUs transmitted by this
  419. device."
  420. DEFVAL { read }
  421. ::= { docsDevNmAccessEntry 5 }
  422. -- The syntax of the following object was copied from RFC 1493,
  423. -- dot1dStaticAllowedToGoTo.
  424. docsDevNmAccessInterfaces OBJECT-TYPE
  425. SYNTAX OCTET STRING (SIZE (1..32))
  426. MAX-ACCESS read-create
  427. STATUS deprecated
  428. DESCRIPTION
  429. "Specifies the set of interfaces from which requests from
  430. this NMS will be accepted. Each octet within
  431. the value of this object specifies a set of eight
  432. interfaces, the first octet specifying ports 1
  433. through 8, the second octet specifying interfaces 9
  434. through 16, etc. Within each octet, the most
  435. significant bit represents the lowest numbered
  436. interface, and the least significant bit represents the
  437. highest numbered interface. Thus, each interface is
  438. represented by a single bit within the value of this
  439. object. If that bit has a value of '1' then that
  440. interface is included in the set.
  441. Note that entries in this table apply only to link-layer
  442. interfaces (e.g., Ethernet and CATV MAC). Bits
  443. representing upstream and downstream channel interfaces
  444. MUST NOT be set to '1'.
  445. Note that if bits corresponding to non-existing
  446. interfaces are set, the result is implementation
  447. specific.
  448. Note that according to the DOCSIS OSSIv1.1
  449. specification, when ifIndex '1' is included in the
  450. set, then this row applies to all CPE
  451. (customer-facing) interfaces.
  452. The size of this object is the minimum required to
  453. represent all configured interfaces for this device."
  454. ::= { docsDevNmAccessEntry 6 }
  455. docsDevNmAccessStatus OBJECT-TYPE
  456. SYNTAX RowStatus
  457. MAX-ACCESS read-create
  458. STATUS deprecated
  459. DESCRIPTION
  460. "Controls and reflects the status of rows in this
  461. table. Rows in this table may be created by either the
  462. create-and-go or create-and-wait paradigm. There is no
  463. restriction on changing values in a row of this table
  464. while the row is active.
  465. The following objects MUST have valid values before this
  466. object can be set to active: docsDevNmAccessIp,
  467. docsDevNmAccessStatus, docsDevNmAccessIpMask,
  468. docsDevNmAccessCommunity, docsDevNmAccessControl, and
  469. docsDevNmAccessInterfaces."
  470. ::= { docsDevNmAccessEntry 7 }
  471. docsDevNmAccessTrapVersion OBJECT-TYPE
  472. SYNTAX INTEGER {
  473. disableSNMPv2trap(1),
  474. enableSNMPv2trap(2)
  475. }
  476. MAX-ACCESS read-create
  477. STATUS deprecated
  478. DESCRIPTION
  479. "Specifies the TRAP version that is sent to this NMS.
  480. Setting this object to disableSNMPv2trap (1) causes the
  481. trap in SNMPv1 format to be sent to a particular NMS.
  482. Setting this object to enableSNMPv2trap (2) causes the
  483. trap in SNMPv2 format be sent to a particular NMS."
  484. DEFVAL { disableSNMPv2trap }
  485. ::= { docsDevNmAccessEntry 8 }
  486. --
  487. -- The following group describes control objects used for downloading
  488. -- firmware to a cable device. Procedures for software download are
  489. -- described in Section 3.2.1 of the RFC containing this MIB module.
  490. --
  491. docsDevSoftware OBJECT IDENTIFIER ::= { docsDevMIBObjects 3 }
  492. docsDevSwServer OBJECT-TYPE
  493. SYNTAX IpAddress
  494. MAX-ACCESS read-write
  495. STATUS deprecated
  496. DESCRIPTION
  497. "The address of the TFTP server used for software
  498. upgrades. If the TFTP server is unknown or is a
  499. non-IPv4 address, return 0.0.0.0.
  500. This object is deprecated. See docsDevSwServerAddress
  501. for its replacement. This object will have its value
  502. modified, given a valid SET to docsDevSwServerAddress."
  503. ::= { docsDevSoftware 1 }
  504. docsDevSwFilename OBJECT-TYPE
  505. SYNTAX SnmpAdminString (SIZE (0..64))
  506. MAX-ACCESS read-write
  507. STATUS current
  508. DESCRIPTION
  509. "The filename of the software image to be downloaded via
  510. TFTP, or the abs_path (as defined in RFC 2616) of the
  511. software image to be downloaded via HTTP.
  512. Unless set via SNMP, this is the filename or abs_path
  513. specified by the provisioning server during the boot
  514. process that corresponds to the software version that
  515. is desired for this device.
  516. If unknown, the value of this object is the zero-length
  517. string."
  518. ::= { docsDevSoftware 2 }
  519. docsDevSwAdminStatus OBJECT-TYPE
  520. SYNTAX INTEGER {
  521. upgradeFromMgt(1),
  522. allowProvisioningUpgrade(2),
  523. ignoreProvisioningUpgrade(3)
  524. }
  525. MAX-ACCESS read-write
  526. STATUS current
  527. DESCRIPTION
  528. "If set to upgradeFromMgt(1), the device will initiate a
  529. TFTP or HTTP software image download. After
  530. successfully receiving an image, the device will set
  531. its state to ignoreProvisioningUpgrade(3) and reboot.
  532. If the download process is interrupted (e.g., by a reset
  533. or power failure), the device will load the previous
  534. image and, after re-initialization, continue to attempt
  535. loading the image specified in docsDevSwFilename.
  536. If set to allowProvisioningUpgrade(2), the device will
  537. use the software version information supplied by the
  538. provisioning server when next rebooting (this does not
  539. cause a reboot).
  540. When set to ignoreProvisioningUpgrade(3), the device
  541. will disregard software image upgrade information
  542. from the provisioning server.
  543. Note that reading this object can return
  544. upgradeFromMgt(1). This indicates that a software
  545. download is currently in progress, and that the device
  546. will reboot after successfully receiving an image."
  547. DEFVAL { allowProvisioningUpgrade }
  548. ::= { docsDevSoftware 3 }
  549. docsDevSwOperStatus OBJECT-TYPE
  550. SYNTAX INTEGER {
  551. inProgress(1),
  552. completeFromProvisioning(2),
  553. completeFromMgt(3),
  554. failed(4),
  555. other(5)
  556. }
  557. MAX-ACCESS read-only
  558. STATUS current
  559. DESCRIPTION
  560. "InProgress(1) indicates that a TFTP or HTTP download is
  561. underway, either as a result of a version mismatch at
  562. provisioning or as a result of a upgradeFromMgt request.
  563. No other docsDevSw* objects can be modified in
  564. this state.
  565. CompleteFromProvisioning(2) indicates that the last
  566. software upgrade was a result of version mismatch at
  567. provisioning.
  568. CompleteFromMgt(3) indicates that the last software
  569. upgrade was a result of setting docsDevSwAdminStatus to
  570. upgradeFromMgt.
  571. Failed(4) indicates that the last attempted download
  572. failed, ordinarily due to TFTP or HTTP timeout."
  573. REFERENCE
  574. "DOCSIS RFI 1.0 Specification, Section 8.2., and
  575. DOCSIS RFI 1.1 Specification, Section 10.1. and
  576. DOCSIS RFI 2.0 Specification, Section 12.1."
  577. ::= { docsDevSoftware 4 }
  578. docsDevSwCurrentVers OBJECT-TYPE
  579. SYNTAX SnmpAdminString
  580. MAX-ACCESS read-only
  581. STATUS current
  582. DESCRIPTION
  583. "The software version currently operating in this device.
  584. This string's syntax is that used by the
  585. individual vendor to identify software versions.
  586. For a CM, this string will describe the current
  587. software load. For a CMTS, this object SHOULD contain
  588. a human-readable representation either of the vendor
  589. specific designation of the software for the chassis,
  590. or of the software for the control processor. If
  591. neither of these is applicable, the value MUST be a
  592. zero-length string."
  593. ::= { docsDevSoftware 5 }
  594. docsDevSwServerAddressType OBJECT-TYPE
  595. SYNTAX InetAddressType
  596. MAX-ACCESS read-write
  597. STATUS current
  598. DESCRIPTION
  599. "The type of address of the TFTP or HTTP server used for
  600. software upgrades.
  601. If docsDevSwServerTransportProtocol is currently set to
  602. tftp(1), attempting to set this object to dns(16) MUST
  603. result in an error."
  604. ::= { docsDevSoftware 6 }
  605. docsDevSwServerAddress OBJECT-TYPE
  606. SYNTAX InetAddress
  607. MAX-ACCESS read-write
  608. STATUS current
  609. DESCRIPTION
  610. "The address of the TFTP or HTTP server used for software
  611. upgrades.
  612. If the TFTP/HTTP server is unknown, return the zero-
  613. length address string (see the TextualConvention).
  614. If docsDevSwServer is also implemented in this agent,
  615. this object is tied to it. A set of this object to an
  616. IPv4 address will result in also setting the value of
  617. docsDevSwServer to that address. If this object is set
  618. to an IPv6 address, docsDevSwServer is set to 0.0.0.0.
  619. If docsDevSwServer is set, this object is also set to
  620. that value. Note that if both are set in the same
  621. action, the order of which one sets the other is
  622. undefined."
  623. ::= { docsDevSoftware 7 }
  624. docsDevSwServerTransportProtocol OBJECT-TYPE
  625. SYNTAX INTEGER {
  626. tftp(1),
  627. http(2)
  628. }
  629. MAX-ACCESS read-write
  630. STATUS current
  631. DESCRIPTION
  632. "This object specifies the transport protocol (TFTP or
  633. HTTP) to be used for software upgrades.
  634. If the value of this object is tftp(1), then the cable
  635. device uses TFTP (RFC 1350) read request packets to
  636. download the docsDevSwFilename from the
  637. docsDevSwServerAddress in octet mode.
  638. If the value of this object is http(2), then the cable
  639. device uses HTTP 1.0 (RFC 1945) or HTTP 1.1 (RFC 2616)
  640. GET requests sent to host docsDevSwServerAddress to
  641. download the software image from path docsDevSwFilename.
  642. If docsDevSwServerAddressType is currently set to
  643. dns(16), attempting to set this object to tftp(1) MUST
  644. result in an error."
  645. DEFVAL { tftp }
  646. ::= { docsDevSoftware 8 }
  647. --
  648. -- The following group describes server access and parameters used
  649. -- for initial provisioning and bootstrapping.
  650. --
  651. docsDevServer OBJECT IDENTIFIER ::= { docsDevMIBObjects 4 }
  652. docsDevServerBootState OBJECT-TYPE
  653. SYNTAX INTEGER {
  654. operational(1),
  655. disabled(2),
  656. waitingForDhcpOffer(3),
  657. waitingForDhcpResponse(4),
  658. waitingForTimeServer(5),
  659. waitingForTftp(6),
  660. refusedByCmts(7),
  661. forwardingDenied(8),
  662. other(9),
  663. unknown(10)
  664. }
  665. MAX-ACCESS read-only
  666. STATUS current
  667. DESCRIPTION
  668. "If operational(1), the device has completed loading and
  669. processing of configuration parameters, and the CMTS has
  670. completed the Registration exchange.
  671. If disabled(2), then the device was administratively
  672. disabled, possibly by being refused network access in
  673. the configuration file.
  674. If waitingForDhcpOffer(3), then a Dynamic Host
  675. Configuration Protocol (DHCP) Discover has been
  676. transmitted, and no offer has yet been received.
  677. If waitingForDhcpResponse(4), then a DHCP Request has
  678. been transmitted, and no response has yet been received.
  679. If waitingForTimeServer(5), then a Time Request has been
  680. transmitted, and no response has yet been received.
  681. If waitingForTftp(6), then a request to the TFTP
  682. parameter server has been made, and no response
  683. received.
  684. If refusedByCmts(7), then the Registration
  685. Request/Response exchange with the CMTS failed.
  686. If forwardingDenied(8), then the registration process
  687. was completed, but the network access option in the
  688. received configuration file prohibits forwarding.
  689. If other(9), then the registration process reached a
  690. point that does not fall into one of the above
  691. categories.
  692. If unknown(10), then the device has not yet begun the
  693. registration process or is in some other indeterminate
  694. state."
  695. REFERENCE
  696. "DOCSIS RFI 1.0 Specification, Figure 7-1, and
  697. DOCSIS RFI 1.1 Specification, Figure 9-1 and
  698. DOCSIS RFI 2.0 Specification, Figure 11-1."
  699. ::= { docsDevServer 1 }
  700. docsDevServerDhcp OBJECT-TYPE
  701. SYNTAX IpAddress
  702. MAX-ACCESS read-only
  703. STATUS deprecated
  704. DESCRIPTION
  705. "The IP address of the DHCP server that assigned an IP
  706. address to this device. Returns 0.0.0.0 if DHCP is not
  707. used for IP address assignment, or if this agent is
  708. not assigned an IPv4 address.
  709. This object is deprecated and is replaced by
  710. docsDevServerDhcpAddress."
  711. ::= { docsDevServer 2 }
  712. docsDevServerTime OBJECT-TYPE
  713. SYNTAX IpAddress
  714. MAX-ACCESS read-only
  715. STATUS deprecated
  716. DESCRIPTION
  717. "The IP address of the Time server (RFC 0868). Returns
  718. 0.0.0.0 if the time server IP address is unknown, or if
  719. the time server is not an IPv4 server.
  720. This object is deprecated and is replaced by
  721. docsDevServerTimeAddress."
  722. ::= { docsDevServer 3 }
  723. docsDevServerTftp OBJECT-TYPE
  724. SYNTAX IpAddress
  725. MAX-ACCESS read-only
  726. STATUS deprecated
  727. DESCRIPTION
  728. "The IP address of the TFTP server responsible for
  729. downloading provisioning and configuration parameters
  730. to this device. Returns 0.0.0.0 if the TFTP server
  731. address is unknown or is not an IPv4 address.
  732. This object is deprecated and is replaced by
  733. docsDevServerConfigTftpAddress."
  734. ::= { docsDevServer 4 }
  735. docsDevServerConfigFile OBJECT-TYPE
  736. SYNTAX SnmpAdminString
  737. MAX-ACCESS read-only
  738. STATUS current
  739. DESCRIPTION
  740. "The name of the device configuration file read from
  741. the TFTP server. Returns a zero-length string if
  742. the configuration file name is unknown."
  743. ::= { docsDevServer 5 }
  744. docsDevServerDhcpAddressType OBJECT-TYPE
  745. SYNTAX InetAddressType
  746. MAX-ACCESS read-only
  747. STATUS current
  748. DESCRIPTION
  749. "The type of address of docsDevServerDhcpAddress. If
  750. DHCP was not used, this value should return
  751. unknown(0)."
  752. ::= { docsDevServer 6 }
  753. docsDevServerDhcpAddress OBJECT-TYPE
  754. SYNTAX InetAddress
  755. MAX-ACCESS read-only
  756. STATUS current
  757. DESCRIPTION
  758. "The internet address of the DHCP server that assigned
  759. an IP address to this device. Returns the zero length
  760. octet string if DHCP was not used for IP address
  761. assignment."
  762. ::= { docsDevServer 7 }
  763. docsDevServerTimeAddressType OBJECT-TYPE
  764. SYNTAX InetAddressType
  765. MAX-ACCESS read-only
  766. STATUS current
  767. DESCRIPTION
  768. "The type of address of docsDevServerTimeAddress. If
  769. no time server exists, this value should return
  770. unknown(0)."
  771. ::= { docsDevServer 8 }
  772. docsDevServerTimeAddress OBJECT-TYPE
  773. SYNTAX InetAddress
  774. MAX-ACCESS read-only
  775. STATUS current
  776. DESCRIPTION
  777. "The Internet address of the RFC 868 Time server,
  778. as provided by DHCP option 4.
  779. Note that if multiple values are provided to the
  780. CM in DHCP option 4, the value of this MIB object
  781. MUST be the Time server address from which the Time
  782. of Day reference was acquired as based on the DOCSIS
  783. RFI specification. During the period of time where
  784. the Time of Day have not been acquired, the Time
  785. server address reported by the CM may report the
  786. first address value in the DHCP option value or the
  787. last server address the CM attempted to get the Time
  788. of day value.
  789. Returns the zero-length octet string if the time server
  790. IP address is not provisioned."
  791. REFERENCE
  792. "DOCSIS RFI 1.1 Specification, Section 9.2.7. and
  793. DOCSIS RFI 2.0 Specification, Section 11.2.7."
  794. ::= { docsDevServer 9 }
  795. docsDevServerConfigTftpAddressType OBJECT-TYPE
  796. SYNTAX InetAddressType
  797. MAX-ACCESS read-only
  798. STATUS current
  799. DESCRIPTION
  800. "The type of address of docsDevServerConfigTftpAddress.
  801. If no TFTP server exists, this value should return
  802. unknown(0)."
  803. ::= { docsDevServer 10 }
  804. docsDevServerConfigTftpAddress OBJECT-TYPE
  805. SYNTAX InetAddress
  806. MAX-ACCESS read-only
  807. STATUS current
  808. DESCRIPTION
  809. "The internet address of the TFTP server responsible for
  810. downloading provisioning and configuration parameters
  811. to this device. Returns the zero-length octet string if
  812. the config server address is unknown. There are certain
  813. security risks that are involved with using TFTP."
  814. REFERENCE
  815. "RFC 3617, Section 5"
  816. ::= { docsDevServer 11 }
  817. --
  818. -- Event Reporting
  819. --
  820. docsDevEvent OBJECT IDENTIFIER ::= { docsDevMIBObjects 5 }
  821. docsDevEvControl OBJECT-TYPE
  822. SYNTAX INTEGER {
  823. resetLog(1),
  824. useDefaultReporting(2)
  825. }
  826. MAX-ACCESS read-write
  827. STATUS current
  828. DESCRIPTION
  829. "Setting this object to resetLog(1) empties the event
  830. log. All data is deleted. Setting it to
  831. useDefaultReporting(2) returns all event priorities to
  832. their factory-default reporting. Reading this object
  833. always returns useDefaultReporting(2)."
  834. ::= { docsDevEvent 1 }
  835. docsDevEvSyslog OBJECT-TYPE
  836. SYNTAX IpAddress
  837. MAX-ACCESS read-write
  838. STATUS deprecated
  839. DESCRIPTION
  840. "The IP address of the Syslog server. If 0.0.0.0, either
  841. syslog transmission is inhibited, or the Syslog server
  842. address is not an IPv4 address.
  843. This object is deprecated and is replaced by
  844. docsDevEvSyslogAddress."
  845. ::= { docsDevEvent 2 }
  846. docsDevEvThrottleAdminStatus OBJECT-TYPE
  847. SYNTAX INTEGER {
  848. unconstrained(1),
  849. maintainBelowThreshold(2),
  850. stopAtThreshold(3),
  851. inhibited(4)
  852. }
  853. MAX-ACCESS read-write
  854. STATUS current
  855. DESCRIPTION
  856. "Controls the transmission of traps and syslog messages
  857. with respect to the trap pacing threshold.
  858. unconstrained(1) causes traps and syslog messages to be
  859. transmitted without regard to the threshold settings.
  860. maintainBelowThreshold(2) causes trap transmission and
  861. syslog messages to be suppressed if the number of traps
  862. would otherwise exceed the threshold.
  863. stopAtThreshold(3) causes trap transmission to cease at
  864. the threshold and not to resume until directed to do so.
  865. inhibited(4) causes all trap transmission and syslog
  866. messages to be suppressed.
  867. A single event is always treated as a single event for
  868. threshold counting. That is, an event causing both a
  869. trap and a syslog message is still treated as a single
  870. event.
  871. Writing to this object resets the thresholding state."
  872. DEFVAL { unconstrained }
  873. ::= { docsDevEvent 3 }
  874. docsDevEvThrottleInhibited OBJECT-TYPE
  875. SYNTAX TruthValue
  876. MAX-ACCESS read-only
  877. STATUS deprecated
  878. DESCRIPTION
  879. "If true(1), trap and syslog transmission is currently
  880. inhibited due to thresholds and/or the current setting
  881. of docsDevEvThrottleAdminStatus. In addition, this is
  882. true(1) when transmission is inhibited because no
  883. syslog (docsDevEvSyslog) or trap (docsDevNmAccessEntry)
  884. destinations have been set.
  885. This object is deprecated and is replaced by
  886. docsDevEvThrottleThresholdExceeded."
  887. ::= { docsDevEvent 4 }
  888. docsDevEvThrottleThreshold OBJECT-TYPE
  889. SYNTAX Unsigned32
  890. UNITS "events"
  891. MAX-ACCESS read-write
  892. STATUS current
  893. DESCRIPTION
  894. "Number of events per docsDevEvThrottleInterval permitted
  895. before throttling is to occur.
  896. A single event, whether the notification could result in
  897. messages transmitted using syslog, SNMP, or both
  898. protocols, and regardless of the number of destinations,
  899. (including zero) is always treated as a single event for
  900. threshold counting. For example, an event causing both
  901. a trap and a syslog message is still treated as a single
  902. event.
  903. All system notifications that occur within the device
  904. should be taken into consideration when calculating
  905. and monitoring the threshold."
  906. DEFVAL { 0 }
  907. ::= { docsDevEvent 5 }
  908. docsDevEvThrottleInterval OBJECT-TYPE
  909. SYNTAX Integer32 (1..2147483647)
  910. UNITS "seconds"
  911. MAX-ACCESS read-write
  912. STATUS current
  913. DESCRIPTION
  914. "The interval over which docsDevEvThrottleThreshold
  915. applies."
  916. DEFVAL { 1 }
  917. ::= { docsDevEvent 6 }
  918. --
  919. -- The following table controls the reporting of the various classes
  920. -- of events.
  921. --
  922. docsDevEvControlTable OBJECT-TYPE
  923. SYNTAX SEQUENCE OF DocsDevEvControlEntry
  924. MAX-ACCESS not-accessible
  925. STATUS current
  926. DESCRIPTION
  927. "This table allows control of the reporting of event
  928. classes. For each event priority, a combination of
  929. logging and reporting mechanisms may be chosen. The
  930. mapping of event types to priorities is
  931. vendor dependent. Vendors may also choose to allow
  932. the user to control that mapping through proprietary
  933. means. Table entries MUST persist across reboots for
  934. CMTS devices and MUST NOT persist across reboots for CM
  935. devices."
  936. ::= { docsDevEvent 7 }
  937. docsDevEvControlEntry OBJECT-TYPE
  938. SYNTAX DocsDevEvControlEntry
  939. MAX-ACCESS not-accessible
  940. STATUS current
  941. DESCRIPTION
  942. "Allows configuration of the reporting mechanisms for a
  943. particular event priority."
  944. INDEX { docsDevEvPriority }
  945. ::= { docsDevEvControlTable 1 }
  946. DocsDevEvControlEntry ::= SEQUENCE {
  947. docsDevEvPriority INTEGER,
  948. docsDevEvReporting BITS
  949. }
  950. docsDevEvPriority OBJECT-TYPE
  951. SYNTAX INTEGER {
  952. emergency(1),
  953. alert(2),
  954. critical(3),
  955. error(4),
  956. warning(5),
  957. notice(6),
  958. information(7),
  959. debug(8)
  960. }
  961. MAX-ACCESS not-accessible
  962. STATUS current
  963. DESCRIPTION
  964. "The priority level that is controlled by this
  965. entry. These are ordered from most (emergency) to least
  966. (debug) critical. Each event with a CM or CMTS has a
  967. particular priority level associated with it (as defined
  968. by the vendor).
  969. emergency(1) events indicate vendor-specific fatal
  970. hardware or software errors that prevent normal system
  971. operation.
  972. alert(2) events indicate a serious failure that causes
  973. the reporting system to reboot but is not caused by
  974. hardware or software malfunctioning.
  975. critical(3) events indicate a serious failure that
  976. requires attention and prevents the device from
  977. transmitting data but that could be recovered without
  978. rebooting the system.
  979. error(4) and warning(5) events indicate that a failure
  980. occurred that could interrupt the normal data flow but
  981. that does not cause the device to re-register.
  982. notice(6) and information(7) events indicate a
  983. milestone or checkpoint in normal operation that could
  984. be of particular importance for troubleshooting.
  985. debug(8) events are reserved for vendor-specific
  986. events.
  987. During normal operation, no event more
  988. critical than notice(6) should be generated. Events
  989. between warning and emergency should be generated at
  990. appropriate levels of problems (e.g., emergency when the
  991. box is about to crash)."
  992. ::= { docsDevEvControlEntry 1 }
  993. docsDevEvReporting OBJECT-TYPE
  994. SYNTAX BITS {
  995. local(0),
  996. traps(1),
  997. syslog(2),
  998. -- The following are extensions to the original set of
  999. -- labels. The extensions start at an octet boundary.
  1000. -- So for bits 3 - 7, one MUST set them to zero on send
  1001. -- and one MUST ignore them on receipt.
  1002. localVolatile(8),
  1003. stdInterface(9)
  1004. }
  1005. MAX-ACCESS read-write
  1006. STATUS current
  1007. DESCRIPTION
  1008. "Defines the action to be taken on occurrence of this
  1009. event class. Implementations may not necessarily
  1010. support all options for all event classes but at
  1011. minimum must allow traps and syslogging to be
  1012. disabled.
  1013. If the local(0) bit is set, then log to the internal
  1014. log and update non-volatile store, for backward
  1015. compatibility with the original RFC 2669 definition.
  1016. If the traps(1) bit is set, then generate
  1017. an SNMP trap; if the syslog(2) bit is set, then
  1018. send a syslog message (assuming that the syslog address
  1019. is set). If the localVolatile(8) bit is set, then
  1020. log to the internal log without updating non-volatile
  1021. store. If the stdInterface(9) bit is set, then the
  1022. agent ignores all other bits except the local(0),
  1023. syslog(2), and localVolatile(8) bits. Setting the
  1024. stdInterface(9) bit indicates that RFC3413 and
  1025. RFC3014 are being used to control event reporting
  1026. mechanisms."
  1027. ::= { docsDevEvControlEntry 2 }
  1028. docsDevEventTable OBJECT-TYPE
  1029. SYNTAX SEQUENCE OF DocsDevEventEntry
  1030. MAX-ACCESS not-accessible
  1031. STATUS current
  1032. DESCRIPTION
  1033. "Contains a log of network and device events that may be
  1034. of interest in fault isolation and troubleshooting.
  1035. If the local(0) bit is set in docsDevEvReporting,
  1036. entries in this table MUST persist across reboots."
  1037. ::= { docsDevEvent 8 }
  1038. docsDevEventEntry OBJECT-TYPE
  1039. SYNTAX DocsDevEventEntry
  1040. MAX-ACCESS not-accessible
  1041. STATUS current
  1042. DESCRIPTION
  1043. "Describes a network or device event that may be of
  1044. interest in fault isolation and troubleshooting.
  1045. Multiple sequential identical events are represented by
  1046. incrementing docsDevEvCounts and setting
  1047. docsDevEvLastTime to the current time rather than
  1048. creating multiple rows.
  1049. Entries are created with the first occurrence of an
  1050. event. docsDevEvControl can be used to clear the
  1051. table. Individual events cannot be deleted."
  1052. INDEX { docsDevEvIndex }
  1053. ::= { docsDevEventTable 1 }
  1054. DocsDevEventEntry ::= SEQUENCE {
  1055. docsDevEvIndex Integer32,
  1056. docsDevEvFirstTime DateAndTime,
  1057. docsDevEvLastTime DateAndTime,
  1058. docsDevEvCounts Counter32,
  1059. docsDevEvLevel INTEGER,
  1060. docsDevEvId Unsigned32,
  1061. docsDevEvText SnmpAdminString
  1062. }
  1063. docsDevEvIndex OBJECT-TYPE
  1064. SYNTAX Integer32 (1..2147483647)
  1065. MAX-ACCESS not-accessible
  1066. STATUS current
  1067. DESCRIPTION
  1068. "Provides relative ordering of the objects in the event
  1069. log. This object will always increase except when
  1070. (a) the log is reset via docsDevEvControl,
  1071. (b) the device reboots and does not implement
  1072. non-volatile storage for this log, or (c) it reaches
  1073. the value 2^31. The next entry for all the above
  1074. cases is 1."
  1075. ::= { docsDevEventEntry 1 }
  1076. docsDevEvFirstTime OBJECT-TYPE
  1077. SYNTAX DateAndTime
  1078. MAX-ACCESS read-only
  1079. STATUS current
  1080. DESCRIPTION
  1081. "The value of docsDevDateTime at the time this entry was
  1082. created."
  1083. ::= { docsDevEventEntry 2 }
  1084. docsDevEvLastTime OBJECT-TYPE
  1085. SYNTAX DateAndTime
  1086. MAX-ACCESS read-only
  1087. STATUS current
  1088. DESCRIPTION
  1089. "When an entry reports only one event, this object will
  1090. have the same value as the corresponding instance of
  1091. docsDevEvFirstTime. When an entry reports multiple
  1092. events, this object will record the value that
  1093. docsDevDateTime had when the most recent event for this
  1094. entry occurred."
  1095. ::= { docsDevEventEntry 3 }
  1096. -- This object was renamed from docsDevEvCount to meet naming
  1097. -- requirements for Counter32
  1098. docsDevEvCounts OBJECT-TYPE
  1099. SYNTAX Counter32
  1100. UNITS "events"
  1101. MAX-ACCESS read-only
  1102. STATUS current
  1103. DESCRIPTION
  1104. "The number of consecutive event instances reported by
  1105. this entry. This starts at 1 with the creation of this
  1106. row and increments by 1 for each subsequent duplicate
  1107. event."
  1108. ::= { docsDevEventEntry 4 }
  1109. docsDevEvLevel OBJECT-TYPE
  1110. SYNTAX INTEGER {
  1111. emergency(1),
  1112. alert(2),
  1113. critical(3),
  1114. error(4),
  1115. warning(5),
  1116. notice(6),
  1117. information(7),
  1118. debug(8)
  1119. }
  1120. MAX-ACCESS read-only
  1121. STATUS current
  1122. DESCRIPTION
  1123. "The priority level of this event, as defined by the
  1124. vendor. These are ordered from most serious (emergency)
  1125. to least serious (debug).
  1126. emergency(1) events indicate vendor-specific fatal
  1127. hardware or software errors that prevent normal system
  1128. operation.
  1129. alert(2) events indicate a serious failure that causes
  1130. the reporting system to reboot but that is not caused by
  1131. hardware or software malfunctioning.
  1132. critical(3) events indicate a serious failure that
  1133. requires attention and prevents the device from
  1134. transmitting data but that could be recovered without
  1135. rebooting the system.
  1136. error(4) and warning(5) events indicate that a failure
  1137. occurred that could interrupt the normal data flow but
  1138. that does not cause the device to re-register.
  1139. notice(6) and information(7) events indicate a
  1140. milestone or checkpoint in normal operation that could
  1141. be of particular importance for troubleshooting.
  1142. debug(8) events are reserved for vendor-specific
  1143. events.
  1144. During normal operation, no event more
  1145. critical than notice(6) should be generated. Events
  1146. between warning and emergency should be generated at
  1147. appropriate levels of problems (e.g., emergency when the
  1148. box is about to crash)."
  1149. ::= { docsDevEventEntry 5 }
  1150. --
  1151. -- It is strongly recommended that implementors follow the CableLabs
  1152. -- enumerations for docsDevEvId, per the DOCSIS OSSIv1.1 spec
  1153. -- and follow-on specifications.
  1154. --
  1155. docsDevEvId OBJECT-TYPE
  1156. SYNTAX Unsigned32
  1157. MAX-ACCESS read-only
  1158. STATUS current
  1159. DESCRIPTION
  1160. "For this product, uniquely identifies the type of event
  1161. that is reported by this entry."
  1162. REFERENCE
  1163. "DOCSIS OSSI 1.1 Specification, Appendix H and
  1164. DOCSIS OSSI 2.0 Specification, Annex D."
  1165. ::= { docsDevEventEntry 6 }
  1166. docsDevEvText OBJECT-TYPE
  1167. SYNTAX SnmpAdminString
  1168. MAX-ACCESS read-only
  1169. STATUS current
  1170. DESCRIPTION
  1171. "Provides a human-readable description of the event,
  1172. including all relevant context (interface numbers,
  1173. etc.)."
  1174. ::= { docsDevEventEntry 7 }
  1175. docsDevEvSyslogAddressType OBJECT-TYPE
  1176. SYNTAX InetAddressType
  1177. MAX-ACCESS read-write
  1178. STATUS current
  1179. DESCRIPTION
  1180. "The type of address of docsDevEvSyslogAddress. If
  1181. no syslog server exists, this value should return
  1182. unknown(0)."
  1183. DEFVAL { unknown }
  1184. ::= { docsDevEvent 9 }
  1185. docsDevEvSyslogAddress OBJECT-TYPE
  1186. SYNTAX InetAddress
  1187. MAX-ACCESS read-write
  1188. STATUS current
  1189. DESCRIPTION
  1190. "The Internet address of the Syslog server, as provided
  1191. by DHCP option 7 or set via SNMP management. If the
  1192. address of the server is set to the zero-length
  1193. string, the 0.0.0.0 IPv4 address, or the 0: IPv6
  1194. address, Syslog transmission is inhibited.
  1195. Note that if multiple values are provided to the CM in
  1196. DHCP option 7, the value of this MIB object MUST be the
  1197. first Syslog server address received.
  1198. By default at agent boot, this object returns the zero
  1199. length string."
  1200. ::= { docsDevEvent 10 }
  1201. docsDevEvThrottleThresholdExceeded OBJECT-TYPE
  1202. SYNTAX TruthValue
  1203. MAX-ACCESS read-only
  1204. STATUS current
  1205. DESCRIPTION
  1206. "If true(1), trap and syslog transmission is currently
  1207. inhibited due to exceeding the trap/syslog event
  1208. threshold in the current interval."
  1209. ::= { docsDevEvent 11 }
  1210. --
  1211. -- Link Level Control Filtering
  1212. --
  1213. docsDevFilter OBJECT IDENTIFIER ::= { docsDevMIBObjects 6 }
  1214. docsDevFilterLLCUnmatchedAction OBJECT-TYPE
  1215. SYNTAX INTEGER {
  1216. discard(1),
  1217. accept(2)
  1218. }
  1219. MAX-ACCESS read-write
  1220. STATUS current
  1221. DESCRIPTION
  1222. "LLC (Link Level Control) filters can be defined on an
  1223. inclusive or exclusive basis: CMs can be configured to
  1224. forward only packets matching a set of layer three
  1225. protocols, or to drop packets matching a set of layer
  1226. three protocols. Typical use of these filters is to
  1227. filter out possibly harmful (given the context of a
  1228. large metropolitan LAN) protocols.
  1229. If set to discard(1), any L2 packet that does not match
  1230. at least one filter in the docsDevFilterLLCTable will be
  1231. discarded. If set to accept(2), any L2 packet that
  1232. does not match at least one filter in the
  1233. docsDevFilterLLCTable will be accepted for further
  1234. processing (e.g., bridging). In other words, if the
  1235. packet does not match an entry in the table, it takes
  1236. this action; if it does match an entry in the table, it
  1237. takes the opposite of this action."
  1238. DEFVAL { accept }
  1239. ::= { docsDevFilter 1 }
  1240. docsDevFilterLLCTable OBJECT-TYPE
  1241. SYNTAX SEQUENCE OF DocsDevFilterLLCEntry
  1242. MAX-ACCESS not-accessible
  1243. STATUS current
  1244. DESCRIPTION
  1245. "A list of filters to apply to (bridged) LLC
  1246. traffic. The filters in this table are applied to
  1247. incoming traffic on the appropriate interface(s) prior
  1248. to any further processing (e.g., before the packet
  1249. is handed off for level 3 processing, or for bridging).
  1250. The specific action taken when no filter is matched is
  1251. controlled by docsDevFilterLLCUnmatchedAction. Table
  1252. entries MUST NOT persist across reboots for any device."
  1253. ::= { docsDevFilter 2 }
  1254. docsDevFilterLLCEntry OBJECT-TYPE
  1255. SYNTAX DocsDevFilterLLCEntry
  1256. MAX-ACCESS not-accessible
  1257. STATUS current
  1258. DESCRIPTION
  1259. "Describes a single filter to apply to (bridged) LLC
  1260. traffic received on a specified interface. "
  1261. INDEX { docsDevFilterLLCIndex }
  1262. ::= { docsDevFilterLLCTable 1 }
  1263. DocsDevFilterLLCEntry ::= SEQUENCE {
  1264. docsDevFilterLLCIndex Integer32,
  1265. docsDevFilterLLCStatus RowStatus,
  1266. docsDevFilterLLCIfIndex InterfaceIndexOrZero,
  1267. docsDevFilterLLCProtocolType INTEGER,
  1268. docsDevFilterLLCProtocol Integer32,
  1269. docsDevFilterLLCMatches Counter32
  1270. }
  1271. docsDevFilterLLCIndex OBJECT-TYPE
  1272. SYNTAX Integer32 (1..2147483647)
  1273. MAX-ACCESS not-accessible
  1274. STATUS current
  1275. DESCRIPTION
  1276. "Index used for the identification of filters (note that
  1277. LLC filter order is irrelevant)."
  1278. ::= { docsDevFilterLLCEntry 1 }
  1279. docsDevFilterLLCStatus OBJECT-TYPE
  1280. SYNTAX RowStatus
  1281. MAX-ACCESS read-create
  1282. STATUS current
  1283. DESCRIPTION
  1284. "Controls and reflects the status of rows in this
  1285. table. There is no restriction on changing any of the
  1286. associated columns for this row while this object is set
  1287. to active.
  1288. Specifying only this object (with the
  1289. appropriate index) on a CM is sufficient to create a
  1290. filter row that matches all inbound packets on the
  1291. ethernet interface and results in the packets being
  1292. discarded. docsDevFilterLLCIfIndex (at least) must be
  1293. specified on a CMTS to create a row."
  1294. ::= { docsDevFilterLLCEntry 2}
  1295. docsDevFilterLLCIfIndex OBJECT-TYPE
  1296. SYNTAX InterfaceIndexOrZero
  1297. MAX-ACCESS read-create
  1298. STATUS current
  1299. DESCRIPTION
  1300. "The entry interface to which this filter applies. The
  1301. value corresponds to ifIndex for either a CATV MAC or
  1302. another network interface. If the value is zero, the
  1303. filter applies to all interfaces. In Cable Modems, the
  1304. default value is the customer side interface(s). In
  1305. CMTSs, this object has to be specified to
  1306. create a row in this table.
  1307. Note that according to the DOCSIS OSSIv1.1
  1308. specification, ifIndex '1' in the CM means that this
  1309. row applies to all Cable Modem-to-CPE Interfaces
  1310. (CMCI)."
  1311. REFERENCE
  1312. "DOCSIS OSSI 1.1 Specification, Section 3.3.4.1. and
  1313. DOCSIS OSSI 2.0 Specification, Section 6.3.4.1."
  1314. ::= { docsDevFilterLLCEntry 3 }
  1315. docsDevFilterLLCProtocolType OBJECT-TYPE
  1316. SYNTAX INTEGER {
  1317. ethertype(1),
  1318. dsap(2)
  1319. }
  1320. MAX-ACCESS read-create
  1321. STATUS current
  1322. DESCRIPTION
  1323. "The format of the value in docsDevFilterLLCProtocol:
  1324. either a two-byte Ethernet Ethertype, or a one-byte
  1325. 802.2 Service Access Point (SAP) value. ethertype(1)
  1326. also applies to Standard Network Access Protocol
  1327. (SNAP) encapsulated frames."
  1328. DEFVAL { ethertype }
  1329. ::= { docsDevFilterLLCEntry 4 }
  1330. docsDevFilterLLCProtocol OBJECT-TYPE
  1331. SYNTAX Integer32 (0..65535)
  1332. MAX-ACCESS read-create
  1333. STATUS current
  1334. DESCRIPTION
  1335. "The layer-three protocol for which this filter applies.
  1336. The protocol value format depends on
  1337. docsDevFilterLLCProtocolType. Note that for SNAP
  1338. frames, ethertype filtering is performed rather than
  1339. Destination Service Access Point (DSAP) =0xAA."
  1340. DEFVAL { 0 }
  1341. ::= { docsDevFilterLLCEntry 5 }
  1342. docsDevFilterLLCMatches OBJECT-TYPE
  1343. SYNTAX Counter32
  1344. UNITS "matches"
  1345. MAX-ACCESS read-only
  1346. STATUS current
  1347. DESCRIPTION
  1348. "Counts the number of times this filter was matched."
  1349. ::= { docsDevFilterLLCEntry 6 }
  1350. --
  1351. -- IPv4 Filtering
  1352. --
  1353. docsDevFilterIpDefault OBJECT-TYPE
  1354. SYNTAX INTEGER {
  1355. discard(1),
  1356. accept(2)
  1357. }
  1358. MAX-ACCESS read-write
  1359. STATUS deprecated
  1360. DESCRIPTION
  1361. "The default behavior for (bridged) packets that do not
  1362. match IP filters (or Internet filters, if implemented)
  1363. is defined by docsDevFilterIpDefault.
  1364. If set to discard(1), all packets not matching an IP
  1365. filter in docsDevFilterIpTable will be discarded. If
  1366. set to accept(2), all packets not matching an IP filter
  1367. or an Internet filter will be accepted for further
  1368. processing (e.g., bridging)."
  1369. DEFVAL { accept }
  1370. ::= { docsDevFilter 3 }
  1371. docsDevFilterIpTable OBJECT-TYPE
  1372. SYNTAX SEQUENCE OF DocsDevFilterIpEntry
  1373. MAX-ACCESS not-accessible
  1374. STATUS deprecated
  1375. DESCRIPTION
  1376. "An ordered list of filters or classifiers to apply to
  1377. IP traffic. Filter application is ordered by the filter
  1378. index, rather than by a best match algorithm (note that
  1379. this implies that the filter table may have gaps in the
  1380. index values). Packets that match no filters will have
  1381. policy 0 in the docsDevFilterPolicyTable applied to
  1382. them, if it exists. Otherwise, Packets that match no
  1383. filters are discarded or forwarded according to the
  1384. setting of docsDevFilterIpDefault.
  1385. Any IP packet can theoretically match multiple rows of
  1386. this table. When considering a packet, the table is
  1387. scanned in row index order (e.g., filter 10 is checked
  1388. before filter 20). If the packet matches that filter
  1389. (which means that it matches ALL criteria for that row),
  1390. actions appropriate to docsDevFilterIpControl and
  1391. docsDevFilterPolicyId are taken. If the packet was
  1392. discarded processing is complete. If
  1393. docsDevFilterIpContinue is set to true, the filter
  1394. comparison continues with the next row in the table,
  1395. looking for additional matches.
  1396. If the packet matches no filter in the table, the packet
  1397. is accepted or dropped for further processing
  1398. according to the setting of docsDevFilterIpDefault.
  1399. If the packet is accepted, the actions specified by
  1400. policy group 0 (e.g., the rows in
  1401. docsDevFilterPolicyTable that have a value of 0 for
  1402. docsDevFilterPolicyId) are taken, if that policy
  1403. group exists.
  1404. Logically, this table is consulted twice during the
  1405. processing of any IP packet: once upon its acceptance
  1406. from the L2 entity, and once upon its transmission to
  1407. the L2 entity. In actuality, for cable modems, IP
  1408. filtering is generally the only IP processing done for
  1409. transit traffic. This means that inbound and outbound
  1410. filtering can generally be done at the same time with
  1411. one pass through the filter table.
  1412. The objects in this table are only accessible from cable
  1413. devices that are not operating in DiffServ MIB mode
  1414. (RFC 3289). See the conformance section for details.
  1415. Note that some devices are required by other
  1416. specifications (e.g., the DOCSIS OSSIv1.1 specification)
  1417. to support the legacy SNMPv1/v2c docsDevFilter mode
  1418. for backward compatibility.
  1419. Table entries MUST NOT persist across reboots for any
  1420. device.
  1421. This table is deprecated. Instead, use the DiffServ MIB
  1422. from RFC 3289."
  1423. ::= { docsDevFilter 4 }
  1424. docsDevFilterIpEntry OBJECT-TYPE
  1425. SYNTAX DocsDevFilterIpEntry
  1426. MAX-ACCESS not-accessible
  1427. STATUS deprecated
  1428. DESCRIPTION
  1429. "Describes a filter to apply to IP traffic received on a
  1430. specified interface. All identity objects in this table
  1431. (e.g., source and destination address/mask, protocol,
  1432. source/dest port, TOS/mask, interface and direction)
  1433. must match their respective fields in the packet for
  1434. any given filter to match.
  1435. To create an entry in this table, docsDevFilterIpIfIndex
  1436. must be specified."
  1437. INDEX { docsDevFilterIpIndex }
  1438. ::= { docsDevFilterIpTable 1 }
  1439. DocsDevFilterIpEntry ::= SEQUENCE {
  1440. docsDevFilterIpIndex Integer32,
  1441. docsDevFilterIpStatus RowStatus,
  1442. docsDevFilterIpControl INTEGER,
  1443. docsDevFilterIpIfIndex InterfaceIndexOrZero,
  1444. docsDevFilterIpDirection INTEGER,
  1445. docsDevFilterIpBroadcast TruthValue,
  1446. docsDevFilterIpSaddr IpAddress,
  1447. docsDevFilterIpSmask IpAddress,
  1448. docsDevFilterIpDaddr IpAddress,
  1449. docsDevFilterIpDmask IpAddress,
  1450. docsDevFilterIpProtocol Integer32,
  1451. docsDevFilterIpSourcePortLow Integer32,
  1452. docsDevFilterIpSourcePortHigh Integer32,
  1453. docsDevFilterIpDestPortLow Integer32,
  1454. docsDevFilterIpDestPortHigh Integer32,
  1455. docsDevFilterIpMatches ZeroBasedCounter32,
  1456. docsDevFilterIpTos OCTET STRING,
  1457. docsDevFilterIpTosMask OCTET STRING,
  1458. docsDevFilterIpContinue TruthValue,
  1459. docsDevFilterIpPolicyId Integer32
  1460. }
  1461. docsDevFilterIpIndex OBJECT-TYPE
  1462. SYNTAX Integer32 (1..2147483647)
  1463. MAX-ACCESS not-accessible
  1464. STATUS deprecated
  1465. DESCRIPTION
  1466. "Index used to order the application of filters.
  1467. The filter with the lowest index is always applied
  1468. first."
  1469. ::= { docsDevFilterIpEntry 1 }
  1470. docsDevFilterIpStatus OBJECT-TYPE
  1471. SYNTAX RowStatus
  1472. MAX-ACCESS read-create
  1473. STATUS deprecated
  1474. DESCRIPTION
  1475. "Controls and reflects the status of rows in this
  1476. table. Specifying only this object (with the
  1477. appropriate index) on a CM is sufficient to create a
  1478. filter row that matches all inbound packets on the
  1479. ethernet interface and results in the packets being
  1480. discarded. docsDevFilterIpIfIndex (at least) must be
  1481. specified on a CMTS to create a row. Creation of the
  1482. rows may be done via either create-and-wait or
  1483. create-and-go, but the filter is not applied until this
  1484. object is set to (or changes to) active. There is no
  1485. restriction in changing any object in a row while this
  1486. object is set to active."
  1487. ::= { docsDevFilterIpEntry 2 }
  1488. docsDevFilterIpControl OBJECT-TYPE
  1489. SYNTAX INTEGER {
  1490. discard(1),
  1491. accept(2),
  1492. policy(3)
  1493. }
  1494. MAX-ACCESS read-create
  1495. STATUS deprecated
  1496. DESCRIPTION
  1497. "If set to discard(1), all packets matching this filter
  1498. will be discarded, and scanning of the remainder of the
  1499. filter list will be aborted. If set to accept(2), all
  1500. packets matching this filter will be accepted for
  1501. further processing (e.g., bridging). If
  1502. docsDevFilterIpContinue is set to true, see if there
  1503. are other matches; otherwise, done. If set to
  1504. policy (3), execute the policy entries
  1505. matched by docsDevFilterIpPolicyId in
  1506. docsDevFilterPolicyTable.
  1507. If docsDevFilterIpContinue is set to true, continue
  1508. scanning the table for other matches; otherwise, done."
  1509. DEFVAL { discard }
  1510. ::= { docsDevFilterIpEntry 3 }
  1511. docsDevFilterIpIfIndex OBJECT-TYPE
  1512. SYNTAX InterfaceIndexOrZero
  1513. MAX-ACCESS read-create
  1514. STATUS deprecated
  1515. DESCRIPTION
  1516. "The entry interface to which this filter applies. The
  1517. value corresponds to ifIndex for either a CATV MAC or
  1518. another interface. If the value is zero, the
  1519. filter applies to all interfaces. Default value in CMs
  1520. is the index of the customer-side (e.g., ethernet)
  1521. interface(s). In CMTSes, this object MUST be
  1522. specified to create a row in this table.
  1523. Note that according to the DOCSIS OSSIv1.1
  1524. specification, ifIndex '1' in the Cable Modem means
  1525. that this row applies to all CMCI (customer-facing)
  1526. interfaces."
  1527. REFERENCE
  1528. "DOCSIS OSSI 1.1 Specification, Section 3.3.4.1. and
  1529. DOCSIS OSSI 2.0 Specification, Section 6.3.4.1."
  1530. ::= { docsDevFilterIpEntry 4 }
  1531. docsDevFilterIpDirection OBJECT-TYPE
  1532. SYNTAX INTEGER {
  1533. inbound(1),
  1534. outbound(2),
  1535. both(3)
  1536. }
  1537. MAX-ACCESS read-create
  1538. STATUS deprecated
  1539. DESCRIPTION
  1540. "Determines whether the filter is applied to inbound(1)
  1541. traffic, outbound(2) traffic, or traffic in both(3)
  1542. directions."
  1543. DEFVAL { inbound }
  1544. ::= { docsDevFilterIpEntry 5 }
  1545. docsDevFilterIpBroadcast OBJECT-TYPE
  1546. SYNTAX TruthValue
  1547. MAX-ACCESS read-create
  1548. STATUS deprecated
  1549. DESCRIPTION
  1550. "If set to true(1), the filter only applies to multicast
  1551. and broadcast traffic. If set to false(2), the filter
  1552. applies to all traffic."
  1553. DEFVAL { false }
  1554. ::= { docsDevFilterIpEntry 6 }
  1555. docsDevFilterIpSaddr OBJECT-TYPE
  1556. SYNTAX IpAddress
  1557. MAX-ACCESS read-create
  1558. STATUS deprecated
  1559. DESCRIPTION
  1560. "The source IP address, or portion thereof, that is to be
  1561. matched for this filter. The source address is first
  1562. masked (ANDed) against docsDevFilterIpSmask before
  1563. being compared to this value. A value of 0 for this
  1564. object and 0 for the mask matches all IP addresses."
  1565. DEFVAL { '00000000'h }
  1566. ::= { docsDevFilterIpEntry 7 }
  1567. docsDevFilterIpSmask OBJECT-TYPE
  1568. SYNTAX IpAddress
  1569. MAX-ACCESS read-create
  1570. STATUS deprecated
  1571. DESCRIPTION
  1572. "A bit mask that is to be applied to the source address
  1573. prior to matching. This mask is not necessarily the
  1574. same as a subnet mask, but 1s bits must be leftmost and
  1575. contiguous."
  1576. DEFVAL { '00000000'h }
  1577. ::= { docsDevFilterIpEntry 8 }
  1578. docsDevFilterIpDaddr OBJECT-TYPE
  1579. SYNTAX IpAddress
  1580. MAX-ACCESS read-create
  1581. STATUS deprecated
  1582. DESCRIPTION
  1583. "The destination IP address, or portion thereof, that is
  1584. to be matched for this filter. The destination address
  1585. is first masked (ANDed) against docsDevFilterIpDmask
  1586. before being compared to this value. A value of
  1587. 00000000 for this object and 00000000 for the mask
  1588. matches all IP addresses."
  1589. DEFVAL { '00000000'h }
  1590. ::= { docsDevFilterIpEntry 9 }
  1591. docsDevFilterIpDmask OBJECT-TYPE
  1592. SYNTAX IpAddress
  1593. MAX-ACCESS read-create
  1594. STATUS deprecated
  1595. DESCRIPTION
  1596. "A bit mask that is to be applied to the destination
  1597. address prior to matching. This mask is not necessarily
  1598. the same as a subnet mask, but 1s bits MUST be leftmost
  1599. and contiguous."
  1600. DEFVAL { '00000000'h }
  1601. ::= { docsDevFilterIpEntry 10 }
  1602. docsDevFilterIpProtocol OBJECT-TYPE
  1603. SYNTAX Integer32 (0..256)
  1604. MAX-ACCESS read-create
  1605. STATUS deprecated
  1606. DESCRIPTION
  1607. "The IP protocol value that is to be matched. For
  1608. example, icmp is 1, tcp is 6, and udp is 17. A value of
  1609. 256 matches ANY protocol."
  1610. REFERENCE "www.iana.org/assignments/protocol-numbers"
  1611. DEFVAL { 256 }
  1612. ::= { docsDevFilterIpEntry 11 }
  1613. docsDevFilterIpSourcePortLow OBJECT-TYPE
  1614. SYNTAX Integer32 (0..65535)
  1615. MAX-ACCESS read-create
  1616. STATUS deprecated
  1617. DESCRIPTION
  1618. "This is the inclusive lower bound of the transport-layer
  1619. source port range that is to be matched. If the IP
  1620. protocol of the packet is neither UDP nor TCP, this
  1621. object is ignored during matching."
  1622. REFERENCE "www.iana.org/assignments/port-numbers"
  1623. DEFVAL { 0 }
  1624. ::= { docsDevFilterIpEntry 12 }
  1625. docsDevFilterIpSourcePortHigh OBJECT-TYPE
  1626. SYNTAX Integer32 (0..65535)
  1627. MAX-ACCESS read-create
  1628. STATUS deprecated
  1629. DESCRIPTION
  1630. "This is the inclusive upper bound of the transport-layer
  1631. source port range that is to be matched. If the IP
  1632. protocol of the packet is neither UDP nor TCP, this
  1633. object is ignored during matching."
  1634. REFERENCE "www.iana.org/assignments/port-numbers"
  1635. DEFVAL { 65535 }
  1636. ::= { docsDevFilterIpEntry 13 }
  1637. docsDevFilterIpDestPortLow OBJECT-TYPE
  1638. SYNTAX Integer32 (0..65535)
  1639. MAX-ACCESS read-create
  1640. STATUS deprecated
  1641. DESCRIPTION
  1642. "This is the inclusive lower bound of the transport-layer
  1643. destination port range that is to be matched. If the IP
  1644. protocol of the packet is neither UDP nor TCP, this
  1645. object is ignored during matching."
  1646. REFERENCE "www.iana.org/assignments/port-numbers"
  1647. DEFVAL { 0 }
  1648. ::= { docsDevFilterIpEntry 14 }
  1649. docsDevFilterIpDestPortHigh OBJECT-TYPE
  1650. SYNTAX Integer32 (0..65535)
  1651. MAX-ACCESS read-create
  1652. STATUS deprecated
  1653. DESCRIPTION
  1654. "This is the inclusive upper bound of the transport-layer
  1655. destination port range that is to be matched. If the IP
  1656. protocol of the packet is neither UDP nor TCP, this
  1657. object is ignored during matching."
  1658. REFERENCE "www.iana.org/assignments/port-numbers"
  1659. DEFVAL { 65535 }
  1660. ::= { docsDevFilterIpEntry 15 }
  1661. docsDevFilterIpMatches OBJECT-TYPE
  1662. SYNTAX ZeroBasedCounter32
  1663. UNITS "matches"
  1664. MAX-ACCESS read-only
  1665. STATUS deprecated
  1666. DESCRIPTION
  1667. "Counts the number of times this filter was matched.
  1668. This object is initialized to 0 at boot, or at row
  1669. creation, and is reset only upon reboot."
  1670. ::= { docsDevFilterIpEntry 16 }
  1671. docsDevFilterIpTos OBJECT-TYPE
  1672. SYNTAX OCTET STRING (SIZE (1))
  1673. MAX-ACCESS read-create
  1674. STATUS deprecated
  1675. DESCRIPTION
  1676. "This is the value to be matched to the packet's
  1677. TOS (Type of Service) value (after the TOS value
  1678. is ANDed with docsDevFilterIpTosMask). A value for this
  1679. object of 0 and a mask of 0 matches all TOS values."
  1680. DEFVAL { '00'h }
  1681. ::= { docsDevFilterIpEntry 17 }
  1682. docsDevFilterIpTosMask OBJECT-TYPE
  1683. SYNTAX OCTET STRING (SIZE (1))
  1684. MAX-ACCESS read-create
  1685. STATUS deprecated
  1686. DESCRIPTION
  1687. "The mask to be applied to the packet's TOS value before
  1688. matching."
  1689. DEFVAL { '00'h }
  1690. ::= { docsDevFilterIpEntry 18 }
  1691. docsDevFilterIpContinue OBJECT-TYPE
  1692. SYNTAX TruthValue
  1693. MAX-ACCESS read-create
  1694. STATUS deprecated
  1695. DESCRIPTION
  1696. "If this value is set to true and docsDevFilterIpControl
  1697. is anything but discard (1), continue scanning and
  1698. applying policies. See Section 3.3.3 for more
  1699. details."
  1700. DEFVAL { false }
  1701. ::= { docsDevFilterIpEntry 19 }
  1702. docsDevFilterIpPolicyId OBJECT-TYPE
  1703. SYNTAX Integer32 (0..2147483647)
  1704. MAX-ACCESS read-create
  1705. STATUS deprecated
  1706. DESCRIPTION
  1707. "This object points to an entry in
  1708. docsDevFilterPolicyTable. If docsDevFilterIpControl
  1709. is set to policy (3), execute all matching policies
  1710. in docsDevFilterPolicyTable. If no matching policy
  1711. exists, treat as if docsDevFilterIpControl were set
  1712. to accept (1). If this object is set to the value of
  1713. 0, there is no matching policy, and
  1714. docsDevFilterPolicyTable MUST NOT be consulted."
  1715. DEFVAL { 0 }
  1716. ::= { docsDevFilterIpEntry 20 }
  1717. --
  1718. -- Policy Mapping Table
  1719. --
  1720. docsDevFilterPolicyTable OBJECT-TYPE
  1721. SYNTAX SEQUENCE OF DocsDevFilterPolicyEntry
  1722. MAX-ACCESS not-accessible
  1723. STATUS deprecated
  1724. DESCRIPTION
  1725. "A Table that maps between a policy group ID and a set
  1726. of pointers to policies to be applied. All rows with
  1727. the same docsDevFilterPolicyId are part of the same
  1728. group of policy pointers and are applied in the order
  1729. in this table. docsDevFilterPolicyTable exists to
  1730. allow multiple policy actions (referenced by policy
  1731. pointers) to be applied to any given classified packet.
  1732. The policy actions are applied in index order.
  1733. For example:
  1734. Index ID Type Action
  1735. 1 1 TOS 1
  1736. 9 5 TOS 1
  1737. 12 1 IPSEC 3
  1738. This says that a packet that matches a filter with
  1739. policy id 1 first has TOS policy 1 applied (which might
  1740. set the TOS bits to enable a higher priority) and next
  1741. has the IPSEC policy 3 applied (which may result in the
  1742. packets being dumped into a secure VPN to a remote
  1743. encryptor).
  1744. Policy ID 0 is reserved for default actions and is
  1745. applied only to packets that match no filters in
  1746. docsDevFilterIpTable.
  1747. Table entries MUST NOT persist across reboots for any
  1748. device.
  1749. This table is deprecated. Instead, use the DiffServ MIB
  1750. from RFC 3289."
  1751. ::= { docsDevFilter 5 }
  1752. docsDevFilterPolicyEntry OBJECT-TYPE
  1753. SYNTAX DocsDevFilterPolicyEntry
  1754. MAX-ACCESS not-accessible
  1755. STATUS deprecated
  1756. DESCRIPTION
  1757. "An entry in the docsDevFilterPolicyTable. Entries are
  1758. created by Network Management. To create an entry,
  1759. docsDevFilterPolicyId MUST be specified."
  1760. INDEX { docsDevFilterPolicyIndex }
  1761. ::= { docsDevFilterPolicyTable 1 }
  1762. DocsDevFilterPolicyEntry ::= SEQUENCE {
  1763. docsDevFilterPolicyIndex Integer32,
  1764. docsDevFilterPolicyId Integer32,
  1765. -- docsDevFilterPolicyType INTEGER,
  1766. -- docsDevFilterPolicyAction Integer32,
  1767. docsDevFilterPolicyStatus RowStatus,
  1768. docsDevFilterPolicyPtr RowPointer
  1769. }
  1770. docsDevFilterPolicyIndex OBJECT-TYPE
  1771. SYNTAX Integer32 (1..2147483647)
  1772. MAX-ACCESS not-accessible
  1773. STATUS deprecated
  1774. DESCRIPTION "Index value for the table."
  1775. ::= { docsDevFilterPolicyEntry 1 }
  1776. docsDevFilterPolicyId OBJECT-TYPE
  1777. SYNTAX Integer32 (0..2147483647)
  1778. MAX-ACCESS read-create
  1779. STATUS deprecated
  1780. DESCRIPTION
  1781. "Policy ID for this entry. If a policy ID can apply to
  1782. multiple rows of this table, all relevant policies are
  1783. executed. Policy 0 (if populated) is applied to all
  1784. packets that do not match any of the filters. N.B. If
  1785. docsDevFilterIpPolicyId is set to 0, it DOES NOT match
  1786. policy 0 of this table."
  1787. ::= { docsDevFilterPolicyEntry 2 }
  1788. -- The following two objects were removed and never used; however,
  1789. -- to preserve OID numbering, they are simply commented out to
  1790. -- to ensure that they are not used again.
  1791. -- docsDevFilterPolicyType ::= { docsDevFilterPolicyEntry 3 }
  1792. -- docsDevFilterPolicyAction ::= { docsDevFilterPolicyEntry 4 }
  1793. docsDevFilterPolicyStatus OBJECT-TYPE
  1794. SYNTAX RowStatus
  1795. MAX-ACCESS read-create
  1796. STATUS deprecated
  1797. DESCRIPTION
  1798. "Object used to create an entry in this table. There is
  1799. no restriction in changing any object in a row while
  1800. this object is set to active.
  1801. The following object MUST have a valid value before this
  1802. object can be set to active: docsDevFilterPolicyPtr."
  1803. ::= { docsDevFilterPolicyEntry 5 }
  1804. docsDevFilterPolicyPtr OBJECT-TYPE
  1805. SYNTAX RowPointer
  1806. MAX-ACCESS read-create
  1807. STATUS deprecated
  1808. DESCRIPTION
  1809. "This object points to a row in an applicable filter
  1810. policy table. Currently, the only standard policy
  1811. table is docsDevFilterTosTable.
  1812. Per the textual convention, this object points to the
  1813. first accessible object in the row; e.g., to point to a
  1814. row in docsDevFilterTosTable with an index of 21, the
  1815. value of this object would be the object identifier
  1816. docsDevTosStatus.21.
  1817. Vendors are recommended to adhere to the same convention
  1818. when adding vendor-specific policy table extensions.
  1819. If this pointer references an empty or non-existent
  1820. row, then no policy action is taken.
  1821. The default upon row creation is a null pointer that
  1822. results in no policy action being taken."
  1823. DEFVAL { zeroDotZero }
  1824. ::= { docsDevFilterPolicyEntry 6 }
  1825. --
  1826. -- TOS Policy action table
  1827. --
  1828. docsDevFilterTosTable OBJECT-TYPE
  1829. SYNTAX SEQUENCE OF DocsDevFilterTosEntry
  1830. MAX-ACCESS not-accessible
  1831. STATUS deprecated
  1832. DESCRIPTION
  1833. "Table used to describe Type of Service (TOS) bits
  1834. processing.
  1835. This table is an adjunct to the docsDevFilterIpTable
  1836. and the docsDevFilterPolicy table. Entries in the
  1837. latter table can point to specific rows in this (and
  1838. other) tables and cause specific actions to be taken.
  1839. This table permits the manipulation of the value of the
  1840. Type of Service bits in the IP header of the matched
  1841. packet as follows:
  1842. Set the tosBits of the packet to
  1843. (tosBits & docsDevFilterTosAndMask) |
  1844. docsDevFilterTosOrMask
  1845. This construct allows you to do a clear and set of all
  1846. the TOS bits in a flexible manner.
  1847. Table entries MUST NOT persist across reboots for any
  1848. device.
  1849. This table is deprecated. Instead, use the DiffServ MIB
  1850. from RFC 3289."
  1851. ::= { docsDevFilter 6 }
  1852. docsDevFilterTosEntry OBJECT-TYPE
  1853. SYNTAX DocsDevFilterTosEntry
  1854. MAX-ACCESS not-accessible
  1855. STATUS deprecated
  1856. DESCRIPTION
  1857. "A TOS policy entry."
  1858. INDEX { docsDevFilterTosIndex }
  1859. ::= { docsDevFilterTosTable 1 }
  1860. DocsDevFilterTosEntry ::= SEQUENCE {
  1861. docsDevFilterTosIndex Integer32,
  1862. docsDevFilterTosStatus RowStatus,
  1863. docsDevFilterTosAndMask OCTET STRING,
  1864. docsDevFilterTosOrMask OCTET STRING
  1865. }
  1866. docsDevFilterTosIndex OBJECT-TYPE
  1867. SYNTAX Integer32 (1..2147483647)
  1868. MAX-ACCESS not-accessible
  1869. STATUS deprecated
  1870. DESCRIPTION
  1871. "The unique index for this row. There are no ordering
  1872. requirements for this table, and any valid index may be
  1873. specified."
  1874. ::= { docsDevFilterTosEntry 1 }
  1875. docsDevFilterTosStatus OBJECT-TYPE
  1876. SYNTAX RowStatus
  1877. MAX-ACCESS read-create
  1878. STATUS deprecated
  1879. DESCRIPTION
  1880. "The object used to create and delete entries in this
  1881. table. A row created by specifying just this object
  1882. results in a row that specifies no change to the TOS
  1883. bits. A row may be created using either the
  1884. create-and-go or create-and-wait paradigms. There is
  1885. no restriction on the ability to change values in this
  1886. row while the row is active."
  1887. ::= { docsDevFilterTosEntry 2 }
  1888. docsDevFilterTosAndMask OBJECT-TYPE
  1889. SYNTAX OCTET STRING (SIZE (1))
  1890. MAX-ACCESS read-create
  1891. STATUS deprecated
  1892. DESCRIPTION
  1893. "This value is bitwise ANDed with the matched packet's
  1894. TOS bits."
  1895. DEFVAL { 'ff'h }
  1896. ::= { docsDevFilterTosEntry 3 }
  1897. docsDevFilterTosOrMask OBJECT-TYPE
  1898. SYNTAX OCTET STRING (SIZE (1))
  1899. MAX-ACCESS read-create
  1900. STATUS deprecated
  1901. DESCRIPTION
  1902. "This value is bitwise ORed with the result from the
  1903. AND procedure (tosBits & docsDevFilterTosAndMask).
  1904. The result then replaces the packet's TOS bits."
  1905. DEFVAL { '00'h }
  1906. ::= { docsDevFilterTosEntry 4 }
  1907. --
  1908. -- CPE IP Management and anti-spoofing group. Only implemented on
  1909. -- Cable Modems.
  1910. --
  1911. docsDevCpe OBJECT IDENTIFIER ::= { docsDevMIBObjects 7 }
  1912. docsDevCpeEnroll OBJECT-TYPE
  1913. SYNTAX INTEGER {
  1914. none(1),
  1915. any(2)
  1916. }
  1917. MAX-ACCESS read-write
  1918. STATUS current
  1919. DESCRIPTION
  1920. "This object controls the population of
  1921. docsDevFilterCpeTable.
  1922. If set to none, the filters must be set manually
  1923. by a network management action (either configuration
  1924. or SNMP set).
  1925. If set to any, the CM wiretaps the packets originating
  1926. from the ethernet and enrolls up to docsDevCpeIpMax
  1927. addresses as based on the source IPv4 or v6 addresses of
  1928. those packets."
  1929. DEFVAL { any }
  1930. ::= { docsDevCpe 1 }
  1931. docsDevCpeIpMax OBJECT-TYPE
  1932. SYNTAX Integer32 (-1..2147483647)
  1933. MAX-ACCESS read-write
  1934. STATUS current
  1935. DESCRIPTION
  1936. "This object controls the maximum number of CPEs allowed
  1937. to be learned behind this device. If set to zero, any
  1938. number of CPEs may connect up to the maximum permitted
  1939. for the device.
  1940. If set to -1, no filtering is done on CPE source
  1941. addresses, and no entries are made in the
  1942. docsDevFilterCpeTable via learning. If an attempt is
  1943. made to set this to a number greater than that
  1944. permitted for the device, it is set to that maximum."
  1945. DEFVAL { -1 }
  1946. ::= { docsDevCpe 2 }
  1947. docsDevCpeTable OBJECT-TYPE
  1948. SYNTAX SEQUENCE OF DocsDevCpeEntry
  1949. MAX-ACCESS not-accessible
  1950. STATUS deprecated
  1951. DESCRIPTION
  1952. "This table lists the IPv4 addresses seen (or permitted)
  1953. as source addresses in packets originating from the
  1954. customer interface on this device. In addition, this
  1955. table can be provisioned with the specific addresses
  1956. permitted for the CPEs via the normal row creation
  1957. mechanisms. Table entries MUST NOT persist across
  1958. reboots for any device.
  1959. N.B. Management action can add entries in this table
  1960. and in docsDevCpeIpTable past the value of
  1961. docsDevCpeIpMax. docsDevCpeIpMax ONLY restricts the
  1962. ability of the CM to add learned addresses
  1963. automatically.
  1964. This table is deprecated and is replaced by
  1965. docsDevCpeInetTable."
  1966. ::= { docsDevCpe 3 }
  1967. docsDevCpeEntry OBJECT-TYPE
  1968. SYNTAX DocsDevCpeEntry
  1969. MAX-ACCESS not-accessible
  1970. STATUS deprecated
  1971. DESCRIPTION
  1972. "An entry in the docsDevFilterCpeTable. There is one
  1973. entry for each IPv4 CPE seen or provisioned. If
  1974. docsDevCpeIpMax is set to -1, this table is ignored;
  1975. otherwise, upon receipt of an IP packet from the
  1976. customer interface of the CM, the source IP address is
  1977. checked against this table. If the address is in the
  1978. table, packet processing continues. If the address is
  1979. not in the table but docsDevCpeEnroll is set to any
  1980. and the sum of the table sizes of docsDevCpeTable and
  1981. docsDevCpeInetTable is less than docsDevCpeIpMax, the
  1982. address is added to the table, and packet processing
  1983. continues. Otherwise, the packet is dropped.
  1984. The filtering actions specified by this table occur
  1985. after any LLC filtering (docsDevFilterLLCTable), but
  1986. prior to any IP filtering (docsDevFilterIpTable,
  1987. docsDevNmAccessTable)."
  1988. INDEX { docsDevCpeIp }
  1989. ::= {docsDevCpeTable 1 }
  1990. DocsDevCpeEntry ::= SEQUENCE {
  1991. docsDevCpeIp IpAddress,
  1992. docsDevCpeSource INTEGER,
  1993. docsDevCpeStatus RowStatus
  1994. }
  1995. docsDevCpeIp OBJECT-TYPE
  1996. SYNTAX IpAddress
  1997. MAX-ACCESS not-accessible
  1998. STATUS deprecated
  1999. DESCRIPTION
  2000. "The IPv4 address to which this entry applies.
  2001. N.B. Attempts to set all zeros or all ones address
  2002. values MUST be rejected."
  2003. ::= { docsDevCpeEntry 1 }
  2004. docsDevCpeSource OBJECT-TYPE
  2005. SYNTAX INTEGER {
  2006. other(1),
  2007. manual(2),
  2008. learned(3)
  2009. }
  2010. MAX-ACCESS read-only
  2011. STATUS deprecated
  2012. DESCRIPTION
  2013. "This object describes how this entry was created. If
  2014. the value is manual(2), this row was created by a
  2015. network management action (either configuration or
  2016. SNMP set). If set to learned(3), then it was found via
  2017. looking at the source IPv4 address of a received packet.
  2018. The value other(1) is used for any entries that do not
  2019. meet manual(2) or learned(3) criteria."
  2020. ::= { docsDevCpeEntry 2 }
  2021. docsDevCpeStatus OBJECT-TYPE
  2022. SYNTAX RowStatus
  2023. MAX-ACCESS read-create
  2024. STATUS deprecated
  2025. DESCRIPTION
  2026. "Standard object to manipulate rows. To create a row in
  2027. this table, one only needs to specify this object.
  2028. Management stations SHOULD use the create-and-go
  2029. mechanism for creating rows in this table."
  2030. ::= { docsDevCpeEntry 3 }
  2031. --
  2032. -- Internet CPE Management and anti spoofing group, for support of
  2033. -- non-IPv4 CPEs.
  2034. --
  2035. docsDevCpeInetTable OBJECT-TYPE
  2036. SYNTAX SEQUENCE OF DocsDevCpeInetEntry
  2037. MAX-ACCESS not-accessible
  2038. STATUS current
  2039. DESCRIPTION
  2040. "This table lists the IP addresses seen (or permitted) as
  2041. source addresses in packets originating from the
  2042. customer interface on this device. In addition, this
  2043. table can be provisioned with the specific addresses
  2044. permitted for the CPEs via the normal row creation
  2045. mechanisms.
  2046. N.B. Management action can add entries in this table
  2047. and in docsDevCpeIpTable past the value of
  2048. docsDevCpeIpMax. docsDevCpeIpMax ONLY restricts the
  2049. ability of the CM to add learned addresses
  2050. automatically.
  2051. Table entries MUST NOT persist across reboots for any
  2052. device.
  2053. This table exactly mirrors docsDevCpeTable and applies
  2054. to IPv4 and IPv6 addresses."
  2055. ::= { docsDevCpe 4 }
  2056. docsDevCpeInetEntry OBJECT-TYPE
  2057. SYNTAX DocsDevCpeInetEntry
  2058. MAX-ACCESS not-accessible
  2059. STATUS current
  2060. DESCRIPTION
  2061. "An entry in the docsDevFilterCpeInetTable. There is one
  2062. entry for each IP CPE seen or provisioned. If
  2063. docsDevCpeIpMax is set to -1, this table is ignored;
  2064. otherwise, upon receipt of an IP packet from the
  2065. customer interface of the CM, the source IP address is
  2066. checked against this table. If the address is in the
  2067. table, packet processing continues. If the address is
  2068. not in the table but docsDevCpeEnroll is set to any and
  2069. the sum of the table sizes for docsDevCpeTable and
  2070. docsDevCpeInetTable is less than docsDevCpeIpMax, the
  2071. address is added to the table, and packet processing
  2072. continues. Otherwise, the packet is dropped.
  2073. The filtering actions specified by this table occur
  2074. after any LLC filtering (docsDevFilterLLCTable), but
  2075. prior to any IP filtering (docsDevFilterIpTable,
  2076. docsDevNmAccessTable).
  2077. When an agent (cable modem) restarts, then all
  2078. dynamically created rows are lost."
  2079. INDEX { docsDevCpeInetType, docsDevCpeInetAddr }
  2080. ::= { docsDevCpeInetTable 1 }
  2081. DocsDevCpeInetEntry ::= SEQUENCE {
  2082. docsDevCpeInetType InetAddressType,
  2083. docsDevCpeInetAddr InetAddress,
  2084. docsDevCpeInetSource INTEGER,
  2085. docsDevCpeInetRowStatus RowStatus
  2086. }
  2087. docsDevCpeInetType OBJECT-TYPE
  2088. SYNTAX InetAddressType
  2089. MAX-ACCESS not-accessible
  2090. STATUS current
  2091. DESCRIPTION
  2092. "The type of internet address of docsDevCpeInetAddr."
  2093. ::= { docsDevCpeInetEntry 1 }
  2094. docsDevCpeInetAddr OBJECT-TYPE
  2095. SYNTAX InetAddress
  2096. MAX-ACCESS not-accessible
  2097. STATUS current
  2098. DESCRIPTION
  2099. "The Internet address to which this entry applies.
  2100. Implementors need to be aware that if the size of
  2101. docsDevCpeInetAddr exceeds 114 octets OIDs of
  2102. instances of columns in this row will have more
  2103. than 128 sub-identifiers and cannot be accessed
  2104. using SNMPv1, SNMPv2c, or SNMPv3. Only unicast
  2105. address are allowed for this object."
  2106. ::= { docsDevCpeInetEntry 2 }
  2107. docsDevCpeInetSource OBJECT-TYPE
  2108. SYNTAX INTEGER {
  2109. manual(2),
  2110. learned(3)
  2111. }
  2112. MAX-ACCESS read-only
  2113. STATUS current
  2114. DESCRIPTION
  2115. "This object describes how this entry was created. If
  2116. the value is manual(2), this row was created by a
  2117. network management action (either configuration or
  2118. SNMP set). If set to learned(3), then it was found
  2119. via looking at the source IP address of a received
  2120. packet."
  2121. ::= { docsDevCpeInetEntry 3 }
  2122. docsDevCpeInetRowStatus OBJECT-TYPE
  2123. SYNTAX RowStatus
  2124. MAX-ACCESS read-create
  2125. STATUS current
  2126. DESCRIPTION
  2127. "Standard object to manipulate rows. To create a row in
  2128. this table, one only needs to specify this object.
  2129. Management stations SHOULD use the create-and-go
  2130. mechanism for creating rows in this table."
  2131. ::= { docsDevCpeInetEntry 4 }
  2132. --
  2133. -- Placeholder for notifications/traps.
  2134. --
  2135. -- erroneous, DO NOT USE docsDevNotification
  2136. docsDevNotification OBJECT IDENTIFIER ::= { docsDev 2 }
  2137. -- erroneous, DO NOT USE docsDevNotification
  2138. docsDevNotifications OBJECT IDENTIFIER ::= { docsDev 0 }
  2139. --
  2140. -- RFC 2669 Conformance definitions
  2141. --
  2142. docsDevConformance OBJECT IDENTIFIER ::= { docsDev 3 }
  2143. docsDevGroups OBJECT IDENTIFIER ::= { docsDevConformance 1 }
  2144. docsDevCompliances OBJECT IDENTIFIER ::= { docsDevConformance 2 }
  2145. docsDevBasicCompliance MODULE-COMPLIANCE
  2146. STATUS deprecated
  2147. DESCRIPTION
  2148. "The RFC 2669 compliance statement for MCNS/DOCSIS
  2149. Cable Modems and Cable Modem Termination Systems."
  2150. MODULE -- docsDev
  2151. -- conditionally mandatory groups
  2152. GROUP docsDevBaseGroup
  2153. DESCRIPTION
  2154. "Mandatory in Cable Modems, optional in Cable Modem
  2155. Termination Systems."
  2156. GROUP docsDevEventGroup
  2157. DESCRIPTION
  2158. "Mandatory in Cable Modems, optional in Cable Modem
  2159. Termination Systems."
  2160. GROUP docsDevFilterGroup
  2161. DESCRIPTION
  2162. "Mandatory in Cable Modems, optional in Cable Modem
  2163. Termination Systems."
  2164. GROUP docsDevNmAccessGroup
  2165. DESCRIPTION
  2166. "This group is only implemented in devices that do not
  2167. implement the SNMPv3 User Security Model. It SHOULD NOT
  2168. be implemented by devices that conform to SNMPv3.
  2169. For devices that do not implement SNMPv3 or later, this
  2170. group is Mandatory in Cable Modems and is optional
  2171. in Cable Modem Termination Systems."
  2172. GROUP docsDevServerGroup
  2173. DESCRIPTION
  2174. "This group is implemented only in Cable Modems, and is
  2175. not implemented in Cable Modem Termination Systems."
  2176. GROUP docsDevSoftwareGroup
  2177. DESCRIPTION
  2178. "This group is Mandatory in Cable Modems and optional in
  2179. Cable Modem Termination Systems."
  2180. GROUP docsDevCpeGroup
  2181. DESCRIPTION
  2182. "This group is Mandatory in Cable Modems, and is
  2183. not implemented in Cable Modem Termination Systems."
  2184. OBJECT docsDevSTPControl
  2185. MIN-ACCESS read-only
  2186. DESCRIPTION
  2187. "It is compliant to implement this object as read-only.
  2188. Devices need only support noStFilterBpdu(2)."
  2189. OBJECT docsDevNmAccessIp
  2190. DESCRIPTION
  2191. "It is compliant to recognize the IP address
  2192. 255.255.255.255 as referring to any NMS."
  2193. OBJECT docsDevEvReporting
  2194. MIN-ACCESS read-only
  2195. DESCRIPTION
  2196. "It is compliant to implement this object as read-only.
  2197. Devices need only support local(0). An agent need not
  2198. enforce that trap or syslog logging be accompanied
  2199. by local(0) or localVolatile(3) logging."
  2200. ::= { docsDevCompliances 1 }
  2201. docsDevBaseGroup OBJECT-GROUP
  2202. OBJECTS {
  2203. docsDevRole,
  2204. docsDevDateTime,
  2205. docsDevResetNow,
  2206. docsDevSerialNumber,
  2207. docsDevSTPControl
  2208. }
  2209. STATUS current
  2210. DESCRIPTION
  2211. "A collection of objects providing device status and
  2212. control."
  2213. ::= { docsDevGroups 1 }
  2214. docsDevNmAccessGroup OBJECT-GROUP
  2215. OBJECTS {
  2216. docsDevNmAccessIp,
  2217. docsDevNmAccessIpMask,
  2218. docsDevNmAccessCommunity,
  2219. docsDevNmAccessControl,
  2220. docsDevNmAccessInterfaces,
  2221. docsDevNmAccessStatus
  2222. }
  2223. STATUS deprecated
  2224. DESCRIPTION
  2225. "A collection of objects for controlling access to SNMP
  2226. objects on cable devices.
  2227. This group has been deprecated because all the
  2228. objects have been deprecated in favor of SNMPv3 and
  2229. Coexistence MIBs."
  2230. ::= { docsDevGroups 2 }
  2231. docsDevSoftwareGroup OBJECT-GROUP
  2232. OBJECTS {
  2233. docsDevSwServer,
  2234. docsDevSwFilename,
  2235. docsDevSwAdminStatus,
  2236. docsDevSwOperStatus,
  2237. docsDevSwCurrentVers
  2238. }
  2239. STATUS deprecated
  2240. DESCRIPTION
  2241. "A collection of objects for controlling software
  2242. downloads.
  2243. This group has been deprecated and replaced by
  2244. docsDevSoftwareGroupV2. Object docsDevSwServer
  2245. has been replaced by docsDevSwServerAddressType
  2246. and docsDevSwServerAddress, and
  2247. docsDevSwServerTransportProtocol has been added to
  2248. support TFTP and HTTP firmware downloads."
  2249. ::= { docsDevGroups 3 }
  2250. docsDevServerGroup OBJECT-GROUP
  2251. OBJECTS {
  2252. docsDevServerBootState,
  2253. docsDevServerDhcp,
  2254. docsDevServerTime,
  2255. docsDevServerTftp,
  2256. docsDevServerConfigFile
  2257. }
  2258. STATUS deprecated
  2259. DESCRIPTION
  2260. "A collection of objects providing status about server
  2261. provisioning.
  2262. This group has been deprecated and replaced by
  2263. docsDevServerGroupV2. The objects docsDevServerDhcp,
  2264. docsDevServerTime, and docsDevServerTftp have
  2265. been replaced by docsDevServerDhcpAddressType,
  2266. docsDevServerDhcpAddress, docsDevServerTimeAddressType,
  2267. docsDevServerTimeAddress,
  2268. docsDevServerConfigTftpAddressType, and
  2269. docsDevServerConfigTftpAddress."
  2270. ::= { docsDevGroups 4 }
  2271. docsDevEventGroup OBJECT-GROUP
  2272. OBJECTS {
  2273. docsDevEvControl,
  2274. docsDevEvSyslog,
  2275. docsDevEvThrottleAdminStatus,
  2276. docsDevEvThrottleInhibited,
  2277. docsDevEvThrottleThreshold,
  2278. docsDevEvThrottleInterval,
  2279. docsDevEvReporting,
  2280. docsDevEvFirstTime,
  2281. docsDevEvLastTime,
  2282. docsDevEvCounts,
  2283. docsDevEvLevel,
  2284. docsDevEvId,
  2285. docsDevEvText
  2286. }
  2287. STATUS deprecated
  2288. DESCRIPTION
  2289. "A collection of objects used to control and monitor
  2290. events.
  2291. This group has been deprecated and replaced by
  2292. docsDevEventGroupV2. The object docsDevEvSyslog has
  2293. been replaced by docsDevEvSyslogAddressType and
  2294. docsDevEvSyslogAddress, and docsDevEvThrottleInhibited
  2295. has been replaced by
  2296. docsDevEvThrottleThresholdExceeded."
  2297. ::= { docsDevGroups 5 }
  2298. docsDevFilterGroup OBJECT-GROUP
  2299. OBJECTS {
  2300. docsDevFilterLLCUnmatchedAction,
  2301. docsDevFilterIpDefault,
  2302. docsDevFilterLLCStatus,
  2303. docsDevFilterLLCIfIndex,
  2304. docsDevFilterLLCProtocolType,
  2305. docsDevFilterLLCProtocol,
  2306. docsDevFilterLLCMatches,
  2307. docsDevFilterIpControl,
  2308. docsDevFilterIpIfIndex,
  2309. docsDevFilterIpStatus,
  2310. docsDevFilterIpDirection,
  2311. docsDevFilterIpBroadcast,
  2312. docsDevFilterIpSaddr,
  2313. docsDevFilterIpSmask,
  2314. docsDevFilterIpDaddr,
  2315. docsDevFilterIpDmask,
  2316. docsDevFilterIpProtocol,
  2317. docsDevFilterIpSourcePortLow,
  2318. docsDevFilterIpSourcePortHigh,
  2319. docsDevFilterIpDestPortLow,
  2320. docsDevFilterIpDestPortHigh,
  2321. docsDevFilterIpMatches,
  2322. docsDevFilterIpTos,
  2323. docsDevFilterIpTosMask,
  2324. docsDevFilterIpContinue,
  2325. docsDevFilterIpPolicyId,
  2326. docsDevFilterPolicyId,
  2327. docsDevFilterPolicyStatus,
  2328. docsDevFilterPolicyPtr,
  2329. docsDevFilterTosStatus,
  2330. docsDevFilterTosAndMask,
  2331. docsDevFilterTosOrMask
  2332. }
  2333. STATUS deprecated
  2334. DESCRIPTION
  2335. "A collection of objects to specify filters at the link
  2336. layer and IPv4 layer.
  2337. This group has been deprecated and replaced by various
  2338. groups from the DiffServ MIB."
  2339. ::= { docsDevGroups 6 }
  2340. docsDevCpeGroup OBJECT-GROUP
  2341. OBJECTS {
  2342. docsDevCpeEnroll,
  2343. docsDevCpeIpMax,
  2344. docsDevCpeSource,
  2345. docsDevCpeStatus
  2346. }
  2347. STATUS deprecated
  2348. DESCRIPTION
  2349. "A collection of objects used to control the number
  2350. and specific values of IPv4 addresses allowed for
  2351. associated Customer Premises Equipment (CPE).
  2352. This group has been deprecated and replaced by
  2353. docsDevInetCpeGroup. The object docsDevCpeSource has
  2354. been replaced by docsDevCpeInetSource, and
  2355. docsDevCpeStatus has been replaced by
  2356. docsDevCpeInetRowStatus."
  2357. ::= { docsDevGroups 7 }
  2358. --
  2359. -- RFC 4639 Conformance definitions
  2360. --
  2361. docsDevGroupsV2 OBJECT IDENTIFIER ::= { docsDevConformance 3 }
  2362. docsDevCompliancesV2 OBJECT IDENTIFIER ::= { docsDevConformance 4 }
  2363. docsDevCmCompliance MODULE-COMPLIANCE
  2364. STATUS current
  2365. DESCRIPTION
  2366. "The compliance statement for DOCSIS Cable Modems.
  2367. This compliance statement applies to implementations
  2368. of DOCSIS versions that are not IPv6 capable."
  2369. MODULE DIFFSERV-MIB -- RFC 3289
  2370. MANDATORY-GROUPS {
  2371. diffServMIBDataPathGroup,
  2372. diffServMIBClfrGroup,
  2373. diffServMIBClfrElementGroup,
  2374. diffServMIBMultiFieldClfrGroup,
  2375. diffServMIBActionGroup,
  2376. diffServMIBDscpMarkActGroup,
  2377. diffServMIBCounterGroup,
  2378. diffServMIBAlgDropGroup
  2379. }
  2380. OBJECT diffServDataPathStatus -- same as RFC 3289
  2381. SYNTAX RowStatus { active(1) }
  2382. WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) }
  2383. DESCRIPTION
  2384. "Support for createAndWait and notInService is not
  2385. required."
  2386. OBJECT diffServClfrStatus -- same as RFC 3289
  2387. SYNTAX RowStatus { active(1) }
  2388. WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) }
  2389. DESCRIPTION
  2390. "Support for createAndWait and notInService is not
  2391. required."
  2392. OBJECT diffServClfrElementStatus -- same as RFC 3289
  2393. SYNTAX RowStatus { active(1) }
  2394. WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) }
  2395. DESCRIPTION
  2396. "Support for createAndWait and notInService is not
  2397. required."
  2398. OBJECT diffServMultiFieldClfrAddrType
  2399. SYNTAX InetAddressType { ipv4(1) }
  2400. DESCRIPTION
  2401. "An implementation is only required to support IPv4
  2402. addresses."
  2403. OBJECT diffServMultiFieldClfrSrcAddr
  2404. SYNTAX InetAddress (SIZE(4))
  2405. DESCRIPTION
  2406. "An implementation is only required to support IPv4
  2407. addresses."
  2408. OBJECT diffServMultiFieldClfrDstAddr
  2409. SYNTAX InetAddress (SIZE(4))
  2410. DESCRIPTION
  2411. "An implementation is only required to support IPv4
  2412. addresses."
  2413. OBJECT diffServAlgDropStatus -- same as RFC 3289
  2414. SYNTAX RowStatus { active(1) }
  2415. WRITE-SYNTAX RowStatus { createAndGo(4), destroy(6) }
  2416. DESCRIPTION
  2417. "Support for createAndWait and notInService is not
  2418. required."
  2419. OBJECT diffServDataPathStorage
  2420. SYNTAX StorageType { volatile(2) }
  2421. DESCRIPTION
  2422. "An implementation is only required to support
  2423. volatile storage."
  2424. OBJECT diffServClfrStorage
  2425. SYNTAX StorageType { volatile(2) }
  2426. DESCRIPTION
  2427. "An implementation is only required to support
  2428. volatile storage."
  2429. OBJECT diffServClfrElementStorage
  2430. SYNTAX StorageType { volatile(2) }
  2431. DESCRIPTION
  2432. "An implementation is only required to support
  2433. volatile storage."
  2434. OBJECT diffServMultiFieldClfrStorage
  2435. SYNTAX StorageType { volatile(2) }
  2436. DESCRIPTION
  2437. "An implementation is only required to support
  2438. volatile storage."
  2439. OBJECT diffServActionStorage
  2440. SYNTAX StorageType { volatile(2) }
  2441. DESCRIPTION
  2442. "An implementation is only required to support
  2443. volatile storage."
  2444. OBJECT diffServCountActStorage
  2445. SYNTAX StorageType { volatile(2) }
  2446. DESCRIPTION
  2447. "An implementation is only required to support
  2448. volatile storage."
  2449. OBJECT diffServAlgDropStorage
  2450. SYNTAX StorageType { volatile(2) }
  2451. DESCRIPTION
  2452. "An implementation is only required to support
  2453. volatile storage."
  2454. OBJECT diffServAlgDropType
  2455. SYNTAX INTEGER { alwaysDrop(5) }
  2456. DESCRIPTION
  2457. "This object is only used to provide packet
  2458. filtering. Implementations need not support other
  2459. values of this enumeration."
  2460. MODULE -- docsDev
  2461. MANDATORY-GROUPS {
  2462. docsDevBaseGroup,
  2463. docsDevBaseIgmpGroup,
  2464. docsDevBaseMaxCpeGroup,
  2465. docsDevSoftwareGroupV2,
  2466. docsDevServerGroupV2,
  2467. docsDevEventGroupV2,
  2468. docsDevFilterLLCGroup
  2469. }
  2470. -- conditionally mandatory groups
  2471. GROUP docsDevInetCpeGroup
  2472. DESCRIPTION
  2473. "This group is optional in Cable Modems."
  2474. OBJECT docsDevDateTime
  2475. MIN-ACCESS read-only
  2476. DESCRIPTION
  2477. "It is compliant to implement this object as read-only."
  2478. OBJECT docsDevSTPControl
  2479. SYNTAX INTEGER { noStFilterBpdu(2) }
  2480. MIN-ACCESS read-only
  2481. DESCRIPTION
  2482. "It is compliant to implement this object as read-only.
  2483. Devices need only support noStFilterBpdu(2)."
  2484. OBJECT docsDevIgmpModeControl
  2485. SYNTAX INTEGER { passive(1) }
  2486. MIN-ACCESS read-only
  2487. DESCRIPTION
  2488. "It is compliant to implement this object as read-only.
  2489. Devices need only support passive(1)."
  2490. OBJECT docsDevSwServerAddressType
  2491. SYNTAX InetAddressType { ipv4(1) }
  2492. DESCRIPTION
  2493. "An implementation is only required to support IPv4
  2494. addresses."
  2495. OBJECT docsDevSwServerAddress
  2496. SYNTAX InetAddress (SIZE(4))
  2497. DESCRIPTION
  2498. "An implementation is only required to support IPv4
  2499. addresses."
  2500. OBJECT docsDevServerDhcpAddressType
  2501. SYNTAX InetAddressType { ipv4(1) }
  2502. DESCRIPTION
  2503. "An implementation is only required to support IPv4
  2504. addresses."
  2505. OBJECT docsDevServerDhcpAddress
  2506. SYNTAX InetAddress (SIZE(4))
  2507. DESCRIPTION
  2508. "An implementation is only required to support IPv4
  2509. addresses."
  2510. OBJECT docsDevServerTimeAddressType
  2511. SYNTAX InetAddressType { ipv4(1) }
  2512. DESCRIPTION
  2513. "An implementation is only required to support IPv4
  2514. addresses."
  2515. OBJECT docsDevServerTimeAddress
  2516. SYNTAX InetAddress (SIZE(4))
  2517. DESCRIPTION
  2518. "An implementation is only required to support IPv4
  2519. addresses."
  2520. OBJECT docsDevServerConfigTftpAddressType
  2521. SYNTAX InetAddressType { ipv4(1) }
  2522. DESCRIPTION
  2523. "An implementation is only required to support IPv4
  2524. addresses."
  2525. OBJECT docsDevServerConfigTftpAddress
  2526. SYNTAX InetAddress (SIZE(4))
  2527. DESCRIPTION
  2528. "An implementation is only required to support IPv4
  2529. addresses."
  2530. OBJECT docsDevEvReporting
  2531. MIN-ACCESS read-only
  2532. DESCRIPTION
  2533. "It is compliant to implement this object as read-only.
  2534. Devices need only support local(0)."
  2535. OBJECT docsDevEvSyslogAddressType
  2536. SYNTAX InetAddressType { ipv4(1) }
  2537. DESCRIPTION
  2538. "An implementation is only required to support IPv4
  2539. addresses."
  2540. OBJECT docsDevEvSyslogAddress
  2541. SYNTAX InetAddress (SIZE(4))
  2542. DESCRIPTION
  2543. "An implementation is only required to support IPv4
  2544. addresses."
  2545. OBJECT docsDevSwServerTransportProtocol
  2546. SYNTAX INTEGER { tftp(1) }
  2547. DESCRIPTION
  2548. "An implementation is only required to support TFTP
  2549. software image downloads."
  2550. ::= { docsDevCompliancesV2 1 }
  2551. docsDevCmtsCompliance MODULE-COMPLIANCE
  2552. STATUS current
  2553. DESCRIPTION
  2554. "The compliance statement for DOCSIS Cable Modem
  2555. Termination Systems.
  2556. This compliance statement applies to implementations
  2557. of DOCSIS versions that are not IPv6 capable."
  2558. MODULE -- docsDev
  2559. -- conditionally mandatory groups
  2560. GROUP docsDevBaseGroup
  2561. DESCRIPTION
  2562. "Optional in Cable Modem Termination Systems."
  2563. GROUP docsDevBaseIgmpGroup
  2564. DESCRIPTION
  2565. "Optional in Cable Modem Termination Systems."
  2566. GROUP docsDevBaseMaxCpeGroup
  2567. DESCRIPTION
  2568. "This group MUST NOT be implemented in Cable Modem
  2569. Termination Systems."
  2570. GROUP docsDevSoftwareGroupV2
  2571. DESCRIPTION
  2572. "Optional in Cable Modem Termination Systems."
  2573. GROUP docsDevServerGroupV2
  2574. DESCRIPTION
  2575. "This group MUST NOT be implemented in Cable Modem
  2576. Termination Systems."
  2577. GROUP docsDevEventGroupV2
  2578. DESCRIPTION
  2579. "Optional in Cable Modem Termination Systems."
  2580. GROUP docsDevFilterLLCGroup
  2581. DESCRIPTION
  2582. "This group MUST NOT be implemented in Cable Modem
  2583. Termination Systems. See the Subscriber Management
  2584. MIB for similar CMTS capability."
  2585. GROUP docsDevInetCpeGroup
  2586. DESCRIPTION
  2587. "This group MUST NOT be implemented in Cable Modem
  2588. Termination Systems. See the Subscriber Management
  2589. MIB for similar CMTS capability."
  2590. OBJECT docsDevDateTime
  2591. MIN-ACCESS read-only
  2592. DESCRIPTION
  2593. "It is compliant to implement this object as read-only."
  2594. OBJECT docsDevSTPControl
  2595. SYNTAX INTEGER { noStFilterBpdu(2) }
  2596. MIN-ACCESS read-only
  2597. DESCRIPTION
  2598. "It is compliant to implement this object as read-only.
  2599. Devices need only support noStFilterBpdu(2)."
  2600. OBJECT docsDevIgmpModeControl
  2601. SYNTAX INTEGER { passive(1) }
  2602. MIN-ACCESS read-only
  2603. DESCRIPTION
  2604. "It is compliant to implement this object as read-only.
  2605. Devices need only support passive(1)."
  2606. OBJECT docsDevSwServerAddressType
  2607. SYNTAX InetAddressType { ipv4(1) }
  2608. DESCRIPTION
  2609. "An implementation is only required to support IPv4
  2610. addresses."
  2611. OBJECT docsDevSwServerAddress
  2612. SYNTAX InetAddress (SIZE(4))
  2613. DESCRIPTION
  2614. "An implementation is only required to support IPv4
  2615. addresses."
  2616. OBJECT docsDevEvReporting
  2617. MIN-ACCESS read-only
  2618. DESCRIPTION
  2619. "It is compliant to implement this object as read-only.
  2620. Devices need only support local(0)."
  2621. OBJECT docsDevEvSyslogAddressType
  2622. SYNTAX InetAddressType { ipv4(1) }
  2623. DESCRIPTION
  2624. "An implementation is only required to support IPv4
  2625. addresses."
  2626. OBJECT docsDevEvSyslogAddress
  2627. SYNTAX InetAddress (SIZE(4))
  2628. DESCRIPTION
  2629. "An implementation is only required to support IPv4
  2630. addresses."
  2631. OBJECT docsDevSwServerTransportProtocol
  2632. SYNTAX INTEGER { tftp(1) }
  2633. DESCRIPTION
  2634. "An implementation is only required to support TFTP
  2635. software image downloads."
  2636. ::= { docsDevCompliancesV2 2 }
  2637. docsDevBaseIgmpGroup OBJECT-GROUP
  2638. OBJECTS {
  2639. docsDevIgmpModeControl
  2640. }
  2641. STATUS current
  2642. DESCRIPTION
  2643. "An object providing cable device IGMP status and
  2644. control."
  2645. ::= { docsDevGroupsV2 1 }
  2646. docsDevBaseMaxCpeGroup OBJECT-GROUP
  2647. OBJECTS {
  2648. docsDevMaxCpe
  2649. }
  2650. STATUS current
  2651. DESCRIPTION
  2652. "An object providing management of the maximum number of
  2653. CPEs permitted access through a cable modem."
  2654. ::= { docsDevGroupsV2 2 }
  2655. docsDevNmAccessExtGroup OBJECT-GROUP
  2656. OBJECTS {
  2657. docsDevNmAccessTrapVersion
  2658. }
  2659. STATUS deprecated
  2660. DESCRIPTION
  2661. "An object, in addition to the objects in
  2662. docsDevNmAccessGroup, for controlling access to
  2663. SNMP objects on cable devices.
  2664. This group is included in this MIB due to existing
  2665. implementations of docsDevNmAccessTrapVersion in
  2666. DOCSIS cable modems.
  2667. This group has been deprecated because the object has
  2668. been deprecated in favor of SNMPv3 and Coexistence
  2669. MIBs."
  2670. ::= { docsDevGroupsV2 3 }
  2671. docsDevSoftwareGroupV2 OBJECT-GROUP
  2672. OBJECTS {
  2673. docsDevSwFilename,
  2674. docsDevSwAdminStatus,
  2675. docsDevSwOperStatus,
  2676. docsDevSwCurrentVers,
  2677. docsDevSwServerAddressType,
  2678. docsDevSwServerAddress,
  2679. docsDevSwServerTransportProtocol
  2680. }
  2681. STATUS current
  2682. DESCRIPTION
  2683. "A collection of objects for controlling software
  2684. downloads. This group replaces docsDevSoftwareGroup."
  2685. ::= { docsDevGroupsV2 4 }
  2686. docsDevServerGroupV2 OBJECT-GROUP
  2687. OBJECTS {
  2688. docsDevServerBootState,
  2689. docsDevServerDhcpAddressType,
  2690. docsDevServerDhcpAddress,
  2691. docsDevServerTimeAddressType,
  2692. docsDevServerTimeAddress,
  2693. docsDevServerConfigTftpAddressType,
  2694. docsDevServerConfigTftpAddress,
  2695. docsDevServerConfigFile
  2696. }
  2697. STATUS current
  2698. DESCRIPTION
  2699. "A collection of objects providing status about server
  2700. provisioning. This group replaces docsDevServerGroup."
  2701. ::= { docsDevGroupsV2 5 }
  2702. docsDevEventGroupV2 OBJECT-GROUP
  2703. OBJECTS {
  2704. docsDevEvControl,
  2705. docsDevEvThrottleAdminStatus,
  2706. docsDevEvThrottleThreshold,
  2707. docsDevEvThrottleInterval,
  2708. docsDevEvReporting,
  2709. docsDevEvFirstTime,
  2710. docsDevEvLastTime,
  2711. docsDevEvCounts,
  2712. docsDevEvLevel,
  2713. docsDevEvId,
  2714. docsDevEvText,
  2715. docsDevEvSyslogAddressType,
  2716. docsDevEvSyslogAddress,
  2717. docsDevEvThrottleThresholdExceeded
  2718. }
  2719. STATUS current
  2720. DESCRIPTION
  2721. "A collection of objects used to control and monitor
  2722. events. This group replaces docsDevEventGroup.
  2723. The event reporting mechanism, and more specifically
  2724. docsDevEvReporting, can be used to take advantage of
  2725. the event reporting features of RFC3413 and RFC3014."
  2726. ::= { docsDevGroupsV2 6 }
  2727. docsDevFilterLLCGroup OBJECT-GROUP
  2728. OBJECTS {
  2729. docsDevFilterLLCUnmatchedAction,
  2730. docsDevFilterLLCStatus,
  2731. docsDevFilterLLCIfIndex,
  2732. docsDevFilterLLCProtocolType,
  2733. docsDevFilterLLCProtocol,
  2734. docsDevFilterLLCMatches
  2735. }
  2736. STATUS current
  2737. DESCRIPTION
  2738. "A collection of objects to specify link layer filters."
  2739. ::= { docsDevGroupsV2 7 }
  2740. docsDevInetCpeGroup OBJECT-GROUP
  2741. OBJECTS {
  2742. docsDevCpeEnroll,
  2743. docsDevCpeIpMax,
  2744. docsDevCpeInetSource,
  2745. docsDevCpeInetRowStatus
  2746. }
  2747. STATUS current
  2748. DESCRIPTION
  2749. "A collection of objects used to control the number
  2750. and specific values of Internet (e.g., IPv4 and IPv6)
  2751. addresses allowed for associated Customer Premises
  2752. Equipment (CPE)."
  2753. ::= { docsDevGroupsV2 8 }
  2754. END