?? draft-ietf-idr-bgp4-mibv2-00.txt
字號:
---- bgpLocalAs OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The local autonomous system number. If the bgpAsSize is twoOctet, then the range is constrained to be 0-65535." ::= { bgpBaseScalars 3 }------Various Authors Expires July 13, 2002 [Page 7]Internet Draft BGP-MIB v2 July 13, 2001 bgpLocalIdentifier OBJECT-TYPE SYNTAX BgpIdentifier MAX-ACCESS read-only STATUS current DESCRIPTION "The BGP Identifier of local system. Current practice is trending away from this value being treated as an IP address and more as a generic identifier." ::= { bgpBaseScalars 4 } bgpBaseScalarExtensions OBJECT IDENTIFIER ::= { bgpBaseScalars 5 } bgpBaseScalarRouteReflectionExtensions ::= { bgpBaseScalarExtensions 1 } bgp4ClusterId OBJECT-TYPE SYNTAX BgpIdentifier MAX-ACCESS read-only STATUS current DESCRIPTION "The configured Cluster-ID of the local router. A value of 0.0.0.0 indicates the absence of this value."-- jmh calling it a value of "0.0.0.0" doesn't quite make sense if its-- an octet string rather than an ip address? REFERENCE "RFC 2796 - BGP Route Reflection" ::= { bgpBaseScalarRouteReflectionExtensions 5 } bgpBaseScalarASConfederationExtensions ::= { bgpBaseScalarExtensions 2 } bgp4ConfederationId OBJECT-TYPE SYNTAX BgpAutonomousSystemNumber MAX-ACCESS read-only STATUS current DESCRIPTION "The local Confederation Identification Number. A value of zero (0) indicates the absence of this value." REFERENCE "RFC 3065 - Autonomous System Confederations for BGP" ::= { bgpBaseScalarASConfederationExtensions 6 } Various Authors Expires July 13, 2002 [Page 8]Internet Draft BGP-MIB v2 July 13, 2001 -- BGP Peer table. This table contains, one entry per -- BGP peer, information about the BGP peer. bgpPeerData OBJECT IDENTIFIER ::= { bgp 2 } bgpPeerTable OBJECT-TYPE SYNTAX SEQUENCE OF BgpPeerEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "BGP peer table. This table contains, one entry per BGP peer, information about the connections with BGP peers." ::= { bgpPeerData 1 } bgpPeerEntry OBJECT-TYPE SYNTAX BgpPeerEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Entry containing information about the connection with a BGP peer." INDEX { bgpPeerRemoteAddrType, bgpPeerRemoteAddr } ::= { bgpPeerTable 1 } BgpPeerEntry ::= SEQUENCE { bgpPeerIdentifier OCTET STRING, bgpPeerState INTEGER, bgpPeerAdminStatus INTEGER, bgpPeerNegotiatedVersion Integer32, bgpPeerLocalAddrType InetAddressType, bgpPeerLocalAddr InetAddress, bgpPeerLocalPort Integer32, bgpPeerLocalAs BgpAutonomousSystemNumber, bgpPeerRemoteAddrType InetAddressType, bgpPeerRemoteAddr InetAddress, bgpPeerRemotePort Integer32, bgpPeerRemoteAs BgpAutonomousSystemNumber, bgpPeerReflectorClient INTEGER, Various Authors Expires July 13, 2002 [Page 9]Internet Draft BGP-MIB v2 July 13, 2001 bgpPeerConfederationMember TruthValue,-- jmh add in a spot for unrecognized optional parameters? bgpPeerInUpdates Counter32, bgpPeerOutUpdates Counter32, bgpPeerInTotalMessages Counter32, bgpPeerOutTotalMessages Counter32, bgpPeerLastError OCTET STRING, bgpPeerFsmEstablishedTransitions Counter32, bgpPeerFsmEstablishedTime Gauge32, bgpPeerConnectRetryInterval Integer32, bgpPeerHoldTime Integer32, bgpPeerKeepAlive Integer32, bgpPeerHoldTimeConfigured Integer32, bgpPeerKeepAliveConfigured Integer32, bgpPeerMinASOriginationInterval Integer32, bgpPeerMinRouteAdvertisementInterval Integer32, bgpPeerInUpdateElapsedTime Gauge32, bgpPeerAuthenticationSent TruthValue, bgpPeerAuthenticationSentCode Integer32, bgpPeerAuthenticationSentValue OCTET STRING, bgpPeerAuthenticationReceived TruthValue, bgpPeerAuthenticationReceivedCode Integer32, bgpPeerAuthenticationReceivedValue OCTET STRING } Various Authors Expires July 13, 2002 [Page 10]Internet Draft BGP-MIB v2 July 13, 2001 bgpPeerIdentifier OBJECT-TYPE SYNTAX BgpIdentifier MAX-ACCESS read-only STATUS current DESCRIPTION "The BGP Identifier of this entry's BGP peer. This entry should be 0.0.0.0 unless the bgpPeerState is in the openconfirm or the established state." ::= { bgpPeerEntry 1 } bgpPeerState OBJECT-TYPE SYNTAX INTEGER { idle(1), connect(2), active(3), opensent(4), openconfirm(5), established(6) } MAX-ACCESS read-only STATUS current DESCRIPTION "The BGP peer connection state." ::= { bgpPeerEntry 2 } bgpPeerAdminStatus OBJECT-TYPE SYNTAX INTEGER { stop(1), start(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "The desired state of the BGP connection. A transition from 'stop' to 'start' will cause the BGP Start Event to be generated. A transition from 'start' to 'stop' will cause the BGP Stop Event to be generated. This parameter can be used to restart BGP peer connections. Care should be used in providing write access to this object without adequate authentication." ::= { bgpPeerEntry 3 } Various Authors Expires July 13, 2002 [Page 11]Internet Draft BGP-MIB v2 July 13, 2001 bgpPeerNegotiatedVersion OBJECT-TYPE SYNTAX Integer32 (1..255) -- jmh we may want this r/w MAX-ACCESS read-only STATUS current DESCRIPTION "The negotiated version of BGP running between the two peers." ::= { bgpPeerEntry 4 } bgpPeerLocalAddrType OBJECT-TYPE SYNTAX InetAddressType MAX-ACCESS read-only STATUS current DESCRIPTION "The address family of the local end of the peering session." ::= { bgpPeerEntry 5 } bgpPeerLocalAddr OBJECT-TYPE SYNTAX InetAddress MAX-ACCESS read-only STATUS current DESCRIPTION "The address of the local end of the peering session." ::= { bgpPeerEntry 6 } bgpPeerLocalPort OBJECT-TYPE SYNTAX Integer32 (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "The local port for the TCP connection between the BGP peers. If we're not running IP, could this be some generic value? What size is the OSI NSAP?" ::= { bgpPeerEntry 7 } bgpPeerLocalAs OBJECT-TYPE SYNTAX BgpAutonomousSystemNumber MAX-ACCESS read-only STATUS current DESCRIPTION "Some implementations of BGP can represent themselves as multiple ASs. This is the AS that this peering session is representing itself as to the remote peer." ::= { bgpPeerEntry 8 } Various Authors Expires July 13, 2002 [Page 12]Internet Draft BGP-MIB v2 July 13, 2001 bgpPeerRemoteAddrType OBJECT-TYPE SYNTAX InetAddressType MAX-ACCESS read-only STATUS current DESCRIPTION "The address family of the remote end of the peering session." ::= { bgpPeerEntry 9 } bgpPeerRemoteAddr OBJECT-TYPE SYNTAX IpAddress MAX-ACCESS read-only STATUS current DESCRIPTION "The address of the remote end of the peering session." ::= { bgpPeerEntry 10 } bgpPeerRemotePort OBJECT-TYPE SYNTAX Integer32 (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "The remote port for the TCP connection between the BGP peers. If we're not running IP, this should be a generic transport endpoint. Note that the objects bgpPeerLocalAddr, bgpPeerLocalPort, bgpPeerRemoteAddr and bgpPeerRemotePort provide the appropriate reference to the standard MIB TCP connection table. or even the ipv6 tcp MIB as in rfc2452. Is there an analog for non IP technologies?" ::= { bgpPeerEntry 11 } bgpPeerRemoteAs OBJECT-TYPE SYNTAX BgpAutonomousSystemNumber MAX-ACCESS read-only STATUS current DESCRIPTION "The remote autonomous system number." ::= { bgpPeerEntry 12 } Various Authors Expires July 13, 2002 [Page 13]Internet Draft BGP-MIB v2 July 13, 2001 bgpPeerReflectorClient OBJECT-TYPE SYNTAX INTEGER { nonClient(0), client(1), meshedClient(2) } MAX-ACCESS read-only STATUS current DESCRIPTION "This value indicates whether the given peer is a reflector client of this router, or not. A value of nonClient indicates that this peer is not a reflector client. A value of client indicates that this peer is a reflector client that is not fully meshed with other reflector clients. A value of meshedClient indicates that the peer is a reflector client and is fully meshed with all other reflector clients." REFERENCE "RFC 2796 - BGP Route Reflection"
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -