Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rfc1066.txt 127KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043
  1. Network Working Group K. McCloghrie
  2. Request For Comments: 1066 M. Rose
  3. TWG
  4. August 1988
  5. Management Information Base for Network Management
  6. of TCP/IP-based internets
  7. Table of Contents
  8. 1. Status of this Memo ................................... 1
  9. 2. IAB POLICY STATEMENT .................................. 2
  10. 3. Introduction .......................................... 2
  11. 4. Objects ............................................... 5
  12. 4.1 Object Groups ........................................ 5
  13. 4.2 Format of Definitions ................................ 6
  14. 5. Object Definitions .................................... 7
  15. 5.1 The System Group ..................................... 8
  16. 5.2 The Interfaces Group ................................. 10
  17. 5.2.1 The Interfaces Table ............................... 10
  18. 5.3 The Address Translation Group ........................ 22
  19. 5.4 The IP Group ......................................... 25
  20. 5.4.1 The IP Address Table ............................... 33
  21. 5.4.2 The IP Routing Table ............................... 35
  22. 5.5 The ICMP Group ....................................... 42
  23. 5.6 The TCP Group ........................................ 52
  24. 5.7 The UDP Group ........................................ 61
  25. 5.8 The EGP Group ........................................ 63
  26. 5.8.1 The EGP Neighbor Table ............................. 64
  27. 6. Definitions ........................................... 67
  28. 7. Acknowledgements ...................................... 88
  29. 8. References ............................................ 89
  30. 1. Status of this Memo
  31. This memo provides the initial version of the Management Information
  32. Base (MIB) for use with network management protocols in TCP/IP-based
  33. internets in the short-term. In particular, together with its
  34. companion memos which describe the structure of management
  35. information along with the initial network management protocol, these
  36. documents provide a simple, workable architecture and system for
  37. managing TCP/IP-based internets and in particular the Internet.
  38. McCloghrie & Rose [Page 1]
  39. RFC 1066 MIB August 1988
  40. This memo specifies a draft standard for the Internet community.
  41. TCP/IP implementations in the Internet which are network manageable
  42. are expected to adopt and implement this specification.
  43. Distribution of this memo is unlimited.
  44. 2. IAB POLICY STATEMENT
  45. This MIB specification is the first edition of an evolving document
  46. defining variables needed for monitoring and control of various
  47. components of the Internet. Not all groups of defined variables are
  48. mandatory for all Internet components.
  49. For example, the EGP group is mandatory for gateways using EGP but
  50. not for hosts which should not be running EGP. Similarly, the TCP
  51. group is mandatory for hosts running TCP but not for gateways which
  52. aren't running it. What IS mandatory, however, is that all variables
  53. of a group be supported if any element of the group is supported.
  54. It is expected that additional MIB groups and variables will be
  55. defined over time to accommodate the monitoring and control needs of
  56. new or changing components of the Internet. The MIB working group
  57. will continue to refine this specification and projects a revision
  58. incorporating new requirements in early 1989.
  59. 3. Introduction
  60. As reported in RFC 1052, IAB Recommendations for the Development of
  61. Internet Network Management Standards [1], the Internet Activities
  62. Board has directed the Internet Engineering Task Force (IETF) to
  63. create two new working groups in the area of network management. One
  64. group is charged with the further specification and definition of
  65. elements to be included in the Management Information Base. The
  66. other is charged with defining the modifications to the Simple
  67. Network Management Protocol (SNMP) to accommodate the short-term
  68. needs of the network vendor and operator communities. The long-term
  69. needs of the Internet community are to be met using the ISO CMIS/CMIP
  70. [2,3] framework as a basis. An existing IETF working group, the
  71. "NETMAN" group, is already engaged in defining the use of CMIS/CMIP
  72. in a TCP/IP network, and will continue with responsibility for
  73. addressing the longer-term requirements.
  74. The output of the MIB working group is to be provided to both the
  75. SNMP working group and the NETMAN group, so as to ensure
  76. compatibility of monitored items for both network management
  77. frameworks.
  78. The MIB working group has produced this memo and a companion. The
  79. McCloghrie & Rose [Page 2]
  80. RFC 1066 MIB August 1988
  81. companion memo [4] defines a Structure for Management Information
  82. (SMI) for use by the managed objects contained in the MIB. This memo
  83. defines the list of managed objects.
  84. The IAB also urged the working groups to be "extremely sensitive to
  85. the need to keep SNMP simple," and recommends that the MIB working
  86. group take as its starting inputs the MIB definitions found in the
  87. High-Level Entity Management Systems (HEMS) RFC 1024 [5], the initial
  88. SNMP specification [6], and the CMIS/CMIP memos [7,8].
  89. Thus, the list of managed objects defined here, has been derived by
  90. taking only those elements which are considered essential. Since
  91. such elements are essential, there is no need to allow the
  92. implementation of individual objects, to be optional. Rather, all
  93. compliant implementations will contain all applicable (see below)
  94. objects defined in this memo.
  95. This approach of taking only the essential objects is NOT
  96. restrictive, since the SMI defined in the companion memo provides
  97. three extensibility mechanisms: one, the addition of new standard
  98. objects through the definitions of new versions of the MIB; two, the
  99. addition of widely-available but non-standard objects through the
  100. multilateral subtree; and three, the addition of private objects
  101. through the enterprises subtree. Such additional objects can not only
  102. be used for vendor-specific elements, but also for experimentation as
  103. required to further the knowledge of which other objects are
  104. essential.
  105. The primary criterion for being considered essential was for an
  106. object to be contained in all of the above referenced MIB
  107. definitions. A few other objects have been included, but only if the
  108. MIB working group believed they are truly essential. The detailed
  109. list of criteria against which potential inclusions in this (initial)
  110. MIB were considered, was:
  111. 1) An object needed to be essential for either fault or
  112. configuration management.
  113. 2) Only weak control objects were permitted (by weak, it
  114. is meant that tampering with them can do only limited
  115. damage). This criterion reflects the fact that the
  116. current management protocols are not sufficiently secure
  117. to do more powerful control operations.
  118. 3) Evidence of current use and utility was required.
  119. 4) An attempt was made to limit the number of objects to
  120. about 100 to make it easier for vendors to fully
  121. McCloghrie & Rose [Page 3]
  122. RFC 1066 MIB August 1988
  123. instrument their software.
  124. 5) To avoid redundant variables, it was required that no
  125. object be included that can be derived from others in the
  126. MIB.
  127. 6) Implementation specific objects (e.g., for BSD UNIX)
  128. were excluded.
  129. 7) It was agreed to avoid heavily instrumenting critical
  130. sections of code. The general guideline was one counter
  131. per critical section per layer.
  132. McCloghrie & Rose [Page 4]
  133. RFC 1066 MIB August 1988
  134. 4. Objects
  135. Managed objects are accessed via a virtual information store, termed
  136. the Management Information Base or MIB. Objects in the MIB are
  137. defined using Abstract Syntax Notation One (ASN.1) [9].
  138. The mechanisms used for describing these objects are specified in the
  139. companion memo. In particular, each object has a name, a syntax, and
  140. an encoding. The name is an object identifier, an administratively
  141. assigned name, which specifies an object type. The object type
  142. together with an object instance serves to uniquely identify a
  143. specific instantiation of the object. For human convenience, we
  144. often use a textual string, termed the OBJECT DESCRIPTOR, to also
  145. refer to the object type.
  146. The syntax of an object type defines the abstract data structure
  147. corresponding to that object type. The ASN.1 language is used for
  148. this purpose. However, the companion memo purposely restricts the
  149. ASN.1 constructs which may be used. These restrictions are
  150. explicitly made for simplicity.
  151. The encoding of an object type is simply how that object type is
  152. represented using the object type's syntax. Implicitly tied to the
  153. notion of an object type's syntax and encoding is how the object type
  154. is represented when being transmitted on the network. This memo
  155. specifies the use of the basic encoding rules of ASN.1 [10].
  156. 4.1. Object Groups
  157. Since this list of managed objects contains only the essential
  158. elements, there is no need to allow individual objects to be
  159. optional. Rather, the objects are arranged into the following
  160. groups:
  161. - System
  162. - Interfaces
  163. - Address Translation
  164. - IP
  165. - ICMP
  166. - TCP
  167. - UDP
  168. - EGP
  169. There are two reasons for defining these groups: one, to provide a
  170. means of assigning object identifiers; two, to provide a method for
  171. implementations of managed agents to know which objects they must
  172. implement. This method is as follows: if the semantics of a group is
  173. applicable to an implementation, then it must implement all objects
  174. McCloghrie & Rose [Page 5]
  175. RFC 1066 MIB August 1988
  176. in that group. For example, an implementation must implement the EGP
  177. group if and only if it implements the EGP protocol.
  178. 4.2. Format of Definitions
  179. The next section contains the specification of all object types
  180. contained in the MIB. Following the conventions of the companion
  181. memo, the object types are defined using the following fields:
  182. OBJECT:
  183. -------
  184. A textual name, termed the OBJECT DESCRIPTOR, for the
  185. object type, along with its corresponding OBJECT
  186. IDENTIFIER.
  187. Syntax:
  188. The abstract syntax for the object type, presented using
  189. ASN.1. This must resolve to an instance of the ASN.1
  190. type ObjectSyntax defined in the SMI.
  191. Definition:
  192. A textual description of the semantics of the object
  193. type. Implementations should ensure that their
  194. interpretation of the object type fulfills this
  195. definition since this MIB is intended for use in multi-
  196. vendor environments. As such it is vital that object
  197. types have consistent meaning across all machines.
  198. Access:
  199. One of read-only, read-write, write-only, or
  200. not-accessible.
  201. Status:
  202. One of mandatory, optional, or obsolete.
  203. McCloghrie & Rose [Page 6]
  204. RFC 1066 MIB August 1988
  205. 5. Object Definitions
  206. RFC1066-MIB { iso org(3) dod(6) internet(1) mgmt(2) 1 }
  207. DEFINITIONS ::= BEGIN
  208. IMPORTS
  209. mgmt, OBJECT-TYPE, NetworkAddress, IpAddress,
  210. Counter, Gauge, TimeTicks
  211. FROM RFC1065-SMI;
  212. mib OBJECT IDENTIFIER ::= { mgmt 1 }
  213. system OBJECT IDENTIFIER ::= { mib 1 }
  214. interfaces OBJECT IDENTIFIER ::= { mib 2 }
  215. at OBJECT IDENTIFIER ::= { mib 3 }
  216. ip OBJECT IDENTIFIER ::= { mib 4 }
  217. icmp OBJECT IDENTIFIER ::= { mib 5 }
  218. tcp OBJECT IDENTIFIER ::= { mib 6 }
  219. udp OBJECT IDENTIFIER ::= { mib 7 }
  220. egp OBJECT IDENTIFIER ::= { mib 8 }
  221. END
  222. McCloghrie & Rose [Page 7]
  223. RFC 1066 MIB August 1988
  224. 5.1. The System Group
  225. Implementation of the System group is mandatory for all
  226. systems.
  227. OBJECT:
  228. -------
  229. sysDescr { system 1 }
  230. Syntax:
  231. OCTET STRING
  232. Definition:
  233. A textual description of the entity. This value should
  234. include the full name and version identification of the
  235. system's hardware type, software operating-system, and
  236. networking software. It is mandatory that this only
  237. contain printable ASCII characters.
  238. Access:
  239. read-only.
  240. Status:
  241. mandatory.
  242. OBJECT:
  243. -------
  244. sysObjectID { system 2 }
  245. Syntax:
  246. OBJECT IDENTIFIER
  247. Definition:
  248. The vendor's authoritative identification of the network
  249. management subsystem contained in the entity. This value
  250. is allocated within the SMI enterprises subtree
  251. (1.3.6.1.4.1) and provides an easy and unambiguous means
  252. for determining "what kind of box" is being managed. For
  253. example, if vendor "Flintstones, Inc." was assigned the
  254. subtree 1.3.6.1.4.1.42, it could assign the identifier
  255. 1.3.6.1.4.1.42.1.1 to its "Fred Router".
  256. Access:
  257. read-only.
  258. Status:
  259. mandatory.
  260. McCloghrie & Rose [Page 8]
  261. RFC 1066 MIB August 1988
  262. OBJECT:
  263. -------
  264. sysUpTime { system 3 }
  265. Syntax:
  266. TimeTicks
  267. Definition:
  268. The time (in hundredths of a second) since the network
  269. management portion of the system was last re-initialized.
  270. Access:
  271. read-only.
  272. Status:
  273. mandatory.
  274. McCloghrie & Rose [Page 9]
  275. RFC 1066 MIB August 1988
  276. 5.2. The Interfaces Group
  277. Implementation of the Interfaces group is mandatory for all
  278. systems.
  279. OBJECT:
  280. -------
  281. ifNumber { interfaces 1 }
  282. Syntax:
  283. INTEGER
  284. Definition:
  285. The number of network interfaces (regardless of their
  286. current state) on which this system can send/receive IP
  287. datagrams.
  288. Access:
  289. read-only.
  290. Status:
  291. mandatory.
  292. 5.2.1. The Interfaces Table
  293. OBJECT:
  294. -------
  295. ifTable { interfaces 2 }
  296. Syntax:
  297. SEQUENCE OF IfEntry
  298. Definition:
  299. A list of interface entries. The number of entries is
  300. given by the value of ifNumber.
  301. Access:
  302. read-write.
  303. Status:
  304. mandatory.
  305. OBJECT:
  306. -------
  307. ifEntry { ifTable 1 }
  308. Syntax:
  309. IfEntry ::= SEQUENCE {
  310. McCloghrie & Rose [Page 10]
  311. RFC 1066 MIB August 1988
  312. ifIndex
  313. INTEGER,
  314. ifDescr
  315. OCTET STRING,
  316. ifType
  317. INTEGER,
  318. ifMtu
  319. INTEGER,
  320. ifSpeed
  321. Gauge,
  322. ifPhysAddress
  323. OCTET STRING,
  324. ifAdminStatus
  325. INTEGER,
  326. ifOperStatus
  327. INTEGER,
  328. ifLastChange
  329. TimeTicks,
  330. ifInOctets
  331. Counter,
  332. ifInUcastPkts
  333. Counter,
  334. ifInNUcastPkts
  335. Counter,
  336. ifInDiscards
  337. Counter,
  338. ifInErrors
  339. Counter,
  340. ifInUnknownProtos
  341. Counter,
  342. ifOutOctets
  343. Counter,
  344. ifOutUcastPkts
  345. Counter,
  346. ifOutNUcastPkts
  347. Counter,
  348. ifOutDiscards
  349. Counter,
  350. ifOutErrors
  351. Counter,
  352. ifOutQLen
  353. Gauge
  354. }
  355. Definition:
  356. An interface entry containing objects at the subnetwork
  357. layer and below for a particular interface.
  358. McCloghrie & Rose [Page 11]
  359. RFC 1066 MIB August 1988
  360. Access:
  361. read-write.
  362. Status:
  363. mandatory.
  364. We now consider the individual components of each interface
  365. entry:
  366. OBJECT:
  367. -------
  368. ifIndex { ifEntry 1 }
  369. Syntax:
  370. INTEGER
  371. Definition:
  372. A unique value for each interface. Its value ranges
  373. between 1 and the value of ifNumber. The value for each
  374. interface must remain constant at least from one re-
  375. initialization of the entity's network management system
  376. to the next re-initialization.
  377. Access:
  378. read-only.
  379. Status:
  380. mandatory.
  381. OBJECT:
  382. -------
  383. ifDescr { ifEntry 2 }
  384. Syntax:
  385. OCTET STRING
  386. Definition:
  387. A text string containing information about the interface.
  388. This string should include the name of the manufacturer,
  389. the product name and the version of the hardware
  390. interface. The string is intended for presentation to a
  391. human; it must not contain anything but printable ASCII
  392. characters.
  393. McCloghrie & Rose [Page 12]
  394. RFC 1066 MIB August 1988
  395. Access:
  396. read-only.
  397. Status:
  398. mandatory.
  399. OBJECT:
  400. -------
  401. ifType { ifEntry 3 }
  402. Syntax:
  403. INTEGER {
  404. other(1), -- none of the following
  405. regular1822(2),
  406. hdh1822(3),
  407. ddn-x25(4),
  408. rfc877-x25(5),
  409. ethernet-csmacd(6),
  410. iso88023-csmacd(7),
  411. iso88024-tokenBus(8),
  412. iso88025-tokenRing(9),
  413. iso88026-man(10),
  414. starLan(11),
  415. proteon-10MBit(12),
  416. proteon-80MBit(13),
  417. hyperchannel(14),
  418. fddi(15),
  419. lapb(16),
  420. sdlc(17),
  421. t1-carrier(18),
  422. cept(19), -- european equivalent of T-1
  423. basicIsdn(20),
  424. primaryIsdn(21),
  425. -- proprietary serial
  426. propPointToPointSerial(22)
  427. }
  428. Definition:
  429. The type of interface, distinguished according to the
  430. physical/link/network protocol(s) immediately "below" IP
  431. in the protocol stack.
  432. Access:
  433. read-only.
  434. Status:
  435. mandatory.
  436. McCloghrie & Rose [Page 13]
  437. RFC 1066 MIB August 1988
  438. OBJECT:
  439. -------
  440. ifMtu { ifEntry 4 }
  441. Syntax:
  442. INTEGER
  443. Definition:
  444. The size of the largest IP datagram which can be
  445. sent/received on the interface, specified in octets.
  446. Access:
  447. read-only.
  448. Status:
  449. mandatory.
  450. OBJECT:
  451. -------
  452. ifSpeed { ifEntry 5 }
  453. Syntax:
  454. Gauge
  455. Definition:
  456. An estimate of the interface's current bandwidth in bits
  457. per second. For interfaces which do not vary in
  458. bandwidth or for those where no accurate estimation can
  459. be made, this object should contain the nominal
  460. bandwidth.
  461. Access:
  462. read-only.
  463. Status:
  464. mandatory.
  465. OBJECT:
  466. -------
  467. ifPhysAddress { ifEntry 6 }
  468. Syntax:
  469. OCTET STRING
  470. Definition:
  471. The interface's address at the protocol layer immediately
  472. McCloghrie & Rose [Page 14]
  473. RFC 1066 MIB August 1988
  474. "below" IP in the protocol stack. For interfaces which
  475. do not have such an address (e.g., a serial line), this
  476. object should contain an octet string of zero length.
  477. Access:
  478. read-only.
  479. Status:
  480. mandatory.
  481. OBJECT:
  482. -------
  483. ifAdminStatus { ifEntry 7 }
  484. Syntax:
  485. INTEGER {
  486. up(1), -- ready to pass packets
  487. down(2),
  488. testing(3) -- in some test mode
  489. }
  490. Definition:
  491. The desired state of the interface. The testing(3) state
  492. indicates that no operational packets can be passed.
  493. Access:
  494. read-write.
  495. Status:
  496. mandatory.
  497. OBJECT:
  498. -------
  499. ifOperStatus { ifEntry 8 }
  500. Syntax:
  501. INTEGER {
  502. up(1), -- ready to pass packets
  503. down(2),
  504. testing(3) -- in some test mode
  505. }
  506. Definition:
  507. The current operational state of the interface. The
  508. testing(3) state indicates that no operational packets
  509. can be passed.
  510. McCloghrie & Rose [Page 15]
  511. RFC 1066 MIB August 1988
  512. Access:
  513. read-only.
  514. Status:
  515. mandatory.
  516. OBJECT:
  517. -------
  518. ifLastChange { ifEntry 9 }
  519. Syntax:
  520. TimeTicks
  521. Definition:
  522. The value of sysUpTime at the time the interface entered
  523. its current operational state. If the current state was
  524. entered prior to the last re-initialization of the local
  525. network management subsystem, then this object contains a
  526. zero value.
  527. Access:
  528. read-only.
  529. Status:
  530. mandatory.
  531. OBJECT:
  532. -------
  533. ifInOctets { ifEntry 10 }
  534. Syntax:
  535. Counter
  536. Definition:
  537. The total number of octets received on the interface,
  538. including framing characters.
  539. Access:
  540. read-only.
  541. Status:
  542. mandatory.
  543. McCloghrie & Rose [Page 16]
  544. RFC 1066 MIB August 1988
  545. OBJECT:
  546. -------
  547. ifInUcastPkts { ifEntry 11 }
  548. Syntax:
  549. Counter
  550. Definition:
  551. The number of (subnet) unicast packets delivered to a
  552. higher-layer protocol.
  553. Access:
  554. read-only.
  555. Status:
  556. mandatory.
  557. OBJECT:
  558. -------
  559. ifInNUcastPkts { ifEntry 12 }
  560. Syntax:
  561. Counter
  562. Definition:
  563. The number of non-unicast (i.e., subnet broadcast or
  564. subnet multicast) packets delivered to a higher-layer
  565. protocol.
  566. Access:
  567. read-only.
  568. Status:
  569. mandatory.
  570. OBJECT:
  571. -------
  572. ifInDiscards { ifEntry 13 }
  573. Syntax:
  574. Counter
  575. Definition:
  576. The number of inbound packets which were chosen to be
  577. discarded even though no errors had been detected to
  578. prevent their being deliverable to a higher-layer
  579. McCloghrie & Rose [Page 17]
  580. RFC 1066 MIB August 1988
  581. protocol. One possible reason for discarding such a
  582. packet could be to free up buffer space.
  583. Access:
  584. read-only.
  585. Status:
  586. mandatory.
  587. OBJECT:
  588. -------
  589. ifInErrors { ifEntry 14 }
  590. Syntax:
  591. Counter
  592. Definition:
  593. The number of inbound packets that contained errors
  594. preventing them from being deliverable to a higher-layer
  595. protocol.
  596. Access:
  597. read-only.
  598. Status:
  599. mandatory.
  600. OBJECT:
  601. -------
  602. ifInUnknownProtos { ifEntry 15 }
  603. Syntax:
  604. Counter
  605. Definition:
  606. The number of packets received via the interface which
  607. were discarded because of an unknown or unsupported
  608. protocol.
  609. Access:
  610. read-only.
  611. Status:
  612. mandatory.
  613. McCloghrie & Rose [Page 18]
  614. RFC 1066 MIB August 1988
  615. OBJECT:
  616. -------
  617. ifOutOctets { ifEntry 16 }
  618. Syntax:
  619. Counter
  620. Definition:
  621. The total number of octets transmitted out of the
  622. interface, including framing characters.
  623. Access:
  624. read-only.
  625. Status:
  626. mandatory.
  627. OBJECT:
  628. -------
  629. ifOutUcastPkts { ifEntry 17 }
  630. Syntax:
  631. Counter
  632. Definition:
  633. The total number of packets that higher-level protocols
  634. requested be transmitted to a subnet-unicast address,
  635. including those that were discarded or not sent.
  636. Access:
  637. read-only.
  638. Status:
  639. mandatory.
  640. OBJECT:
  641. -------
  642. ifOutNUcastPkts { ifEntry 18 }
  643. Syntax:
  644. Counter
  645. Definition:
  646. The total number of packets that higher-level protocols
  647. requested be transmitted to a non-unicast (i.e., a subnet
  648. broadcast or subnet multicast) address, including those
  649. McCloghrie & Rose [Page 19]
  650. RFC 1066 MIB August 1988
  651. that were discarded or not sent.
  652. Access:
  653. read-only.
  654. Status:
  655. mandatory.
  656. OBJECT:
  657. -------
  658. ifOutDiscards { ifEntry 19 }
  659. Syntax:
  660. Counter
  661. Definition:
  662. The number of outbound packets which were chosen to be
  663. discarded even though no errors had been detected to
  664. prevent their being transmitted. One possible reason for
  665. discarding such a packet could be to free up buffer
  666. space.
  667. Access:
  668. read-only.
  669. Status:
  670. mandatory.
  671. OBJECT:
  672. -------
  673. ifOutErrors { ifEntry 20 }
  674. Syntax:
  675. Counter
  676. Definition:
  677. The number of outbound packets that could not be
  678. transmitted because of errors.
  679. Access:
  680. read-only.
  681. Status:
  682. mandatory.
  683. McCloghrie & Rose [Page 20]
  684. RFC 1066 MIB August 1988
  685. OBJECT:
  686. -------
  687. ifOutQLen { ifEntry 21 }
  688. Syntax:
  689. Gauge
  690. Definition:
  691. The length of the output packet queue (in packets).
  692. Access:
  693. read-only.
  694. Status:
  695. mandatory.
  696. McCloghrie & Rose [Page 21]
  697. RFC 1066 MIB August 1988
  698. 5.3. The Address Translation Group
  699. Implementation of the Address Translation group is mandatory
  700. for all systems.
  701. The Address Translation group contains one table which is the
  702. union across all interfaces of the translation tables for
  703. converting a NetworkAddress (e.g., an IP address) into a
  704. subnetwork-specific address. For lack of a better term, this
  705. document refers to such a subnetwork-specific address as a
  706. "physical" address.
  707. Examples of such translation tables are: for broadcast media
  708. where ARP is in use, the translation table is equivalent to
  709. the ARP cache; or, on an X.25 network where non-algorithmic
  710. translation to X.121 addresses is required, the translation
  711. table contains the NetworkAddress to X.121 address
  712. equivalences.
  713. OBJECT:
  714. -------
  715. atTable { at 1 }
  716. Syntax:
  717. SEQUENCE OF AtEntry
  718. Definition:
  719. The Address Translation tables contain the NetworkAddress
  720. to "physical" address equivalences. Some interfaces do
  721. not use translation tables for determining address
  722. equivalences (e.g., DDN-X.25 has an algorithmic method);
  723. if all interfaces are of this type, then the Address
  724. Translation table is empty, i.e., has zero entries.
  725. Access:
  726. read-write.
  727. Status:
  728. mandatory.
  729. OBJECT:
  730. -------
  731. atEntry { atTable 1 }
  732. Syntax:
  733. AtEntry ::= SEQUENCE {
  734. atIfIndex
  735. McCloghrie & Rose [Page 22]
  736. RFC 1066 MIB August 1988
  737. INTEGER,
  738. atPhysAddress
  739. OCTET STRING,
  740. atNetAddress
  741. NetworkAddress
  742. }
  743. Definition:
  744. Each entry contains one NetworkAddress to "physical"
  745. address equivalence.
  746. Access:
  747. read-write.
  748. Status:
  749. mandatory.
  750. We now consider the individual components of each Address
  751. Translation table entry:
  752. OBJECT:
  753. -------
  754. atIfIndex { atEntry 1 }
  755. Syntax:
  756. INTEGER
  757. Definition:
  758. The interface on which this entry's equivalence is
  759. effective. The interface identified by a particular
  760. value of this index is the same interface as identified
  761. by the same value of ifIndex.
  762. Access:
  763. read-write.
  764. Status:
  765. mandatory.
  766. OBJECT:
  767. -------
  768. atPhysAddress { atEntry 2 }
  769. Syntax:
  770. OCTET STRING
  771. McCloghrie & Rose [Page 23]
  772. RFC 1066 MIB August 1988
  773. Definition:
  774. The media-dependent "physical" address.
  775. Access:
  776. read-write.
  777. Status:
  778. mandatory.
  779. OBJECT:
  780. -------
  781. atNetAddress { atEntry 3 }
  782. Syntax:
  783. NetworkAddress
  784. Definition:
  785. The NetworkAddress (e.g., the IP address) corresponding to
  786. the media-dependent "physical" address.
  787. Access:
  788. read-write.
  789. Status:
  790. mandatory.
  791. McCloghrie & Rose [Page 24]
  792. RFC 1066 MIB August 1988
  793. 5.4. The IP Group
  794. Implementation of the IP group is mandatory for all systems.
  795. OBJECT:
  796. -------
  797. ipForwarding { ip 1 }
  798. Syntax:
  799. INTEGER {
  800. gateway(1), -- entity forwards datagrams
  801. host(2) -- entity does NOT forward datagrams
  802. }
  803. Definition:
  804. The indication of whether this entity is acting as an IP
  805. gateway in respect to the forwarding of datagrams
  806. received by, but not addressed to, this entity. IP
  807. gateways forward datagrams; Hosts do not (except those
  808. Source-Routed via the host).
  809. Access:
  810. read-only.
  811. Status:
  812. mandatory.
  813. OBJECT:
  814. -------
  815. ipDefaultTTL { ip 2 }
  816. Syntax:
  817. INTEGER
  818. Definition:
  819. The default value inserted into the Time-To-Live field of
  820. the IP header of datagrams originated at this entity,
  821. whenever a TTL value is not supplied by the transport
  822. layer protocol.
  823. Access:
  824. read-write.
  825. Status:
  826. mandatory.
  827. McCloghrie & Rose [Page 25]
  828. RFC 1066 MIB August 1988
  829. OBJECT:
  830. -------
  831. ipInReceives { ip 3 }
  832. Syntax:
  833. Counter
  834. Definition:
  835. The total number of input datagrams received from
  836. interfaces, including those received in error.
  837. Access:
  838. read-only.
  839. Status:
  840. mandatory.
  841. OBJECT:
  842. -------
  843. ipInHdrErrors { ip 4 }
  844. Syntax:
  845. Counter
  846. Definition:
  847. The number of input datagrams discarded due to errors in
  848. their IP headers, including bad checksums, version number
  849. mismatch, other format errors, time-to-live exceeded,
  850. errors discovered in processing their IP options, etc.
  851. Access:
  852. read-only.
  853. Status:
  854. mandatory.
  855. OBJECT:
  856. -------
  857. ipInAddrErrors { ip 5 }
  858. Syntax:
  859. Counter
  860. Definition:
  861. The number of input datagrams discarded because the IP
  862. address in their IP header's destination field was not a
  863. McCloghrie & Rose [Page 26]
  864. RFC 1066 MIB August 1988
  865. valid address to be received at this entity. This count
  866. includes invalid addresses (e.g., 0.0.0.0) and addresses
  867. of unsupported Classes (e.g., Class E). For entities
  868. which are not IP Gateways and therefore do not forward
  869. datagrams, this counter includes datagrams discarded
  870. because the destination address was not a local address.
  871. Access:
  872. read-only.
  873. Status:
  874. mandatory.
  875. OBJECT:
  876. -------
  877. ipForwDatagrams { ip 6 }
  878. Syntax:
  879. Counter
  880. Definition:
  881. The number of input datagrams for which this entity was
  882. not their final IP destination, as a result of which an
  883. attempt was made to find a route to forward them to that
  884. final destination. In entities which do not act as IP
  885. Gateways, this counter will include only those packets
  886. which were Source-Routed via this entity, and the
  887. Source-Route option processing was successful.
  888. Access:
  889. read-only.
  890. Status:
  891. mandatory.
  892. OBJECT:
  893. -------
  894. ipInUnknownProtos { ip 7 }
  895. Syntax:
  896. Counter
  897. Definition:
  898. The number of locally-addressed datagrams received
  899. successfully but discarded because of an unknown or
  900. unsupported protocol.
  901. McCloghrie & Rose [Page 27]
  902. RFC 1066 MIB August 1988
  903. Access:
  904. read-only.
  905. Status:
  906. mandatory.
  907. OBJECT:
  908. -------
  909. ipInDiscards { ip 8 }
  910. Syntax:
  911. Counter
  912. Definition:
  913. The number of input IP datagrams for which no problems
  914. were encountered to prevent their continued processing,
  915. but which were discarded (e.g. for lack of buffer space).
  916. Note that this counter does not include any datagrams
  917. discarded while awaiting re-assembly.
  918. Access:
  919. read-only.
  920. Status:
  921. mandatory.
  922. OBJECT:
  923. -------
  924. ipInDelivers { ip 9 }
  925. Syntax:
  926. Counter
  927. Definition:
  928. The total number of input datagrams successfully
  929. delivered to IP user-protocols (including ICMP).
  930. Access:
  931. read-only.
  932. Status:
  933. mandatory.
  934. OBJECT:
  935. -------
  936. ipOutRequests { ip 10 }
  937. McCloghrie & Rose [Page 28]
  938. RFC 1066 MIB August 1988
  939. Syntax:
  940. Counter
  941. Definition:
  942. The total number of IP datagrams which local IP user-
  943. protocols (including ICMP) supplied to IP in requests for
  944. transmission. Note that this counter does not include
  945. any datagrams counted in ipForwDatagrams.
  946. Access:
  947. read-only.
  948. Status:
  949. mandatory.
  950. OBJECT:
  951. -------
  952. ipOutDiscards { ip 11 }
  953. Syntax:
  954. Counter
  955. Definition:
  956. The number of output IP datagrams for which no problem
  957. was encountered to prevent their transmission to their
  958. destination, but which were discarded (e.g., for lack of
  959. buffer space). Note that this counter would include
  960. datagrams counted in ipForwDatagrams if any such packets
  961. met this (discretionary) discard criterion.
  962. Access:
  963. read-only.
  964. Status:
  965. mandatory.
  966. OBJECT:
  967. -------
  968. ipOutNoRoutes { ip 12 }
  969. Syntax:
  970. Counter
  971. McCloghrie & Rose [Page 29]
  972. RFC 1066 MIB August 1988
  973. Definition:
  974. The number of IP datagrams discarded because no route
  975. could be found to transmit them to their destination.
  976. Note that this counter includes any packets counted in
  977. ipForwDatagrams which meet this "no-route" criterion.
  978. Access:
  979. read-only.
  980. Status:
  981. mandatory.
  982. OBJECT:
  983. -------
  984. ipReasmTimeout { ip 13 }
  985. Syntax:
  986. INTEGER
  987. Definition:
  988. The maximum number of seconds which received fragments
  989. are held while they are awaiting reassembly at this
  990. entity.
  991. Access:
  992. read-only.
  993. Status:
  994. mandatory.
  995. OBJECT:
  996. -------
  997. ipReasmReqds { ip 14 }
  998. Syntax:
  999. Counter
  1000. Definition:
  1001. The number of IP fragments received which needed to be
  1002. reassembled at this entity.
  1003. Access:
  1004. read-only.
  1005. Status:
  1006. mandatory.
  1007. McCloghrie & Rose [Page 30]
  1008. RFC 1066 MIB August 1988
  1009. OBJECT:
  1010. -------
  1011. ipReasmOKs { ip 15 }
  1012. Syntax:
  1013. Counter
  1014. Definition:
  1015. The number of IP datagrams successfully re-assembled.
  1016. Access:
  1017. read-only.
  1018. Status:
  1019. mandatory.
  1020. OBJECT:
  1021. -------
  1022. ipReasmFails { ip 16 }
  1023. Syntax:
  1024. Counter
  1025. Definition:
  1026. The number of failures detected by the IP re-assembly
  1027. algorithm (for whatever reason: timed out, errors, etc).
  1028. Note that this is not necessarily a count of discarded IP
  1029. fragments since some algorithms (notably RFC 815's) can
  1030. lose track of the number of fragments by combining them
  1031. as they are received.
  1032. Access:
  1033. read-only.
  1034. Status:
  1035. mandatory.
  1036. OBJECT:
  1037. -------
  1038. ipFragOKs { ip 17 }
  1039. Syntax:
  1040. Counter
  1041. McCloghrie & Rose [Page 31]
  1042. RFC 1066 MIB August 1988
  1043. Definition:
  1044. The number of IP datagrams that have been successfully
  1045. fragmented at this entity.
  1046. Access:
  1047. read-only.
  1048. Status:
  1049. mandatory.
  1050. OBJECT:
  1051. -------
  1052. ipFragFails { ip 18 }
  1053. Syntax:
  1054. Counter
  1055. Definition:
  1056. The number of IP datagrams that have been discarded
  1057. because they needed to be fragmented at this entity but
  1058. could not be, e.g., because their "Don't Fragment" flag
  1059. was set.
  1060. Access:
  1061. read-only.
  1062. Status:
  1063. mandatory.
  1064. OBJECT:
  1065. -------
  1066. ipFragCreates { ip 19 }
  1067. Syntax:
  1068. Counter
  1069. Definition:
  1070. The number of IP datagram fragments that have been
  1071. generated as a result of fragmentation at this entity.
  1072. Access:
  1073. read-only.
  1074. Status:
  1075. mandatory.
  1076. McCloghrie & Rose [Page 32]
  1077. RFC 1066 MIB August 1988
  1078. 5.4.1. The IP Address Table
  1079. The Ip Address table contains this entity's IP addressing
  1080. information.
  1081. OBJECT:
  1082. -------
  1083. ipAddrTable { ip 20 }
  1084. Syntax:
  1085. SEQUENCE OF IpAddrEntry
  1086. Definition:
  1087. The table of addressing information relevant to this
  1088. entity's IP addresses.
  1089. Access:
  1090. read-only.
  1091. Status:
  1092. mandatory.
  1093. OBJECT:
  1094. -------
  1095. ipAddrEntry { ipAddrTable 1 }
  1096. Syntax:
  1097. IpAddrEntry ::= SEQUENCE {
  1098. ipAdEntAddr
  1099. IpAddress,
  1100. ipAdEntIfIndex
  1101. INTEGER,
  1102. ipAdEntNetMask
  1103. IpAddress,
  1104. ipAdEntBcastAddr
  1105. INTEGER
  1106. }
  1107. Definition:
  1108. The addressing information for one of this entity's IP
  1109. addresses.
  1110. Access:
  1111. read-only.
  1112. McCloghrie & Rose [Page 33]
  1113. RFC 1066 MIB August 1988
  1114. Status:
  1115. mandatory.
  1116. OBJECT:
  1117. -------
  1118. ipAdEntAddr { ipAddrEntry 1 }
  1119. Syntax:
  1120. IpAddress
  1121. Definition:
  1122. The IP address to which this entry's addressing
  1123. information pertains.
  1124. Access:
  1125. read-only.
  1126. Status:
  1127. mandatory.
  1128. OBJECT:
  1129. -------
  1130. ipAdEntIfIndex { ipAddrEntry 2 }
  1131. Syntax:
  1132. INTEGER
  1133. Definition:
  1134. The index value which uniquely identifies the interface
  1135. to which this entry is applicable. The interface
  1136. identified by a particular value of this index is the
  1137. same interface as identified by the same value of
  1138. ifIndex.
  1139. Access:
  1140. read-only.
  1141. Status:
  1142. mandatory.
  1143. OBJECT:
  1144. -------
  1145. ipAdEntNetMask { ipAddrEntry 3 }
  1146. McCloghrie & Rose [Page 34]
  1147. RFC 1066 MIB August 1988
  1148. Syntax:
  1149. IpAddress
  1150. Definition:
  1151. The subnet mask associated with the IP address of this
  1152. entry. The value of the mask is an IP address with all
  1153. the network bits set to 1 and all the hosts bits set to
  1154. 0.
  1155. Access:
  1156. read-only.
  1157. Status:
  1158. mandatory.
  1159. OBJECT:
  1160. -------
  1161. ipAdEntBcastAddr { ipAddrEntry 4 }
  1162. Syntax:
  1163. INTEGER
  1164. Definition:
  1165. The value of the least-significant bit in the IP
  1166. broadcast address used for sending datagrams on the
  1167. (logical) interface associated with the IP address of
  1168. this entry. For example, when the Internet standard
  1169. all-ones broadcast address is used, the value will be 1.
  1170. Access:
  1171. read-only.
  1172. Status:
  1173. mandatory.
  1174. 5.4.2. The IP Routing Table
  1175. The IP Routing Table contains an entry for each route
  1176. presently known to this entity. Note that the action to be
  1177. taken in response to a request to read a non-existent entry,
  1178. is specific to the network management protocol being used.
  1179. OBJECT:
  1180. -------
  1181. ipRoutingTable { ip 21 }
  1182. McCloghrie & Rose [Page 35]
  1183. RFC 1066 MIB August 1988
  1184. Syntax:
  1185. SEQUENCE OF IpRouteEntry
  1186. Definition:
  1187. This entity's IP Routing table.
  1188. Access:
  1189. read-write.
  1190. Status:
  1191. mandatory.
  1192. OBJECT:
  1193. -------
  1194. ipRouteEntry { ipRoutingTable 1 }
  1195. Syntax:
  1196. IpRouteEntry ::= SEQUENCE {
  1197. ipRouteDest
  1198. IpAddress,
  1199. ipRouteIfIndex
  1200. INTEGER,
  1201. ipRouteMetric1
  1202. INTEGER,
  1203. ipRouteMetric2
  1204. INTEGER,
  1205. ipRouteMetric3
  1206. INTEGER,
  1207. ipRouteMetric4
  1208. INTEGER,
  1209. ipRouteNextHop
  1210. IpAddress,
  1211. ipRouteType
  1212. INTEGER,
  1213. ipRouteProto
  1214. INTEGER,
  1215. ipRouteAge
  1216. INTEGER
  1217. }
  1218. Definition:
  1219. A route to a particular destination.
  1220. Access:
  1221. read-write.
  1222. McCloghrie & Rose [Page 36]
  1223. RFC 1066 MIB August 1988
  1224. Status:
  1225. mandatory.
  1226. We now consider the individual components of each route in the
  1227. IP Routing Table:
  1228. OBJECT:
  1229. -------
  1230. ipRouteDest { ipRouteEntry 1 }
  1231. Syntax:
  1232. IpAddress
  1233. Definition:
  1234. The destination IP address of this route. An entry with
  1235. a value of 0.0.0.0 is considered a default route.
  1236. Multiple such default routes can appear in the table, but
  1237. access to such multiple entries is dependent on the
  1238. table-access mechanisms defined by the network management
  1239. protocol in use.
  1240. Access:
  1241. read-write.
  1242. Status:
  1243. mandatory.
  1244. OBJECT:
  1245. -------
  1246. ipRouteIfIndex { ipRouteEntry 2 }
  1247. Syntax:
  1248. INTEGER
  1249. Definition:
  1250. The index value which uniquely identifies the local
  1251. interface through which the next hop of this route should
  1252. be reached. The interface identified by a particular
  1253. value of this index is the same interface as identified
  1254. by the same value of ifIndex.
  1255. Access:
  1256. read-write.
  1257. Status:
  1258. mandatory.
  1259. McCloghrie & Rose [Page 37]
  1260. RFC 1066 MIB August 1988
  1261. OBJECT:
  1262. -------
  1263. ipRouteMetric1 { ipRouteEntry 3 }
  1264. Syntax:
  1265. INTEGER
  1266. Definition:
  1267. The primary routing metric for this route. The semantics
  1268. of this metric are determined by the routing-protocol
  1269. specified in the route's ipRouteProto value. If this
  1270. metric is not used, its value should be set to -1.
  1271. Access:
  1272. read-write.
  1273. Status:
  1274. mandatory.
  1275. OBJECT:
  1276. -------
  1277. ipRouteMetric2 { ipRouteEntry 4 }
  1278. Syntax:
  1279. INTEGER
  1280. Definition:
  1281. An alternate routing metric for this route. The
  1282. semantics of this metric are determined by the routing-
  1283. protocol specified in the route's ipRouteProto value. If
  1284. this metric is not used, its value should be set to -1.
  1285. Access:
  1286. read-write.
  1287. Status:
  1288. mandatory.
  1289. OBJECT:
  1290. -------
  1291. ipRouteMetric3 { ipRouteEntry 5 }
  1292. Syntax:
  1293. INTEGER
  1294. McCloghrie & Rose [Page 38]
  1295. RFC 1066 MIB August 1988
  1296. Definition:
  1297. An alternate routing metric for this route. The
  1298. semantics of this metric are determined by the routing-
  1299. protocol specified in the route's ipRouteProto value. If
  1300. this metric is not used, its value should be set to -1.
  1301. Access:
  1302. read-write.
  1303. Status:
  1304. mandatory.
  1305. OBJECT:
  1306. -------
  1307. ipRouteMetric4 { ipRouteEntry 6 }
  1308. Syntax:
  1309. INTEGER
  1310. Definition:
  1311. An alternate routing metric for this route. The
  1312. semantics of this metric are determined by the routing-
  1313. protocol specified in the route's ipRouteProto value. If
  1314. this metric is not used, its value should be set to -1.
  1315. Access:
  1316. read-write.
  1317. Status:
  1318. mandatory.
  1319. OBJECT:
  1320. -------
  1321. ipRouteNextHop { ipRouteEntry 7 }
  1322. Syntax:
  1323. IpAddress
  1324. Definition:
  1325. The IP address of the next hop of this route.
  1326. Access:
  1327. read-write.
  1328. Status:
  1329. mandatory.
  1330. McCloghrie & Rose [Page 39]
  1331. RFC 1066 MIB August 1988
  1332. OBJECT:
  1333. -------
  1334. ipRouteType { ipRouteEntry 8 }
  1335. Syntax:
  1336. INTEGER {
  1337. other(1), -- none of the following
  1338. invalid(2), -- an invalidated route
  1339. -- route to directly
  1340. direct(3), -- connected (sub-)network
  1341. -- route to a non-local
  1342. remote(4), -- host/network/sub-network
  1343. }
  1344. Definition:
  1345. The type of route.
  1346. Access:
  1347. read-write.
  1348. Status:
  1349. mandatory.
  1350. OBJECT:
  1351. -------
  1352. ipRouteProto { ipRouteEntry 9 }
  1353. Syntax:
  1354. INTEGER {
  1355. other(1), -- none of the following
  1356. -- non-protocol information,
  1357. -- e.g., manually configured
  1358. local(2), -- entries
  1359. -- set via a network management
  1360. netmgmt(3), -- protocol
  1361. -- obtained via ICMP,
  1362. icmp(4), -- e.g., Redirect
  1363. -- the remaining values are
  1364. -- all gateway routing protocols
  1365. egp(5),
  1366. McCloghrie & Rose [Page 40]
  1367. RFC 1066 MIB August 1988
  1368. ggp(6),
  1369. hello(7),
  1370. rip(8),
  1371. is-is(9),
  1372. es-is(10),
  1373. ciscoIgrp(11),
  1374. bbnSpfIgp(12),
  1375. oigp(13)
  1376. }
  1377. Definition:
  1378. The routing mechanism via which this route was learned.
  1379. Inclusion of values for gateway routing protocols is not
  1380. intended to imply that hosts should support those
  1381. protocols.
  1382. Access:
  1383. read-only.
  1384. Status:
  1385. mandatory.
  1386. OBJECT:
  1387. -------
  1388. ipRouteAge { ipRouteEntry 10 }
  1389. Syntax:
  1390. INTEGER
  1391. Definition:
  1392. The number of seconds since this route was last updated
  1393. or otherwise determined to be correct. Note that no
  1394. semantics of "too old" can be implied except through
  1395. knowledge of the routing protocol by which the route was
  1396. learned.
  1397. Access:
  1398. read-write.
  1399. Status:
  1400. mandatory.
  1401. McCloghrie & Rose [Page 41]
  1402. RFC 1066 MIB August 1988
  1403. 5.5. The ICMP Group
  1404. Implementation of the ICMP group is mandatory for all systems.
  1405. The ICMP group contains the ICMP input and output statistics.
  1406. Note that individual counters for ICMP message (sub-)codes have been
  1407. omitted from this (version of the) MIB for simplicity.
  1408. OBJECT:
  1409. -------
  1410. icmpInMsgs { icmp 1 }
  1411. Syntax:
  1412. Counter
  1413. Definition:
  1414. The total number of ICMP messages which the entity
  1415. received. Note that this counter includes all those
  1416. counted by icmpInErrors.
  1417. Access:
  1418. read-only.
  1419. Status:
  1420. mandatory.
  1421. OBJECT:
  1422. -------
  1423. icmpInErrors { icmp 2 }
  1424. Syntax:
  1425. Counter
  1426. Definition:
  1427. The number of ICMP messages which the entity received but
  1428. determined as having errors (bad ICMP checksums, bad
  1429. length, etc.).
  1430. Access:
  1431. read-only.
  1432. Status:
  1433. mandatory.
  1434. McCloghrie & Rose [Page 42]
  1435. RFC 1066 MIB August 1988
  1436. OBJECT:
  1437. -------
  1438. icmpInDestUnreachs { icmp 3 }
  1439. Syntax:
  1440. Counter
  1441. Definition:
  1442. The number of ICMP Destination Unreachable messages
  1443. received.
  1444. Access:
  1445. read-only.
  1446. Status:
  1447. mandatory.
  1448. OBJECT:
  1449. -------
  1450. icmpInTimeExcds { icmp 4 }
  1451. Syntax:
  1452. Counter
  1453. Definition:
  1454. The number of ICMP Time Exceeded messages received.
  1455. Access:
  1456. read-only.
  1457. Status:
  1458. mandatory.
  1459. OBJECT:
  1460. -------
  1461. icmpInParmProbs { icmp 5 }
  1462. Syntax:
  1463. Counter
  1464. Definition:
  1465. The number of ICMP Parameter Problem messages received.
  1466. Access:
  1467. read-only.
  1468. McCloghrie & Rose [Page 43]
  1469. RFC 1066 MIB August 1988
  1470. Status:
  1471. mandatory.
  1472. OBJECT:
  1473. -------
  1474. icmpInSrcQuenchs { icmp 6 }
  1475. Syntax:
  1476. Counter
  1477. Definition:
  1478. The number of ICMP Source Quench messages received.
  1479. Access:
  1480. read-only.
  1481. Status:
  1482. mandatory.
  1483. OBJECT:
  1484. -------
  1485. icmpInRedirects { icmp 7 }
  1486. Syntax:
  1487. Counter
  1488. Definition:
  1489. The number of ICMP Redirect messages received.
  1490. Access:
  1491. read-only.
  1492. Status:
  1493. mandatory.
  1494. OBJECT:
  1495. -------
  1496. icmpInEchos { icmp 8 }
  1497. Syntax:
  1498. Counter
  1499. Definition:
  1500. The number of ICMP Echo (request) messages received.
  1501. McCloghrie & Rose [Page 44]
  1502. RFC 1066 MIB August 1988
  1503. Access:
  1504. read-only.
  1505. Status:
  1506. mandatory.
  1507. OBJECT:
  1508. -------
  1509. icmpInEchoReps { icmp 9 }
  1510. Syntax:
  1511. Counter
  1512. Definition:
  1513. The number of ICMP Echo Reply messages received.
  1514. Access:
  1515. read-only.
  1516. Status:
  1517. mandatory.
  1518. OBJECT:
  1519. -------
  1520. icmpInTimestamps { icmp 10 }
  1521. Syntax:
  1522. Counter
  1523. Definition:
  1524. The number of ICMP Timestamp (request) messages received.
  1525. Access:
  1526. read-only.
  1527. Status:
  1528. mandatory.
  1529. OBJECT:
  1530. -------
  1531. icmpInTimestampReps { icmp 11 }
  1532. Syntax:
  1533. Counter
  1534. McCloghrie & Rose [Page 45]
  1535. RFC 1066 MIB August 1988
  1536. Definition:
  1537. The number of ICMP Timestamp Reply messages received.
  1538. Access:
  1539. read-only.
  1540. Status:
  1541. mandatory.
  1542. OBJECT:
  1543. -------
  1544. icmpInAddrMasks { icmp 12 }
  1545. Syntax:
  1546. Counter
  1547. Definition:
  1548. The number of ICMP Address Mask Request messages
  1549. received.
  1550. Access:
  1551. read-only.
  1552. Status:
  1553. mandatory.
  1554. OBJECT:
  1555. -------
  1556. icmpInAddrMaskReps { icmp 13 }
  1557. Syntax:
  1558. Counter
  1559. Definition:
  1560. The number of ICMP Address Mask Reply messages received.
  1561. Access:
  1562. read-only.
  1563. Status:
  1564. mandatory.
  1565. OBJECT:
  1566. -------
  1567. icmpOutMsgs { icmp 14 }
  1568. McCloghrie & Rose [Page 46]
  1569. RFC 1066 MIB August 1988
  1570. Syntax:
  1571. Counter
  1572. Definition:
  1573. The total number of ICMP messages which this entity
  1574. attempted to send. Note that this counter includes all
  1575. those counted by icmpOutErrors.
  1576. Access:
  1577. read-only.
  1578. Status:
  1579. mandatory.
  1580. OBJECT:
  1581. -------
  1582. icmpOutErrors { icmp 15 }
  1583. Syntax:
  1584. Counter
  1585. Definition:
  1586. The number of ICMP messages which this entity did not
  1587. send due to problems discovered within ICMP such as a
  1588. lack of buffers. This value should not include errors
  1589. discovered outside the ICMP layer such as the inability
  1590. of IP to route the resultant datagram. In some
  1591. implementations there may be no types of error which
  1592. contribute to this counter's value.
  1593. Access:
  1594. read-only.
  1595. Status:
  1596. mandatory.
  1597. OBJECT:
  1598. -------
  1599. icmpOutDestUnreachs { icmp 16 }
  1600. Syntax:
  1601. Counter
  1602. Definition:
  1603. The number of ICMP Destination Unreachable messages sent.
  1604. McCloghrie & Rose [Page 47]
  1605. RFC 1066 MIB August 1988
  1606. Access:
  1607. read-only.
  1608. Status:
  1609. mandatory.
  1610. OBJECT:
  1611. -------
  1612. icmpOutTimeExcds { icmp 17 }
  1613. Syntax:
  1614. Counter
  1615. Definition:
  1616. The number of ICMP Time Exceeded messages sent.
  1617. Access:
  1618. read-only.
  1619. Status:
  1620. mandatory.
  1621. OBJECT:
  1622. -------
  1623. icmpOutParmProbs { icmp 18 }
  1624. Syntax:
  1625. Counter
  1626. Definition:
  1627. The number of ICMP Parameter Problem messages sent.
  1628. Access:
  1629. read-only.
  1630. Status:
  1631. mandatory.
  1632. OBJECT:
  1633. -------
  1634. icmpOutSrcQuenchs { icmp 19 }
  1635. Syntax:
  1636. Counter
  1637. McCloghrie & Rose [Page 48]
  1638. RFC 1066 MIB August 1988
  1639. Definition:
  1640. The number of ICMP Source Quench messages sent.
  1641. Access:
  1642. read-only.
  1643. Status:
  1644. mandatory.
  1645. OBJECT:
  1646. -------
  1647. icmpOutRedirects { icmp 20 }
  1648. Syntax:
  1649. Counter
  1650. Definition:
  1651. The number of ICMP Redirect messages sent.
  1652. Access:
  1653. read-only.
  1654. Status:
  1655. mandatory.
  1656. OBJECT:
  1657. -------
  1658. icmpOutEchos { icmp 21 }
  1659. Syntax:
  1660. Counter
  1661. Definition:
  1662. The number of ICMP Echo (request) messages sent.
  1663. Access:
  1664. read-only.
  1665. Status:
  1666. mandatory.
  1667. OBJECT:
  1668. -------
  1669. icmpOutEchoReps { icmp 22 }
  1670. McCloghrie & Rose [Page 49]
  1671. RFC 1066 MIB August 1988
  1672. Syntax:
  1673. Counter
  1674. Definition:
  1675. The number of ICMP Echo Reply messages sent.
  1676. Access:
  1677. read-only.
  1678. Status:
  1679. mandatory.
  1680. OBJECT:
  1681. -------
  1682. icmpOutTimestamps { icmp 23 }
  1683. Syntax:
  1684. Counter
  1685. Definition:
  1686. The number of ICMP Timestamp (request) messages sent.
  1687. Access:
  1688. read-only.
  1689. Status:
  1690. mandatory.
  1691. OBJECT:
  1692. -------
  1693. icmpOutTimestampReps { icmp 24 }
  1694. Syntax:
  1695. Counter
  1696. Definition:
  1697. The number of ICMP Timestamp Reply messages sent.
  1698. Access:
  1699. read-only.
  1700. Status:
  1701. mandatory.
  1702. McCloghrie & Rose [Page 50]
  1703. RFC 1066 MIB August 1988
  1704. OBJECT:
  1705. -------
  1706. icmpOutAddrMasks { icmp 25 }
  1707. Syntax:
  1708. Counter
  1709. Definition:
  1710. The number of ICMP Address Mask Request messages sent.
  1711. Access:
  1712. read-only.
  1713. Status:
  1714. mandatory.
  1715. OBJECT:
  1716. -------
  1717. icmpOutAddrMaskReps { icmp 26 }
  1718. Syntax:
  1719. Counter
  1720. Definition:
  1721. The number of ICMP Address Mask Reply messages sent.
  1722. Access:
  1723. read-only.
  1724. Status:
  1725. mandatory.
  1726. McCloghrie & Rose [Page 51]
  1727. RFC 1066 MIB August 1988
  1728. 5.6. The TCP Group
  1729. Implementation of the TCP group is mandatory for all systems
  1730. that implement the TCP protocol.
  1731. Note that instances of object types that represent information
  1732. about a particular TCP connection are transient; they persist
  1733. only as long as the connection in question.
  1734. OBJECT:
  1735. -------
  1736. tcpRtoAlgorithm { tcp 1 }
  1737. Syntax:
  1738. INTEGER {
  1739. other(1), -- none of the following
  1740. constant(2), -- a constant rto
  1741. rsre(3), -- MIL-STD-1778, Appendix B
  1742. vanj(4) -- Van Jacobson's algorithm [11]
  1743. }
  1744. Definition:
  1745. The algorithm used to determine the timeout value used
  1746. for retransmitting unacknowledged octets.
  1747. Access:
  1748. read-only.
  1749. Status:
  1750. mandatory.
  1751. OBJECT:
  1752. -------
  1753. tcpRtoMin { tcp 2 }
  1754. Syntax:
  1755. INTEGER
  1756. Definition:
  1757. The minimum value permitted by a TCP implementation
  1758. for the retransmission timeout, measured in
  1759. milliseconds. More refined semantics for objects
  1760. of this type depend upon the algorithm used to
  1761. determine the retransmission timeout. In particular,
  1762. when the timeout algorithm is rsre(3), an object
  1763. of this type has the semantics of the LBOUND
  1764. quantity described in RFC 793.
  1765. McCloghrie & Rose [Page 52]
  1766. RFC 1066 MIB August 1988
  1767. Access:
  1768. read-only.
  1769. Status:
  1770. mandatory.
  1771. OBJECT:
  1772. -------
  1773. tcpRtoMax { tcp 3 }
  1774. Syntax:
  1775. INTEGER
  1776. Definition:
  1777. The maximum value permitted by a TCP implementation
  1778. for the retransmission timeout, measured
  1779. in milliseconds. More refined semantics for objects
  1780. of this type depend upon the algorithm used to
  1781. determine the retransmission timeout. In particular,
  1782. when the timeout algorithm is rsre(3), an object of
  1783. this type has the semantics of the UBOUND quantity
  1784. described in RFC 793.
  1785. Access:
  1786. read-only.
  1787. Status:
  1788. mandatory.
  1789. OBJECT:
  1790. -------
  1791. tcpMaxConn { tcp 4 }
  1792. Syntax:
  1793. INTEGER
  1794. Definition:
  1795. The limit on the total number of TCP connections the
  1796. entity can support. In entities where the maximum
  1797. number of connections is dynamic, this object should
  1798. contain the value "-1".
  1799. Access:
  1800. read-only.
  1801. McCloghrie & Rose [Page 53]
  1802. RFC 1066 MIB August 1988
  1803. Status:
  1804. mandatory.
  1805. OBJECT:
  1806. -------
  1807. tcpActiveOpens { tcp 5 }
  1808. Syntax:
  1809. Counter
  1810. Definition:
  1811. The number of times TCP connections have made a direct
  1812. transition to the SYN-SENT state from the CLOSED
  1813. state.
  1814. Access:
  1815. read-only.
  1816. Status:
  1817. mandatory.
  1818. OBJECT:
  1819. -------
  1820. tcpPassiveOpens { tcp 6 }
  1821. Syntax:
  1822. Counter
  1823. Definition:
  1824. The number of times TCP connections have made a direct
  1825. transition to the SYN-RCVD state from the LISTEN
  1826. state.
  1827. Access:
  1828. read-only.
  1829. Status:
  1830. mandatory.
  1831. OBJECT:
  1832. -------
  1833. tcpAttemptFails { tcp 7 }
  1834. Syntax:
  1835. Counter
  1836. McCloghrie & Rose [Page 54]
  1837. RFC 1066 MIB August 1988
  1838. Definition:
  1839. The number of times TCP connections have made a direct
  1840. transition to the CLOSED state from either the
  1841. SYN-SENT state or the SYN-RCVD state, plus the number
  1842. of times TCP connections have made a direct transition
  1843. to the LISTEN state from the SYN-RCVD state.
  1844. Access:
  1845. read-only.
  1846. Status:
  1847. mandatory.
  1848. OBJECT:
  1849. -------
  1850. tcpEstabResets { tcp 8 }
  1851. Syntax:
  1852. Counter
  1853. Definition:
  1854. The number of times TCP connections have made a direct
  1855. transition to the CLOSED state from either the
  1856. ESTABLISHED state or the CLOSE-WAIT state.
  1857. Access:
  1858. read-only.
  1859. Status:
  1860. mandatory.
  1861. OBJECT:
  1862. -------
  1863. tcpCurrEstab { tcp 9 }
  1864. Syntax:
  1865. Gauge
  1866. Definition:
  1867. The number of TCP connections for which the current
  1868. state is either ESTABLISHED or CLOSE-WAIT.
  1869. Access:
  1870. read-only.
  1871. McCloghrie & Rose [Page 55]
  1872. RFC 1066 MIB August 1988
  1873. Status:
  1874. mandatory.
  1875. OBJECT:
  1876. -------
  1877. tcpInSegs { tcp 10 }
  1878. Syntax:
  1879. Counter
  1880. Definition:
  1881. The total number of segments received, including those
  1882. received in error. This count includes segments
  1883. received on currently established connections.
  1884. Access:
  1885. read-only.
  1886. Status:
  1887. mandatory.
  1888. OBJECT:
  1889. -------
  1890. tcpOutSegs { tcp 11 }
  1891. Syntax:
  1892. Counter
  1893. Definition:
  1894. The total number of segments sent, including those on
  1895. current connections but excluding those containing
  1896. only retransmitted octets.
  1897. Access:
  1898. read-only.
  1899. Status:
  1900. mandatory.
  1901. OBJECT:
  1902. -------
  1903. tcpRetransSegs { tcp 12 }
  1904. Syntax:
  1905. Counter
  1906. McCloghrie & Rose [Page 56]
  1907. RFC 1066 MIB August 1988
  1908. Definition:
  1909. The total number of segments retransmitted - that is,
  1910. the number of TCP segments transmitted containing one
  1911. or more previously transmitted octets.
  1912. Access:
  1913. read-only.
  1914. Status:
  1915. mandatory.
  1916. OBJECT:
  1917. -------
  1918. tcpConnTable { tcp 13 }
  1919. Syntax:
  1920. SEQUENCE OF TcpConnEntry
  1921. Definition:
  1922. A table containing TCP connection-specific
  1923. information.
  1924. Access:
  1925. read-only.
  1926. Status:
  1927. mandatory.
  1928. OBJECT:
  1929. -------
  1930. tcpConnEntry { tcpConnTable 1 }
  1931. Syntax:
  1932. TcpConnEntry ::= SEQUENCE {
  1933. tcpConnState
  1934. INTEGER,
  1935. tcpConnLocalAddress
  1936. IpAddress,
  1937. tcpConnLocalPort
  1938. INTEGER (0..65535),
  1939. tcpConnRemAddress
  1940. IpAddress,
  1941. tcpConnRemPort
  1942. INTEGER (0..65535)
  1943. }
  1944. McCloghrie & Rose [Page 57]
  1945. RFC 1066 MIB August 1988
  1946. Definition:
  1947. Information about a particular current TCP connection.
  1948. An object of this type is transient, in that it ceases
  1949. to exist when (or soon after) the connection makes the
  1950. transition to the CLOSED state.
  1951. Access:
  1952. read-only.
  1953. Status:
  1954. mandatory.
  1955. OBJECT:
  1956. -------
  1957. tcpConnState { tcpConnEntry 1 }
  1958. Syntax:
  1959. INTEGER {
  1960. closed(1),
  1961. listen(2),
  1962. synSent(3),
  1963. synReceived(4),
  1964. established(5),
  1965. finWait1(6),
  1966. finWait2(7),
  1967. closeWait(8),
  1968. lastAck(9),
  1969. closing(10),
  1970. timeWait(11)
  1971. }
  1972. Definition:
  1973. The state of this TCP connection.
  1974. Access:
  1975. read-only.
  1976. Status:
  1977. mandatory.
  1978. OBJECT:
  1979. -------
  1980. tcpConnLocalAddress { tcpConnEntry 2 }
  1981. Syntax:
  1982. IpAddress
  1983. McCloghrie & Rose [Page 58]
  1984. RFC 1066 MIB August 1988
  1985. Definition:
  1986. The local IP address for this TCP connection.
  1987. Access:
  1988. read-only.
  1989. Status:
  1990. mandatory.
  1991. OBJECT:
  1992. -------
  1993. tcpConnLocalPort { tcpConnEntry 3 }
  1994. Syntax:
  1995. INTEGER (0..65535)
  1996. Definition:
  1997. The local port number for this TCP connection.
  1998. Access:
  1999. read-only.
  2000. Status:
  2001. mandatory.
  2002. OBJECT:
  2003. -------
  2004. tcpConnRemAddress { tcpConnEntry 4 }
  2005. Syntax:
  2006. IpAddress
  2007. Definition:
  2008. The remote IP address for this TCP connection.
  2009. Access:
  2010. read-only.
  2011. Status:
  2012. mandatory.
  2013. OBJECT:
  2014. -------
  2015. tcpConnRemPort { tcpConnEntry 5 }
  2016. McCloghrie & Rose [Page 59]
  2017. RFC 1066 MIB August 1988
  2018. Syntax:
  2019. INTEGER (0..65535)
  2020. Definition:
  2021. The remote port number for this TCP connection.
  2022. Access:
  2023. read-only.
  2024. Status:
  2025. mandatory.
  2026. McCloghrie & Rose [Page 60]
  2027. RFC 1066 MIB August 1988
  2028. 5.7. The UDP Group
  2029. Implementation of the UDP group is mandatory for all systems
  2030. which implement the UDP protocol.
  2031. OBJECT:
  2032. -------
  2033. udpInDatagrams { udp 1 }
  2034. Syntax:
  2035. Counter
  2036. Definition:
  2037. The total number of UDP datagrams delivered to UDP
  2038. users.
  2039. Access:
  2040. read-only.
  2041. Status:
  2042. mandatory.
  2043. OBJECT:
  2044. -------
  2045. udpNoPorts { udp 2 }
  2046. Syntax:
  2047. Counter
  2048. Definition:
  2049. The total number of received UDP datagrams for which
  2050. there was no application at the destination port.
  2051. Access:
  2052. read-only.
  2053. Status:
  2054. mandatory.
  2055. OBJECT:
  2056. -------
  2057. udpInErrors { udp 3 }
  2058. Syntax:
  2059. Counter
  2060. McCloghrie & Rose [Page 61]
  2061. RFC 1066 MIB August 1988
  2062. Definition:
  2063. The number of received UDP datagrams that could not be
  2064. delivered for reasons other than the lack of an
  2065. application at the destination port.
  2066. Access:
  2067. read-only.
  2068. Status:
  2069. mandatory.
  2070. OBJECT:
  2071. -------
  2072. udpOutDatagrams { udp 4 }
  2073. Syntax:
  2074. Counter
  2075. Definition:
  2076. The total number of UDP datagrams sent from this
  2077. entity.
  2078. Access:
  2079. read-only.
  2080. Status:
  2081. mandatory.
  2082. McCloghrie & Rose [Page 62]
  2083. RFC 1066 MIB August 1988
  2084. 5.8. The EGP Group
  2085. Implementation of the EGP group is mandatory for all systems
  2086. which implement the EGP protocol.
  2087. OBJECT:
  2088. -------
  2089. egpInMsgs { egp 1 }
  2090. Syntax:
  2091. Counter
  2092. Definition:
  2093. The number of EGP messages received without error.
  2094. Access:
  2095. read-only.
  2096. Status:
  2097. mandatory.
  2098. OBJECT:
  2099. -------
  2100. egpInErrors { egp 2 }
  2101. Syntax:
  2102. Counter
  2103. Definition:
  2104. The number of EGP messages received that proved to be
  2105. in error.
  2106. Access:
  2107. read-only.
  2108. Status:
  2109. mandatory.
  2110. OBJECT:
  2111. -------
  2112. egpOutMsgs { egp 3 }
  2113. Syntax:
  2114. Counter
  2115. McCloghrie & Rose [Page 63]
  2116. RFC 1066 MIB August 1988
  2117. Definition:
  2118. The total number of locally generated EGP messages.
  2119. Access:
  2120. read-only.
  2121. Status:
  2122. mandatory.
  2123. OBJECT:
  2124. -------
  2125. egpOutErrors { egp 4 }
  2126. Syntax:
  2127. Counter
  2128. Definition:
  2129. The number of locally generated EGP messages not sent
  2130. due to resource limitations within an EGP entity.
  2131. Access:
  2132. read-only.
  2133. Status:
  2134. mandatory.
  2135. 5.8.1. The EGP Neighbor Table
  2136. The Egp Neighbor table contains information about this entity's EGP
  2137. neighbors.
  2138. OBJECT:
  2139. -------
  2140. egpNeighTable { egp 5 }
  2141. Syntax:
  2142. SEQUENCE OF EgpNeighEntry
  2143. Definition:
  2144. The EGP neighbor table.
  2145. Access:
  2146. read-only.
  2147. Status:
  2148. mandatory.
  2149. McCloghrie & Rose [Page 64]
  2150. RFC 1066 MIB August 1988
  2151. OBJECT:
  2152. -------
  2153. egpNeighEntry { egpNeighTable 1 }
  2154. Syntax:
  2155. EgpNeighEntry ::= SEQUENCE {
  2156. egpNeighState
  2157. INTEGER,
  2158. egpNeighAddr
  2159. IpAddress
  2160. }
  2161. Definition:
  2162. Information about this entity's relationship with a
  2163. particular EGP neighbor.
  2164. Access:
  2165. read-only.
  2166. Status:
  2167. mandatory.
  2168. We now consider the individual components of each EGP
  2169. neighbor entry:
  2170. OBJECT:
  2171. -------
  2172. egpNeighState { egpNeighEntry 1 }
  2173. Syntax:
  2174. INTEGER {
  2175. idle(1),
  2176. acquisition(2),
  2177. down(3),
  2178. up(4),
  2179. cease(5)
  2180. }
  2181. Definition:
  2182. The EGP state of the local system with respect to this
  2183. entry's EGP neighbor. Each EGP state is represented
  2184. by a value that is one greater than the numerical
  2185. value associated with said state in RFC 904.
  2186. Access:
  2187. read-only.
  2188. McCloghrie & Rose [Page 65]
  2189. RFC 1066 MIB August 1988
  2190. Status:
  2191. mandatory.
  2192. OBJECT:
  2193. -------
  2194. egpNeighAddr { egpNeighEntry 2 }
  2195. Syntax:
  2196. IpAddress
  2197. Definition:
  2198. The IP address of this entry's EGP neighbor.
  2199. Access:
  2200. read-only.
  2201. Status:
  2202. mandatory.
  2203. McCloghrie & Rose [Page 66]
  2204. RFC 1066 MIB August 1988
  2205. 6. Definitions
  2206. RFC1066-MIB { iso org(3) dod(6) internet(1) mgmt(2) 1 }
  2207. DEFINITIONS ::= BEGIN
  2208. IMPORTS
  2209. mgmt, OBJECT-TYPE, NetworkAddress, IpAddress,
  2210. Counter, Gauge, TimeTicks
  2211. FROM RFC1065-SMI;
  2212. mib OBJECT IDENTIFIER ::= { mgmt 1 }
  2213. system OBJECT IDENTIFIER ::= { mib 1 }
  2214. interfaces OBJECT IDENTIFIER ::= { mib 2 }
  2215. at OBJECT IDENTIFIER ::= { mib 3 }
  2216. ip OBJECT IDENTIFIER ::= { mib 4 }
  2217. icmp OBJECT IDENTIFIER ::= { mib 5 }
  2218. tcp OBJECT IDENTIFIER ::= { mib 6 }
  2219. udp OBJECT IDENTIFIER ::= { mib 7 }
  2220. egp OBJECT IDENTIFIER ::= { mib 8 }
  2221. -- object types
  2222. -- the System group
  2223. sysDescr OBJECT-TYPE
  2224. SYNTAX OCTET STRING
  2225. ACCESS read-only
  2226. STATUS mandatory
  2227. ::= { system 1 }
  2228. sysObjectID OBJECT-TYPE
  2229. SYNTAX OBJECT IDENTIFIER
  2230. ACCESS read-only
  2231. STATUS mandatory
  2232. ::= { system 2 }
  2233. sysUpTime OBJECT-TYPE
  2234. SYNTAX TimeTicks
  2235. ACCESS read-only
  2236. STATUS mandatory
  2237. ::= { system 3 }
  2238. -- the Interfaces group
  2239. ifNumber OBJECT-TYPE
  2240. SYNTAX INTEGER
  2241. McCloghrie & Rose [Page 67]
  2242. RFC 1066 MIB August 1988
  2243. ACCESS read-only
  2244. STATUS mandatory
  2245. ::= { interfaces 1 }
  2246. -- the Interfaces table
  2247. ifTable OBJECT-TYPE
  2248. SYNTAX SEQUENCE OF IfEntry
  2249. ACCESS read-write
  2250. STATUS mandatory
  2251. ::= { interfaces 2 }
  2252. ifEntry OBJECT-TYPE
  2253. SYNTAX IfEntry
  2254. ACCESS read-write
  2255. STATUS mandatory
  2256. ::= { ifTable 1 }
  2257. IfEntry ::= SEQUENCE {
  2258. ifIndex
  2259. INTEGER,
  2260. ifDescr
  2261. OCTET STRING,
  2262. ifType
  2263. INTEGER,
  2264. ifMtu
  2265. INTEGER,
  2266. ifSpeed
  2267. Gauge,
  2268. ifPhysAddress
  2269. OCTET STRING,
  2270. ifAdminStatus
  2271. INTEGER,
  2272. ifOperStatus
  2273. INTEGER,
  2274. ifLastChange
  2275. TimeTicks,
  2276. ifInOctets
  2277. Counter,
  2278. ifInUcastPkts
  2279. Counter,
  2280. ifInNUcastPkts
  2281. Counter,
  2282. ifInDiscards
  2283. Counter,
  2284. ifInErrors
  2285. Counter,
  2286. ifInUnknownProtos
  2287. McCloghrie & Rose [Page 68]
  2288. RFC 1066 MIB August 1988
  2289. Counter,
  2290. ifOutOctets
  2291. Counter,
  2292. ifOutUcastPkts
  2293. Counter,
  2294. ifOutNUcastPkts
  2295. Counter,
  2296. ifOutDiscards
  2297. Counter,
  2298. ifOutErrors
  2299. Counter,
  2300. ifOutQLen
  2301. Gauge
  2302. }
  2303. ifIndex OBJECT-TYPE
  2304. SYNTAX INTEGER
  2305. ACCESS read-only
  2306. STATUS mandatory
  2307. ::= { ifEntry 1 }
  2308. ifDescr OBJECT-TYPE
  2309. SYNTAX OCTET STRING
  2310. ACCESS read-only
  2311. STATUS mandatory
  2312. ::= { ifEntry 2 }
  2313. ifType OBJECT-TYPE
  2314. SYNTAX INTEGER {
  2315. other(1), -- none of the following
  2316. regular1822(2),
  2317. hdh1822(3),
  2318. ddn-x25(4),
  2319. rfc877-x25(5),
  2320. ethernet-csmacd(6),
  2321. iso88023-csmacd(7),
  2322. iso88024-tokenBus(8),
  2323. iso88025-tokenRing(9),
  2324. iso88026-man(10),
  2325. starLan(11),
  2326. proteon-10MBit(12),
  2327. proteon-80MBit(13),
  2328. hyperchannel(14),
  2329. fddi(15),
  2330. lapb(16),
  2331. sdlc(17),
  2332. t1-carrier(18),
  2333. cept(19),
  2334. McCloghrie & Rose [Page 69]
  2335. RFC 1066 MIB August 1988
  2336. basicIsdn(20),
  2337. primaryIsdn(21),
  2338. -- proprietary serial
  2339. propPointToPointSerial(22)
  2340. }
  2341. ACCESS read-only
  2342. STATUS mandatory
  2343. ::= { ifEntry 3 }
  2344. ifMtu OBJECT-TYPE
  2345. SYNTAX INTEGER
  2346. ACCESS read-only
  2347. STATUS mandatory
  2348. ::= { ifEntry 4 }
  2349. ifSpeed OBJECT-TYPE
  2350. SYNTAX Gauge
  2351. ACCESS read-only
  2352. STATUS mandatory
  2353. ::= { ifEntry 5 }
  2354. ifPhysAddress OBJECT-TYPE
  2355. SYNTAX OCTET STRING
  2356. ACCESS read-only
  2357. STATUS mandatory
  2358. ::= { ifEntry 6 }
  2359. ifAdminStatus OBJECT-TYPE
  2360. SYNTAX INTEGER {
  2361. up(1), -- ready to pass packets
  2362. down(2),
  2363. testing(3) -- in some test mode
  2364. }
  2365. ACCESS read-write
  2366. STATUS mandatory
  2367. ::= { ifEntry 7 }
  2368. ifOperStatus OBJECT-TYPE
  2369. SYNTAX INTEGER {
  2370. up(1), -- ready to pass packets
  2371. down(2),
  2372. testing(3) -- in some test mode
  2373. }
  2374. ACCESS read-only
  2375. STATUS mandatory
  2376. ::= { ifEntry 8 }
  2377. ifLastChange OBJECT-TYPE
  2378. McCloghrie & Rose [Page 70]
  2379. RFC 1066 MIB August 1988
  2380. SYNTAX TimeTicks
  2381. ACCESS read-only
  2382. STATUS mandatory
  2383. ::= { ifEntry 9 }
  2384. ifInOctets OBJECT-TYPE
  2385. SYNTAX Counter
  2386. ACCESS read-only
  2387. STATUS mandatory
  2388. ::= { ifEntry 10 }
  2389. ifInUcastPkts OBJECT-TYPE
  2390. SYNTAX Counter
  2391. ACCESS read-only
  2392. STATUS mandatory
  2393. ::= { ifEntry 11 }
  2394. ifInNUcastPkts OBJECT-TYPE
  2395. SYNTAX Counter
  2396. ACCESS read-only
  2397. STATUS mandatory
  2398. ::= { ifEntry 12 }
  2399. ifInDiscards OBJECT-TYPE
  2400. SYNTAX Counter
  2401. ACCESS read-only
  2402. STATUS mandatory
  2403. ::= { ifEntry 13 }
  2404. ifInErrors OBJECT-TYPE
  2405. SYNTAX Counter
  2406. ACCESS read-only
  2407. STATUS mandatory
  2408. ::= { ifEntry 14 }
  2409. ifInUnknownProtos OBJECT-TYPE
  2410. SYNTAX Counter
  2411. ACCESS read-only
  2412. STATUS mandatory
  2413. ::= { ifEntry 15 }
  2414. ifOutOctets OBJECT-TYPE
  2415. SYNTAX Counter
  2416. ACCESS read-only
  2417. STATUS mandatory
  2418. ::= { ifEntry 16 }
  2419. ifOutUcastPkts OBJECT-TYPE
  2420. McCloghrie & Rose [Page 71]
  2421. RFC 1066 MIB August 1988
  2422. SYNTAX Counter
  2423. ACCESS read-only
  2424. STATUS mandatory
  2425. ::= { ifEntry 17 }
  2426. ifOutNUcastPkts OBJECT-TYPE
  2427. SYNTAX Counter
  2428. ACCESS read-only
  2429. STATUS mandatory
  2430. ::= { ifEntry 18 }
  2431. ifOutDiscards OBJECT-TYPE
  2432. SYNTAX Counter
  2433. ACCESS read-only
  2434. STATUS mandatory
  2435. ::= { ifEntry 19 }
  2436. ifOutErrors OBJECT-TYPE
  2437. SYNTAX Counter
  2438. ACCESS read-only
  2439. STATUS mandatory
  2440. ::= { ifEntry 20 }
  2441. ifOutQLen OBJECT-TYPE
  2442. SYNTAX Gauge
  2443. ACCESS read-only
  2444. STATUS mandatory
  2445. ::= { ifEntry 21 }
  2446. -- the Address Translation group
  2447. atTable OBJECT-TYPE
  2448. SYNTAX SEQUENCE OF AtEntry
  2449. ACCESS read-write
  2450. STATUS mandatory
  2451. ::= { at 1 }
  2452. atEntry OBJECT-TYPE
  2453. SYNTAX AtEntry
  2454. ACCESS read-write
  2455. STATUS mandatory
  2456. ::= { atTable 1 }
  2457. AtEntry ::= SEQUENCE {
  2458. atIfIndex
  2459. INTEGER,
  2460. atPhysAddress
  2461. OCTET STRING,
  2462. McCloghrie & Rose [Page 72]
  2463. RFC 1066 MIB August 1988
  2464. atNetAddress
  2465. NetworkAddress
  2466. }
  2467. atIfIndex OBJECT-TYPE
  2468. SYNTAX INTEGER
  2469. ACCESS read-write
  2470. STATUS mandatory
  2471. ::= { atEntry 1 }
  2472. atPhysAddress OBJECT-TYPE
  2473. SYNTAX OCTET STRING
  2474. ACCESS read-write
  2475. STATUS mandatory
  2476. ::= { atEntry 2 }
  2477. atNetAddress OBJECT-TYPE
  2478. SYNTAX NetworkAddress
  2479. ACCESS read-write
  2480. STATUS mandatory
  2481. ::= { atEntry 3 }
  2482. -- the IP group
  2483. ipForwarding OBJECT-TYPE
  2484. SYNTAX INTEGER {
  2485. gateway(1), -- entity forwards datagrams
  2486. host(2) -- entity does NOT forward datagrams
  2487. }
  2488. ACCESS read-only
  2489. STATUS mandatory
  2490. ::= { ip 1 }
  2491. ipDefaultTTL OBJECT-TYPE
  2492. SYNTAX INTEGER
  2493. ACCESS read-write
  2494. STATUS mandatory
  2495. ::= { ip 2 }
  2496. ipInReceives OBJECT-TYPE
  2497. SYNTAX Counter
  2498. ACCESS read-only
  2499. STATUS mandatory
  2500. ::= { ip 3 }
  2501. ipInHdrErrors OBJECT-TYPE
  2502. SYNTAX Counter
  2503. ACCESS read-only
  2504. McCloghrie & Rose [Page 73]
  2505. RFC 1066 MIB August 1988
  2506. STATUS mandatory
  2507. ::= { ip 4 }
  2508. ipInAddrErrors OBJECT-TYPE
  2509. SYNTAX Counter
  2510. ACCESS read-only
  2511. STATUS mandatory
  2512. ::= { ip 5 }
  2513. ipForwDatagrams OBJECT-TYPE
  2514. SYNTAX Counter
  2515. ACCESS read-only
  2516. STATUS mandatory
  2517. ::= { ip 6 }
  2518. ipInUnknownProtos OBJECT-TYPE
  2519. SYNTAX Counter
  2520. ACCESS read-only
  2521. STATUS mandatory
  2522. ::= { ip 7 }
  2523. ipInDiscards OBJECT-TYPE
  2524. SYNTAX Counter
  2525. ACCESS read-only
  2526. STATUS mandatory
  2527. ::= { ip 8 }
  2528. ipInDelivers OBJECT-TYPE
  2529. SYNTAX Counter
  2530. ACCESS read-only
  2531. STATUS mandatory
  2532. ::= { ip 9 }
  2533. ipOutRequests OBJECT-TYPE
  2534. SYNTAX Counter
  2535. ACCESS read-only
  2536. STATUS mandatory
  2537. ::= { ip 10 }
  2538. ipOutDiscards OBJECT-TYPE
  2539. SYNTAX Counter
  2540. ACCESS read-only
  2541. STATUS mandatory
  2542. ::= { ip 11 }
  2543. ipOutNoRoutes OBJECT-TYPE
  2544. SYNTAX Counter
  2545. ACCESS read-only
  2546. McCloghrie & Rose [Page 74]
  2547. RFC 1066 MIB August 1988
  2548. STATUS mandatory
  2549. ::= { ip 12 }
  2550. ipReasmTimeout OBJECT-TYPE
  2551. SYNTAX INTEGER
  2552. ACCESS read-only
  2553. STATUS mandatory
  2554. ::= { ip 13 }
  2555. ipReasmReqds OBJECT-TYPE
  2556. SYNTAX Counter
  2557. ACCESS read-only
  2558. STATUS mandatory
  2559. ::= { ip 14 }
  2560. ipReasmOKs OBJECT-TYPE
  2561. SYNTAX Counter
  2562. ACCESS read-only
  2563. STATUS mandatory
  2564. ::= { ip 15 }
  2565. ipReasmFails OBJECT-TYPE
  2566. SYNTAX Counter
  2567. ACCESS read-only
  2568. STATUS mandatory
  2569. ::= { ip 16 }
  2570. ipFragOKs OBJECT-TYPE
  2571. SYNTAX Counter
  2572. ACCESS read-only
  2573. STATUS mandatory
  2574. ::= { ip 17 }
  2575. ipFragFails OBJECT-TYPE
  2576. SYNTAX Counter
  2577. ACCESS read-only
  2578. STATUS mandatory
  2579. ::= { ip 18 }
  2580. ipFragCreates OBJECT-TYPE
  2581. SYNTAX Counter
  2582. ACCESS read-only
  2583. STATUS mandatory
  2584. ::= { ip 19 }
  2585. -- the IP Interface table
  2586. ipAddrTable OBJECT-TYPE
  2587. McCloghrie & Rose [Page 75]
  2588. RFC 1066 MIB August 1988
  2589. SYNTAX SEQUENCE OF IpAddrEntry
  2590. ACCESS read-only
  2591. STATUS mandatory
  2592. ::= { ip 20 }
  2593. ipAddrEntry OBJECT-TYPE
  2594. SYNTAX IpAddrEntry
  2595. ACCESS read-only
  2596. STATUS mandatory
  2597. ::= { ipAddrTable 1 }
  2598. IpAddrEntry ::= SEQUENCE {
  2599. ipAdEntAddr
  2600. IpAddress,
  2601. ipAdEntIfIndex
  2602. INTEGER,
  2603. ipAdEntNetMask
  2604. IpAddress,
  2605. ipAdEntBcastAddr
  2606. INTEGER
  2607. }
  2608. ipAdEntAddr OBJECT-TYPE
  2609. SYNTAX IpAddress
  2610. ACCESS read-only
  2611. STATUS mandatory
  2612. ::= { ipAddrEntry 1 }
  2613. ipAdEntIfIndex OBJECT-TYPE
  2614. SYNTAX INTEGER
  2615. ACCESS read-only
  2616. STATUS mandatory
  2617. ::= { ipAddrEntry 2 }
  2618. ipAdEntNetMask OBJECT-TYPE
  2619. SYNTAX IpAddress
  2620. ACCESS read-only
  2621. STATUS mandatory
  2622. ::= { ipAddrEntry 3 }
  2623. ipAdEntBcastAddr OBJECT-TYPE
  2624. SYNTAX INTEGER
  2625. ACCESS read-only
  2626. STATUS mandatory
  2627. ::= { ipAddrEntry 4 }
  2628. -- the IP Routing table
  2629. McCloghrie & Rose [Page 76]
  2630. RFC 1066 MIB August 1988
  2631. ipRoutingTable OBJECT-TYPE
  2632. SYNTAX SEQUENCE OF IpRouteEntry
  2633. ACCESS read-write
  2634. STATUS mandatory
  2635. ::= { ip 21 }
  2636. ipRouteEntry OBJECT-TYPE
  2637. SYNTAX IpRouteEntry
  2638. ACCESS read-write
  2639. STATUS mandatory
  2640. ::= { ipRoutingTable 1 }
  2641. IpRouteEntry ::= SEQUENCE {
  2642. ipRouteDest
  2643. IpAddress,
  2644. ipRouteIfIndex
  2645. INTEGER,
  2646. ipRouteMetric1
  2647. INTEGER,
  2648. ipRouteMetric2
  2649. INTEGER,
  2650. ipRouteMetric3
  2651. INTEGER,
  2652. ipRouteMetric4
  2653. INTEGER,
  2654. ipRouteNextHop
  2655. IpAddress,
  2656. ipRouteType
  2657. INTEGER,
  2658. ipRouteProto
  2659. INTEGER,
  2660. ipRouteAge
  2661. INTEGER
  2662. }
  2663. ipRouteDest OBJECT-TYPE
  2664. SYNTAX IpAddress
  2665. ACCESS read-write
  2666. STATUS mandatory
  2667. ::= { ipRouteEntry 1 }
  2668. ipRouteIfIndex OBJECT-TYPE
  2669. SYNTAX INTEGER
  2670. ACCESS read-write
  2671. STATUS mandatory
  2672. ::= { ipRouteEntry 2 }
  2673. ipRouteMetric1 OBJECT-TYPE
  2674. McCloghrie & Rose [Page 77]
  2675. RFC 1066 MIB August 1988
  2676. SYNTAX INTEGER
  2677. ACCESS read-write
  2678. STATUS mandatory
  2679. ::= { ipRouteEntry 3 }
  2680. ipRouteMetric2 OBJECT-TYPE
  2681. SYNTAX INTEGER
  2682. ACCESS read-write
  2683. STATUS mandatory
  2684. ::= { ipRouteEntry 4 }
  2685. ipRouteMetric3 OBJECT-TYPE
  2686. SYNTAX INTEGER
  2687. ACCESS read-write
  2688. STATUS mandatory
  2689. ::= { ipRouteEntry 5 }
  2690. ipRouteMetric4 OBJECT-TYPE
  2691. SYNTAX INTEGER
  2692. ACCESS read-write
  2693. STATUS mandatory
  2694. ::= { ipRouteEntry 6 }
  2695. ipRouteNextHop OBJECT-TYPE
  2696. SYNTAX IpAddress
  2697. ACCESS read-write
  2698. STATUS mandatory
  2699. ::= { ipRouteEntry 7 }
  2700. ipRouteType OBJECT-TYPE
  2701. SYNTAX INTEGER {
  2702. other(1), -- none of the following
  2703. invalid(2), -- an invalidated route
  2704. -- route to directly
  2705. direct(3), -- connected (sub-)network
  2706. -- route to a non-local
  2707. remote(4), -- host/network/sub-network
  2708. }
  2709. ACCESS read-write
  2710. STATUS mandatory
  2711. ::= { ipRouteEntry 8 }
  2712. ipRouteProto OBJECT-TYPE
  2713. SYNTAX INTEGER {
  2714. other(1), -- none of the following
  2715. McCloghrie & Rose [Page 78]
  2716. RFC 1066 MIB August 1988
  2717. -- non-protocol information
  2718. -- e.g., manually
  2719. local(2), -- configured entries
  2720. -- set via a network
  2721. netmgmt(3), -- management protocol
  2722. -- obtained via ICMP,
  2723. icmp(4), -- e.g., Redirect
  2724. -- the following are
  2725. -- gateway routing protocols
  2726. egp(5),
  2727. ggp(6),
  2728. hello(7),
  2729. rip(8),
  2730. is-is(9),
  2731. es-is(10),
  2732. ciscoIgrp(11),
  2733. bbnSpfIgp(12),
  2734. oigp(13)
  2735. }
  2736. ACCESS read-only
  2737. STATUS mandatory
  2738. ::= { ipRouteEntry 9 }
  2739. ipRouteAge OBJECT-TYPE
  2740. SYNTAX INTEGER
  2741. ACCESS read-write
  2742. STATUS mandatory
  2743. ::= { ipRouteEntry 10 }
  2744. -- the ICMP group
  2745. icmpInMsgs OBJECT-TYPE
  2746. SYNTAX Counter
  2747. ACCESS read-only
  2748. STATUS mandatory
  2749. ::= { icmp 1 }
  2750. icmpInErrors OBJECT-TYPE
  2751. SYNTAX Counter
  2752. ACCESS read-only
  2753. STATUS mandatory
  2754. ::= { icmp 2 }
  2755. icmpInDestUnreachs OBJECT-TYPE
  2756. SYNTAX Counter
  2757. McCloghrie & Rose [Page 79]
  2758. RFC 1066 MIB August 1988
  2759. ACCESS read-only
  2760. STATUS mandatory
  2761. ::= { icmp 3 }
  2762. icmpInTimeExcds OBJECT-TYPE
  2763. SYNTAX Counter
  2764. ACCESS read-only
  2765. STATUS mandatory
  2766. ::= { icmp 4 }
  2767. icmpInParmProbs OBJECT-TYPE
  2768. SYNTAX Counter
  2769. ACCESS read-only
  2770. STATUS mandatory
  2771. ::= { icmp 5 }
  2772. icmpInSrcQuenchs OBJECT-TYPE
  2773. SYNTAX Counter
  2774. ACCESS read-only
  2775. STATUS mandatory
  2776. ::= { icmp 6 }
  2777. icmpInRedirects OBJECT-TYPE
  2778. SYNTAX Counter
  2779. ACCESS read-only
  2780. STATUS mandatory
  2781. ::= { icmp 7 }
  2782. icmpInEchos OBJECT-TYPE
  2783. SYNTAX Counter
  2784. ACCESS read-only
  2785. STATUS mandatory
  2786. ::= { icmp 8 }
  2787. icmpInEchoReps OBJECT-TYPE
  2788. SYNTAX Counter
  2789. ACCESS read-only
  2790. STATUS mandatory
  2791. ::= { icmp 9 }
  2792. icmpInTimestamps OBJECT-TYPE
  2793. SYNTAX Counter
  2794. ACCESS read-only
  2795. STATUS mandatory
  2796. ::= { icmp 10 }
  2797. icmpInTimestampReps OBJECT-TYPE
  2798. SYNTAX Counter
  2799. McCloghrie & Rose [Page 80]
  2800. RFC 1066 MIB August 1988
  2801. ACCESS read-only
  2802. STATUS mandatory
  2803. ::= { icmp 11 }
  2804. icmpInAddrMasks OBJECT-TYPE
  2805. SYNTAX Counter
  2806. ACCESS read-only
  2807. STATUS mandatory
  2808. ::= { icmp 12 }
  2809. icmpInAddrMaskReps OBJECT-TYPE
  2810. SYNTAX Counter
  2811. ACCESS read-only
  2812. STATUS mandatory
  2813. ::= { icmp 13 }
  2814. icmpOutMsgs OBJECT-TYPE
  2815. SYNTAX Counter
  2816. ACCESS read-only
  2817. STATUS mandatory
  2818. ::= { icmp 14 }
  2819. icmpOutErrors OBJECT-TYPE
  2820. SYNTAX Counter
  2821. ACCESS read-only
  2822. STATUS mandatory
  2823. ::= { icmp 15 }
  2824. icmpOutDestUnreachs OBJECT-TYPE
  2825. SYNTAX Counter
  2826. ACCESS read-only
  2827. STATUS mandatory
  2828. ::= { icmp 16 }
  2829. icmpOutTimeExcds OBJECT-TYPE
  2830. SYNTAX Counter
  2831. ACCESS read-only
  2832. STATUS mandatory
  2833. ::= { icmp 17 }
  2834. icmpOutParmProbs OBJECT-TYPE
  2835. SYNTAX Counter
  2836. ACCESS read-only
  2837. STATUS mandatory
  2838. ::= { icmp 18 }
  2839. icmpOutSrcQuenchs OBJECT-TYPE
  2840. SYNTAX Counter
  2841. McCloghrie & Rose [Page 81]
  2842. RFC 1066 MIB August 1988
  2843. ACCESS read-only
  2844. STATUS mandatory
  2845. ::= { icmp 19 }
  2846. icmpOutRedirects OBJECT-TYPE
  2847. SYNTAX Counter
  2848. ACCESS read-only
  2849. STATUS mandatory
  2850. ::= { icmp 20 }
  2851. icmpOutEchos OBJECT-TYPE
  2852. SYNTAX Counter
  2853. ACCESS read-only
  2854. STATUS mandatory
  2855. ::= { icmp 21 }
  2856. icmpOutEchoReps OBJECT-TYPE
  2857. SYNTAX Counter
  2858. ACCESS read-only
  2859. STATUS mandatory
  2860. ::= { icmp 22 }
  2861. icmpOutTimestamps OBJECT-TYPE
  2862. SYNTAX Counter
  2863. ACCESS read-only
  2864. STATUS mandatory
  2865. ::= { icmp 23 }
  2866. icmpOutTimestampReps OBJECT-TYPE
  2867. SYNTAX Counter
  2868. ACCESS read-only
  2869. STATUS mandatory
  2870. ::= { icmp 24 }
  2871. icmpOutAddrMasks OBJECT-TYPE
  2872. SYNTAX Counter
  2873. ACCESS read-only
  2874. STATUS mandatory
  2875. ::= { icmp 25 }
  2876. icmpOutAddrMaskReps OBJECT-TYPE
  2877. SYNTAX Counter
  2878. ACCESS read-only
  2879. STATUS mandatory
  2880. ::= { icmp 26 }
  2881. -- the TCP group
  2882. McCloghrie & Rose [Page 82]
  2883. RFC 1066 MIB August 1988
  2884. tcpRtoAlgorithm OBJECT-TYPE
  2885. SYNTAX INTEGER {
  2886. other(1), -- none of the following
  2887. constant(2), -- a constant rto
  2888. rsre(3), -- MIL-STD-1778, Appendix B
  2889. vanj(4) -- Van Jacobson's algorithm [11]
  2890. }
  2891. ACCESS read-only
  2892. STATUS mandatory
  2893. ::= { tcp 1 }
  2894. tcpRtoMin OBJECT-TYPE
  2895. SYNTAX INTEGER
  2896. ACCESS read-only
  2897. STATUS mandatory
  2898. ::= { tcp 2 }
  2899. tcpRtoMax OBJECT-TYPE
  2900. SYNTAX INTEGER
  2901. ACCESS read-only
  2902. STATUS mandatory
  2903. ::= { tcp 3 }
  2904. tcpMaxConn OBJECT-TYPE
  2905. SYNTAX INTEGER
  2906. ACCESS read-only
  2907. STATUS mandatory
  2908. ::= { tcp 4 }
  2909. tcpActiveOpens OBJECT-TYPE
  2910. SYNTAX Counter
  2911. ACCESS read-only
  2912. STATUS mandatory
  2913. ::= { tcp 5 }
  2914. tcpPassiveOpens OBJECT-TYPE
  2915. SYNTAX Counter
  2916. ACCESS read-only
  2917. STATUS mandatory
  2918. ::= { tcp 6 }
  2919. tcpAttemptFails OBJECT-TYPE
  2920. SYNTAX Counter
  2921. ACCESS read-only
  2922. STATUS mandatory
  2923. ::= { tcp 7 }
  2924. tcpEstabResets OBJECT-TYPE
  2925. McCloghrie & Rose [Page 83]
  2926. RFC 1066 MIB August 1988
  2927. SYNTAX Counter
  2928. ACCESS read-only
  2929. STATUS mandatory
  2930. ::= { tcp 8 }
  2931. tcpCurrEstab OBJECT-TYPE
  2932. SYNTAX Gauge
  2933. ACCESS read-only
  2934. STATUS mandatory
  2935. ::= { tcp 9 }
  2936. tcpInSegs OBJECT-TYPE
  2937. SYNTAX Counter
  2938. ACCESS read-only
  2939. STATUS mandatory
  2940. ::= { tcp 10 }
  2941. tcpOutSegs OBJECT-TYPE
  2942. SYNTAX Counter
  2943. ACCESS read-only
  2944. STATUS mandatory
  2945. ::= { tcp 11 }
  2946. tcpRetransSegs OBJECT-TYPE
  2947. SYNTAX Counter
  2948. ACCESS read-only
  2949. STATUS mandatory
  2950. ::= { tcp 12 }
  2951. -- the TCP connections table
  2952. tcpConnTable OBJECT-TYPE
  2953. SYNTAX SEQUENCE OF TcpConnEntry
  2954. ACCESS read-only
  2955. STATUS mandatory
  2956. ::= { tcp 13 }
  2957. tcpConnEntry OBJECT-TYPE
  2958. SYNTAX TcpConnEntry
  2959. ACCESS read-only
  2960. STATUS mandatory
  2961. ::= { tcpConnTable 1 }
  2962. TcpConnEntry ::= SEQUENCE {
  2963. tcpConnState
  2964. INTEGER,
  2965. tcpConnLocalAddress
  2966. IpAddress,
  2967. McCloghrie & Rose [Page 84]
  2968. RFC 1066 MIB August 1988
  2969. tcpConnLocalPort
  2970. INTEGER (0..65535),
  2971. tcpConnRemAddress
  2972. IpAddress,
  2973. tcpConnRemPort
  2974. INTEGER (0..65535)
  2975. }
  2976. tcpConnState OBJECT-TYPE
  2977. SYNTAX INTEGER {
  2978. closed(1),
  2979. listen(2),
  2980. synSent(3),
  2981. synReceived(4),
  2982. established(5),
  2983. finWait1(6),
  2984. finWait2(7),
  2985. closeWait(8),
  2986. lastAck(9),
  2987. closing(10),
  2988. timeWait(11)
  2989. }
  2990. ACCESS read-only
  2991. STATUS mandatory
  2992. ::= { tcpConnEntry 1 }
  2993. tcpConnLocalAddress OBJECT-TYPE
  2994. SYNTAX IpAddress
  2995. ACCESS read-only
  2996. STATUS mandatory
  2997. ::= { tcpConnEntry 2 }
  2998. tcpConnLocalPort OBJECT-TYPE
  2999. SYNTAX INTEGER (0..65535)
  3000. ACCESS read-only
  3001. STATUS mandatory
  3002. ::= { tcpConnEntry 3 }
  3003. tcpConnRemAddress OBJECT-TYPE
  3004. SYNTAX IpAddress
  3005. ACCESS read-only
  3006. STATUS mandatory
  3007. ::= { tcpConnEntry 4 }
  3008. tcpConnRemPort OBJECT-TYPE
  3009. SYNTAX INTEGER (0..65535)
  3010. ACCESS read-only
  3011. STATUS mandatory
  3012. McCloghrie & Rose [Page 85]
  3013. RFC 1066 MIB August 1988
  3014. ::= { tcpConnEntry 5 }
  3015. -- the UDP group
  3016. udpInDatagrams OBJECT-TYPE
  3017. SYNTAX Counter
  3018. ACCESS read-only
  3019. STATUS mandatory
  3020. ::= { udp 1 }
  3021. udpNoPorts OBJECT-TYPE
  3022. SYNTAX Counter
  3023. ACCESS read-only
  3024. STATUS mandatory
  3025. ::= { udp 2 }
  3026. udpInErrors OBJECT-TYPE
  3027. SYNTAX Counter
  3028. ACCESS read-only
  3029. STATUS mandatory
  3030. ::= { udp 3 }
  3031. udpOutDatagrams OBJECT-TYPE
  3032. SYNTAX Counter
  3033. ACCESS read-only
  3034. STATUS mandatory
  3035. ::= { udp 4 }
  3036. -- the EGP group
  3037. egpInMsgs OBJECT-TYPE
  3038. SYNTAX Counter
  3039. ACCESS read-only
  3040. STATUS mandatory
  3041. ::= { egp 1 }
  3042. egpInErrors OBJECT-TYPE
  3043. SYNTAX Counter
  3044. ACCESS read-only
  3045. STATUS mandatory
  3046. ::= { egp 2 }
  3047. egpOutMsgs OBJECT-TYPE
  3048. SYNTAX Counter
  3049. ACCESS read-only
  3050. STATUS mandatory
  3051. ::= { egp 3 }
  3052. McCloghrie & Rose [Page 86]
  3053. RFC 1066 MIB August 1988
  3054. egpOutErrors OBJECT-TYPE
  3055. SYNTAX Counter
  3056. ACCESS read-only
  3057. STATUS mandatory
  3058. ::= { egp 4 }
  3059. -- the EGP Neighbor table
  3060. egpNeighTable OBJECT-TYPE
  3061. SYNTAX SEQUENCE OF EgpNeighEntry
  3062. ACCESS read-only
  3063. STATUS mandatory
  3064. ::= { egp 5 }
  3065. egpNeighEntry OBJECT-TYPE
  3066. SYNTAX EgpNeighEntry
  3067. ACCESS read-only
  3068. STATUS mandatory
  3069. ::= { egpNeighTable 1 }
  3070. EgpNeighEntry ::= SEQUENCE {
  3071. egpNeighState
  3072. INTEGER,
  3073. egpNeighAddr
  3074. IpAddress
  3075. }
  3076. egpNeighState OBJECT-TYPE
  3077. SYNTAX INTEGER {
  3078. idle(1),
  3079. acquisition(2),
  3080. down(3),
  3081. up(4),
  3082. cease(5)
  3083. }
  3084. ACCESS read-only
  3085. STATUS mandatory
  3086. ::= { egpNeighEntry 1 }
  3087. egpNeighAddr OBJECT-TYPE
  3088. SYNTAX IpAddress
  3089. ACCESS read-only
  3090. STATUS mandatory
  3091. ::= { egpNeighEntry 2 }
  3092. END
  3093. McCloghrie & Rose [Page 87]
  3094. RFC 1066 MIB August 1988
  3095. 7. Acknowledgements
  3096. The initial draft of this memo was heavily influenced by the the HEMS
  3097. [5] and SNMP [6] MIBs.
  3098. Its final form is the result of the suggestions, the dicussions, and
  3099. the compromises reached by the members of the IETF MIB working group:
  3100. Karl Auerbach, Epilogue Technology
  3101. K. Ramesh Babu, Excelan
  3102. Lawrence Besaw, Hewlett-Packard
  3103. Jeffrey D. Case, University of Tennessee at Knoxville
  3104. James R. Davin, Proteon
  3105. Mark S. Fedor, NYSERNet
  3106. Robb Foster, BBN
  3107. Phill Gross, The MITRE Corporation
  3108. Bent Torp Jensen, Convergent Technology
  3109. Lee Labarre, The MITRE Corporation
  3110. Dan Lynch, Advanced Computing Environments
  3111. Keith McCloghrie, The Wollongong Group
  3112. Dave Mackie, 3Com/Bridge
  3113. Craig Partridge, BBN (chair)
  3114. Jim Robertson, 3Com/Bridge
  3115. Marshall T. Rose, The Wollongong Group
  3116. Greg Satz, cisco
  3117. Martin Lee Schoffstall, Rensselaer Polytechnic Institute
  3118. Lou Steinberg, IBM
  3119. Dean Throop, Data General
  3120. Unni Warrier, Unisys
  3121. McCloghrie & Rose [Page 88]
  3122. RFC 1066 MIB August 1988
  3123. 8. References
  3124. [1] Cerf, V., "IAB Recommendations for the Development of Internet
  3125. Network Management Standards", RFC 1052, IAB, April 1988.
  3126. [2] Information processing systems - Open Systems Interconnection,
  3127. "Management Information Services Definition", International
  3128. Organization for Standardization, Draft Proposal 9595/2,
  3129. December 1987.
  3130. [3] Information processing systems - Open Systems Interconnection,
  3131. "Management Information Protocol Specification", International
  3132. Organization for Standardization, Draft Proposal 9596/2,
  3133. December 1987.
  3134. [4] Rose M., and K. McCloghrie, "Structure and Identification of
  3135. Management Information for TCP/IP-based internets", RFC 1065,
  3136. TWG, August 1988.
  3137. [5] Partridge C., and G. Trewitt, "The High-Level Entity Management
  3138. System (HEMS)", RFCs 1021-1024, BBN and Stanford, October 1987.
  3139. [6] Case, J., M. Fedor, M. Schoffstall, and J. Davin, "A Simple
  3140. Network Management Protocol", RFC 1067, University of Tennessee
  3141. At Knoxville, NYSERNet, Rensselaer Polytechnic, Proteon, August
  3142. 1988.
  3143. [7] LaBarre, L., "Structure and Identification of Management
  3144. Information for the Internet", Internet Engineering Task Force
  3145. working note, Network Information Center, SRI International,
  3146. Menlo Park, California, April 1988.
  3147. [8] LaBarre, L., "Transport Layer Management Information: TCP",
  3148. Internet Engineering Task Force working note in preparation.
  3149. Network Information Center, SRI International, Menlo Park,
  3150. California, (unpublished).
  3151. [9] Information processing systems - Open Systems Interconnection,
  3152. "Specification of Abstract Syntax Notation One (ASN.1)",
  3153. International Organization for Standardization, International
  3154. Standard 8824, December 1987.
  3155. [10] Information processing systems - Open Systems Interconnection,
  3156. "Specification of Basic Encoding Rules for Abstract Notation One
  3157. (ASN.1)", International Organization for Standardization,
  3158. International Standard 8825, December 1987.
  3159. [11] Jacobson, V., "Congestion Avoidance and Control", SIGCOMM, 1988,
  3160. McCloghrie & Rose [Page 89]
  3161. RFC 1066 MIB August 1988
  3162. Stanford, California.
  3163. McCloghrie & Rose [Page 90]