Files

568 lines
17 KiB
Plaintext
Raw Permalink Normal View History

2018-02-05 07:39:13 -06:00
-- These MIBs were created on 1/2/2003
-- This module defines enterprise MIBs for NS RIP
--
-- Copyright (c) 1999-2004, Juniper Networks, Inc.
-- All rights reserved.
--
-- MODULE-IDENTITY
-- OrgName
-- Juniper Networks, Inc.
-- ContactInfo
-- Customer Support
--
-- 1194 North Mathilda Avenue
-- Sunnyvale, California 94089-1206
-- USA
--
-- Tel: 1-800-638-8296
-- E-mail: customerservice@juniper.net
-- HTTP://www.juniper.net"
--
-- Descr
-- This module defines the object that are used to monitor
-- NS's RIP configuration
--
-- Last modified date: 01/16/2003
-- Last modified date: 11/10/2003
--
NETSCREEN-RIPv2-MIB DEFINITIONS ::= BEGIN
2011-04-26 15:07:25 +00:00
IMPORTS
2018-02-05 07:39:13 -06:00
MODULE-IDENTITY, OBJECT-TYPE, Counter32,
2011-04-26 15:07:25 +00:00
TimeTicks, IpAddress FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus FROM SNMPv2-TC
2018-02-05 07:39:13 -06:00
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF
netscreenVR FROM NETSCREEN-SMI;
2011-04-26 15:07:25 +00:00
-- This MIB module uses the extended OBJECT-TYPE macro as
-- defined in [9].
2018-02-05 07:39:13 -06:00
nsRip2 MODULE-IDENTITY
LAST-UPDATED "200506032022Z" -- June 20, 2005
2011-04-26 15:07:25 +00:00
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"
2018-02-05 07:39:13 -06:00
::= { netscreenVR 4 }
2011-04-26 15:07:25 +00:00
-- 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
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
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 neighbors
2018-02-05 07:39:13 -06:00
-- nsRip2Globals OBJECT IDENTIFIER ::= { nsRip2 1 }
-- nsRip2GlobalRouteChanges OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS deprecated
-- 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."
-- ::= { nsRip2Globals 1 }
-- nsRip2GlobalQueries OBJECT-TYPE
-- SYNTAX Counter32
-- MAX-ACCESS read-only
-- STATUS deprecated
-- DESCRIPTION
-- "The number of responses sent to RIP queries
-- from other systems."
-- ::= { nsRip2Globals 2 }
nsRip2GlobalsTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsRip2GlobalsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A list of RIP2 Globals per VR."
::= { nsRip2 1 }
nsRip2GlobalsEntry OBJECT-TYPE
SYNTAX NsRip2GlobalsEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"One VR's Globals."
INDEX { nsRip2GlobalVRID }
::= { nsRip2GlobalsTable 1 }
NsRip2GlobalsEntry ::=
SEQUENCE {
nsRip2GlobalRouteChanges
Counter32,
nsRip2GlobalQueries
Counter32,
nsRip2GlobalVRID
INTEGER
}
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2GlobalRouteChanges OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
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."
2018-02-05 07:39:13 -06:00
::= { nsRip2GlobalsEntry 1 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2GlobalQueries OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The number of responses sent to RIP queries
from other systems."
2018-02-05 07:39:13 -06:00
::= { nsRip2GlobalsEntry 2 }
nsRip2GlobalVRID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Virtual Router ID"
::= { nsRip2GlobalsEntry 3 }
2011-04-26 15:07:25 +00:00
--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.
2018-02-05 07:39:13 -06:00
nsRip2IfStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsRip2IfStatEntry
2011-04-26 15:07:25 +00:00
MAX-ACCESS not-accessible
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"A list of subnets which require separate
status monitoring in RIP."
2018-02-05 07:39:13 -06:00
::= { nsRip2 2 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfStatEntry OBJECT-TYPE
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
SYNTAX NsRip2IfStatEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A Single Routing Domain in a single Subnet."
INDEX { nsRip2IfStatAddress, nsRip2IfStatVRID }
::= { nsRip2IfStatTable 1 }
NsRip2IfStatEntry ::=
2011-04-26 15:07:25 +00:00
SEQUENCE {
2018-02-05 07:39:13 -06:00
nsRip2IfStatAddress
2011-04-26 15:07:25 +00:00
IpAddress,
2018-02-05 07:39:13 -06:00
nsRip2IfStatRcvBadPackets
2011-04-26 15:07:25 +00:00
Counter32,
2018-02-05 07:39:13 -06:00
nsRip2IfStatRcvBadRoutes
2011-04-26 15:07:25 +00:00
Counter32,
2018-02-05 07:39:13 -06:00
nsRip2IfStatSentUpdates
2011-04-26 15:07:25 +00:00
Counter32,
2018-02-05 07:39:13 -06:00
nsRip2IfStatStatus
RowStatus,
nsRip2IfStatVRID
INTEGER
2011-04-26 15:07:25 +00:00
}
2018-02-05 07:39:13 -06:00
nsRip2IfStatAddress OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX IpAddress
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
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."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfStatEntry 1 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfStatRcvBadPackets OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
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)."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfStatEntry 2 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfStatRcvBadRoutes OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The number of routes, in valid RIP packets,
which were ignored for any reason (e.g. unknown
address family, or invalid metric)."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfStatEntry 3 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfStatSentUpdates OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The number of triggered RIP updates actually
sent on this interface. This explicitly does
NOT include full updates sent containing new
information."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfStatEntry 4 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfStatStatus OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX RowStatus
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"Writing invalid has the effect of deleting
this interface."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfStatEntry 5 }
nsRip2IfStatVRID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Virtual Router ID"
::= { nsRip2IfStatEntry 6 }
2011-04-26 15:07:25 +00:00
-- The RIP Interface Configuration Table.
2018-02-05 07:39:13 -06:00
nsRip2IfConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsRip2IfConfEntry
2011-04-26 15:07:25 +00:00
MAX-ACCESS not-accessible
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"A list of subnets which require separate
configuration in RIP."
2018-02-05 07:39:13 -06:00
::= { nsRip2 3 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfEntry OBJECT-TYPE
SYNTAX NsRip2IfConfEntry
2011-04-26 15:07:25 +00:00
MAX-ACCESS not-accessible
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"A Single Routing Domain in a single Subnet."
2018-02-05 07:39:13 -06:00
INDEX { nsRip2IfConfAddress, nsRip2IfConfVRID }
::= { nsRip2IfConfTable 1 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
NsRip2IfConfEntry ::=
2011-04-26 15:07:25 +00:00
SEQUENCE {
2018-02-05 07:39:13 -06:00
nsRip2IfConfAddress
2011-04-26 15:07:25 +00:00
IpAddress,
2018-02-05 07:39:13 -06:00
nsRip2IfConfDomain
2011-04-26 15:07:25 +00:00
RouteTag,
2018-02-05 07:39:13 -06:00
nsRip2IfConfAuthType
2011-04-26 15:07:25 +00:00
INTEGER,
2018-02-05 07:39:13 -06:00
nsRip2IfConfAuthKey
OCTET STRING,
nsRip2IfConfSend
2011-04-26 15:07:25 +00:00
INTEGER,
2018-02-05 07:39:13 -06:00
nsRip2IfConfReceive
2011-04-26 15:07:25 +00:00
INTEGER,
2018-02-05 07:39:13 -06:00
nsRip2IfConfDefaultMetric
2011-04-26 15:07:25 +00:00
INTEGER,
2018-02-05 07:39:13 -06:00
nsRip2IfConfStatus
2011-04-26 15:07:25 +00:00
RowStatus,
2018-02-05 07:39:13 -06:00
nsRip2IfConfSrcAddress
IpAddress,
nsRip2IfConfVRID
INTEGER
2011-04-26 15:07:25 +00:00
}
2018-02-05 07:39:13 -06:00
nsRip2IfConfAddress OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX IpAddress
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
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."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 1 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfDomain OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX RouteTag
MAX-ACCESS read-create
STATUS obsolete
DESCRIPTION
"Value inserted into the Routing Domain field
of all RIP packets sent on this interface."
2018-02-05 07:39:13 -06:00
DEFVAL { '0000'H }
::= { nsRip2IfConfEntry 2 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfAuthType OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX INTEGER {
noAuthentication (1),
simplePassword (2),
md5 (3)
}
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The type of Authentication used on this
interface."
DEFVAL { noAuthentication }
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 3 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfAuthKey OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX OCTET STRING (SIZE(0..16))
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The value to be used as the Authentication Key
whenever the corresponding instance of
2018-02-05 07:39:13 -06:00
nsRip2IfConfAuthType has a value other than
2011-04-26 15:07:25 +00:00
noAuthentication. A modification of the corresponding
2018-02-05 07:39:13 -06:00
instance of nsRip2IfConfAuthType does not modify
the nsRip2IfConfAuthKey value. If a string shorter
2011-04-26 15:07:25 +00:00
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."
2018-02-05 07:39:13 -06:00
DEFVAL { ''H }
::= { nsRip2IfConfEntry 4 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfSend OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX INTEGER {
doNotSend (1),
ripVersion1 (2),
rip1Compatible (3),
ripVersion2 (4),
ripV1Demand (5),
ripV2Demand (6)
}
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"What the router sends on this interface.
ripVersion1 implies sending RIP updates compliant
with RFC 1058. rip1Compatible implies
broadcasting RIP-2 updates using RFC 1058 route
subsumption rules. ripVersion2 implies
multicasting RIP-2 updates. ripV1Demand indicates
the use of Demand RIP on a WAN interface under RIP
Version 1 rules. ripV2Demand indicates the use of
2018-02-05 07:39:13 -06:00
2011-04-26 15:07:25 +00:00
Demand RIP on a WAN interface under Version 2 rules."
DEFVAL { rip1Compatible }
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 5 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfReceive OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX INTEGER {
rip1 (1),
rip2 (2),
rip1OrRip2 (3),
doNotRecieve (4)
}
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"This indicates which version of RIP updates
are to be accepted. Note that rip2 and
rip1OrRip2 implies reception of multicast
packets."
DEFVAL { rip1OrRip2 }
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 6 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfDefaultMetric OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX INTEGER ( 0..15 )
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"This variable indicates the metric that is to
be used for the default route entry in RIP updates
originated on this interface. A value of zero
indicates that no default route should be
originated; in this case, a default route via
another router may be propagated."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 7 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfStatus OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX RowStatus
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"Writing invalid has the effect of deleting
this interface."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 8 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2IfConfSrcAddress OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX IpAddress
MAX-ACCESS read-create
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
2018-02-05 07:39:13 -06:00
2011-04-26 15:07:25 +00:00
"The IP Address this system will use as a source
address on this interface. If it is a numbered
interface, this MUST be the same value as
2018-02-05 07:39:13 -06:00
nsRip2IfConfAddress. On unnumbered interfaces,
it must be the value of nsRip2IfConfAddress for
2011-04-26 15:07:25 +00:00
some interface on the system."
2018-02-05 07:39:13 -06:00
::= { nsRip2IfConfEntry 9 }
nsRip2IfConfVRID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Virtual Router ID"
::= { nsRip2IfConfEntry 10 }
2011-04-26 15:07:25 +00:00
--4.3 Peer Table
-- Peer Table
-- The RIP Peer Group
-- Implementation of this Group is Optional
-- This group provides information about active peer
-- relationships intended to assist in debugging. An
-- active peer is a router from which a valid RIP
-- updated has been heard in the last 180 seconds.
2018-02-05 07:39:13 -06:00
nsRip2PeerTable OBJECT-TYPE
SYNTAX SEQUENCE OF NsRip2PeerEntry
2011-04-26 15:07:25 +00:00
MAX-ACCESS not-accessible
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"A list of RIP Peers."
2018-02-05 07:39:13 -06:00
::= { nsRip2 4 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2PeerEntry OBJECT-TYPE
SYNTAX NsRip2PeerEntry
2011-04-26 15:07:25 +00:00
MAX-ACCESS not-accessible
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"Information regarding a single routing peer."
2018-02-05 07:39:13 -06:00
INDEX { nsRip2PeerAddress, nsRip2PeerDomain, nsRip2PeerVRID }
::= { nsRip2PeerTable 1 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
NsRip2PeerEntry ::=
2011-04-26 15:07:25 +00:00
SEQUENCE {
2018-02-05 07:39:13 -06:00
nsRip2PeerAddress
2011-04-26 15:07:25 +00:00
IpAddress,
2018-02-05 07:39:13 -06:00
nsRip2PeerDomain
2011-04-26 15:07:25 +00:00
RouteTag,
2018-02-05 07:39:13 -06:00
nsRip2PeerLastUpdate
2011-04-26 15:07:25 +00:00
TimeTicks,
2018-02-05 07:39:13 -06:00
nsRip2PeerVersion
2011-04-26 15:07:25 +00:00
INTEGER,
2018-02-05 07:39:13 -06:00
nsRip2PeerRcvBadPackets
2011-04-26 15:07:25 +00:00
Counter32,
2018-02-05 07:39:13 -06:00
nsRip2PeerRcvBadRoutes
Counter32,
nsRip2PeerVRID
INTEGER
2011-04-26 15:07:25 +00:00
}
2018-02-05 07:39:13 -06:00
nsRip2PeerAddress OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX IpAddress
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The IP Address that the peer is using as its source
address. Note that on an unnumbered link, this may
not be a member of any subnet on the system."
2018-02-05 07:39:13 -06:00
::= { nsRip2PeerEntry 1 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2PeerDomain OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX RouteTag
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The value in the Routing Domain field in RIP
packets received from the peer. As domain suuport
is deprecated, this must be zero."
2018-02-05 07:39:13 -06:00
::= { nsRip2PeerEntry 2 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2PeerLastUpdate OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX TimeTicks
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The value of sysUpTime when the most recent
RIP update was received from this system."
2018-02-05 07:39:13 -06:00
::= { nsRip2PeerEntry 3 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2PeerVersion OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX INTEGER ( 0..255 )
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The RIP version number in the header of the
last RIP packet received."
2018-02-05 07:39:13 -06:00
::= { nsRip2PeerEntry 4 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2PeerRcvBadPackets OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
2018-02-05 07:39:13 -06:00
2011-04-26 15:07:25 +00:00
"The number of RIP response packets from this
peer discarded as invalid."
2018-02-05 07:39:13 -06:00
::= { nsRip2PeerEntry 5 }
2011-04-26 15:07:25 +00:00
2018-02-05 07:39:13 -06:00
nsRip2PeerRcvBadRoutes OBJECT-TYPE
2011-04-26 15:07:25 +00:00
SYNTAX Counter32
MAX-ACCESS read-only
2018-02-05 07:39:13 -06:00
STATUS deprecated
2011-04-26 15:07:25 +00:00
DESCRIPTION
"The number of routes from this peer that were
ignored because the entry format was invalid."
2018-02-05 07:39:13 -06:00
::= { nsRip2PeerEntry 6 }
nsRip2PeerVRID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Virtual Router ID"
::= { nsRip2PeerEntry 7 }
2011-04-26 15:07:25 +00:00
END