⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ripv2-mib.txt

📁 大名鼎鼎的路由器源码。程序分ZEBRA、OSPFRIP等3个包。程序框架采用一个路由协议一个进程的方式
💻 TXT
📖 第 1 页 / 共 2 页
字号:
   RIPv2-MIB DEFINITIONS ::= BEGIN   IMPORTS       MODULE-IDENTITY, OBJECT-TYPE, Counter32,       TimeTicks, IpAddress                     FROM SNMPv2-SMI       TEXTUAL-CONVENTION, RowStatus            FROM SNMPv2-TC       MODULE-COMPLIANCE, OBJECT-GROUP          FROM SNMPv2-CONF       mib-2                                    FROM RFC1213-MIB;   --  This MIB module uses the extended OBJECT-TYPE macro as   --  defined in [9].   rip2  MODULE-IDENTITY           LAST-UPDATED "9407272253Z"      -- Wed Jul 27 22:53:04 PDT 1994           ORGANIZATION "IETF RIP-II Working Group"           CONTACT-INFO          "       Fred Baker          Postal: Cisco Systems                  519 Lado Drive                  Santa Barbara, California 93111          Tel:    +1 805 681 0115          E-Mail: fbaker@cisco.com          Postal: Gary Malkin                  Xylogics, Inc.                  53 Third Avenue                  Burlington, MA  01803          Phone:  (617) 272-8140          EMail:  gmalkin@Xylogics.COM"      DESCRIPTION         "The MIB module to describe the RIP2 Version 2 Protocol"     ::= { mib-2 23 } --  RIP-2 Management Information Base -- the RouteTag type represents the contents of the -- Route Domain field in the packet header or route entry. -- The use of the Route Domain is deprecated. RouteTag ::= TEXTUAL-CONVENTION     STATUS      current     DESCRIPTION        "the RouteTag type represents the contents of the Route Domain        field in the packet header or route entry"    SYNTAX      OCTET STRING (SIZE (2))--4.1 Global Counters--      The RIP-2 Globals Group.--      Implementation of this group is mandatory for systems--      which implement RIP-2.-- These counters are intended to facilitate debugging quickly-- changing routes or failing neighborsrip2Globals OBJECT IDENTIFIER ::= { rip2 1 }    rip2GlobalRouteChanges OBJECT-TYPE        SYNTAX   Counter32        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The number of route changes made to the IP Route           Database by RIP.  This does not include the refresh           of a route's age."       ::= { rip2Globals 1 }    rip2GlobalQueries OBJECT-TYPE        SYNTAX   Counter32        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The number of responses sent to RIP queries           from other systems."       ::= { rip2Globals 2 }--4.2 RIP Interface Tables--  RIP Interfaces Groups--  Implementation of these Groups is mandatory for systems--  which implement RIP-2.-- The RIP Interface Status Table.    rip2IfStatTable OBJECT-TYPE        SYNTAX   SEQUENCE OF Rip2IfStatEntry        MAX-ACCESS   not-accessible        STATUS   current        DESCRIPTION           "A list of subnets which require separate           status monitoring in RIP."       ::= { rip2 2 }   rip2IfStatEntry OBJECT-TYPE       SYNTAX   Rip2IfStatEntry       MAX-ACCESS   not-accessible       STATUS   current       DESCRIPTION          "A Single Routing Domain in a single Subnet."      INDEX { rip2IfStatAddress }      ::= { rip2IfStatTable 1 }    Rip2IfStatEntry ::=        SEQUENCE {            rip2IfStatAddress                IpAddress,            rip2IfStatRcvBadPackets                Counter32,            rip2IfStatRcvBadRoutes                Counter32,            rip2IfStatSentUpdates                Counter32,            rip2IfStatStatus                RowStatus    }    rip2IfStatAddress OBJECT-TYPE        SYNTAX   IpAddress        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The IP Address of this system on the indicated           subnet. For unnumbered interfaces, the value 0.0.0.N,           where the least significant 24 bits (N) is the ifIndex           for the IP Interface in network byte order."       ::= { rip2IfStatEntry 1 }    rip2IfStatRcvBadPackets OBJECT-TYPE        SYNTAX   Counter32        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The number of RIP response packets received by           the RIP process which were subsequently discarded           for any reason (e.g. a version 0 packet, or an           unknown command type)."       ::= { rip2IfStatEntry 2 }    rip2IfStatRcvBadRoutes OBJECT-TYPE        SYNTAX   Counter32        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The number of routes, in valid RIP packets,           which were ignored for any reason (e.g. unknown           address family, or invalid metric)."       ::= { rip2IfStatEntry 3 }    rip2IfStatSentUpdates OBJECT-TYPE        SYNTAX   Counter32        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The number of triggered RIP updates actually           sent on this interface.  This explicitly does           NOT include full updates sent containing new           information."       ::= { rip2IfStatEntry 4 }    rip2IfStatStatus OBJECT-TYPE        SYNTAX   RowStatus        MAX-ACCESS   read-create        STATUS   current        DESCRIPTION           "Writing invalid has the effect of deleting           this interface."       ::= { rip2IfStatEntry 5 }-- The RIP Interface Configuration Table.    rip2IfConfTable OBJECT-TYPE        SYNTAX   SEQUENCE OF Rip2IfConfEntry        MAX-ACCESS   not-accessible        STATUS   current        DESCRIPTION           "A list of subnets which require separate           configuration in RIP."       ::= { rip2 3 }   rip2IfConfEntry OBJECT-TYPE       SYNTAX   Rip2IfConfEntry       MAX-ACCESS   not-accessible       STATUS   current       DESCRIPTION          "A Single Routing Domain in a single Subnet."      INDEX { rip2IfConfAddress }      ::= { rip2IfConfTable 1 }    Rip2IfConfEntry ::=        SEQUENCE {            rip2IfConfAddress                IpAddress,            rip2IfConfDomain                RouteTag,            rip2IfConfAuthType                INTEGER,            rip2IfConfAuthKey                OCTET STRING (SIZE(0..16)),            rip2IfConfSend                INTEGER,            rip2IfConfReceive                INTEGER,            rip2IfConfDefaultMetric                INTEGER,            rip2IfConfStatus                RowStatus,            rip2IfConfSrcAddress                IpAddress    }    rip2IfConfAddress OBJECT-TYPE        SYNTAX   IpAddress        MAX-ACCESS   read-only        STATUS   current        DESCRIPTION           "The IP Address of this system on the indicated           subnet.  For unnumbered interfaces, the value 0.0.0.N,           where the least significant 24 bits (N) is the ifIndex           for the IP Interface in network byte order."       ::= { rip2IfConfEntry 1 }    rip2IfConfDomain OBJECT-TYPE        SYNTAX   RouteTag        MAX-ACCESS   read-create        STATUS   obsolete        DESCRIPTION           "Value inserted into the Routing Domain field           of all RIP packets sent on this interface."       DEFVAL { '0000'h }       ::= { rip2IfConfEntry 2 }    rip2IfConfAuthType OBJECT-TYPE        SYNTAX   INTEGER {                    noAuthentication (1),                    simplePassword (2),                    md5 (3)                 }        MAX-ACCESS   read-create        STATUS   current        DESCRIPTION           "The type of Authentication used on this           interface."       DEFVAL { noAuthentication }       ::= { rip2IfConfEntry 3 }    rip2IfConfAuthKey OBJECT-TYPE        SYNTAX   OCTET STRING (SIZE(0..16))        MAX-ACCESS   read-create        STATUS   current        DESCRIPTION           "The value to be used as the Authentication Key           whenever the corresponding instance of           rip2IfConfAuthType has a value other than           noAuthentication.  A modification of the corresponding           instance of rip2IfConfAuthType does not modify           the rip2IfConfAuthKey value.  If a string shorter           than 16 octets is supplied, it will be left-           justified and padded to 16 octets, on the right,           with nulls (0x00).           Reading this object always results in an  OCTET           STRING of length zero; authentication may not           be bypassed by reading the MIB object."       DEFVAL { ''h }       ::= { rip2IfConfEntry 4 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -