mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
feature: Added better BGP support for Arista (#6046)
* feature: Added better BGP support for Arista
This commit is contained in:
1784
mibs/arista/ARISTA-BGP4V2-MIB
Normal file
1784
mibs/arista/ARISTA-BGP4V2-MIB
Normal file
File diff suppressed because it is too large
Load Diff
93
mibs/arista/ARISTA-BGP4V2-TC-MIB
Normal file
93
mibs/arista/ARISTA-BGP4V2-TC-MIB
Normal file
@@ -0,0 +1,93 @@
|
||||
-- extracted from draft-ietf-idr-bgp4-mibv2-tc-mib-03.txt
|
||||
-- at Tue Jul 12 06:11:02 2011
|
||||
|
||||
-- Renumbered to sit underneath Arista's enterprise.
|
||||
|
||||
ARISTA-BGP4V2-TC-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY FROM SNMPv2-SMI
|
||||
aristaExperiment FROM ARISTA-SMI-MIB
|
||||
TEXTUAL-CONVENTION FROM SNMPv2-TC;
|
||||
|
||||
aristaBgp4V2TC MODULE-IDENTITY
|
||||
LAST-UPDATED "201408150000Z"
|
||||
ORGANIZATION "Arista Networks, Inc."
|
||||
CONTACT-INFO
|
||||
"Arista Networks, Inc.
|
||||
|
||||
Postal: 5453 Great America Parkway
|
||||
Santa Clara, CA 95054
|
||||
|
||||
Tel: +1 408 547-5500
|
||||
|
||||
E-mail: snmp@arista.com"
|
||||
DESCRIPTION
|
||||
"Textual conventions for BGP-4.
|
||||
This version was published in
|
||||
draft-ietf-idr-bgp4-mibv2-13, and
|
||||
modified to be homed inside the Arista
|
||||
enterprise. There were no other
|
||||
modifications.
|
||||
|
||||
|
||||
Copyright (C) The IETF Trust (2011). This
|
||||
version of this MIB module is part of
|
||||
draft-ietf-idr-bgp4-mibv2-13.txt;
|
||||
see the draft itself for full legal notices."
|
||||
|
||||
REVISION "201408150000Z"
|
||||
DESCRIPTION
|
||||
"Updated postal and e-mail addresses."
|
||||
REVISION "201210190000Z"
|
||||
DESCRIPTION
|
||||
"Renumbered inside the Arista enterprise space."
|
||||
REVISION "201101170000Z"
|
||||
DESCRIPTION
|
||||
"Initial version."
|
||||
::= { aristaExperiment 2 }
|
||||
|
||||
--
|
||||
-- Textual Conventions
|
||||
--
|
||||
|
||||
AristaBgp4V2IdentifierTC ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "1d."
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The representation of a BGP Identifier. BGP Identifiers
|
||||
are presented in the received network byte order.
|
||||
|
||||
The BGP Identifier is displayed as if it is an IP address,
|
||||
even if it would be an illegal one."
|
||||
REFERENCE
|
||||
"RFC 4273, Section 4.2"
|
||||
SYNTAX OCTET STRING(SIZE (4))
|
||||
|
||||
AristaBgp4V2AddressFamilyIdentifierTC ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The representation of a BGP AFI. The value of this object
|
||||
should be restricted to be between the values of 0 and
|
||||
65535."
|
||||
REFERENCE
|
||||
"RFC 4760, Section 3"
|
||||
SYNTAX INTEGER {
|
||||
ipv4(1),
|
||||
ipv6(2)
|
||||
}
|
||||
|
||||
AristaBgp4V2SubsequentAddressFamilyIdentifierTC ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The representation of a BGP SAFI"
|
||||
REFERENCE
|
||||
"RFC 4760, Section 3. The value of this object should be
|
||||
restricted to be between the values of 0 and 255."
|
||||
SYNTAX INTEGER {
|
||||
unicast(1),
|
||||
multicast(2),
|
||||
mpls(4)
|
||||
}
|
||||
|
||||
END
|
68
mibs/arista/ARISTA-SMI-MIB
Normal file
68
mibs/arista/ARISTA-SMI-MIB
Normal file
@@ -0,0 +1,68 @@
|
||||
-- ARISTA-SMI_MIB: arista structure of management information
|
||||
-- Copyright (c) 2008 Arista Networks, Inc. All rights reserved.
|
||||
|
||||
ARISTA-SMI-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-IDENTITY,
|
||||
enterprises
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
arista MODULE-IDENTITY
|
||||
LAST-UPDATED "201408150000Z"
|
||||
ORGANIZATION "Arista Networks, Inc."
|
||||
CONTACT-INFO
|
||||
"Arista Networks, Inc.
|
||||
|
||||
Postal: 5453 Great America Parkway
|
||||
Santa Clara, CA 95054
|
||||
|
||||
Tel: +1 408 547-5500
|
||||
|
||||
E-mail: snmp@arista.com"
|
||||
DESCRIPTION
|
||||
"The Structure of Management Information for the
|
||||
Arista Networks enterprise."
|
||||
REVISION "201408150000Z"
|
||||
DESCRIPTION
|
||||
"Updated postal and e-mail addresses"
|
||||
REVISION "201103311300Z"
|
||||
DESCRIPTION
|
||||
"Updated postal address and telephone"
|
||||
REVISION "200810271830Z"
|
||||
DESCRIPTION
|
||||
"Initial version."
|
||||
::= { enterprises 30065 } -- assigned by IANA
|
||||
|
||||
aristaProducts OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"aristaProducts is the root object identifier from
|
||||
which sysObjectID values are assigned. Values are
|
||||
defined in ARISTA-PRODUCTS-MIB."
|
||||
::= { arista 1 }
|
||||
|
||||
aristaModules OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"aristaModules provides a root object identifier
|
||||
from which MODULE-IDENTITY values may be assigned."
|
||||
::= { arista 2 }
|
||||
|
||||
aristaMibs OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"aristaMibs provides a root object identifier
|
||||
for management-related MIBs."
|
||||
::= { arista 3 }
|
||||
|
||||
aristaExperiment OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"aristaExperiment provides a root object identifier
|
||||
for experimental MIBs. The structure of information
|
||||
for these MIBs can not be guaranteed between releases."
|
||||
::= { arista 4 }
|
||||
|
||||
END
|
Reference in New Issue
Block a user