mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
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.
75 lines
1.8 KiB
Plaintext
75 lines
1.8 KiB
Plaintext
LINKSYS-BaudRate-MIB DEFINITIONS ::= BEGIN
|
|
|
|
-- Title: LINKSYS LOCALIZATION ROS
|
|
-- This Private MIB supports the baudrate of the local terminal of ROS products
|
|
-- Version: 7.39
|
|
-- Date: 14 Apr 2005
|
|
|
|
|
|
|
|
IMPORTS
|
|
rnd FROM LINKSYS-MIB
|
|
OBJECT-TYPE,
|
|
MODULE-IDENTITY FROM SNMPv2-SMI;
|
|
|
|
rlRs232 MODULE-IDENTITY
|
|
LAST-UPDATED "200504140000Z"
|
|
ORGANIZATION "Linksys LLC."
|
|
CONTACT-INFO
|
|
"www.linksys.com/business/support"
|
|
DESCRIPTION
|
|
"The private MIB module definition for baudrate."
|
|
REVISION "200504140000Z"
|
|
DESCRIPTION
|
|
"Initial revision."
|
|
::= { rnd 104 }
|
|
|
|
rlRs232MibVersion OBJECT-TYPE
|
|
SYNTAX INTEGER
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"MIB's version, the current version is 1."
|
|
::= { rlRs232 1 }
|
|
|
|
rlRs232AutoBaudRateStatus OBJECT-TYPE
|
|
SYNTAX INTEGER {
|
|
enable(1),
|
|
disable(2)
|
|
}
|
|
MAX-ACCESS read-only
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Show the current Auto BaudRate status"
|
|
::= { rlRs232 2 }
|
|
|
|
rlRs232AutoBaudRateStatusAfterReset OBJECT-TYPE
|
|
SYNTAX INTEGER {
|
|
enable(1),
|
|
disable(2)
|
|
}
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Show/Set the Auto BaudRate status after reset"
|
|
::= { rlRs232 3 }
|
|
|
|
rlRs232BaudRate OBJECT-TYPE
|
|
SYNTAX INTEGER {
|
|
baud2400(1),
|
|
baud4800(2),
|
|
baud9600(3),
|
|
baud19200(4),
|
|
baud38400(5),
|
|
baud57600(6),
|
|
baud115200(7)
|
|
}
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION
|
|
"Show/Set the current Baud Rate status"
|
|
::= { rlRs232 4 }
|
|
|
|
END
|
|
|