librenms/mibs/ruckus/RUCKUS-SWINFO-MIB
Tony Murray 941037e44e
Convert OS discovery to new style (#12099)
* terra

* airos

* port cisco os polling
old wwan polling was broken and deprecated anyway

* enterasys

* Brother, a few changes

* AW Plus

* Fabos

* set expected test data

* 3com

* Adva FSP150

* advantech

* airos-af

* aix

* akcp

* allied

* allworx and missed mibs

* anyos

* fixup some zyxel shared stuffs
zywall graph polling

* aos

* apc

* apex

* apsoluteos

* fix copyrights

* arris

* arris

* aruba-instant

* ArubaOS

* Ascom

* asuswrt-merlin, ats

* audiocodes

* avocent

* avtech

* barracuda

* binox

* boss

* canonprinter

* cdata

* ceraos

* ciena-waveserver

* fix 3com

* fix airos

* fix brother yaml?

* fix aos more

* fix and improve apc

* fix arista test data

* yaml discovery (basic)

* cimc

* mib not used

* remove old discovery file

* ciscosat

* ciscosb fixes + improvements

* comware

* ctm

* cumulus

* cxr-ts

* cyberoam-utm

* cyberpower

* dahua-nvr

* dasan-nos

* datadomain

* dcn-software and fallback oids

* dd-wrt

* dell-laser

* d*

* e* and location

* forti, post processing, oid coalescing

* Freebsd array of sysDescr regex

* finish f*

* g*

* h*

* i* WIP

* i*

* Junos

* j*

* k*

* unix refactor previous to yaml more
inject $device

* fixes

* fixes

* l*

* m*

* n* ability to set other fields in regex
tnmsne polling to eloquent

* o*

* p*

* q* + bonus calix

* r*

* s* WIP

* s*

* t*

* u*

* v*
rework vrp to yaml (hybrid)

* w*

* x*

* z*

* a* easy no-data

* fixes

* style fixes

* missed ApexPlus

* fix signature

* Add missing location data

* rename getDevice functions

* add new cisco ftd data

* update docs

* revert sill snmp format

* fix snmp options

* update for new smartax test data

* rebase dsm

* fix voss
2020-09-18 15:12:07 +02:00

139 lines
3.0 KiB
Plaintext

--
-- Copyright (c) 2010 by Ruckus Wireless, Inc.
-- All Rights Reserved
--
RUCKUS-SWINFO-MIB DEFINITIONS ::= BEGIN
IMPORTS
ruckusCommonSwInfoModule
FROM RUCKUS-ROOT-MIB
DateAndTime,
DisplayString,
TruthValue
FROM SNMPv2-TC
OBJECT-GROUP,
MODULE-COMPLIANCE
FROM SNMPv2-CONF
MODULE-IDENTITY,
OBJECT-TYPE,
Unsigned32
FROM SNMPv2-SMI;
ruckusSwInfoMIB MODULE-IDENTITY
LAST-UPDATED "201010150800Z"
ORGANIZATION "Ruckus Wireless Inc."
CONTACT-INFO
"Ruckus Wireless Inc.
Postal:
880 W Maude Ave
Sunnyvale, CA 94085
USA
EMail: support@ruckuswireless.com
Phone: +1-650-265-4200"
DESCRIPTION
"This is the MIB Module for representing the software Information
objects."
::= { ruckusCommonSwInfoModule 1 }
-- Groups
--
ruckusSwInfoObjects OBJECT IDENTIFIER ::= { ruckusSwInfoMIB 1 }
ruckusSwInfo OBJECT IDENTIFIER ::= { ruckusSwInfoObjects 1 }
ruckusSwInfoEvents OBJECT IDENTIFIER ::= { ruckusSwInfoMIB 2 }
-- Software Revision Information
--
ruckusSwRevTable OBJECT-TYPE
SYNTAX SEQUENCE OF RuckusSwRevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table maintains all the software revision information.
This table is used to activate the inactive software."
::= { ruckusSwInfo 1 }
ruckusSwRevEntry OBJECT-TYPE
SYNTAX RuckusSwRevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each software revision entry."
INDEX {
ruckusSwRevIndex }
::= { ruckusSwRevTable 1 }
RuckusSwRevEntry ::= SEQUENCE {
ruckusSwRevIndex INTEGER,
ruckusSwRevName DisplayString,
ruckusSwRevision DisplayString,
ruckusSwRevSize Unsigned32,
ruckusSwRevStatus INTEGER }
ruckusSwRevIndex OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an index into the SoftwareRev Table. This table
contains two entries for active and inactive respectively."
::= { ruckusSwRevEntry 1 }
ruckusSwRevName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the file."
::= { ruckusSwRevEntry 2 }
ruckusSwRevision OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The software revision of the file."
::= { ruckusSwRevEntry 3 }
ruckusSwRevSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the file in kilo bytes (KB=2**10, rounded up)."
::= { ruckusSwRevEntry 4 }
ruckusSwRevStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
active(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates the current state of the software.
This may either be active (currently running), or
inactive."
::= { ruckusSwRevEntry 5 }
-- Conformance & Compliances
--
END