Commit version 24.12.13800
This commit is contained in:
@ -6,21 +6,26 @@ IMPORTS
|
||||
Integer32,
|
||||
Counter64,
|
||||
TimeTicks,
|
||||
IpAddress,
|
||||
NOTIFICATION-TYPE
|
||||
FROM SNMPv2-SMI -- [RFC2578]
|
||||
ifIndex
|
||||
FROM IF-MIB -- [RFC2863]
|
||||
VlanIndex
|
||||
FROM Q-BRIDGE-MIB
|
||||
MacAddress,
|
||||
TruthValue,
|
||||
TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC -- [RFC2579]
|
||||
InetAddressIPv4,
|
||||
InetAddressIPv4,InetAddress,
|
||||
InetAddressIPv6
|
||||
FROM INET-ADDRESS-MIB -- [RFC4001]
|
||||
EnabledStatus
|
||||
FROM P-BRIDGE-MIB
|
||||
SnmpAdminString
|
||||
FROM SNMP-FRAMEWORK-MIB -- [RFC3411]
|
||||
DisplayString
|
||||
FROM FOUNDRY-SN-AGENT-MIB
|
||||
MODULE-COMPLIANCE,
|
||||
OBJECT-GROUP,
|
||||
NOTIFICATION-GROUP
|
||||
@ -29,7 +34,7 @@ IMPORTS
|
||||
FROM FOUNDRY-SN-SWITCH-GROUP-MIB;
|
||||
|
||||
ruckusWiredClientMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201902280000Z" -- Jan 26, 2019
|
||||
LAST-UPDATED "202305240000Z" -- May 24, 2023
|
||||
ORGANIZATION "Ruckus Wireless, Inc."
|
||||
CONTACT-INFO
|
||||
"Technical Support Center
|
||||
@ -66,6 +71,11 @@ ruckusWiredClientMIB MODULE-IDENTITY
|
||||
"201902280000Z" -- Feb 28, 2019
|
||||
DESCRIPTION
|
||||
"Initial Version"
|
||||
REVISION
|
||||
"202305240000Z" -- May 24, 2023
|
||||
DESCRIPTION
|
||||
"Added new mib objects to fetch the hostname,device type,
|
||||
OS type and model name of the client connected."
|
||||
::= { snSwitch 43 }
|
||||
|
||||
ruckusWiredClientNotify OBJECT IDENTIFIER ::= { ruckusWiredClientMIB 0 }
|
||||
@ -132,7 +142,12 @@ RuckusWiredClientEntry ::= SEQUENCE {
|
||||
ruckusWiredClientTxPkts Counter64,
|
||||
ruckusWiredClientRxPkts Counter64,
|
||||
ruckusWiredClientTxOctets Counter64,
|
||||
ruckusWiredClientRxOctets Counter64
|
||||
ruckusWiredClientRxOctets Counter64,
|
||||
ruckusDhcpClientHostName SnmpAdminString,
|
||||
ruckusDhcpClientDeviceTypeName SnmpAdminString,
|
||||
ruckusDhcpClientOsVendorName SnmpAdminString,
|
||||
ruckusDhcpClientModelName SnmpAdminString
|
||||
|
||||
}
|
||||
|
||||
ruckusWiredClientMac OBJECT-TYPE
|
||||
@ -237,15 +252,15 @@ ruckusWiredClientUserName OBJECT-TYPE
|
||||
not applicable."
|
||||
::= { ruckusWiredClientEntry 7 }
|
||||
|
||||
ruckusWiredClientV4Addr OBJECT-TYPE
|
||||
SYNTAX InetAddressIPv4
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The IPv4 address of the client represented by this
|
||||
entry. A client can have both IPv4 and IPv6
|
||||
addresses bound on dual-stack hosts."
|
||||
::= { ruckusWiredClientEntry 8 }
|
||||
ruckusWiredClientV4Addr OBJECT-TYPE
|
||||
SYNTAX InetAddressIPv4
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The IPv4 address of the client represented by this
|
||||
entry. A client can have both IPv4 and IPv6
|
||||
addresses bound on dual-stack hosts."
|
||||
::= { ruckusWiredClientEntry 8 }
|
||||
|
||||
ruckusWiredClientV6Addr OBJECT-TYPE
|
||||
SYNTAX InetAddressIPv6
|
||||
@ -303,6 +318,44 @@ ruckusWiredClientRxOctets OBJECT-TYPE
|
||||
this client."
|
||||
::= { ruckusWiredClientEntry 14 }
|
||||
|
||||
ruckusDhcpClientHostName OBJECT-TYPE
|
||||
SYNTAX SnmpAdminString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Specified the Host name associated with the client,
|
||||
represented by this entry."
|
||||
::= { ruckusWiredClientEntry 15 }
|
||||
|
||||
ruckusDhcpClientDeviceTypeName OBJECT-TYPE
|
||||
SYNTAX SnmpAdminString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Specified the Device type name (mobile,laptop) associated with the
|
||||
client,
|
||||
represented by this entry."
|
||||
::= { ruckusWiredClientEntry 16 }
|
||||
|
||||
ruckusDhcpClientOsVendorName OBJECT-TYPE
|
||||
SYNTAX SnmpAdminString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Specified the OS vendor name associated with the client,
|
||||
represented by this entry."
|
||||
::= { ruckusWiredClientEntry 17 }
|
||||
|
||||
ruckusDhcpClientModelName OBJECT-TYPE
|
||||
SYNTAX SnmpAdminString
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Specified the Device mode name associated with the client,
|
||||
represented by this entry."
|
||||
::= { ruckusWiredClientEntry 18 }
|
||||
|
||||
|
||||
-- ------------------------------------------------------------
|
||||
-- Client MIB Notifications
|
||||
-- ------------------------------------------------------------
|
||||
@ -359,8 +412,13 @@ ruckusWiredClientGroup OBJECT-GROUP
|
||||
ruckusWiredClientUpTime,
|
||||
ruckusWiredClientTxPkts,
|
||||
ruckusWiredClientRxPkts,
|
||||
ruckusWiredClientTxOctets,
|
||||
ruckusWiredClientRxOctets
|
||||
ruckusWiredClientTxOctets,
|
||||
ruckusWiredClientRxOctets,
|
||||
ruckusDhcpClientHostName,
|
||||
ruckusDhcpClientDeviceTypeName,
|
||||
ruckusDhcpClientOsVendorName,
|
||||
ruckusDhcpClientModelName
|
||||
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION "A collection of objects that provide client
|
||||
|
Reference in New Issue
Block a user