initial commit; version 22.5.12042
This commit is contained in:
1298
mibs/infinet/AQUAMINT-MIB
Normal file
1298
mibs/infinet/AQUAMINT-MIB
Normal file
File diff suppressed because it is too large
Load Diff
267
mibs/infinet/AQUAQM-MIB
Normal file
267
mibs/infinet/AQUAQM-MIB
Normal file
@ -0,0 +1,267 @@
|
||||
AQUAQM-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
wanflex
|
||||
FROM INFINET-MIB
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
Counter32,
|
||||
Integer32,
|
||||
IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
aquaqmMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201102160826Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Andrew Nesheret
|
||||
|
||||
Postal: Infinet Wireless Ltd.,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: A.Nesheret@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing various WanFlex options."
|
||||
REVISION "201102160826Z"
|
||||
DESCRIPTION
|
||||
"HTB branch added."
|
||||
REVISION "200711081255Z"
|
||||
DESCRIPTION
|
||||
"Contact information changed."
|
||||
REVISION "200408161910Z"
|
||||
DESCRIPTION
|
||||
"The mib module, containing Quality-of-Service manager statistics."
|
||||
::= { wanflex 4 }
|
||||
|
||||
|
||||
qmTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF QmEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of Quality Manager statistics by QoS channel number"
|
||||
::= { aquaqmMIB 1 }
|
||||
|
||||
|
||||
qmEntry OBJECT-TYPE
|
||||
SYNTAX QmEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains one channel statistics"
|
||||
INDEX {
|
||||
qmChannel }
|
||||
::= { qmTable 1 }
|
||||
|
||||
|
||||
QmEntry ::= SEQUENCE {
|
||||
|
||||
qmChannel INTEGER,
|
||||
qmPriority INTEGER,
|
||||
qmClass INTEGER,
|
||||
qmTo IpAddress,
|
||||
qmMax INTEGER,
|
||||
qmMaxPps INTEGER,
|
||||
qmCur Integer32,
|
||||
qmCurPps Integer32,
|
||||
qmPackets Counter32,
|
||||
qmPacketsDropped Counter32,
|
||||
qmBytes Counter32,
|
||||
qmBytesDropped Counter32 }
|
||||
|
||||
|
||||
qmChannel OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..200)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Quality Manager channel number, ranging from 1 to 200"
|
||||
::= { qmEntry 1 }
|
||||
|
||||
|
||||
qmPriority OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..16)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Priority setting for this channel, where 0 - highest priority,
|
||||
16 - lowest priority."
|
||||
::= { qmEntry 2 }
|
||||
|
||||
|
||||
qmClass OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..64)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Abstract service class for this channel, where 0 - no specific
|
||||
class, 1-64 - class number."
|
||||
::= { qmEntry 3 }
|
||||
|
||||
|
||||
qmTo OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The address, all this class traffic is redirected to."
|
||||
::= { qmEntry 4 }
|
||||
|
||||
|
||||
qmMax OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..10000)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum bandwidth for this channel, where values 10-10000 are
|
||||
bandwidth limited to in kbits per second, 0 - no limit for
|
||||
this channel."
|
||||
::= { qmEntry 5 }
|
||||
|
||||
|
||||
qmMaxPps OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum packets per second rate for this channel, where values
|
||||
50-2147483647 are the limit, 0 - no limit for this channel."
|
||||
::= { qmEntry 6 }
|
||||
|
||||
|
||||
qmCur OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Current flow for this channel in kbits per second."
|
||||
::= { qmEntry 7 }
|
||||
|
||||
|
||||
qmCurPps OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Current flow for this channel in packets per second."
|
||||
::= { qmEntry 8 }
|
||||
|
||||
|
||||
qmPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of packets tried to pass thorough this channel."
|
||||
::= { qmEntry 9 }
|
||||
|
||||
|
||||
qmPacketsDropped OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets dropped by this channel."
|
||||
::= { qmEntry 10 }
|
||||
|
||||
|
||||
qmBytes OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of octets tried to pass thorough this channel."
|
||||
::= { qmEntry 11 }
|
||||
|
||||
|
||||
qmBytesDropped OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of octets dropped by this channel."
|
||||
::= { qmEntry 12 }
|
||||
|
||||
|
||||
qmHTB OBJECT IDENTIFIER ::= { aquaqmMIB 2 }
|
||||
|
||||
qmHtbCurrentQL OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Current number of packets in all packet queues
|
||||
managed by Hierarchical Token Bucket algorithm."
|
||||
::= { qmHTB 1 }
|
||||
|
||||
|
||||
qmHtbMaxQL OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum known total number of packets in all HTB
|
||||
packet queues since last qm statistics clearing."
|
||||
::= { qmHTB 2 }
|
||||
|
||||
|
||||
qmHtbSystemDrop OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets dropped due to accidental overflow
|
||||
of global transmission queue while enqueuing the packets
|
||||
shaped by Hierarchical Token Bucket algorithm."
|
||||
::= { qmHTB 3 }
|
||||
|
||||
|
||||
aquaqmMIBConformance OBJECT IDENTIFIER ::= { aquaqmMIB 3 }
|
||||
|
||||
aquaqmMIBCompliances OBJECT IDENTIFIER ::= { aquaqmMIBConformance 1 }
|
||||
|
||||
aquaqmMIBGroups OBJECT IDENTIFIER ::= { aquaqmMIBConformance 2 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
aquaqmMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for Infinet wireless routers."
|
||||
MODULE
|
||||
MANDATORY-GROUPS {
|
||||
qmGroup }
|
||||
::= { aquaqmMIBCompliances 1 }
|
||||
|
||||
-- units of conformance
|
||||
|
||||
qmGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
qmChannel,
|
||||
qmPriority,
|
||||
qmClass,
|
||||
qmTo,
|
||||
qmMax,
|
||||
qmMaxPps,
|
||||
qmCur,
|
||||
qmCurPps,
|
||||
qmPackets,
|
||||
qmPacketsDropped,
|
||||
qmBytes,
|
||||
qmBytesDropped,
|
||||
qmHtbCurrentQL,
|
||||
qmHtbMaxQL,
|
||||
qmHtbSystemDrop }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The qm group of objects provided for observation of various
|
||||
QoS statistics."
|
||||
::= { aquaqmMIBGroups 1 }
|
||||
|
||||
END
|
869
mibs/infinet/AQUARADIO-MIB
Normal file
869
mibs/infinet/AQUARADIO-MIB
Normal file
@ -0,0 +1,869 @@
|
||||
AQUARADIO-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
DisplayString,
|
||||
MacAddress,
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
ifIndex
|
||||
FROM IF-MIB
|
||||
wanflex
|
||||
FROM INFINET-MIB
|
||||
sysSerialNumber,
|
||||
sysTrapSequence
|
||||
FROM AQUASYSTEM-MIB
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
NOTIFICATION-TYPE,
|
||||
Counter32,
|
||||
Integer32,
|
||||
Unsigned32
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
NOTIFICATION-GROUP,
|
||||
MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
aquaradioMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201409220556Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Andrew Nesheret
|
||||
|
||||
Postal: Infinet Wireless Ltd,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: support@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module for Revolution radio modules. Based on IEEE802dot11
|
||||
mib module."
|
||||
REVISION "201409220556Z"
|
||||
DESCRIPTION
|
||||
"irrelevant(0) value added to rmModulation."
|
||||
REVISION "201307260427Z"
|
||||
DESCRIPTION
|
||||
"dot11OperationTable and dot11CountersTable removed."
|
||||
REVISION "201304081140Z"
|
||||
DESCRIPTION
|
||||
"radioNotifications added"
|
||||
REVISION "201304081059Z"
|
||||
DESCRIPTION
|
||||
"rmSelectChannel added in rmPropertiesTable"
|
||||
REVISION "200911101156Z"
|
||||
DESCRIPTION
|
||||
"Power in tenth dBm."
|
||||
REVISION "200910300838Z"
|
||||
DESCRIPTION
|
||||
"Added RF Bandwidth"
|
||||
REVISION "200905121122Z"
|
||||
DESCRIPTION
|
||||
"Display HINT for rSID"
|
||||
REVISION "200711081309Z"
|
||||
DESCRIPTION
|
||||
"Contact Info changed, SMI syntax corrected."
|
||||
REVISION "200410111628Z"
|
||||
DESCRIPTION
|
||||
"The mib module for Revolution radio modules. Based on IEEE802dot11
|
||||
mib module."
|
||||
::= { wanflex 2 }
|
||||
|
||||
|
||||
RadioSID ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "x"
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Represents Radio System Identifier"
|
||||
SYNTAX Integer32
|
||||
|
||||
|
||||
rmPropertiesTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF RmPropertiesEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains various radiomodule operation mode settings."
|
||||
::= { aquaradioMIB 1 }
|
||||
|
||||
|
||||
rmPropertiesEntry OBJECT-TYPE
|
||||
SYNTAX RmPropertiesEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the rmPropertiesTable Table."
|
||||
INDEX {
|
||||
rmPropertiesIfIndex }
|
||||
::= { rmPropertiesTable 1 }
|
||||
|
||||
|
||||
RmPropertiesEntry ::= SEQUENCE {
|
||||
|
||||
rmPropertiesIfIndex Integer32,
|
||||
rmType OCTET STRING,
|
||||
rmFrequency Integer32,
|
||||
rmBitRate Integer32,
|
||||
rmSid RadioSID,
|
||||
rmCurPowerLevel Integer32,
|
||||
rmModulation INTEGER,
|
||||
rmAntenna INTEGER,
|
||||
rmDistance Integer32,
|
||||
rmBurst INTEGER,
|
||||
rmLongRange INTEGER,
|
||||
rmPowerCtl INTEGER,
|
||||
rmTXRT Integer32,
|
||||
rmTXVRT Integer32,
|
||||
rmPTP INTEGER,
|
||||
rmWOCD INTEGER,
|
||||
rmBCsid INTEGER,
|
||||
rmDistanceAuto INTEGER,
|
||||
rmNoiseFloor Integer32,
|
||||
rmBandwidth Unsigned32,
|
||||
rmChainMode INTEGER,
|
||||
rmSelectChannel INTEGER }
|
||||
|
||||
|
||||
rmPropertiesIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies the interface to
|
||||
which this entry is applicable. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { rmPropertiesEntry 1 }
|
||||
|
||||
|
||||
rmType OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radiomodule type."
|
||||
::= { rmPropertiesEntry 2 }
|
||||
|
||||
|
||||
rmFrequency OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"KHz"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates radiomodule's operating frequency in KHz."
|
||||
::= { rmPropertiesEntry 3 }
|
||||
|
||||
|
||||
rmBitRate OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates radiomodule's current bitrate in kbits
|
||||
per second."
|
||||
::= { rmPropertiesEntry 4 }
|
||||
|
||||
|
||||
rmSid OBJECT-TYPE
|
||||
SYNTAX RadioSID
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates radiomodule's sid."
|
||||
::= { rmPropertiesEntry 5 }
|
||||
|
||||
|
||||
rmCurPowerLevel OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"tenth dBm."
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates radiomodule's power output level (tenth dBm)."
|
||||
::= { rmPropertiesEntry 6 }
|
||||
|
||||
|
||||
rmModulation OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
irrelevant(0),
|
||||
cck(1),
|
||||
mok(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates radiomodule's modulation type."
|
||||
::= { rmPropertiesEntry 7 }
|
||||
|
||||
|
||||
rmAntenna OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
right(1),
|
||||
left(2),
|
||||
div(3),
|
||||
both(4),
|
||||
txr(5),
|
||||
txl(6) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value defines what antenna is used for receiving
|
||||
and transmission."
|
||||
::= { rmPropertiesEntry 8 }
|
||||
|
||||
|
||||
rmDistance OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"kilometers"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates radiomodule's distance parameter
|
||||
in kilometers"
|
||||
::= { rmPropertiesEntry 9 }
|
||||
|
||||
|
||||
rmBurst OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates whether burst mode support is turned on
|
||||
or off. The burst mode will be active when using MINT protocol
|
||||
and burst mode support is turned on both base station
|
||||
and CPE."
|
||||
::= { rmPropertiesEntry 10 }
|
||||
|
||||
|
||||
rmLongRange OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates whether long range mode is turned
|
||||
on or off. Long range mode allows to establish links
|
||||
at long distances. Regretfully, implementation of 802.11b
|
||||
protocol at Aironet/Cisco radiomodules is intended for use
|
||||
at short distances and not allows to establish stable links
|
||||
at more than 10-15 km. Long range mode obviates this
|
||||
limitations, allowing any link distances as long as line
|
||||
of sight is maintained."
|
||||
::= { rmPropertiesEntry 11 }
|
||||
|
||||
|
||||
rmPowerCtl OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates whether automatic power control mode
|
||||
is turned on or off."
|
||||
::= { rmPropertiesEntry 12 }
|
||||
|
||||
|
||||
rmTXRT OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This attribute shall indicate the maximum number of
|
||||
transmission attempts of a unicast packet that shall be made
|
||||
before a failure condition is indicated. The default value
|
||||
of this attribute is 16."
|
||||
::= { rmPropertiesEntry 13 }
|
||||
|
||||
|
||||
rmTXVRT OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This attribute shall indicate the maximum number of
|
||||
transmission attempts of a unicast packet that shall be made
|
||||
before a failure condition is indicated, when voice mode
|
||||
is active. Voice mode is activated automatically when VoIP
|
||||
traffic appears. The default value of this attribute is 5."
|
||||
::= { rmPropertiesEntry 14 }
|
||||
|
||||
|
||||
rmPTP OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Turns on or off maximum air utilization mode. Can be used
|
||||
for high-speed point-to-point link, unsuitable for cell
|
||||
organization. (For 2Mbit radiomodules or radiomodules
|
||||
in LongRange mode only)"
|
||||
::= { rmPropertiesEntry 15 }
|
||||
|
||||
|
||||
rmWOCD OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Turns on or off WOCD(without carrier detect) mode. Can be used
|
||||
on base station with marker access only. Allows to decrease
|
||||
retry packets number and therefore increase the performance
|
||||
of the cell. (For 2Mbit or 54Mbit radiomodules only)"
|
||||
::= { rmPropertiesEntry 16 }
|
||||
|
||||
|
||||
rmBCsid OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Turns on or off sid broadcast mode for greater security of the
|
||||
network. When sid broadcast is turned off, all devices
|
||||
in the network must have sid value set explicitly."
|
||||
::= { rmPropertiesEntry 17 }
|
||||
|
||||
|
||||
rmDistanceAuto OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Turns on or off automatic adjustment of distance parameter."
|
||||
::= { rmPropertiesEntry 18 }
|
||||
|
||||
|
||||
rmNoiseFloor OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current noise floor in dBm."
|
||||
::= { rmPropertiesEntry 19 }
|
||||
|
||||
|
||||
rmBandwidth OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
UNITS
|
||||
"KHz"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Current radio channel size in KHz."
|
||||
::= { rmPropertiesEntry 20 }
|
||||
|
||||
|
||||
rmChainMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
miso(1),
|
||||
mimo(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio channel technology."
|
||||
::= { rmPropertiesEntry 21 }
|
||||
|
||||
|
||||
rmSelectChannel OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
reading-stub(0),
|
||||
new(1),
|
||||
renew(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"0 is always returned for GET operations.
|
||||
For SET operation:
|
||||
1 means 'change frequency if better choice exists,
|
||||
else keep current value';
|
||||
2 means 'change frequency in any case,
|
||||
then use the best choice among the remaining values'"
|
||||
::= { rmPropertiesEntry 22 }
|
||||
|
||||
|
||||
rmPowerLevelsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF RmPowerLevelsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains radiomodule power level capabilities."
|
||||
::= { aquaradioMIB 4 }
|
||||
|
||||
|
||||
rmPowerLevelsEntry OBJECT-TYPE
|
||||
SYNTAX RmPowerLevelsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the rmPowerLevelsTable table."
|
||||
INDEX {
|
||||
rmPowerLevelsIfIndex,
|
||||
rmPowerLevelsValIndex }
|
||||
::= { rmPowerLevelsTable 1 }
|
||||
|
||||
|
||||
RmPowerLevelsEntry ::= SEQUENCE {
|
||||
|
||||
rmPowerLevelsIfIndex Integer32,
|
||||
rmPowerLevelsValIndex Integer32,
|
||||
rmPowerLevelsPower Integer32 }
|
||||
|
||||
|
||||
rmPowerLevelsIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies the interface to
|
||||
which this entry is applicable. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { rmPowerLevelsEntry 1 }
|
||||
|
||||
|
||||
rmPowerLevelsValIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies one of possible
|
||||
values of power level for interface selected by
|
||||
rmPowerLevelsIfIndex."
|
||||
::= { rmPowerLevelsEntry 2 }
|
||||
|
||||
|
||||
rmPowerLevelsPower OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"tenth dBm."
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates possible power level (tenth dBm)."
|
||||
::= { rmPowerLevelsEntry 3 }
|
||||
|
||||
|
||||
rmFrequenciesTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF RmFrequenciesEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains radiomodule frequency capabilities."
|
||||
::= { aquaradioMIB 5 }
|
||||
|
||||
|
||||
rmFrequenciesEntry OBJECT-TYPE
|
||||
SYNTAX RmFrequenciesEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the rmFrequenciesTable table."
|
||||
INDEX {
|
||||
rmFrequenciesIfIndex,
|
||||
rmFrequenciesValIndex }
|
||||
::= { rmFrequenciesTable 1 }
|
||||
|
||||
|
||||
RmFrequenciesEntry ::= SEQUENCE {
|
||||
|
||||
rmFrequenciesIfIndex Integer32,
|
||||
rmFrequenciesValIndex Integer32,
|
||||
rmFrequenciesFreq Integer32 }
|
||||
|
||||
|
||||
rmFrequenciesIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies the interface to
|
||||
which this entry is applicable. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { rmFrequenciesEntry 1 }
|
||||
|
||||
|
||||
rmFrequenciesValIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies one of possible
|
||||
values of frequency for interface selected by
|
||||
rmFrequenciesIfIndex."
|
||||
::= { rmFrequenciesEntry 2 }
|
||||
|
||||
|
||||
rmFrequenciesFreq OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates possible frequency in MHz."
|
||||
::= { rmFrequenciesEntry 3 }
|
||||
|
||||
|
||||
rmBitratesTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF RmBitratesEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains radiomodule bitrate capabilities."
|
||||
::= { aquaradioMIB 6 }
|
||||
|
||||
|
||||
rmBitratesEntry OBJECT-TYPE
|
||||
SYNTAX RmBitratesEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the rmBitratesTable table."
|
||||
INDEX {
|
||||
rmBitratesIfIndex,
|
||||
rmBitratesValIndex }
|
||||
::= { rmBitratesTable 1 }
|
||||
|
||||
|
||||
RmBitratesEntry ::= SEQUENCE {
|
||||
|
||||
rmBitratesIfIndex Integer32,
|
||||
rmBitratesValIndex Integer32,
|
||||
rmBitratesBitrate Integer32 }
|
||||
|
||||
|
||||
rmBitratesIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies the interface to
|
||||
which this entry is applicable. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { rmBitratesEntry 1 }
|
||||
|
||||
|
||||
rmBitratesValIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies one of possible
|
||||
values of bitrate for interface selected by
|
||||
rmBitratesIfIndex."
|
||||
::= { rmBitratesEntry 2 }
|
||||
|
||||
|
||||
rmBitratesBitrate OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates possible bitrate in bits per second."
|
||||
::= { rmBitratesEntry 3 }
|
||||
|
||||
|
||||
radioStatTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF RadioStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of packet statistics for each of the links
|
||||
(by MAC address)."
|
||||
::= { aquaradioMIB 7 }
|
||||
|
||||
|
||||
radioStatEntry OBJECT-TYPE
|
||||
SYNTAX RadioStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains statistics for one link (MAC address)."
|
||||
INDEX {
|
||||
radioStatMacAddress }
|
||||
::= { radioStatTable 1 }
|
||||
|
||||
|
||||
RadioStatEntry ::= SEQUENCE {
|
||||
|
||||
radioStatMacAddress OCTET STRING,
|
||||
radioStatPackets Counter32,
|
||||
radioStatRepeats Counter32,
|
||||
radioStatRepeatPackets Counter32,
|
||||
radioStatBytes Counter32,
|
||||
radioStatRepeatBytes Counter32,
|
||||
radioStatErrors Counter32,
|
||||
radioStatRecvPackets Counter32,
|
||||
radioStatRecvBytes Counter32 }
|
||||
|
||||
|
||||
radioStatMacAddress OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE (6))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"MAC address of the rf interface link is established with."
|
||||
::= { radioStatEntry 1 }
|
||||
|
||||
|
||||
radioStatPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of unique packets sent to this MAC address."
|
||||
::= { radioStatEntry 2 }
|
||||
|
||||
|
||||
radioStatRepeats OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of repeat packets tries sent to this MAC address."
|
||||
::= { radioStatEntry 3 }
|
||||
|
||||
|
||||
radioStatRepeatPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of unique repeat packets sent to this MAC address."
|
||||
::= { radioStatEntry 4 }
|
||||
|
||||
|
||||
radioStatBytes OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes in unique packets sent to this MAC address."
|
||||
::= { radioStatEntry 5 }
|
||||
|
||||
|
||||
radioStatRepeatBytes OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes in repeat packets tries sent to this MAC address."
|
||||
::= { radioStatEntry 6 }
|
||||
|
||||
|
||||
radioStatErrors OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of errors when attempted to send a packet to this
|
||||
MAC address."
|
||||
::= { radioStatEntry 7 }
|
||||
|
||||
|
||||
radioStatRecvPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of unique packets received from this MAC address."
|
||||
::= { radioStatEntry 8 }
|
||||
|
||||
|
||||
radioStatRecvBytes OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes in unique packets received from this MAC address."
|
||||
::= { radioStatEntry 9 }
|
||||
|
||||
|
||||
rmBandsTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF RmBandsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This table contains radiomodule possible bandwidths."
|
||||
::= { aquaradioMIB 8 }
|
||||
|
||||
|
||||
rmBandsEntry OBJECT-TYPE
|
||||
SYNTAX RmBandsEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the rmBandsTable."
|
||||
INDEX {
|
||||
rmBandsIfIndex,
|
||||
rmBandsValIndex }
|
||||
::= { rmBandsTable 1 }
|
||||
|
||||
|
||||
RmBandsEntry ::= SEQUENCE {
|
||||
|
||||
rmBandsIfIndex Integer32,
|
||||
rmBandsValIndex Integer32,
|
||||
rmBandsBand Integer32 }
|
||||
|
||||
|
||||
rmBandsIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies the interface to
|
||||
which this entry is applicable. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { rmBandsEntry 1 }
|
||||
|
||||
|
||||
rmBandsValIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The index value which uniquely identifies one of possible
|
||||
values of bandwidth for interface selected by
|
||||
rmBandsIfIndex."
|
||||
::= { rmBandsEntry 2 }
|
||||
|
||||
|
||||
rmBandsBand OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"Hz"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates one of possible bandwidth in Hz for
|
||||
interface selected by rmBandsIfIndex."
|
||||
::= { rmBandsEntry 3 }
|
||||
|
||||
|
||||
aquaradioMIBNotificationsPrefix OBJECT IDENTIFIER ::= { aquaradioMIB 17 }
|
||||
|
||||
aquaradioMIBnotifications OBJECT IDENTIFIER ::= { aquaradioMIBNotificationsPrefix 0 }
|
||||
|
||||
|
||||
radioFreqChanged NOTIFICATION-TYPE
|
||||
OBJECTS {
|
||||
sysSerialNumber,
|
||||
sysTrapSequence,
|
||||
rmFrequency,
|
||||
rmPropertiesIfIndex}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A radioFreqChangedNotification is sent when frequency is changed on radio interface."
|
||||
::= { aquaradioMIBnotifications 1 }
|
||||
|
||||
|
||||
radioBandChanged NOTIFICATION-TYPE
|
||||
OBJECTS {
|
||||
sysSerialNumber,
|
||||
sysTrapSequence,
|
||||
rmBandwidth,
|
||||
rmPropertiesIfIndex}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A radioBandChangedNotification is sent when bandwidth is changed on radio interface."
|
||||
::= { aquaradioMIBnotifications 2 }
|
||||
|
||||
aquaradioMIBConformance OBJECT IDENTIFIER ::= { aquaradioMIB 18 }
|
||||
|
||||
aquaradioMIBCompliances OBJECT IDENTIFIER ::= { aquaradioMIBConformance 1 }
|
||||
|
||||
aquaradioMIBGroups OBJECT IDENTIFIER ::= { aquaradioMIBConformance 2 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
aquaradioMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for Infinet wireless routers."
|
||||
|
||||
MODULE
|
||||
MANDATORY-GROUPS {
|
||||
radioGroup }
|
||||
|
||||
::= { aquaradioMIBCompliances 1 }
|
||||
|
||||
-- units of conformance
|
||||
|
||||
radioGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
rmPropertiesIfIndex,
|
||||
rmType,
|
||||
rmFrequency,
|
||||
rmBitRate,
|
||||
rmSid,
|
||||
rmCurPowerLevel,
|
||||
rmModulation,
|
||||
rmAntenna,
|
||||
rmDistance,
|
||||
rmBurst,
|
||||
rmLongRange,
|
||||
rmPowerCtl,
|
||||
rmTXRT,
|
||||
rmTXVRT,
|
||||
rmPTP,
|
||||
rmWOCD,
|
||||
rmBCsid,
|
||||
rmPowerLevelsIfIndex,
|
||||
rmPowerLevelsValIndex,
|
||||
rmPowerLevelsPower,
|
||||
rmFrequenciesIfIndex,
|
||||
rmFrequenciesValIndex,
|
||||
rmFrequenciesFreq,
|
||||
rmBitratesIfIndex,
|
||||
rmBitratesValIndex,
|
||||
rmBitratesBitrate,
|
||||
radioStatMacAddress,
|
||||
radioStatPackets,
|
||||
radioStatRepeats,
|
||||
radioStatRepeatPackets,
|
||||
radioStatBytes,
|
||||
radioStatRepeatBytes,
|
||||
radioStatErrors,
|
||||
radioStatRecvPackets,
|
||||
radioStatRecvBytes,
|
||||
rmDistanceAuto,
|
||||
rmNoiseFloor,
|
||||
rmBandwidth,
|
||||
rmChainMode,
|
||||
rmBandsIfIndex,
|
||||
rmBandsValIndex,
|
||||
rmBandsBand,
|
||||
rmSelectChannel }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The radio group of objects providing for management of radiomodule
|
||||
parameters, including IEEE 802.11 parameters and proprietary
|
||||
parameters."
|
||||
::= { aquaradioMIBGroups 1 }
|
||||
|
||||
aquaradioNotifications NOTIFICATION-GROUP
|
||||
NOTIFICATIONS {
|
||||
radioFreqChanged,
|
||||
radioBandChanged }
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
::= { aquaradioMIBConformance 3 }
|
||||
|
||||
END
|
1012
mibs/infinet/AQUASYSTEM-MIB
Normal file
1012
mibs/infinet/AQUASYSTEM-MIB
Normal file
File diff suppressed because it is too large
Load Diff
1562
mibs/infinet/INFINET-BRIDGE-MIB
Normal file
1562
mibs/infinet/INFINET-BRIDGE-MIB
Normal file
File diff suppressed because it is too large
Load Diff
128
mibs/infinet/INFINET-EXTCES-MIB
Normal file
128
mibs/infinet/INFINET-EXTCES-MIB
Normal file
@ -0,0 +1,128 @@
|
||||
INFINET-EXTCES-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
externalDevices
|
||||
FROM INFINET-EXTDEVICES-MIB
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
Unsigned32
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
cesOverWlan MODULE-IDENTITY
|
||||
LAST-UPDATED "200706181910Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Dmitry Petukhov
|
||||
|
||||
Postal: Infinet Wireless Ltd,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 217 9317
|
||||
Email: d.petukhov@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing various WanFlex options."
|
||||
REVISION "200706181910Z"
|
||||
DESCRIPTION
|
||||
"The mib module, containing settings for Circut Emulation Services over WLAN."
|
||||
::= { externalDevices 1 }
|
||||
|
||||
|
||||
cesOverWlanUnit0 OBJECT IDENTIFIER ::= { cesOverWlan 1 }
|
||||
|
||||
cesOverWlanUnit0Settings OBJECT IDENTIFIER ::= { cesOverWlanUnit0 1 }
|
||||
|
||||
cesOverWlanUnit0Enabled OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Unit functional state - started or stopped.
|
||||
writing to any of subsequent settings disabled if state is 'on'."
|
||||
::= { cesOverWlanUnit0Settings 1 }
|
||||
|
||||
|
||||
cesOverWlanUnit0Mode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
e1-internal(0),
|
||||
e1-loopback(2),
|
||||
e1-recovery(3),
|
||||
e1-line(4),
|
||||
t1-internal(6),
|
||||
t1-loopback(8),
|
||||
t1-recovery(9),
|
||||
t1-line(10) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This parameter determines bitstream mode and timing mode of CES unit."
|
||||
::= { cesOverWlanUnit0Settings 2 }
|
||||
|
||||
|
||||
cesOverWlanUnit0MaxJitter OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..200)
|
||||
UNITS
|
||||
"milliseconds"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The size of buffer to allow accommodation to packet
|
||||
delay variation."
|
||||
::= { cesOverWlanUnit0Settings 3 }
|
||||
|
||||
|
||||
cesOverWlanUnit0FramesPerPacket OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..32)
|
||||
UNITS
|
||||
"frames"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of TDM frames per CES packet."
|
||||
::= { cesOverWlanUnit0Settings 4 }
|
||||
|
||||
|
||||
cesOverWlanUnit0BandwithLimit OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Size of data padding allowed for each CES packet sent from this unit"
|
||||
::= { cesOverWlanUnit0Settings 5 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PortMap OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Bit map of ports enabled on this unit.
|
||||
bit 0 is set - port 0 is enabled
|
||||
bit 1 is set - port 1 is enabled
|
||||
...
|
||||
etc.
|
||||
|
||||
"
|
||||
::= { cesOverWlanUnit0Settings 6 }
|
||||
|
||||
|
||||
cesOverWlanMIBConformance OBJECT IDENTIFIER ::= { cesOverWlan 2 }
|
||||
|
||||
cesOverWlanGroups OBJECT-GROUP
|
||||
OBJECTS {
|
||||
cesOverWlanUnit0Enabled,
|
||||
cesOverWlanUnit0Mode,
|
||||
cesOverWlanUnit0MaxJitter,
|
||||
cesOverWlanUnit0FramesPerPacket,
|
||||
cesOverWlanUnit0BandwithLimit,
|
||||
cesOverWlanUnit0PortMap }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { cesOverWlanMIBConformance 1 }
|
||||
|
||||
END
|
1263
mibs/infinet/INFINET-EXTCES-UNIT0-DS1-MIB
Normal file
1263
mibs/infinet/INFINET-EXTCES-UNIT0-DS1-MIB
Normal file
File diff suppressed because it is too large
Load Diff
357
mibs/infinet/INFINET-EXTCES-UNIT0-PACKET-MIB
Normal file
357
mibs/infinet/INFINET-EXTCES-UNIT0-PACKET-MIB
Normal file
@ -0,0 +1,357 @@
|
||||
INFINET-EXTCES-UNIT0-PACKET-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
TimeStamp
|
||||
FROM SNMPv2-TC -- [RFC2579]
|
||||
cesOverWlanUnit0
|
||||
FROM INFINET-EXTCES-MIB
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
NOTIFICATION-TYPE,
|
||||
Counter32,
|
||||
Integer32,
|
||||
Unsigned32
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
cesOverWlanUnit0Packet MODULE-IDENTITY
|
||||
LAST-UPDATED "200706181910Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Dmitry Petukhov
|
||||
|
||||
Postal: Infinet Wireless Ltd,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 217 9317
|
||||
Email: d.petukhov@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing various WanFlex options."
|
||||
REVISION "200408161910Z"
|
||||
DESCRIPTION
|
||||
"The mib module, containing Packet interface objects for CesOverWlan unit."
|
||||
::= { cesOverWlanUnit0 3 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF CesOverWlanUnit0PacketEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Packet protocol table."
|
||||
::= { cesOverWlanUnit0Packet 1 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketEntry OBJECT-TYPE
|
||||
SYNTAX CesOverWlanUnit0PacketEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the Packet protocol table."
|
||||
INDEX {
|
||||
cesOverWlanUnit0PacketPortNumber }
|
||||
::= { cesOverWlanUnit0PacketTable 1 }
|
||||
|
||||
|
||||
CesOverWlanUnit0PacketEntry ::= SEQUENCE {
|
||||
|
||||
cesOverWlanUnit0PacketPortNumber Unsigned32,
|
||||
cesOverWlanUnit0PacketTxState INTEGER,
|
||||
cesOverWlanUnit0PacketRxState INTEGER,
|
||||
cesOverWlanUnit0PacketTxRestarts Counter32,
|
||||
cesOverWlanUnit0PacketRxRestarts Counter32,
|
||||
cesOverWlanUnit0PacketJitterCur Integer32,
|
||||
cesOverWlanUnit0PacketJitterMin Integer32,
|
||||
cesOverWlanUnit0PacketJitterMax Integer32,
|
||||
cesOverWlanUnit0PacketTotalInPackets Counter32,
|
||||
cesOverWlanUnit0PacketValidPackets Counter32,
|
||||
cesOverWlanUnit0PacketRbitPackets Counter32,
|
||||
cesOverWlanUnit0PacketLbitPackets Counter32,
|
||||
cesOverWlanUnit0PacketLatePackets Counter32,
|
||||
cesOverWlanUnit0PacketLostPackets Counter32,
|
||||
cesOverWlanUnit0PacketOutOfOrderPackets Counter32,
|
||||
cesOverWlanUnit0PacketUnderrunPackets Counter32,
|
||||
cesOverWlanUnit0PacketOverrunPackets Counter32,
|
||||
cesOverWlanUnit0PacketInvalidSequencePackets Counter32,
|
||||
cesOverWlanUnit0PacketDuplicatePackets Counter32,
|
||||
cesOverWlanUnit0PacketMalformedPackets Counter32,
|
||||
cesOverWlanUnit0PacketJitterBufferStatus INTEGER,
|
||||
cesOverWlanUnit0PacketJitterBufferStatusLastChange TimeStamp }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketPortNumber OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Port number for which this packet protocol statistics is relevant."
|
||||
::= { cesOverWlanUnit0PacketEntry 1 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketTxState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"State of transmit of packet protocol."
|
||||
::= { cesOverWlanUnit0PacketEntry 2 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketRxState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
on(1),
|
||||
off(2) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"State of receive of packet protocol."
|
||||
::= { cesOverWlanUnit0PacketEntry 3 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketTxRestarts OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of transmit restarts."
|
||||
::= { cesOverWlanUnit0PacketEntry 4 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketRxRestarts OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of receive restarts."
|
||||
::= { cesOverWlanUnit0PacketEntry 5 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketJitterCur OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"microseconds"
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Current jitter buffer level, in microseconds."
|
||||
::= { cesOverWlanUnit0PacketEntry 6 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketJitterMin OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"microseconds"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Minimum jitter buffer level, in microseconds."
|
||||
::= { cesOverWlanUnit0PacketEntry 7 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketJitterMax OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
UNITS
|
||||
"microseconds"
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum jitter buffer level, in microseconds."
|
||||
::= { cesOverWlanUnit0PacketEntry 8 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketTotalInPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total packet-protocol packets received."
|
||||
::= { cesOverWlanUnit0PacketEntry 9 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketValidPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"percent of valid packet-protocol packets received."
|
||||
::= { cesOverWlanUnit0PacketEntry 10 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketRbitPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of packet-protocol packets received with R bit set."
|
||||
::= { cesOverWlanUnit0PacketEntry 11 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketLbitPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of packet-protocol packets received with L bit set."
|
||||
::= { cesOverWlanUnit0PacketEntry 12 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketLatePackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of packet-protocol packets received too late."
|
||||
::= { cesOverWlanUnit0PacketEntry 13 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketLostPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of packet-protocol packets what was lost."
|
||||
::= { cesOverWlanUnit0PacketEntry 14 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketOutOfOrderPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of packet-protocol packets received out of order."
|
||||
::= { cesOverWlanUnit0PacketEntry 15 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketUnderrunPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of times no packet was available while jitter buffer empty."
|
||||
::= { cesOverWlanUnit0PacketEntry 16 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketOverrunPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of times no packet received while jitter buffer full."
|
||||
::= { cesOverWlanUnit0PacketEntry 17 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketInvalidSequencePackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of packet-protocol packets received with invalid sequence number."
|
||||
::= { cesOverWlanUnit0PacketEntry 18 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketDuplicatePackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of duplicate packet-protocol packets received."
|
||||
::= { cesOverWlanUnit0PacketEntry 19 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketMalformedPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"number of malformed packet-protocol packets received."
|
||||
::= { cesOverWlanUnit0PacketEntry 20 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketJitterBufferStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
unknown(0),
|
||||
undeflow(1),
|
||||
overflow(2),
|
||||
normal(3) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Status of jitter buffer, available only within cesOverWlanUnit0PacketJitterStatusChange trap."
|
||||
::= { cesOverWlanUnit0PacketEntry 21 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketJitterBufferStatusLastChange OBJECT-TYPE
|
||||
SYNTAX TimeStamp
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The value of MIB II's sysUpTime object at the
|
||||
time jitter buffer entered its current status state.
|
||||
If the current state was entered prior to
|
||||
the last re-initialization of the proxy-agent,
|
||||
then this object contains a zero value."
|
||||
::= { cesOverWlanUnit0PacketEntry 22 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketTrapsPrefix OBJECT IDENTIFIER ::= { cesOverWlanUnit0Packet 2 }
|
||||
|
||||
-- PACKET TRAPS
|
||||
|
||||
cesOverWlanUnit0PacketTraps OBJECT IDENTIFIER ::= { cesOverWlanUnit0PacketTrapsPrefix 0 }
|
||||
|
||||
cesOverWlanUnit0PacketMIBConformance OBJECT IDENTIFIER ::= { cesOverWlanUnit0Packet 4 }
|
||||
|
||||
|
||||
cesOverWlanUnit0PacketJitterStatusChange NOTIFICATION-TYPE
|
||||
OBJECTS {
|
||||
cesOverWlanUnit0PacketJitterBufferStatus,
|
||||
cesOverWlanUnit0PacketJitterBufferStatusLastChange}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A cesOverWlanUnit0PacketJitterStatusChange trap is sent when
|
||||
status of jitter buffer changes."
|
||||
::= { cesOverWlanUnit0PacketTraps 1 }
|
||||
|
||||
cesOverWlanUnit0PacketGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
cesOverWlanUnit0PacketPortNumber,
|
||||
cesOverWlanUnit0PacketTxState,
|
||||
cesOverWlanUnit0PacketRxState,
|
||||
cesOverWlanUnit0PacketTxRestarts,
|
||||
cesOverWlanUnit0PacketRxRestarts,
|
||||
cesOverWlanUnit0PacketJitterCur,
|
||||
cesOverWlanUnit0PacketJitterMin,
|
||||
cesOverWlanUnit0PacketJitterMax,
|
||||
cesOverWlanUnit0PacketTotalInPackets,
|
||||
cesOverWlanUnit0PacketValidPackets,
|
||||
cesOverWlanUnit0PacketRbitPackets,
|
||||
cesOverWlanUnit0PacketLbitPackets,
|
||||
cesOverWlanUnit0PacketLatePackets,
|
||||
cesOverWlanUnit0PacketLostPackets,
|
||||
cesOverWlanUnit0PacketOutOfOrderPackets,
|
||||
cesOverWlanUnit0PacketUnderrunPackets,
|
||||
cesOverWlanUnit0PacketOverrunPackets,
|
||||
cesOverWlanUnit0PacketInvalidSequencePackets,
|
||||
cesOverWlanUnit0PacketDuplicatePackets,
|
||||
cesOverWlanUnit0PacketMalformedPackets,
|
||||
cesOverWlanUnit0PacketJitterBufferStatus,
|
||||
cesOverWlanUnit0PacketJitterBufferStatusLastChange }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { cesOverWlanUnit0PacketMIBConformance 2 }
|
||||
|
||||
cesOverWlanUnit0PacketNotifications NOTIFICATION-GROUP
|
||||
NOTIFICATIONS {
|
||||
cesOverWlanUnit0PacketJitterStatusChange }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { cesOverWlanUnit0PacketMIBConformance 1 }
|
||||
|
||||
END
|
29
mibs/infinet/INFINET-EXTDEVICES-MIB
Normal file
29
mibs/infinet/INFINET-EXTDEVICES-MIB
Normal file
@ -0,0 +1,29 @@
|
||||
INFINET-EXTDEVICES-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
infinet
|
||||
FROM INFINET-MIB
|
||||
MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
externalDevices MODULE-IDENTITY
|
||||
LAST-UPDATED "200706181910Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Dmitry Petukhov
|
||||
|
||||
Postal: Infinet Wireless Ltd,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 217 9317
|
||||
Email: d.petukhov@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing various WanFlex options."
|
||||
REVISION "200408161910Z"
|
||||
DESCRIPTION
|
||||
"The mib module, containing infinet MIB OIDs for external devices branch."
|
||||
::= { infinet 2 }
|
||||
|
||||
|
||||
END
|
40
mibs/infinet/INFINET-MIB
Normal file
40
mibs/infinet/INFINET-MIB
Normal file
@ -0,0 +1,40 @@
|
||||
INFINET-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
enterprises
|
||||
FROM RFC1155-SMI
|
||||
MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
infinet MODULE-IDENTITY
|
||||
LAST-UPDATED "200711081104Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Andrew Nesheret
|
||||
|
||||
Postal: Infinet Wireless Ltd,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: A.Nesheret@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module containing infinet mib oids."
|
||||
REVISION "200711081104Z"
|
||||
DESCRIPTION
|
||||
"Contact changed"
|
||||
REVISION "200408161910Z"
|
||||
DESCRIPTION
|
||||
"First revision"
|
||||
::= { enterprises 3942 }
|
||||
|
||||
|
||||
-- Infinet wireless router
|
||||
|
||||
iwrouter OBJECT IDENTIFIER ::= { infinet 1 }
|
||||
|
||||
-- Wanflex OS for Infinet wireless router
|
||||
|
||||
wanflex OBJECT IDENTIFIER ::= { iwrouter 1 }
|
||||
|
||||
END
|
264
mibs/infinet/INFINET-SYSLOG-MIB
Normal file
264
mibs/infinet/INFINET-SYSLOG-MIB
Normal file
@ -0,0 +1,264 @@
|
||||
INFINET-SYSLOG-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
wanflex
|
||||
FROM INFINET-MIB
|
||||
sysSerialNumber,
|
||||
sysTrapSequence
|
||||
FROM AQUASYSTEM-MIB
|
||||
DisplayString,
|
||||
DateAndTime,
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
NOTIFICATION-TYPE,
|
||||
Counter32,
|
||||
IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
infinetSyslogMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "200802071136Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Andrew Nesheret
|
||||
Postal: Infinet Wireless Ltd,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: A.Nesheret@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The module contains objects and notifications
|
||||
associated with WANFlex system journal."
|
||||
REVISION "200802071136Z"
|
||||
DESCRIPTION
|
||||
"Initial version."
|
||||
::= { wanflex 6 }
|
||||
|
||||
|
||||
InfinetSyslogFacility ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The facility source of syslog message."
|
||||
REFERENCE
|
||||
"RFC 3164, Section 4.1 - syslog Message Parts"
|
||||
SYNTAX INTEGER {
|
||||
kernel(0), -- kernel messages
|
||||
user(1), -- random user-level messages
|
||||
mail(2), -- mail system
|
||||
daemon(3), -- system daemons
|
||||
authentication(4), -- security/authorization messages
|
||||
syslog(5), -- messages generated internally by syslogd
|
||||
lpr(6), -- line printer subsystem
|
||||
news(7), -- network news subsystem
|
||||
uucp(8), -- UUCP subsystem
|
||||
cron(9), -- clock daemon
|
||||
authpriv(10), -- security/authorization messages (private)
|
||||
ftp(11), -- ftp daemon
|
||||
ntp(12), -- NTP subsystem
|
||||
security(13), -- security subsystems (firewalling, etc.)
|
||||
console(14), -- /dev/console output
|
||||
local0(16), -- reserved for local use
|
||||
local1(17), -- reserved for local use
|
||||
local2(18), -- reserved for local use
|
||||
local3(19), -- reserved for local use
|
||||
local4(20), -- reserved for local use
|
||||
local5(21), -- reserved for local use
|
||||
local6(22), -- reserved for local use
|
||||
local7(23) -- reserved for local use
|
||||
}
|
||||
|
||||
|
||||
InfinetSyslogSeverity ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The severity of a syslog message.
|
||||
'emergency' : system is unusable
|
||||
'alert' : action must be taken immediately
|
||||
'critical' : critical conditions
|
||||
'error' : error conditions
|
||||
'warning' : warning conditions
|
||||
'notice' : normal but significant condition
|
||||
'informational': informational messages
|
||||
'debug' : debug-level messages."
|
||||
REFERENCE
|
||||
"RFC 3164, Section 4.1 - syslog Message Parts"
|
||||
SYNTAX INTEGER {
|
||||
emergency(0), -- system is unusable
|
||||
alert(1), -- action must be taken immediately
|
||||
critical(2), -- critical conditions
|
||||
error(3), -- error conditions
|
||||
warning(4), -- warning conditions
|
||||
notice(5), -- normal but significant condition
|
||||
info(6), -- informational messages
|
||||
debug(7) -- debug-level messages
|
||||
}
|
||||
|
||||
|
||||
-- Scalars and Tables
|
||||
--
|
||||
|
||||
infinetSyslogObjects OBJECT IDENTIFIER ::= { infinetSyslogMIB 1 }
|
||||
|
||||
infinetSyslogServerAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Internet address of syslog server."
|
||||
::= { infinetSyslogObjects 1 }
|
||||
|
||||
|
||||
infinetSyslogMessagesTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF InfinetSyslogMessageEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of syslog messages generated by this device."
|
||||
::= { infinetSyslogObjects 2 }
|
||||
|
||||
|
||||
infinetSyslogMessageEntry OBJECT-TYPE
|
||||
SYNTAX InfinetSyslogMessageEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A message generated by device, each entry indexed by message index."
|
||||
INDEX {
|
||||
infinetSyslogMessageIndex }
|
||||
::= { infinetSyslogMessagesTable 1 }
|
||||
|
||||
|
||||
InfinetSyslogMessageEntry ::= SEQUENCE {
|
||||
|
||||
infinetSyslogMessageIndex Counter32,
|
||||
infinetSyslogMessageSeverity InfinetSyslogSeverity,
|
||||
infinetSyslogMessageFacility InfinetSyslogFacility,
|
||||
infinetSyslogMessageTimestamp DateAndTime,
|
||||
infinetSyslogMessageIdentity DisplayString,
|
||||
infinetSyslogMessageText DisplayString }
|
||||
|
||||
|
||||
infinetSyslogMessageIndex OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A monotonically increasing integer for the sole
|
||||
purpose of indexing messages. When it reaches the
|
||||
maximum value the agent flushes the table and wraps
|
||||
the value back to 0."
|
||||
::= { infinetSyslogMessageEntry 1 }
|
||||
|
||||
|
||||
infinetSyslogMessageSeverity OBJECT-TYPE
|
||||
SYNTAX InfinetSyslogSeverity
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Severity of the message."
|
||||
::= { infinetSyslogMessageEntry 2 }
|
||||
|
||||
|
||||
infinetSyslogMessageFacility OBJECT-TYPE
|
||||
SYNTAX InfinetSyslogFacility
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Source of the message from."
|
||||
::= { infinetSyslogMessageEntry 3 }
|
||||
|
||||
|
||||
infinetSyslogMessageTimestamp OBJECT-TYPE
|
||||
SYNTAX DateAndTime
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The message timestamp."
|
||||
::= { infinetSyslogMessageEntry 4 }
|
||||
|
||||
|
||||
infinetSyslogMessageIdentity OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of Process or Facility."
|
||||
::= { infinetSyslogMessageEntry 5 }
|
||||
|
||||
|
||||
infinetSyslogMessageText OBJECT-TYPE
|
||||
SYNTAX DisplayString (SIZE (0..1024))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The text of the Message."
|
||||
::= { infinetSyslogMessageEntry 6 }
|
||||
|
||||
|
||||
-- Notification Types
|
||||
--
|
||||
|
||||
infinetSyslogEventsPrefix OBJECT IDENTIFIER ::= { infinetSyslogMIB 2 }
|
||||
|
||||
infinetSyslogEvents OBJECT IDENTIFIER ::= { infinetSyslogEventsPrefix 0 }
|
||||
|
||||
-- Conformance
|
||||
--
|
||||
|
||||
infinetSyslogConf OBJECT IDENTIFIER ::= { infinetSyslogMIB 3 }
|
||||
|
||||
-- Groups
|
||||
--
|
||||
|
||||
infinetSyslogGroups OBJECT IDENTIFIER ::= { infinetSyslogConf 1 }
|
||||
|
||||
-- Compliance
|
||||
--
|
||||
|
||||
infinetSyslogCompls OBJECT IDENTIFIER ::= { infinetSyslogConf 2 }
|
||||
|
||||
|
||||
infinetSyslogMessageGenerated NOTIFICATION-TYPE
|
||||
OBJECTS {
|
||||
sysSerialNumber,
|
||||
sysTrapSequence,
|
||||
infinetSyslogMessageIndex,
|
||||
infinetSyslogMessageSeverity,
|
||||
infinetSyslogMessageFacility,
|
||||
infinetSyslogMessageTimestamp,
|
||||
infinetSyslogMessageIdentity,
|
||||
infinetSyslogMessageText}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"When a syslog message is generated by the device a
|
||||
infinetSyslogMessageGenerated notification is sent."
|
||||
::= { infinetSyslogEvents 1 }
|
||||
|
||||
infinetSyslogBasicGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
infinetSyslogServerAddress,
|
||||
infinetSyslogMessageIndex,
|
||||
infinetSyslogMessageSeverity,
|
||||
infinetSyslogMessageText,
|
||||
infinetSyslogMessageFacility,
|
||||
infinetSyslogMessageTimestamp,
|
||||
infinetSyslogMessageIdentity }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Basic objects."
|
||||
::= { infinetSyslogGroups 1 }
|
||||
|
||||
infinetSyslogBasicEvents NOTIFICATION-GROUP
|
||||
NOTIFICATIONS {
|
||||
infinetSyslogMessageGenerated }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Basic notifications."
|
||||
::= { infinetSyslogGroups 2 }
|
||||
|
||||
END
|
31
mibs/infinet/INFINET-XG-MIB
Normal file
31
mibs/infinet/INFINET-XG-MIB
Normal file
@ -0,0 +1,31 @@
|
||||
INFINET-XG-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
infinet
|
||||
FROM INFINET-MIB
|
||||
MODULE-IDENTITY
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
|
||||
iwbridge MODULE-IDENTITY
|
||||
LAST-UPDATED "201408290240Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Anthony Berzin
|
||||
|
||||
Postal: Infinet Wireless Ltd.,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: aberzin@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing XG bridge options."
|
||||
::= { infinet 4 }
|
||||
|
||||
|
||||
xg OBJECT IDENTIFIER ::= { iwbridge 1 }
|
||||
|
||||
|
||||
END
|
||||
|
124
mibs/infinet/INFINET-XGPEER-MIB
Normal file
124
mibs/infinet/INFINET-XGPEER-MIB
Normal file
@ -0,0 +1,124 @@
|
||||
INFINET-XGPEER-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
xg
|
||||
FROM INFINET-XG-MIB
|
||||
DisplayString,
|
||||
MacAddress
|
||||
FROM SNMPv2-TC
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
Counter32,
|
||||
Integer32,
|
||||
IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
xgPeer MODULE-IDENTITY
|
||||
LAST-UPDATED "201510080835Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Anthony Berzin
|
||||
|
||||
Postal: Infinet Wireless Ltd.,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: aberzin@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing XG peer data."
|
||||
REVISION "201510080835Z"
|
||||
DESCRIPTION
|
||||
"First revision."
|
||||
::= { xg 2 }
|
||||
|
||||
|
||||
xgPeerSerialNumber OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Peer device's serial number."
|
||||
::= { xgPeer 1 }
|
||||
|
||||
|
||||
xgPeerSysName OBJECT-TYPE
|
||||
SYNTAX DisplayString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Peer device's sysName."
|
||||
::= { xgPeer 2 }
|
||||
|
||||
|
||||
xgPeerIpAddrTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgPeerIpAddrEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table of peer's IP addresses."
|
||||
::= { xgPeer 3 }
|
||||
|
||||
xgPeerIpAddrEntry OBJECT-TYPE
|
||||
SYNTAX XgPeerIpAddrEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The addressing information for one of
|
||||
peer's IP addresses."
|
||||
INDEX { xgPeerIpAddress }
|
||||
::= { xgPeerIpAddrTable 1 }
|
||||
|
||||
XgPeerIpAddrEntry ::=
|
||||
SEQUENCE {
|
||||
xgPeerIpAddress
|
||||
IpAddress
|
||||
}
|
||||
|
||||
xgPeerIpAddress OBJECT-TYPE
|
||||
SYNTAX IpAddress
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"IP address of peer"
|
||||
::= { xgPeerIpAddrEntry 1 }
|
||||
|
||||
|
||||
xgPeerMIBConformance OBJECT IDENTIFIER ::= { xgPeer 10 }
|
||||
|
||||
xgPeerMIBCompliances OBJECT IDENTIFIER ::= { xgPeerMIBConformance 1 }
|
||||
|
||||
xgPeerMIBGroups OBJECT IDENTIFIER ::= { xgPeerMIBConformance 2 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
xgPeerMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for Infinet XG peer."
|
||||
|
||||
MODULE
|
||||
MANDATORY-GROUPS {
|
||||
xgPeerGroup }
|
||||
|
||||
::= { xgPeerMIBCompliances 1 }
|
||||
|
||||
-- units of conformance
|
||||
|
||||
xgPeerGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
xgPeerSerialNumber,
|
||||
xgPeerSysName,
|
||||
xgPeerIpAddress }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The xgPeer group of objects provided
|
||||
for observation and manipulation with
|
||||
XG peer parameters."
|
||||
::= { xgPeerMIBGroups 1 }
|
||||
|
||||
END
|
828
mibs/infinet/INFINET-XGRADIO-MIB
Normal file
828
mibs/infinet/INFINET-XGRADIO-MIB
Normal file
@ -0,0 +1,828 @@
|
||||
INFINET-XGRADIO-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
xg
|
||||
FROM INFINET-XG-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
Counter32,
|
||||
Integer32
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
xgRadio MODULE-IDENTITY
|
||||
LAST-UPDATED "201705240413Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Anthony Berzin
|
||||
|
||||
Postal: Infinet Wireless Ltd.,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: aberzin@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing XG radio options."
|
||||
REVISION "201705240413Z"
|
||||
DESCRIPTION
|
||||
"Added value 'phy' to xgLinkStatus."
|
||||
REVISION "201703231139Z"
|
||||
DESCRIPTION
|
||||
"xgRfTxFrequency, xgRfRxFrequency,
|
||||
xgRfDfsStatus, xgRfAccFER added
|
||||
to xgRfCarrierStatTable.
|
||||
xgDlQuota is deprecated."
|
||||
REVISION "201511021129Z"
|
||||
DESCRIPTION
|
||||
"xgTotalTxOctets and xgTotalRxOctets
|
||||
added to xgRfStat subtree;
|
||||
fixed some typos."
|
||||
REVISION "201510131101Z"
|
||||
DESCRIPTION
|
||||
"xgOwnRadioIfIndex added to xgRfCfg subtree."
|
||||
REVISION "201410280550Z"
|
||||
DESCRIPTION
|
||||
"xgRfGoodRxFrames and xgRfBadRxFrames
|
||||
added to xgRfCarrierStatTable."
|
||||
REVISION "201409300350Z"
|
||||
DESCRIPTION
|
||||
"xgADCRSSI renamed to xgABSRSSI."
|
||||
REVISION "201409290645Z"
|
||||
DESCRIPTION
|
||||
"xgRSSI renamed to xgADCRSSI."
|
||||
REVISION "201409040502Z"
|
||||
DESCRIPTION
|
||||
"xgTotalDlCapacity and xgTotalUlCapacity
|
||||
units changed from Mbps to Kbps."
|
||||
REVISION "201409031048Z"
|
||||
DESCRIPTION
|
||||
"xgTxPwrActual moved from xgRfCarrierStatTable
|
||||
to xgRfChainStatTable."
|
||||
REVISION "201408290240Z"
|
||||
DESCRIPTION
|
||||
"The mib module, containing XG radio options."
|
||||
::= { xg 1 }
|
||||
|
||||
|
||||
xgRfCfg OBJECT IDENTIFIER ::= { xgRadio 1 }
|
||||
|
||||
|
||||
xgUnitType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
master(0),
|
||||
slave(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates XG unit role in radio link."
|
||||
::= { xgRfCfg 1 }
|
||||
|
||||
|
||||
xgCellId OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..167)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates cell id."
|
||||
::= { xgRfCfg 2 }
|
||||
|
||||
|
||||
xgQosStrategy OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
conservative(1),
|
||||
aggressive(2),
|
||||
off(3) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates QoS strategy."
|
||||
::= { xgRfCfg 3 }
|
||||
|
||||
|
||||
xgDlQuota OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..99)
|
||||
MAX-ACCESS read-write
|
||||
STATUS deprecated
|
||||
DESCRIPTION
|
||||
"Desirable ratio of downlink traffic
|
||||
related to all traffic in percents."
|
||||
::= { xgRfCfg 4 }
|
||||
|
||||
|
||||
xgFrameLength OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
len-1-ms(1),
|
||||
len-2-ms(2),
|
||||
len-4-ms(4),
|
||||
len-5-ms(5),
|
||||
len-8-ms(8),
|
||||
len-10-ms(10) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio frame length in milliseconds."
|
||||
::= { xgRfCfg 5 }
|
||||
|
||||
|
||||
xgMaxDistance OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..59600)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates maximum allowed
|
||||
length of radio link in meters for
|
||||
auto-ranging algorithm."
|
||||
::= { xgRfCfg 6 }
|
||||
|
||||
|
||||
xgChannelWidth OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
band-10-mhz(10),
|
||||
band-20-mhz(20),
|
||||
band-40-mhz(40) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Selected radio channel
|
||||
width in MHz."
|
||||
::= { xgRfCfg 7 }
|
||||
|
||||
|
||||
|
||||
|
||||
xgCarrierCfgTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgCarrierCfgEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of radio
|
||||
configuration options
|
||||
by carrier index."
|
||||
::= { xgRfCfg 8 }
|
||||
|
||||
xgCarrierCfgEntry OBJECT-TYPE
|
||||
SYNTAX XgCarrierCfgEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains
|
||||
configuration options
|
||||
for separate radio carrier."
|
||||
INDEX {
|
||||
xgCCIndex }
|
||||
::= { xgCarrierCfgTable 1 }
|
||||
|
||||
XgCarrierCfgEntry ::= SEQUENCE {
|
||||
xgCCIndex Integer32,
|
||||
xgCcMaxTxPwr Integer32,
|
||||
xgCcFreqDl Integer32,
|
||||
xgCcFreqUl Integer32,
|
||||
xgCcAmcMode INTEGER,
|
||||
xgCcAmcStrategy INTEGER }
|
||||
|
||||
xgCCIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier index,
|
||||
ranging from 1 to maximum
|
||||
carrier number used."
|
||||
::= { xgCarrierCfgEntry 1 }
|
||||
|
||||
xgCcMaxTxPwr OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..27000)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum allowed TX power
|
||||
in thousandths of dB,
|
||||
stepping by 250."
|
||||
::= { xgCarrierCfgEntry 2 }
|
||||
|
||||
xgCcFreqDl OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier frequency in MHz
|
||||
for downlink traffic."
|
||||
::= { xgCarrierCfgEntry 3 }
|
||||
|
||||
xgCcFreqUl OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier frequency in MHz
|
||||
for uplink traffic."
|
||||
::= { xgCarrierCfgEntry 4 }
|
||||
|
||||
xgCcAmcMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
auto(0),
|
||||
manual(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"If auto, then TX MCS is set
|
||||
to be upper value that is
|
||||
chosen by adaptive algorithm.
|
||||
If manual, then TX MCS is set
|
||||
to be equal to that value."
|
||||
::= { xgCarrierCfgEntry 5 }
|
||||
|
||||
xgCcAmcStrategy OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
conservative(1),
|
||||
agressive(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Instructs MCS adaptive algorithm
|
||||
to prefer maximum radio bandwidth
|
||||
over radio transport block error
|
||||
rate or vice versa."
|
||||
::= { xgCarrierCfgEntry 6 }
|
||||
|
||||
|
||||
xgOwnRadioIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XG Radio Interface index. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { xgRfCfg 9 }
|
||||
|
||||
|
||||
|
||||
|
||||
xgRfStat OBJECT IDENTIFIER ::= { xgRadio 2 }
|
||||
|
||||
|
||||
xgLinkStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
stopped(0),
|
||||
starting(1),
|
||||
down(2),
|
||||
up(3),
|
||||
error(4),
|
||||
phy(5) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XG radio link status."
|
||||
::= { xgRfStat 1 }
|
||||
|
||||
xgDistance OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated length of
|
||||
radio link in meters."
|
||||
::= { xgRfStat 2 }
|
||||
|
||||
xgDlQuotaActual OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..99)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated portion of allowed downlink
|
||||
traffic related to all traffic in percents."
|
||||
::= { xgRfStat 3 }
|
||||
|
||||
xgTotalTxAirFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of transmitted radio frames."
|
||||
::= { xgRfStat 4 }
|
||||
|
||||
xgTotalTxPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of Ethernet packets
|
||||
transmitted via radio interface."
|
||||
::= { xgRfStat 5 }
|
||||
|
||||
xgTotalRxAirFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of received radio frames."
|
||||
::= { xgRfStat 6 }
|
||||
|
||||
xgTotalRxPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of Ethernet packets
|
||||
received from radio interface."
|
||||
::= { xgRfStat 7 }
|
||||
|
||||
xgTotalRxOkABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of received valid air blocks."
|
||||
::= { xgRfStat 8 }
|
||||
|
||||
xgTotalRxErrorABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of received invalid air blocks."
|
||||
::= { xgRfStat 9 }
|
||||
|
||||
xgTotalDlCapacity OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated capacity for
|
||||
downlink traffic in Kbps."
|
||||
::= { xgRfStat 10 }
|
||||
|
||||
xgTotalUlCapacity OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated capacity for
|
||||
uplink traffic in Kbps."
|
||||
::= { xgRfStat 11 }
|
||||
|
||||
|
||||
xgRfCarrierStatTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgRfCarrierStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of radio data
|
||||
by carrier index."
|
||||
::= { xgRfStat 12 }
|
||||
|
||||
xgRfCarrierStatEntry OBJECT-TYPE
|
||||
SYNTAX XgRfCarrierStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains
|
||||
carrier-specific data
|
||||
by carrier index."
|
||||
INDEX {
|
||||
xgRfCarrierIndex }
|
||||
::= { xgRfCarrierStatTable 1 }
|
||||
|
||||
XgRfCarrierStatEntry ::= SEQUENCE {
|
||||
xgRfCarrierIndex Integer32,
|
||||
xgRfGoodRxFrames Counter32,
|
||||
xgRfBadRxFrames Counter32,
|
||||
xgRfTxFrequency Integer32,
|
||||
xgRfRxFrequency Integer32,
|
||||
xgRfDfsStatus INTEGER,
|
||||
xgRfRxAccFER Integer32 }
|
||||
|
||||
xgRfCarrierIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier index,
|
||||
ranging from 1 to maximum
|
||||
carrier number used."
|
||||
::= { xgRfCarrierStatEntry 1 }
|
||||
|
||||
xgRfGoodRxFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Good Rx Frames counter."
|
||||
::= { xgRfCarrierStatEntry 2 }
|
||||
|
||||
xgRfBadRxFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Bad Rx Frames counter."
|
||||
::= { xgRfCarrierStatEntry 3 }
|
||||
|
||||
xgRfTxFrequency OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Tx frequency, MHz"
|
||||
::= { xgRfCarrierStatEntry 4 }
|
||||
|
||||
xgRfRxFrequency OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Rx frequency, MHz"
|
||||
::= { xgRfCarrierStatEntry 5 }
|
||||
|
||||
xgRfDfsStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
dfs-no-init(0),
|
||||
dfs-disabled(1),
|
||||
dfs-enabled(2),
|
||||
dfs-fg-radar-search(3),
|
||||
dfs-fg-rssi-scan(4),
|
||||
dfs-radar-found(5),
|
||||
dfs-bg-rssi-v(6),
|
||||
dfs-bg-rssi-h(7),
|
||||
dfs-bg-rdrdt-main(8),
|
||||
dfs-bg-rdrdt-announce(9),
|
||||
dfs-bg-FF-ul(10),
|
||||
dfs-bg-FF-dl(11) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"DFS status:
|
||||
dfs-no-init(0),
|
||||
dfs-disabled(1),
|
||||
dfs-enabled(2),
|
||||
dfs-fg-radar-search(3),
|
||||
dfs-fg-rssi-scan(4),
|
||||
dfs-radar-found(5),
|
||||
dfs-bg-rssi-v(6),
|
||||
dfs-bg-rssi-h(7),
|
||||
dfs-bg-rdrdt-main(8),
|
||||
dfs-bg-rdrdt-announce(9),
|
||||
dfs-bg-FF-ul(10),
|
||||
dfs-bg-FF-dl(11)."
|
||||
::= { xgRfCarrierStatEntry 6 }
|
||||
|
||||
xgRfRxAccFER OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Rx accumulated bit error rate
|
||||
as 100000000 * <absolute ratio>."
|
||||
::= { xgRfCarrierStatEntry 7 }
|
||||
|
||||
|
||||
xgRfChainStatTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgRfChainStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of radio statistics
|
||||
by carrier and stream index."
|
||||
::= { xgRfStat 13 }
|
||||
|
||||
xgRfChainStatEntry OBJECT-TYPE
|
||||
SYNTAX XgRfChainStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains statistics
|
||||
by carrier and stream index.
|
||||
These indexes coupled together
|
||||
give unique index of radio chain."
|
||||
INDEX {
|
||||
xgRfChainCarrierIndex,
|
||||
xgRfChainStreamIndex }
|
||||
::= { xgRfChainStatTable 1 }
|
||||
|
||||
XgRfChainStatEntry ::= SEQUENCE {
|
||||
xgRfChainCarrierIndex Integer32,
|
||||
xgRfChainStreamIndex Integer32,
|
||||
xgTxMCS INTEGER,
|
||||
xgRxMCS INTEGER,
|
||||
xgCINR Integer32,
|
||||
xgABSRSSI Integer32,
|
||||
xgRxOkABs Counter32,
|
||||
xgRxErrorABs Counter32,
|
||||
xgTxPwrActual Integer32,
|
||||
xgADCRSSI Integer32,
|
||||
xgTxGain Integer32,
|
||||
xgBerAmcCorrection Integer32,
|
||||
xgBerAmcWindowErr Integer32,
|
||||
xgBerAmcOneMinuteErr Integer32,
|
||||
xgBerAmcTenMinutesErr Integer32,
|
||||
xgBerAmcOneHourErr Integer32,
|
||||
xgSTOD Integer32 }
|
||||
|
||||
xgRfChainCarrierIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier index,
|
||||
ranging from 1 to maximum
|
||||
carrier number used."
|
||||
::= { xgRfChainStatEntry 1 }
|
||||
|
||||
xgRfChainStreamIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio stream index,
|
||||
ranging from 1 to maximum
|
||||
streams per carrier.
|
||||
Streams count varies depending
|
||||
on anthenna metod used:
|
||||
SISO, MIMO, double SISO, etc."
|
||||
::= { xgRfChainStatEntry 2 }
|
||||
|
||||
xgTxMCS OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
qpsk-1-4(1),
|
||||
qpsk-1-2(2),
|
||||
qpsk-3-4(3),
|
||||
qam16-1-2(4),
|
||||
qam16-3-4(5),
|
||||
qam64-4-6(6),
|
||||
qam256-5-8(7),
|
||||
qam256-6-8(8),
|
||||
qam256-7-8(9),
|
||||
qam256-30-32(10),
|
||||
qam1024-8-10(11) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Tx modulation index."
|
||||
::= { xgRfChainStatEntry 3 }
|
||||
|
||||
xgRxMCS OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
qpsk-1-4(1),
|
||||
qpsk-1-2(2),
|
||||
qpsk-3-4(3),
|
||||
qam16-1-2(4),
|
||||
qam16-3-4(5),
|
||||
qam64-4-6(6),
|
||||
qam256-5-8(7),
|
||||
qam256-6-8(8),
|
||||
qam256-7-8(9),
|
||||
qam256-30-32(10),
|
||||
qam1024-8-10(11) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Rx modulation index."
|
||||
::= { xgRfChainStatEntry 4 }
|
||||
|
||||
xgCINR OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Carrier to Interference + Noise Ratio"
|
||||
::= { xgRfChainStatEntry 5 }
|
||||
|
||||
xgABSRSSI OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Absolute Received Signal Strength Indicator"
|
||||
::= { xgRfChainStatEntry 6 }
|
||||
|
||||
xgRxOkABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Valid air block counter"
|
||||
::= { xgRfChainStatEntry 7 }
|
||||
|
||||
xgRxErrorABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Invalid air block counter"
|
||||
::= { xgRfChainStatEntry 8 }
|
||||
|
||||
xgTxPwrActual OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2700)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Measured TX power
|
||||
in hundredths of dB."
|
||||
::= { xgRfChainStatEntry 9 }
|
||||
|
||||
xgADCRSSI OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"RSSI at ADC input per stream in dB"
|
||||
::= { xgRfChainStatEntry 10 }
|
||||
|
||||
xgTxGain OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"TX gain in hundredth of dB,
|
||||
stepping by 0.25 dB"
|
||||
::= { xgRfChainStatEntry 11 }
|
||||
|
||||
xgBerAmcCorrection OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Deliberate CINR addition
|
||||
used to shift MCS selection
|
||||
while keeping BER as close
|
||||
as possible below allowed level."
|
||||
::= { xgRfChainStatEntry 12 }
|
||||
|
||||
xgBerAmcWindowErr OBJECT-TYPE
|
||||
SYNTAX Integer32 (-1..100000000)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Bit Error rate:
|
||||
least detectable value 1 correspomds to 1e-8;
|
||||
most possible value 100000000 means 1.0
|
||||
special value -1 is used when
|
||||
no data for estimation are available"
|
||||
::= { xgRfChainStatEntry 13 }
|
||||
|
||||
xgBerAmcOneMinuteErr OBJECT-TYPE
|
||||
SYNTAX Integer32 (-1..100000000)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"BER AMC 1 minute Error:
|
||||
least detectable value 1 correspomds to 1e-8;
|
||||
most possible value 100000000 means 1.0
|
||||
special value -1 is used when
|
||||
no data for estimation are available"
|
||||
::= { xgRfChainStatEntry 14 }
|
||||
|
||||
xgBerAmcTenMinutesErr OBJECT-TYPE
|
||||
SYNTAX Integer32 (-1..100000000)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"BER AMC 10 minutes Error:
|
||||
least detectable value 1 correspomds to 1e-8;
|
||||
most possible value 100000000 means 1.0
|
||||
special value -1 is used when
|
||||
no data for estimation are available"
|
||||
::= { xgRfChainStatEntry 15 }
|
||||
|
||||
xgBerAmcOneHourErr OBJECT-TYPE
|
||||
SYNTAX Integer32 (-1..100000000)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"BER AMC 1 hour Error:
|
||||
least detectable value 1 correspomds to 1e-8;
|
||||
most possible value 100000000 means 1.0
|
||||
special value -1 is used when
|
||||
no data for estimation are available"
|
||||
::= { xgRfChainStatEntry 16 }
|
||||
|
||||
xgSTOD OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"symbol time offset deviation,
|
||||
measured in tenths of sample"
|
||||
::= { xgRfChainStatEntry 17 }
|
||||
|
||||
|
||||
xgCatalinaTemp OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Catalina temperature
|
||||
in degrees Celsius."
|
||||
::= { xgRfStat 14 }
|
||||
|
||||
xgTotalTxOctets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of octets tramsmitted
|
||||
via radio interface."
|
||||
::= { xgRfStat 15 }
|
||||
|
||||
xgTotalRxOctets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of octets received
|
||||
from radio interface."
|
||||
::= { xgRfStat 16 }
|
||||
|
||||
|
||||
xgRadioMIBConformance OBJECT IDENTIFIER ::= { xgRadio 3 }
|
||||
|
||||
xgRadioMIBCompliances OBJECT IDENTIFIER ::= { xgRadioMIBConformance 1 }
|
||||
|
||||
xgRadioMIBGroups OBJECT IDENTIFIER ::= { xgRadioMIBConformance 2 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
xgRadioMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for Infinet XG bridge."
|
||||
|
||||
MODULE
|
||||
MANDATORY-GROUPS {
|
||||
xgRadioGroup }
|
||||
|
||||
::= { xgRadioMIBCompliances 1 }
|
||||
|
||||
-- units of conformance
|
||||
|
||||
xgRadioGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
xgUnitType,
|
||||
xgCellId,
|
||||
xgQosStrategy,
|
||||
xgDlQuota,
|
||||
xgFrameLength,
|
||||
xgMaxDistance,
|
||||
xgChannelWidth,
|
||||
xgCCIndex,
|
||||
xgCcMaxTxPwr,
|
||||
xgCcFreqDl,
|
||||
xgCcFreqUl,
|
||||
xgCcAmcMode,
|
||||
xgCcAmcStrategy,
|
||||
xgOwnRadioIfIndex,
|
||||
xgLinkStatus,
|
||||
xgDistance,
|
||||
xgDlQuotaActual,
|
||||
xgTotalTxAirFrames,
|
||||
xgTotalTxPackets,
|
||||
xgTotalRxAirFrames,
|
||||
xgTotalRxPackets,
|
||||
xgTotalRxOkABs,
|
||||
xgTotalRxErrorABs,
|
||||
xgTotalDlCapacity,
|
||||
xgTotalUlCapacity,
|
||||
xgRfCarrierIndex,
|
||||
xgRfGoodRxFrames,
|
||||
xgRfBadRxFrames,
|
||||
xgRfTxFrequency,
|
||||
xgRfRxFrequency,
|
||||
xgRfDfsStatus,
|
||||
xgRfRxAccFER,
|
||||
xgRfChainCarrierIndex,
|
||||
xgRfChainStreamIndex,
|
||||
xgTxMCS,
|
||||
xgRxMCS,
|
||||
xgCINR,
|
||||
xgABSRSSI,
|
||||
xgRxOkABs,
|
||||
xgRxErrorABs,
|
||||
xgTxPwrActual,
|
||||
xgADCRSSI,
|
||||
xgTxGain,
|
||||
xgBerAmcCorrection,
|
||||
xgBerAmcWindowErr,
|
||||
xgBerAmcOneMinuteErr,
|
||||
xgBerAmcTenMinutesErr,
|
||||
xgBerAmcOneHourErr,
|
||||
xgSTOD,
|
||||
xgCatalinaTemp,
|
||||
xgTotalTxOctets,
|
||||
xgTotalRxOctets }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The xgRadio group of objects provided
|
||||
for observation and manipulation with
|
||||
XG radio parameters."
|
||||
::= { xgRadioMIBGroups 1 }
|
||||
|
||||
END
|
753
mibs/infinet/INFINET-XGRADIO-MIB-DEV
Normal file
753
mibs/infinet/INFINET-XGRADIO-MIB-DEV
Normal file
@ -0,0 +1,753 @@
|
||||
INFINET-XGRADIO-MIB-DEV DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
xg
|
||||
FROM INFINET-XG-MIB
|
||||
DisplayString
|
||||
FROM SNMPv2-TC
|
||||
MODULE-IDENTITY,
|
||||
OBJECT-TYPE,
|
||||
Counter32,
|
||||
Integer32
|
||||
FROM SNMPv2-SMI
|
||||
OBJECT-GROUP,
|
||||
MODULE-COMPLIANCE
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
xgRadio MODULE-IDENTITY
|
||||
LAST-UPDATED "201511021129Z"
|
||||
ORGANIZATION "Infinet Wireless Ltd."
|
||||
CONTACT-INFO
|
||||
"Anthony Berzin
|
||||
|
||||
Postal: Infinet Wireless Ltd.,
|
||||
Russia, Ekaterinburg,
|
||||
Serafimi Deryabinoi st, 24
|
||||
|
||||
Phone: +7 343 253 1533
|
||||
Email: aberzin@infinetwireless.com"
|
||||
DESCRIPTION
|
||||
"The mib module, containing XG radio options."
|
||||
REVISION "201511021129Z"
|
||||
DESCRIPTION
|
||||
"xgTotalTxOctets and xgTotalRxOctets
|
||||
added to xgRfStat subtree;
|
||||
fixed some typos."
|
||||
REVISION "201510131101Z"
|
||||
DESCRIPTION
|
||||
"xgOwnRadioIfIndex added to xgRfCfg subtree."
|
||||
REVISION "201507311052Z"
|
||||
DESCRIPTION
|
||||
"xgSTOD added to xgRfChainStatTable"
|
||||
REVISION "201507010928Z"
|
||||
DESCRIPTION
|
||||
"xgBerAmcEstimatedErr renamed to xgBerAmcWindowErr;
|
||||
xgBerAmcOneMinuteErr, xgBerAmcTenMinutesErr,
|
||||
xgBerAmcOneHourErr added to xgRfChainStatTable"
|
||||
REVISION "201501290720Z"
|
||||
DESCRIPTION
|
||||
"xgBerAmcCorrection and xgBerAmcEstimatedErr
|
||||
added to xgRfChainStatTable"
|
||||
REVISION "201410280559Z"
|
||||
DESCRIPTION
|
||||
"xgADCRSSI and xgTxGain
|
||||
added to xgRfChainStatTable;
|
||||
xgCatalinaTemp added."
|
||||
REVISION "201410280550Z"
|
||||
DESCRIPTION
|
||||
"xgRfGoodRxFrames and xgRfBadRxFrames
|
||||
added to xgRfCarrierStatTable."
|
||||
REVISION "201409300350Z"
|
||||
DESCRIPTION
|
||||
"xgADCRSSI renamed to xgABSRSSI."
|
||||
REVISION "201409290645Z"
|
||||
DESCRIPTION
|
||||
"xgRSSI renamed to xgADCRSSI."
|
||||
REVISION "201409040502Z"
|
||||
DESCRIPTION
|
||||
"xgTotalDlCapacity and xgTotalUlCapacity
|
||||
units changed from Mbps to Kbps."
|
||||
REVISION "201409031048Z"
|
||||
DESCRIPTION
|
||||
"xgTxPwrActual moved from xgRfCarrierStatTable
|
||||
to xgRfChainStatTable."
|
||||
REVISION "201408290240Z"
|
||||
DESCRIPTION
|
||||
"The mib module, containing XG radio options."
|
||||
::= { xg 1 }
|
||||
|
||||
|
||||
xgRfCfg OBJECT IDENTIFIER ::= { xgRadio 1 }
|
||||
|
||||
|
||||
xgUnitType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
master(0),
|
||||
slave(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates XG unit role in radio link."
|
||||
::= { xgRfCfg 1 }
|
||||
|
||||
|
||||
xgCellId OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..167)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates cell id."
|
||||
::= { xgRfCfg 2 }
|
||||
|
||||
|
||||
xgQosStrategy OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
conservative(1),
|
||||
aggressive(2),
|
||||
off(3) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates QoS strategy."
|
||||
::= { xgRfCfg 3 }
|
||||
|
||||
|
||||
xgDlQuota OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..99)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Desirable ratio of downlink traffic
|
||||
related to all traffic in percents."
|
||||
::= { xgRfCfg 4 }
|
||||
|
||||
|
||||
xgFrameLength OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
len-1-ms(1),
|
||||
len-2-ms(2),
|
||||
len-4-ms(4),
|
||||
len-5-ms(5),
|
||||
len-8-ms(8),
|
||||
len-10-ms(10) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio frame length in milliseconds."
|
||||
::= { xgRfCfg 5 }
|
||||
|
||||
|
||||
xgMaxDistance OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..59600)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This value indicates maximum allowed
|
||||
length of radio link in meters for
|
||||
auto-ranging algorithm."
|
||||
::= { xgRfCfg 6 }
|
||||
|
||||
|
||||
xgChannelWidth OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
band-10-mhz(10),
|
||||
band-20-mhz(20),
|
||||
band-40-mhz(40) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Selected radio channel
|
||||
width in MHz."
|
||||
::= { xgRfCfg 7 }
|
||||
|
||||
|
||||
|
||||
|
||||
xgCarrierCfgTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgCarrierCfgEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of radio
|
||||
configuration options
|
||||
by carrier index."
|
||||
::= { xgRfCfg 8 }
|
||||
|
||||
xgCarrierCfgEntry OBJECT-TYPE
|
||||
SYNTAX XgCarrierCfgEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains
|
||||
configuration options
|
||||
for separate radio carrier."
|
||||
INDEX {
|
||||
xgCCIndex }
|
||||
::= { xgCarrierCfgTable 1 }
|
||||
|
||||
XgCarrierCfgEntry ::= SEQUENCE {
|
||||
xgCCIndex Integer32,
|
||||
xgCcMaxTxPwr Integer32,
|
||||
xgCcFreqDl Integer32,
|
||||
xgCcFreqUl Integer32,
|
||||
xgCcAmcMode INTEGER,
|
||||
xgCcAmcStrategy INTEGER }
|
||||
|
||||
xgCCIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier index,
|
||||
ranging from 1 to maximum
|
||||
carrier number used."
|
||||
::= { xgCarrierCfgEntry 1 }
|
||||
|
||||
xgCcMaxTxPwr OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..27000)
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Maximum allowed TX power
|
||||
in thousandths of dB,
|
||||
stepping by 250."
|
||||
::= { xgCarrierCfgEntry 2 }
|
||||
|
||||
xgCcFreqDl OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier frequency in MHz
|
||||
for downlink traffic."
|
||||
::= { xgCarrierCfgEntry 3 }
|
||||
|
||||
xgCcFreqUl OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier frequency in MHz
|
||||
for uplink traffic."
|
||||
::= { xgCarrierCfgEntry 4 }
|
||||
|
||||
xgCcAmcMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
auto(0),
|
||||
manual(1) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"If auto, then TX MCS is set
|
||||
to be upper value that is
|
||||
chosen by adaptive algorithm.
|
||||
If manual, then TX MCS is set
|
||||
to be equal to that value."
|
||||
::= { xgCarrierCfgEntry 5 }
|
||||
|
||||
xgCcAmcStrategy OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
conservative(1),
|
||||
agressive(2) }
|
||||
MAX-ACCESS read-write
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Instructs MCS adaptive algorithm
|
||||
to prefer maximum radio bandwidth
|
||||
over radio transport block error
|
||||
rate or vice versa."
|
||||
::= { xgCarrierCfgEntry 6 }
|
||||
|
||||
|
||||
xgOwnRadioIfIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XG Radio Interface index. The interface identified by
|
||||
a particular value of this index is the same interface as
|
||||
identified by the same value of RFC 1573's ifIndex."
|
||||
::= { xgRfCfg 9 }
|
||||
|
||||
|
||||
|
||||
|
||||
xgRfStat OBJECT IDENTIFIER ::= { xgRadio 2 }
|
||||
|
||||
|
||||
xgLinkStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
stopped(0),
|
||||
starting(1),
|
||||
down(2),
|
||||
up(3),
|
||||
error(4) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"XG radio link status."
|
||||
::= { xgRfStat 1 }
|
||||
|
||||
xgDistance OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated length of
|
||||
radio link in meters."
|
||||
::= { xgRfStat 2 }
|
||||
|
||||
xgDlQuotaActual OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..99)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated portion of allowed downlink
|
||||
traffic related to all traffic in percents."
|
||||
::= { xgRfStat 3 }
|
||||
|
||||
xgTotalTxAirFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of transmitted radio frames."
|
||||
::= { xgRfStat 4 }
|
||||
|
||||
xgTotalTxPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of Ethernet packets
|
||||
transmitted via radio interface."
|
||||
::= { xgRfStat 5 }
|
||||
|
||||
xgTotalRxAirFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of received radio frames."
|
||||
::= { xgRfStat 6 }
|
||||
|
||||
xgTotalRxPackets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of Ethernet packets
|
||||
received from radio interface."
|
||||
::= { xgRfStat 7 }
|
||||
|
||||
xgTotalRxOkABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of received valid air blocks."
|
||||
::= { xgRfStat 8 }
|
||||
|
||||
xgTotalRxErrorABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of received invalid air blocks."
|
||||
::= { xgRfStat 9 }
|
||||
|
||||
xgTotalDlCapacity OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated capacity for
|
||||
downlink traffic in Kbps."
|
||||
::= { xgRfStat 10 }
|
||||
|
||||
xgTotalUlCapacity OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Estimated capacity for
|
||||
uplink traffic in Kbps."
|
||||
::= { xgRfStat 11 }
|
||||
|
||||
|
||||
xgRfCarrierStatTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgRfCarrierStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of radio data
|
||||
by carrier index."
|
||||
::= { xgRfStat 12 }
|
||||
|
||||
xgRfCarrierStatEntry OBJECT-TYPE
|
||||
SYNTAX XgRfCarrierStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains
|
||||
carrier-specific data
|
||||
by carrier index."
|
||||
INDEX {
|
||||
xgRfCarrierIndex }
|
||||
::= { xgRfCarrierStatTable 1 }
|
||||
|
||||
XgRfCarrierStatEntry ::= SEQUENCE {
|
||||
xgRfCarrierIndex Integer32,
|
||||
xgRfGoodRxFrames Counter32,
|
||||
xgRfBadRxFrames Counter32 }
|
||||
|
||||
xgRfCarrierIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier index,
|
||||
ranging from 1 to maximum
|
||||
carrier number used."
|
||||
::= { xgRfCarrierStatEntry 1 }
|
||||
|
||||
xgRfGoodRxFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Good Rx Frames counter."
|
||||
::= { xgRfCarrierStatEntry 2 }
|
||||
|
||||
xgRfBadRxFrames OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Bad Rx Frames counter."
|
||||
::= { xgRfCarrierStatEntry 3 }
|
||||
|
||||
xgRfChainStatTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF XgRfChainStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A table of radio statistics
|
||||
by carrier and stream index."
|
||||
::= { xgRfStat 13 }
|
||||
|
||||
xgRfChainStatEntry OBJECT-TYPE
|
||||
SYNTAX XgRfChainStatEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Each entry contains statistics
|
||||
by carrier and stream index.
|
||||
These indexes coupled together
|
||||
give unique index of radio chain."
|
||||
INDEX {
|
||||
xgRfChainCarrierIndex,
|
||||
xgRfChainStreamIndex }
|
||||
::= { xgRfChainStatTable 1 }
|
||||
|
||||
XgRfChainStatEntry ::= SEQUENCE {
|
||||
xgRfChainCarrierIndex Integer32,
|
||||
xgRfChainStreamIndex Integer32,
|
||||
xgTxMCS INTEGER,
|
||||
xgRxMCS INTEGER,
|
||||
xgCINR Integer32,
|
||||
xgABSRSSI Integer32,
|
||||
xgRxOkABs Counter32,
|
||||
xgRxErrorABs Counter32,
|
||||
xgTxPwrActual Integer32,
|
||||
xgADCRSSI Integer32,
|
||||
xgTxGain Integer32,
|
||||
xgBerAmcCorrection Integer32,
|
||||
xgBerAmcWindowErr Integer32,
|
||||
xgBerAmcOneMinuteErr Integer32,
|
||||
xgBerAmcTenMinutesErr Integer32,
|
||||
xgBerAmcOneHourErr Integer32,
|
||||
xgSTOD Integer32 }
|
||||
|
||||
xgRfChainCarrierIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio carrier index,
|
||||
ranging from 1 to maximum
|
||||
carrier number used."
|
||||
::= { xgRfChainStatEntry 1 }
|
||||
|
||||
xgRfChainStreamIndex OBJECT-TYPE
|
||||
SYNTAX Integer32 (1..2)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Radio stream index,
|
||||
ranging from 1 to maximum
|
||||
streams per carrier.
|
||||
Streams count varies depending
|
||||
on anthenna metod used:
|
||||
SISO, MIMO, double SISO, etc."
|
||||
::= { xgRfChainStatEntry 2 }
|
||||
|
||||
xgTxMCS OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
qpsk-1-2(1),
|
||||
qpsk-3-4(2),
|
||||
qam16-1-2(3),
|
||||
qam16-3-4(4),
|
||||
qam64-4-6(5),
|
||||
qam256-5-8(6),
|
||||
qam256-6-8(7),
|
||||
qam256-7-8(8),
|
||||
qam256-30-32(9),
|
||||
qam1024-8-10(10) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Tx modulation index."
|
||||
::= { xgRfChainStatEntry 3 }
|
||||
|
||||
xgRxMCS OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
qpsk-1-2(1),
|
||||
qpsk-3-4(2),
|
||||
qam16-1-2(3),
|
||||
qam16-3-4(4),
|
||||
qam64-4-6(5),
|
||||
qam256-5-8(6),
|
||||
qam256-6-8(7),
|
||||
qam256-7-8(8),
|
||||
qam256-30-32(9),
|
||||
qam1024-8-10(10) }
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Rx modulation index."
|
||||
::= { xgRfChainStatEntry 4 }
|
||||
|
||||
xgCINR OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Carrier to Interference + Noise Ratio"
|
||||
::= { xgRfChainStatEntry 5 }
|
||||
|
||||
xgABSRSSI OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Absolute Received Signal Strength Indicator"
|
||||
::= { xgRfChainStatEntry 6 }
|
||||
|
||||
xgRxOkABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Valid air block counter"
|
||||
::= { xgRfChainStatEntry 7 }
|
||||
|
||||
xgRxErrorABs OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Invalid air block counter"
|
||||
::= { xgRfChainStatEntry 8 }
|
||||
|
||||
xgTxPwrActual OBJECT-TYPE
|
||||
SYNTAX Integer32 (0..2700)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Measured TX power
|
||||
in hundredths of dB."
|
||||
::= { xgRfChainStatEntry 9 }
|
||||
|
||||
xgADCRSSI OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { xgRfChainStatEntry 10 }
|
||||
|
||||
xgTxGain OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"TX gain in hundredth of dB,
|
||||
stepping by 0.25 dB"
|
||||
::= { xgRfChainStatEntry 11 }
|
||||
|
||||
xgBerAmcCorrection OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
""
|
||||
::= { xgRfChainStatEntry 12 }
|
||||
|
||||
xgBerAmcWindowErr OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"least detectable value 000000001 correspomds to 0.00000001;
|
||||
most possible value 100000000 means 1.00000000
|
||||
special value -1 is used when no data for estimation are available"
|
||||
::= { xgRfChainStatEntry 13 }
|
||||
|
||||
xgBerAmcOneMinuteErr OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"least detectable value 000000001 correspomds to 0.00000001;
|
||||
most possible value 100000000 means 1.00000000"
|
||||
::= { xgRfChainStatEntry 14 }
|
||||
|
||||
xgBerAmcTenMinutesErr OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"least detectable value 000000001 correspomds to 0.00000001;
|
||||
most possible value 100000000 means 1.00000000"
|
||||
::= { xgRfChainStatEntry 15 }
|
||||
|
||||
xgBerAmcOneHourErr OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"least detectable value 000000001 correspomds to 0.00000001;
|
||||
most possible value 100000000 means 1.00000000"
|
||||
::= { xgRfChainStatEntry 16 }
|
||||
|
||||
xgSTOD OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"symbol time offset deviation,
|
||||
measured in tenths of sample"
|
||||
::= { xgRfChainStatEntry 17 }
|
||||
|
||||
|
||||
xgCatalinaTemp OBJECT-TYPE
|
||||
SYNTAX Integer32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Catalina temperature
|
||||
in degrees Celsius."
|
||||
::= { xgRfStat 14 }
|
||||
|
||||
xgTotalTxOctets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of octets
|
||||
transmitted via radio interface."
|
||||
::= { xgRfStat 15 }
|
||||
|
||||
xgTotalRxOctets OBJECT-TYPE
|
||||
SYNTAX Counter32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Amount of octets
|
||||
received from radio interface."
|
||||
::= { xgRfStat 16 }
|
||||
|
||||
|
||||
xgRadioMIBConformance OBJECT IDENTIFIER ::= { xgRadio 3 }
|
||||
|
||||
xgRadioMIBCompliances OBJECT IDENTIFIER ::= { xgRadioMIBConformance 1 }
|
||||
|
||||
xgRadioMIBGroups OBJECT IDENTIFIER ::= { xgRadioMIBConformance 2 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
xgRadioMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for Infinet XG bridge."
|
||||
|
||||
MODULE
|
||||
MANDATORY-GROUPS {
|
||||
xgRadioGroup }
|
||||
|
||||
::= { xgRadioMIBCompliances 1 }
|
||||
|
||||
-- units of conformance
|
||||
|
||||
xgRadioGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
xgUnitType,
|
||||
xgCellId,
|
||||
xgQosStrategy,
|
||||
xgDlQuota,
|
||||
xgFrameLength,
|
||||
xgMaxDistance,
|
||||
xgChannelWidth,
|
||||
xgCCIndex,
|
||||
xgCcMaxTxPwr,
|
||||
xgCcFreqDl,
|
||||
xgCcFreqUl,
|
||||
xgCcAmcMode,
|
||||
xgCcAmcStrategy,
|
||||
xgOwnRadioIfIndex,
|
||||
xgLinkStatus,
|
||||
xgDistance,
|
||||
xgDlQuotaActual,
|
||||
xgTotalTxAirFrames,
|
||||
xgTotalTxPackets,
|
||||
xgTotalRxAirFrames,
|
||||
xgTotalRxPackets,
|
||||
xgTotalRxOkABs,
|
||||
xgTotalRxErrorABs,
|
||||
xgTotalDlCapacity,
|
||||
xgTotalUlCapacity,
|
||||
xgRfCarrierIndex,
|
||||
xgRfGoodRxFrames,
|
||||
xgRfBadRxFrames,
|
||||
xgRfChainCarrierIndex,
|
||||
xgRfChainStreamIndex,
|
||||
xgTxMCS,
|
||||
xgRxMCS,
|
||||
xgCINR,
|
||||
xgABSRSSI,
|
||||
xgRxOkABs,
|
||||
xgRxErrorABs,
|
||||
xgTxPwrActual,
|
||||
xgADCRSSI,
|
||||
xgTxGain,
|
||||
xgBerAmcCorrection,
|
||||
xgBerAmcWindowErr,
|
||||
xgBerAmcOneMinuteErr,
|
||||
xgBerAmcTenMinutesErr,
|
||||
xgBerAmcOneHourErr,
|
||||
xgSTOD,
|
||||
xgCatalinaTemp,
|
||||
xgTotalTxOctets,
|
||||
xgTotalRxOctets }
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The xgRadio group of objects provided
|
||||
for observation and manipulation with
|
||||
XG radio parameters."
|
||||
::= { xgRadioMIBGroups 1 }
|
||||
|
||||
END
|
Reference in New Issue
Block a user