IP-MIB.txt
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:23k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. IP-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3.     MODULE-IDENTITY, OBJECT-TYPE, Integer32,
  4.     Counter32, IpAddress, mib-2        FROM SNMPv2-SMI
  5.     PhysAddress                        FROM SNMPv2-TC
  6.     MODULE-COMPLIANCE, OBJECT-GROUP    FROM SNMPv2-CONF;
  7. ipMIB MODULE-IDENTITY
  8.     LAST-UPDATED "9411010000Z"
  9.     ORGANIZATION "IETF SNMPv2 Working Group"
  10.     CONTACT-INFO
  11.             "        Keith McCloghrie
  12.              Postal: Cisco Systems, Inc.
  13.                      170 West Tasman Drive
  14.                      San Jose, CA  95134-1706
  15.                      US
  16.              Phone:  +1 408 526 5260
  17.              Email:  kzm@cisco.com"
  18.     DESCRIPTION
  19.             "The MIB module for managing IP and ICMP implementations,
  20.             but excluding their management of IP routes."
  21.     REVISION      "9103310000Z"
  22.     DESCRIPTION
  23.             "The initial revision of this MIB module was part of MIB-
  24.             II."
  25.     ::= { mib-2 48}
  26. -- the IP group
  27. ip       OBJECT IDENTIFIER ::= { mib-2 4 }
  28. ipForwarding OBJECT-TYPE
  29.     SYNTAX      INTEGER {
  30.                     forwarding(1),    -- acting as a router
  31.                     notForwarding(2)  -- NOT acting as a router
  32.                 }
  33.     MAX-ACCESS  read-write
  34.     STATUS      current
  35.     DESCRIPTION
  36.             "The indication of whether this entity is acting as an IP
  37.             router in respect to the forwarding of datagrams received
  38.             by, but not addressed to, this entity.  IP routers forward
  39.             datagrams.  IP hosts do not (except those source-routed via
  40.             the host)."
  41.     ::= { ip 1 }
  42. ipDefaultTTL OBJECT-TYPE
  43.     SYNTAX      INTEGER (1..255)
  44.     MAX-ACCESS  read-write
  45.     STATUS      current
  46.     DESCRIPTION
  47.             "The default value inserted into the Time-To-Live field of
  48.             the IP header of datagrams originated at this entity,
  49.             whenever a TTL value is not supplied by the transport layer
  50.             protocol."
  51.     ::= { ip 2 }
  52. ipInReceives OBJECT-TYPE
  53.     SYNTAX      Counter32
  54.     MAX-ACCESS  read-only
  55.     STATUS      current
  56.     DESCRIPTION
  57.             "The total number of input datagrams received from
  58.             interfaces, including those received in error."
  59.     ::= { ip 3 }
  60. ipInHdrErrors OBJECT-TYPE
  61.     SYNTAX      Counter32
  62.     MAX-ACCESS  read-only
  63.     STATUS      current
  64.     DESCRIPTION
  65.             "The number of input datagrams discarded due to errors in
  66.             their IP headers, including bad checksums, version number
  67.             mismatch, other format errors, time-to-live exceeded, errors
  68.             discovered in processing their IP options, etc."
  69.     ::= { ip 4 }
  70. ipInAddrErrors OBJECT-TYPE
  71.     SYNTAX      Counter32
  72.     MAX-ACCESS  read-only
  73.     STATUS      current
  74.     DESCRIPTION
  75.             "The number of input datagrams discarded because the IP
  76.             address in their IP header's destination field was not a
  77.             valid address to be received at this entity.  This count
  78.             includes invalid addresses (e.g., 0.0.0.0) and addresses of
  79.             unsupported Classes (e.g., Class E).  For entities which are
  80.             not IP routers and therefore do not forward datagrams, this
  81.             counter includes datagrams discarded because the destination
  82.             address was not a local address."
  83.     ::= { ip 5 }
  84. ipForwDatagrams OBJECT-TYPE
  85.     SYNTAX      Counter32
  86.     MAX-ACCESS  read-only
  87.     STATUS      current
  88.     DESCRIPTION
  89.             "The number of input datagrams for which this entity was not
  90.             their final IP destination, as a result of which an attempt
  91.             was made to find a route to forward them to that final
  92.             destination.  In entities which do not act as IP routers,
  93.             this counter will include only those packets which were
  94.             Source-Routed via this entity, and the Source-Route option
  95.             processing was successful."
  96.     ::= { ip 6 }
  97. ipInUnknownProtos OBJECT-TYPE
  98.     SYNTAX      Counter32
  99.     MAX-ACCESS  read-only
  100.     STATUS      current
  101.     DESCRIPTION
  102.             "The number of locally-addressed datagrams received
  103.             successfully but discarded because of an unknown or
  104.             unsupported protocol."
  105.     ::= { ip 7 }
  106. ipInDiscards OBJECT-TYPE
  107.     SYNTAX      Counter32
  108.     MAX-ACCESS  read-only
  109.     STATUS      current
  110.     DESCRIPTION
  111.             "The number of input IP datagrams for which no problems were
  112.             encountered to prevent their continued processing, but which
  113.             were discarded (e.g., for lack of buffer space).  Note that
  114.             this counter does not include any datagrams discarded while
  115.             awaiting re-assembly."
  116.     ::= { ip 8 }
  117. ipInDelivers OBJECT-TYPE
  118.     SYNTAX      Counter32
  119.     MAX-ACCESS  read-only
  120.     STATUS      current
  121.     DESCRIPTION
  122.             "The total number of input datagrams successfully delivered
  123.             to IP user-protocols (including ICMP)."
  124.     ::= { ip 9 }
  125. ipOutRequests OBJECT-TYPE
  126.     SYNTAX      Counter32
  127.     MAX-ACCESS  read-only
  128.     STATUS      current
  129.     DESCRIPTION
  130.             "The total number of IP datagrams which local IP user-
  131.             protocols (including ICMP) supplied to IP in requests for
  132.             transmission.  Note that this counter does not include any
  133.             datagrams counted in ipForwDatagrams."
  134.     ::= { ip 10 }
  135. ipOutDiscards OBJECT-TYPE
  136.     SYNTAX      Counter32
  137.     MAX-ACCESS  read-only
  138.     STATUS      current
  139.     DESCRIPTION
  140.             "The number of output IP datagrams for which no problem was
  141.             encountered to prevent their transmission to their
  142.             destination, but which were discarded (e.g., for lack of
  143.             buffer space).  Note that this counter would include
  144.             datagrams counted in ipForwDatagrams if any such packets met
  145.             this (discretionary) discard criterion."
  146.     ::= { ip 11 }
  147. ipOutNoRoutes OBJECT-TYPE
  148.     SYNTAX      Counter32
  149.     MAX-ACCESS  read-only
  150.     STATUS      current
  151.     DESCRIPTION
  152.             "The number of IP datagrams discarded because no route could
  153.             be found to transmit them to their destination.  Note that
  154.             this counter includes any packets counted in ipForwDatagrams
  155.             which meet this `no-route' criterion.  Note that this
  156.             includes any datagrams which a host cannot route because all
  157.             of its default routers are down."
  158.     ::= { ip 12 }
  159. ipReasmTimeout OBJECT-TYPE
  160.     SYNTAX      Integer32
  161.     MAX-ACCESS  read-only
  162.     STATUS      current
  163.     DESCRIPTION
  164.             "The maximum number of seconds which received fragments are
  165.             held while they are awaiting reassembly at this entity."
  166.     ::= { ip 13 }
  167. ipReasmReqds OBJECT-TYPE
  168.     SYNTAX      Counter32
  169.     MAX-ACCESS  read-only
  170.     STATUS      current
  171.     DESCRIPTION
  172.             "The number of IP fragments received which needed to be
  173.             reassembled at this entity."
  174.     ::= { ip 14 }
  175. ipReasmOKs OBJECT-TYPE
  176.     SYNTAX      Counter32
  177.     MAX-ACCESS  read-only
  178.     STATUS      current
  179.     DESCRIPTION
  180.             "The number of IP datagrams successfully re-assembled."
  181.     ::= { ip 15 }
  182. ipReasmFails OBJECT-TYPE
  183.     SYNTAX      Counter32
  184.     MAX-ACCESS  read-only
  185.     STATUS      current
  186.     DESCRIPTION
  187.             "The number of failures detected by the IP re-assembly
  188.             algorithm (for whatever reason: timed out, errors, etc).
  189.             Note that this is not necessarily a count of discarded IP
  190.             fragments since some algorithms (notably the algorithm in
  191.             RFC 815) can lose track of the number of fragments by
  192.             combining them as they are received."
  193.     ::= { ip 16 }
  194. ipFragOKs OBJECT-TYPE
  195.     SYNTAX      Counter32
  196.     MAX-ACCESS  read-only
  197.     STATUS      current
  198.     DESCRIPTION
  199.             "The number of IP datagrams that have been successfully
  200.             fragmented at this entity."
  201.     ::= { ip 17 }
  202. ipFragFails OBJECT-TYPE
  203.     SYNTAX      Counter32
  204.     MAX-ACCESS  read-only
  205.     STATUS      current
  206.     DESCRIPTION
  207.             "The number of IP datagrams that have been discarded because
  208.             they needed to be fragmented at this entity but could not
  209.             be, e.g., because their Don't Fragment flag was set."
  210.     ::= { ip 18 }
  211. ipFragCreates OBJECT-TYPE
  212.     SYNTAX      Counter32
  213.     MAX-ACCESS  read-only
  214.     STATUS      current
  215.     DESCRIPTION
  216.             "The number of IP datagram fragments that have been
  217.             generated as a result of fragmentation at this entity."
  218.     ::= { ip 19 }
  219. -- the IP address table
  220. ipAddrTable OBJECT-TYPE
  221.     SYNTAX      SEQUENCE OF IpAddrEntry
  222.     MAX-ACCESS  not-accessible
  223.     STATUS      current
  224.     DESCRIPTION
  225.             "The table of addressing information relevant to this
  226.             entity's IP addresses."
  227.     ::= { ip 20 }
  228. ipAddrEntry OBJECT-TYPE
  229.     SYNTAX      IpAddrEntry
  230.     MAX-ACCESS  not-accessible
  231.     STATUS      current
  232.     DESCRIPTION
  233.             "The addressing information for one of this entity's IP
  234.             addresses."
  235.     INDEX      { ipAdEntAddr }
  236.     ::= { ipAddrTable 1 }
  237. IpAddrEntry ::= SEQUENCE {
  238.         ipAdEntAddr          IpAddress,
  239.         ipAdEntIfIndex       INTEGER,
  240.         ipAdEntNetMask       IpAddress,
  241.         ipAdEntBcastAddr     INTEGER,
  242.         ipAdEntReasmMaxSize  INTEGER
  243.     }
  244. ipAdEntAddr OBJECT-TYPE
  245.     SYNTAX      IpAddress
  246.     MAX-ACCESS  read-only
  247.     STATUS      current
  248.     DESCRIPTION
  249.             "The IP address to which this entry's addressing information
  250.             pertains."
  251.     ::= { ipAddrEntry 1 }
  252. ipAdEntIfIndex OBJECT-TYPE
  253.     SYNTAX      INTEGER (1..2147483647)
  254.     MAX-ACCESS  read-only
  255.     STATUS      current
  256.     DESCRIPTION
  257.             "The index value which uniquely identifies the interface to
  258.             which this entry is applicable.  The interface identified by
  259.             a particular value of this index is the same interface as
  260.             identified by the same value of RFC 1573's ifIndex."
  261.     ::= { ipAddrEntry 2 }
  262. ipAdEntNetMask OBJECT-TYPE
  263.     SYNTAX      IpAddress
  264.     MAX-ACCESS  read-only
  265.     STATUS      current
  266.     DESCRIPTION
  267.             "The subnet mask associated with the IP address of this
  268.             entry.  The value of the mask is an IP address with all the
  269.             network bits set to 1 and all the hosts bits set to 0."
  270.     ::= { ipAddrEntry 3 }
  271. ipAdEntBcastAddr OBJECT-TYPE
  272.     SYNTAX      INTEGER (0..1)
  273.     MAX-ACCESS  read-only
  274.     STATUS      current
  275.     DESCRIPTION
  276.             "The value of the least-significant bit in the IP broadcast
  277.             address used for sending datagrams on the (logical)
  278.             interface associated with the IP address of this entry.  For
  279.             example, when the Internet standard all-ones broadcast
  280.             address is used, the value will be 1.  This value applies to
  281.             both the subnet and network broadcasts addresses used by the
  282.             entity on this (logical) interface."
  283.     ::= { ipAddrEntry 4 }
  284. ipAdEntReasmMaxSize OBJECT-TYPE
  285.     SYNTAX      INTEGER (0..65535)
  286.     MAX-ACCESS  read-only
  287.     STATUS      current
  288.     DESCRIPTION
  289.             "The size of the largest IP datagram which this entity can
  290.             re-assemble from incoming IP fragmented datagrams received
  291.             on this interface."
  292.     ::= { ipAddrEntry 5 }
  293. -- ipRouteTable  ::=   { ip 21 }        obsolete
  294. -- the IP Address Translation table
  295. -- The Address Translation tables contain the IpAddress to
  296. -- "physical" address equivalences.  Some interfaces do not
  297. -- use translation tables for determining address
  298. -- equivalences (e.g., DDN-X.25 has an algorithmic method);
  299. -- if all interfaces are of this type, then the Address
  300. -- Translation table is empty, i.e., has zero entries.
  301. ipNetToMediaTable OBJECT-TYPE
  302.     SYNTAX      SEQUENCE OF IpNetToMediaEntry
  303.     MAX-ACCESS  not-accessible
  304.     STATUS      current
  305.     DESCRIPTION
  306.             "The IP Address Translation table used for mapping from IP
  307.             addresses to physical addresses."
  308.     ::= { ip 22 }
  309. ipNetToMediaEntry OBJECT-TYPE
  310.     SYNTAX      IpNetToMediaEntry
  311.     MAX-ACCESS  not-accessible
  312.     STATUS      current
  313.     DESCRIPTION
  314.             "Each entry contains one IpAddress to `physical' address
  315.             equivalence."
  316.     INDEX       { ipNetToMediaIfIndex,
  317.                   ipNetToMediaNetAddress }
  318.     ::= { ipNetToMediaTable 1 }
  319. IpNetToMediaEntry ::= SEQUENCE {
  320.         ipNetToMediaIfIndex      INTEGER,
  321.         ipNetToMediaPhysAddress  PhysAddress,
  322.         ipNetToMediaNetAddress   IpAddress,
  323.         ipNetToMediaType         INTEGER
  324.     }
  325. ipNetToMediaIfIndex OBJECT-TYPE
  326.     SYNTAX      INTEGER (1..2147483647)
  327.     MAX-ACCESS  read-create
  328.     STATUS      current
  329.     DESCRIPTION
  330.             "The interface on which this entry's equivalence is
  331.             effective.  The interface identified by a particular value
  332.             of this index is the same interface as identified by the
  333.             same value of RFC 1573's ifIndex."
  334.     ::= { ipNetToMediaEntry 1 }
  335. ipNetToMediaPhysAddress OBJECT-TYPE
  336.     SYNTAX      PhysAddress
  337.     MAX-ACCESS  read-create
  338.     STATUS      current
  339.     DESCRIPTION
  340.             "The media-dependent `physical' address."
  341.     ::= { ipNetToMediaEntry 2 }
  342. ipNetToMediaNetAddress OBJECT-TYPE
  343.     SYNTAX      IpAddress
  344.     MAX-ACCESS  read-create
  345.     STATUS      current
  346.     DESCRIPTION
  347.             "The IpAddress corresponding to the media-dependent
  348.             `physical' address."
  349.     ::= { ipNetToMediaEntry 3 }
  350. ipNetToMediaType OBJECT-TYPE
  351.     SYNTAX      INTEGER {
  352.                 other(1),        -- none of the following
  353.                 invalid(2),      -- an invalidated mapping
  354.                 dynamic(3),
  355.                 static(4)
  356.             }
  357.     MAX-ACCESS  read-create
  358.     STATUS      current
  359.     DESCRIPTION
  360.             "The type of mapping.
  361.             Setting this object to the value invalid(2) has the effect
  362.             of invalidating the corresponding entry in the
  363.             ipNetToMediaTable.  That is, it effectively disassociates
  364.             the interface identified with said entry from the mapping
  365.             identified with said entry.  It is an implementation-
  366.             specific matter as to whether the agent removes an
  367.             invalidated entry from the table.  Accordingly, management
  368.             stations must be prepared to receive tabular information
  369.             from agents that corresponds to entries not currently in
  370.             use.  Proper interpretation of such entries requires
  371.             examination of the relevant ipNetToMediaType object."
  372.     ::= { ipNetToMediaEntry 4 }
  373. ipRoutingDiscards OBJECT-TYPE
  374.     SYNTAX      Counter32
  375.     MAX-ACCESS  read-only
  376.     STATUS      current
  377.     DESCRIPTION
  378.             "The number of routing entries which were chosen to be
  379.             discarded even though they are valid.  One possible reason
  380.             for discarding such an entry could be to free-up buffer
  381.             space for other routing entries."
  382.     ::= { ip 23 }
  383. -- the ICMP group
  384. icmp     OBJECT IDENTIFIER ::= { mib-2 5 }
  385. icmpInMsgs OBJECT-TYPE
  386.     SYNTAX      Counter32
  387.     MAX-ACCESS  read-only
  388.     STATUS      current
  389.     DESCRIPTION
  390.             "The total number of ICMP messages which the entity
  391.             received.  Note that this counter includes all those counted
  392.             by icmpInErrors."
  393.     ::= { icmp 1 }
  394. icmpInErrors OBJECT-TYPE
  395.     SYNTAX      Counter32
  396.     MAX-ACCESS  read-only
  397.     STATUS      current
  398.     DESCRIPTION
  399.             "The number of ICMP messages which the entity received but
  400.             determined as having ICMP-specific errors (bad ICMP
  401.             checksums, bad length, etc.)."
  402.     ::= { icmp 2 }
  403. icmpInDestUnreachs OBJECT-TYPE
  404.     SYNTAX      Counter32
  405.     MAX-ACCESS  read-only
  406.     STATUS      current
  407.     DESCRIPTION
  408.             "The number of ICMP Destination Unreachable messages
  409.             received."
  410.     ::= { icmp 3 }
  411. icmpInTimeExcds OBJECT-TYPE
  412.     SYNTAX      Counter32
  413.     MAX-ACCESS  read-only
  414.     STATUS      current
  415.     DESCRIPTION
  416.             "The number of ICMP Time Exceeded messages received."
  417.     ::= { icmp 4 }
  418. icmpInParmProbs OBJECT-TYPE
  419.     SYNTAX      Counter32
  420.     MAX-ACCESS  read-only
  421.     STATUS      current
  422.     DESCRIPTION
  423.             "The number of ICMP Parameter Problem messages received."
  424.     ::= { icmp 5 }
  425. icmpInSrcQuenchs OBJECT-TYPE
  426.     SYNTAX      Counter32
  427.     MAX-ACCESS  read-only
  428.     STATUS      current
  429.     DESCRIPTION
  430.             "The number of ICMP Source Quench messages received."
  431.     ::= { icmp 6 }
  432. icmpInRedirects OBJECT-TYPE
  433.     SYNTAX      Counter32
  434.     MAX-ACCESS  read-only
  435.     STATUS      current
  436.     DESCRIPTION
  437.             "The number of ICMP Redirect messages received."
  438.     ::= { icmp 7 }
  439. icmpInEchos OBJECT-TYPE
  440.     SYNTAX      Counter32
  441.     MAX-ACCESS  read-only
  442.     STATUS      current
  443.     DESCRIPTION
  444.             "The number of ICMP Echo (request) messages received."
  445.     ::= { icmp 8 }
  446. icmpInEchoReps OBJECT-TYPE
  447.     SYNTAX      Counter32
  448.     MAX-ACCESS  read-only
  449.     STATUS      current
  450.     DESCRIPTION
  451.             "The number of ICMP Echo Reply messages received."
  452.     ::= { icmp 9 }
  453. icmpInTimestamps OBJECT-TYPE
  454.     SYNTAX      Counter32
  455.     MAX-ACCESS  read-only
  456.     STATUS      current
  457.     DESCRIPTION
  458.             "The number of ICMP Timestamp (request) messages received."
  459.     ::= { icmp 10 }
  460. icmpInTimestampReps OBJECT-TYPE
  461.     SYNTAX      Counter32
  462.     MAX-ACCESS  read-only
  463.     STATUS      current
  464.     DESCRIPTION
  465.             "The number of ICMP Timestamp Reply messages received."
  466.     ::= { icmp 11 }
  467. icmpInAddrMasks OBJECT-TYPE
  468.     SYNTAX      Counter32
  469.     MAX-ACCESS  read-only
  470.     STATUS      current
  471.     DESCRIPTION
  472.             "The number of ICMP Address Mask Request messages received."
  473.     ::= { icmp 12 }
  474. icmpInAddrMaskReps OBJECT-TYPE
  475.     SYNTAX      Counter32
  476.     MAX-ACCESS  read-only
  477.     STATUS      current
  478.     DESCRIPTION
  479.             "The number of ICMP Address Mask Reply messages received."
  480.     ::= { icmp 13 }
  481. icmpOutMsgs OBJECT-TYPE
  482.     SYNTAX      Counter32
  483.     MAX-ACCESS  read-only
  484.     STATUS      current
  485.     DESCRIPTION
  486.             "The total number of ICMP messages which this entity
  487.             attempted to send.  Note that this counter includes all
  488.             those counted by icmpOutErrors."
  489.     ::= { icmp 14 }
  490. icmpOutErrors OBJECT-TYPE
  491.     SYNTAX      Counter32
  492.     MAX-ACCESS  read-only
  493.     STATUS      current
  494.     DESCRIPTION
  495.             "The number of ICMP messages which this entity did not send
  496.             due to problems discovered within ICMP such as a lack of
  497.             buffers.  This value should not include errors discovered
  498.             outside the ICMP layer such as the inability of IP to route
  499.             the resultant datagram.  In some implementations there may
  500.             be no types of error which contribute to this counter's
  501.             value."
  502.     ::= { icmp 15 }
  503. icmpOutDestUnreachs OBJECT-TYPE
  504.     SYNTAX      Counter32
  505.     MAX-ACCESS  read-only
  506.     STATUS      current
  507.     DESCRIPTION
  508.             "The number of ICMP Destination Unreachable messages sent."
  509.     ::= { icmp 16 }
  510. icmpOutTimeExcds OBJECT-TYPE
  511.     SYNTAX      Counter32
  512.     MAX-ACCESS  read-only
  513.     STATUS      current
  514.     DESCRIPTION
  515.             "The number of ICMP Time Exceeded messages sent."
  516.     ::= { icmp 17 }
  517. icmpOutParmProbs OBJECT-TYPE
  518.     SYNTAX      Counter32
  519.     MAX-ACCESS  read-only
  520.     STATUS      current
  521.     DESCRIPTION
  522.             "The number of ICMP Parameter Problem messages sent."
  523.     ::= { icmp 18 }
  524. icmpOutSrcQuenchs OBJECT-TYPE
  525.     SYNTAX      Counter32
  526.     MAX-ACCESS  read-only
  527.     STATUS      current
  528.     DESCRIPTION
  529.             "The number of ICMP Source Quench messages sent."
  530.     ::= { icmp 19 }
  531. icmpOutRedirects OBJECT-TYPE
  532.     SYNTAX      Counter32
  533.     MAX-ACCESS  read-only
  534.     STATUS      current
  535.     DESCRIPTION
  536.             "The number of ICMP Redirect messages sent.  For a host,
  537.             this object will always be zero, since hosts do not send
  538.             redirects."
  539.     ::= { icmp 20 }
  540. icmpOutEchos OBJECT-TYPE
  541.     SYNTAX      Counter32
  542.     MAX-ACCESS  read-only
  543.     STATUS      current
  544.     DESCRIPTION
  545.             "The number of ICMP Echo (request) messages sent."
  546.     ::= { icmp 21 }
  547. icmpOutEchoReps OBJECT-TYPE
  548.     SYNTAX      Counter32
  549.     MAX-ACCESS  read-only
  550.     STATUS      current
  551.     DESCRIPTION
  552.             "The number of ICMP Echo Reply messages sent."
  553.     ::= { icmp 22 }
  554. icmpOutTimestamps OBJECT-TYPE
  555.     SYNTAX      Counter32
  556.     MAX-ACCESS  read-only
  557.     STATUS      current
  558.     DESCRIPTION
  559.             "The number of ICMP Timestamp (request) messages sent."
  560.     ::= { icmp 23 }
  561. icmpOutTimestampReps OBJECT-TYPE
  562.     SYNTAX      Counter32
  563.     MAX-ACCESS  read-only
  564.     STATUS      current
  565.     DESCRIPTION
  566.             "The number of ICMP Timestamp Reply messages sent."
  567.     ::= { icmp 24 }
  568. icmpOutAddrMasks OBJECT-TYPE
  569.     SYNTAX      Counter32
  570.     MAX-ACCESS  read-only
  571.     STATUS      current
  572.     DESCRIPTION
  573.             "The number of ICMP Address Mask Request messages sent."
  574.     ::= { icmp 25 }
  575. icmpOutAddrMaskReps OBJECT-TYPE
  576.     SYNTAX      Counter32
  577.     MAX-ACCESS  read-only
  578.     STATUS      current
  579.     DESCRIPTION
  580.             "The number of ICMP Address Mask Reply messages sent."
  581.     ::= { icmp 26 }
  582. -- conformance information
  583. ipMIBConformance OBJECT IDENTIFIER ::= { ipMIB 2 }
  584. ipMIBCompliances OBJECT IDENTIFIER ::= { ipMIBConformance 1 }
  585. ipMIBGroups      OBJECT IDENTIFIER ::= { ipMIBConformance 2 }
  586. -- compliance statements
  587. ipMIBCompliance MODULE-COMPLIANCE
  588.     STATUS  current
  589.     DESCRIPTION
  590.             "The compliance statement for SNMPv2 entities which
  591.             implement IP."
  592.     MODULE  -- this module
  593.         MANDATORY-GROUPS { ipGroup,
  594.                            icmpGroup }
  595.     ::= { ipMIBCompliances 1 }
  596. -- units of conformance
  597. ipGroup OBJECT-GROUP
  598.     OBJECTS   { ipForwarding, ipDefaultTTL, ipInReceives,
  599.                 ipInHdrErrors, ipInAddrErrors,
  600.                 ipForwDatagrams, ipInUnknownProtos,
  601.                 ipInDiscards, ipInDelivers, ipOutRequests,
  602.                 ipOutDiscards, ipOutNoRoutes,
  603.                 ipReasmTimeout, ipReasmReqds, ipReasmOKs,
  604.                 ipReasmFails, ipFragOKs,
  605.                 ipFragFails, ipFragCreates,
  606.                 ipAdEntAddr, ipAdEntIfIndex, ipAdEntNetMask,
  607.                 ipAdEntBcastAddr, ipAdEntReasmMaxSize,
  608.                 ipNetToMediaIfIndex, ipNetToMediaPhysAddress,
  609.                 ipNetToMediaNetAddress, ipNetToMediaType,
  610.                 ipRoutingDiscards }
  611.     STATUS    current
  612.     DESCRIPTION
  613.             "The ip group of objects providing for basic management of
  614.             IP entities, exclusive of the management of IP routes."
  615.     ::= { ipMIBGroups 1 }
  616. icmpGroup OBJECT-GROUP
  617.     OBJECTS   { icmpInMsgs, icmpInErrors,
  618.                 icmpInDestUnreachs, icmpInTimeExcds,
  619.                 icmpInParmProbs, icmpInSrcQuenchs,
  620.                 icmpInRedirects, icmpInEchos,
  621.                 icmpInEchoReps, icmpInTimestamps,
  622.                 icmpInTimestampReps, icmpInAddrMasks,
  623.                 icmpInAddrMaskReps, icmpOutMsgs,
  624.                 icmpOutErrors, icmpOutDestUnreachs,
  625.                 icmpOutTimeExcds, icmpOutParmProbs,
  626.                 icmpOutSrcQuenchs, icmpOutRedirects,
  627.                 icmpOutEchos, icmpOutEchoReps,
  628.                 icmpOutTimestamps, icmpOutTimestampReps,
  629.                 icmpOutAddrMasks, icmpOutAddrMaskReps }
  630.     STATUS    current
  631.     DESCRIPTION
  632.             "The icmp group of objects providing ICMP statistics."
  633.     ::= { ipMIBGroups 2 }
  634. END