diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/linksys/LINKSYS-SCT-MIB | |
| download | mibs-main.tar.gz mibs-main.zip | |
Diffstat (limited to 'MIBS/linksys/LINKSYS-SCT-MIB')
| -rw-r--r-- | MIBS/linksys/LINKSYS-SCT-MIB | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/MIBS/linksys/LINKSYS-SCT-MIB b/MIBS/linksys/LINKSYS-SCT-MIB new file mode 100644 index 0000000..0e33925 --- /dev/null +++ b/MIBS/linksys/LINKSYS-SCT-MIB @@ -0,0 +1,40 @@ +LINKSYS-SCT-MIB DEFINITIONS ::= BEGIN
+
+-- Title: Linksys Switch Interfaces Private
+-- Version: 7.50
+-- Date: 16 Aug 2010
+
+IMPORTS
+ OBJECT-TYPE, Counter32 FROM SNMPv2-SMI
+ TruthValue FROM SNMPv2-TC
+ rnd FROM LINKSYS-MIB;
+
+rlSctMib MODULE-IDENTITY
+ LAST-UPDATED "201008161234Z"
+ ORGANIZATION "Linksys LLC."
+ CONTACT-INFO
+ "www.linksys.com/business/support"
+ DESCRIPTION
+ "The private MIB module definition for SCT MIB."
+ ::= { rnd 203 }
+
+--rlSctCpuRateEnabled
+rlSctCpuRateEnabled OBJECT-TYPE
+ SYNTAX TruthValue
+ MAX-ACCESS read-write
+ STATUS current
+ DESCRIPTION
+ "Indication whether the counter CPU rate is enabled"
+ ::= { rlSctMib 1 }
+
+--rlSctCpuRate
+rlSctCpuRate OBJECT-TYPE
+ SYNTAX Counter32
+ MAX-ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "the amount of packets per second the CPU is handling."
+ ::= { rlSctMib 2 }
+
+END
+
|