librenms/mibs/linksys/LINKSYS-SpecialBpdu-MIB
PipoCanaja 36e709ebab Improved Linksys support, including POE (#10075)
Fixes #9718 

This PR adds POE graphs, even if not all the values that are polled on other OSes are available on this one.  

DO NOT DELETE THIS TEXT

#### Please note

> Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting.

- [X] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/)

#### Testers

If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 10075`
After you are done testing, you can remove the changes with `./scripts/github-remove`.  If there are schema changes, you can ask on discord how to revert.
2019-04-09 20:32:57 +01:00

167 lines
5.0 KiB
Plaintext

LINKSYS-SpecialBpdu-MIB DEFINITIONS ::= BEGIN
-- Title: Linksys Switch Interfaces Private
-- Version: 7.50
-- Date: 07 July 2009
IMPORTS
ifIndex FROM IF-MIB
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
RowStatus, TruthValue, MacAddress, TEXTUAL-CONVENTION FROM SNMPv2-TC
rnd FROM LINKSYS-MIB;
rlSpecialBpdu MODULE-IDENTITY
LAST-UPDATED "200805031234Z"
ORGANIZATION "Linksys LLC."
CONTACT-INFO
"www.linksys.com/business/support"
DESCRIPTION
"<description>"
REVISION "200805031234Z"
DESCRIPTION
"The private MIB module definition Traffic Segmentation MIB."
::= { rnd 144 }
EncapType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The L2 encapsulation type. In case the entry contains MAC only,
the encapsulation will be none(1), otherwisw:
EthernetV2 (2), LLC (2) or LLC-Snap (3)"
SYNTAX INTEGER {
none(1),
ethernet-v2(2),
llc(3),
llc-snap(4)
}
Action ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Action to be taken. Bridge(1) or Discard (2)"
SYNTAX INTEGER {
bridge(1),
discard(2)
}
HwAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Configured action in the HW. Forward(1), Drop (2) or Trap(3)"
SYNTAX INTEGER {
forward(1),
drop(2),
trap(3)
}
--------------------------------------------------------------------------------
-- Special BPDU
--------------------------------------------------------------------------------
--rlSpecialBpduTable
rlSpecialBpduTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlSpecialBpduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains entries of Special BPDU configuration"
::= { rlSpecialBpdu 1 }
rlSpecialBpduEntry OBJECT-TYPE
SYNTAX RlSpecialBpduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of Special BPDU configuration table"
INDEX { rlSpecialBpduMacAddr,
rlSpecialBpduEncap,
rlSpecialBpduProtId }
::= { rlSpecialBpduTable 1 }
RlSpecialBpduEntry ::= SEQUENCE {
rlSpecialBpduMacAddr MacAddress,
rlSpecialBpduEncap EncapType,
rlSpecialBpduProtId OCTET STRING (SIZE (5)),
rlSpecialBpduAction Action,
rlSpecialBpduRowStatus RowStatus
}
rlSpecialBpduMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Reserved MAC Mc 01:80:C2:00:00:00 - 01:80:C2:00:00:2F."
::= { rlSpecialBpduEntry 1 }
rlSpecialBpduEncap OBJECT-TYPE
SYNTAX EncapType
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"L2 Encapsulation Type: Ethernet-V2, LLC or LLC-Snap."
::= { rlSpecialBpduEntry 2 }
rlSpecialBpduProtId OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (5))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Protocol ID. For Ethernet-V2: 0x600 - 0xFFFF; For LLC: 0 - 0xFFFF;
For LLC-Snap: 0 - 0xFFFFFFFFFF."
::= { rlSpecialBpduEntry 3 }
rlSpecialBpduAction OBJECT-TYPE
SYNTAX Action
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Action to be taken on the incoming frame: Discard or Bridge."
::= { rlSpecialBpduEntry 4 }
rlSpecialBpduRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of this entry."
::= { rlSpecialBpduEntry 5 }
--rlSpecialBpduHwTable
rlSpecialBpduHwTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlSpecialBpduHwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains entries of Special BPDU Hw status"
::= { rlSpecialBpdu 2 }
rlSpecialBpduHwEntry OBJECT-TYPE
SYNTAX RlSpecialBpduHwEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of Special BPDU Hw status table"
INDEX { rlSpecialBpduMacAddr }
::= { rlSpecialBpduHwTable 1 }
RlSpecialBpduHwEntry ::= SEQUENCE {
rlSpecialBpduHwAction HwAction
}
rlSpecialBpduHwAction OBJECT-TYPE
SYNTAX HwAction
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"HW action per MAC address: Forward, Drop or Trap."
::= { rlSpecialBpduHwEntry 2 }
END