-- ************************************************************************ -- ADVANTECH-EKI-DEVICESERVER-MIB: Advantech Industrial Device Server MIB -- -- May 2013, Industrial Communication -- -- Copyright (c) 2013 by Advantech eAutomation Group, Inc. -- All rights reserved. -- ************************************************************************ ADVANTECH-EKI-6333AC-2G-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, enterprises, OBJECT-TYPE, Integer32, IpAddress, NOTIFICATION-TYPE, TimeTicks FROM SNMPv2-SMI -- RFC2578 OBJECT-GROUP FROM SNMPv2-CONF DisplayString, DateAndTime FROM SNMPv2-TC TRAP-TYPE FROM RFC-1215; advantech OBJECT IDENTIFIER ::= { enterprises 10297 } aWirelessMIB MODULE-IDENTITY LAST-UPDATED "201307250000Z" ORGANIZATION "Advantech eAutomation Group" CONTACT-INFO " Advantech eAutomation ICOM E-mail: support@advantech.com Guider.Lee@advantech.com.tw" DESCRIPTION "The MIB module is for Advantech automation device server, e.g. EKI-1321/1322, EKI-1361/1362, etc. Copyright (C) Advantech eAutomation Group(2013). " -- * Revision history REVISION "201307250000Z" DESCRIPTION "Initial version of the Advantech Device Server MIB. " ::= { advantech 203 } eki6333ac2g OBJECT IDENTIFIER ::= { aWirelessMIB 1002 } atNetworking OBJECT IDENTIFIER ::= { eki6333ac2g 1 } atManagement OBJECT IDENTIFIER ::= { eki6333ac2g 3 } atSystem OBJECT IDENTIFIER ::= { eki6333ac2g 4 } traps OBJECT IDENTIFIER ::= { eki6333ac2g 99 } -- *************************************************************************** -- atNetworking group -- A collection of networking objects for interface and protocol. -- The interface contains ethernet, GPRS and wireless objects. -- The protocol contains DDNS, OpenVPN and NAT objects. -- *************************************************************************** interface OBJECT IDENTIFIER ::= { atNetworking 1 } ether OBJECT IDENTIFIER ::= { interface 1 } wlan-2G OBJECT IDENTIFIER ::= { interface 3 } wlan-5G OBJECT IDENTIFIER ::= { interface 4 } -- networking.interface.1(ether) ethInforTable OBJECT-TYPE SYNTAX SEQUENCE OF EthInforEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of ethernet setting." ::= { ether 1 } ethInforEntry OBJECT-TYPE SYNTAX EthInforEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The entry of ethernet setting." INDEX { ethPort } ::= { ethInforTable 1 } EthInforEntry ::= SEQUENCE { ethPort Integer32, ethType INTEGER, ethIpAddr OCTET STRING, ethSubMask OCTET STRING, -- ethDefaultGW OCTET STRING, ethMacAddr OCTET STRING } ethPort OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of the ethernet port." ::= { ethInforEntry 1 } ethType OBJECT-TYPE SYNTAX INTEGER { static-IP(1), dhcp(2) -- bootp-AutoIP(3), -- dhcp-BOOTP-AutoIP(4) } MAX-ACCESS read-write STATUS current DESCRIPTION "The ethernet port can set IP address by manual and auto." ::= { ethInforEntry 2 } ethIpAddr OBJECT-TYPE SYNTAX OCTET STRING (SIZE(7..35)) MAX-ACCESS read-write STATUS current DESCRIPTION "The IP address on this interface port. The IP address can input IPv4 or IPv6 address. If the ethType is static-IP(0) , this IP address need to be setup." ::= { ethInforEntry 3 } ethSubMask OBJECT-TYPE SYNTAX OCTET STRING (SIZE(7..35)) MAX-ACCESS read-write STATUS current DESCRIPTION "The netmask on the inteface port. The netmask can input IPv4 or IPv6 netmask. If the ethType is static-IP(0), this netmask need to be setup. " ::= { ethInforEntry 4 } -- ethDefaultGW OBJECT-TYPE -- SYNTAX OCTET STRING (SIZE(7..35)) -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "The default gateway on the ethernet port. The default -- gateway can input IPv4 or IPv6 address. If the ethType is -- static-IP(0), this default gateway need to be setup. " -- ::= { ethInforEntry 5 } ethMacAddr OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The MAC address on the ethernet port." ::= { ethInforEntry 6 } -- networking.interface.3(wlan-2G) wirelessBasic-2G OBJECT IDENTIFIER ::= { wlan-2G 1 } wlanMode-2G OBJECT-TYPE SYNTAX INTEGER { client(1), adhoc(2), ap(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "mode for wireless setting" ::= { wirelessBasic-2G 1 } wlanSSID-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "SSID" ::= { wirelessBasic-2G 2 } wlanCountryCode-2G OBJECT-TYPE SYNTAX INTEGER { at(1), au(2), be(3), br(4), ca(5), ch(6), cn(7), cy(8), cz(9), de(10), dk(11), ee(12), es(13), fi(14), fr(15), gb(16), gr(17), hk(18), hu(19), id(20), ie(21), il(22), in(23), is(24), it(25), jp(26), ke(27), lt(28), lu(29), lv(30), my(31), nl(32), no(33), nz(34), ph(35), pl(36), pt(37), se(38), sg(39), si(40), sk(41), th(42), tw(43), us(44), za(45) } MAX-ACCESS read-write STATUS current DESCRIPTION "Countrycode" ::= { wirelessBasic-2G 3 } wlanChannel-2G OBJECT-TYPE SYNTAX INTEGER { auto(0), channel-1(1), channel-2(2), channel-3(3), channel-4(4), channel-5(5), channel-6(6), channel-7(7), channel-8(8), channel-9(9), channel-10(10), channel-11(11), channel-12(12), channel-13(13), channel-14(14) } MAX-ACCESS read-write STATUS current DESCRIPTION "Setting channel" ::= {wirelessBasic-2G 4} wlanBAND-2G OBJECT-TYPE SYNTAX INTEGER { wifi-2-4G(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "Operation band" ::= {wirelessBasic-2G 5} wlanBeaconInterval-2G OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Beacon interval in AP mode" ::= {wirelessBasic-2G 6} wlanHiddenSSID-2G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "If SSID broadcasted in the beacon" ::= {wirelessBasic-2G 7} wlanWMM-2G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "If WMM enabled" ::= {wirelessBasic-2G 8} wlanIsolate-2G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "Prevent low-level bridging of frames between associated stations in the BSS" ::= {wirelessBasic-2G 9} wlanBandWidth-2G OBJECT-TYPE SYNTAX INTEGER { sta-unconnect-to-ap(0), legacy(1), ht20-11n(2), ht40-11n(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "Operation bandwidth" ::= {wirelessBasic-2G 10} wlanBSSID-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Wireless AP BSSID" ::= {wirelessBasic-2G 11} -- Security settings .10297.203.1002.1.1.3.2.x wirelessSecurity-2G OBJECT IDENTIFIER ::= { wlan-2G 2 } securityMode-2G OBJECT-TYPE SYNTAX INTEGER { none(1), wep(2), wpa-personal(3), wpa-enterprise(4), dot1x(5) } MAX-ACCESS read-write STATUS current DESCRIPTION "Security Mode" ::= {wirelessSecurity-2G 1} -- WEP relatives .10297.203.1002.1.1.3.2.2.x securityModeWEP-2G OBJECT IDENTIFIER ::= { wirelessSecurity-2G 2 } -- wepAuthAlg-2G OBJECT-TYPE -- SYNTAX INTEGER { -- open-system(1), -- shared-key(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "The authenticate algorithm of WEP encryption" -- ::= {securityModeWEP-2G 1} defaultKeyIndex-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "The WEP key index" ::={securityModeWEP-2G 2} wepKeyFormat-2G OBJECT-TYPE SYNTAX INTEGER { ascii(1), hex(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "The key format of WEP key." ::={securityModeWEP-2G 3} wepKey-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The WEP key." ::= {securityModeWEP-2G 4} -- WPA-Personal relatives .10297.203.1002.1.1.3.2.3.x securityModeWPAPersonal-2G OBJECT IDENTIFIER ::= { wirelessSecurity-2G 3 } wpaPersonalWPAVersion-2G OBJECT-TYPE SYNTAX INTEGER { wp2_wpa3(1), wpa1_wpa2(2), wpa1(3), wpa2(4), wpa3(5) } MAX-ACCESS read-write STATUS current DESCRIPTION "WPA version" ::= {securityModeWPAPersonal-2G 1} passPhrase-2G OBJECT-TYPE SYNTAX OCTET STRING (SIZE(8..63)) MAX-ACCESS read-write STATUS current DESCRIPTION "The WPA key. Note the key length should be 8-63 characters." ::= {securityModeWPAPersonal-2G 2} -- WPA-Enterprise relatives .10297.203.1002.1.1.3.2.4.x securityModeWPAEnterprise-2G OBJECT IDENTIFIER ::= { wirelessSecurity-2G 4 } wpaEnterpriseWPAVersion-2G OBJECT-TYPE SYNTAX INTEGER { wpa(1), wpa2(2), wpa_wpa2(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "WPA version" ::= {securityModeWPAEnterprise-2G 1} eapType-2G OBJECT-TYPE SYNTAX INTEGER { tls(1), ttls(2), peap(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "The EAP method of WPA-enterprise encryption." ::= {securityModeWPAEnterprise-2G 2} eap11w-2G OBJECT-TYPE SYNTAX INTEGER { disable(0), auto(1), required(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Management frame protection of WPA-enterprise encryption." ::= {securityModeWPAEnterprise-2G 3} identity-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The identity of private key when using WPA-enterprise encryption" ::= {securityModeWPAEnterprise-2G 4} privateKeyPassword-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS write-only STATUS current DESCRIPTION "The password of client certificate when using WPA-enterprise encryption" ::= {securityModeWPAEnterprise-2G 5} password-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The password of private key when using WPA-enterprise encryption." ::= {securityModeWPAEnterprise-2G 6} innerAuthentication-2G OBJECT-TYPE SYNTAX INTEGER { mschapv2(1), pap(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "The inner authentication when using TTLS EAP method in WPA-enterprise." ::= {securityModeWPAEnterprise-2G 7} radiusServerIPAddress-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "IP address of radius server when using WPA-enterprise in AP mode" ::= {securityModeWPAEnterprise-2G 8} port-2G OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Port number of radius server when using WPA-enterprise in AP mode" ::= {securityModeWPAEnterprise-2G 9} sharedSecrets-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The secret passphrase to connect to radius server" ::= {securityModeWPAEnterprise-2G 10} -- 8021.X relatives .10297.203.1002.1.1.3.2.5.x securityMode8021x-2G OBJECT IDENTIFIER ::= { wirelessSecurity-2G 5 } dot1xRadiusServerIPAddress-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "IP address of radius server when using 802.1X in AP mode" ::= {securityMode8021x-2G 1} dot1xPort-2G OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Port number of radius server when using 802.1X in AP mode" ::= {securityMode8021x-2G 2} dot1xSharedSecrets-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The secret passphrase to connect to radius server" ::= {securityMode8021x-2G 3} -- Advanced settings .10297.203.1002.1.1.3.3.x wirelessAdvanced-2G OBJECT IDENTIFIER ::= { wlan-2G 3 } rtsThreshold-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "RTS threshold. The accecptable value is 1 - 2347." ::= {wirelessAdvanced-2G 1} -- fragmentThreshold OBJECT-TYPE -- SYNTAX Integer32 -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "Fragment threshold (in ms)" -- ::= {wirelessAdvanced 2} -- preamble OBJECT-TYPE -- SYNTAX INTEGER { -- short(1), -- long(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "Preamble setting" -- ::= {wirelessAdvanced 3} roaming-2G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Enable/ disable roaming" ::= {wirelessAdvanced-2G 4} rssiThreshold-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "RSSI threshold, which is the minimum RSSI that is allowed before the client should roam to a better access point." ::= {wirelessAdvanced-2G 5} rssiHysterisis-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "RSSI hysteresis" ::= {wirelessAdvanced-2G 6} scanIntervalHigh-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "Scan interval when signal level is higher than RSSI threshold" ::= {wirelessAdvanced-2G 7} scanIntervalLow-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "Scan interval when signal level is lower than RSSI threshold" ::= {wirelessAdvanced-2G 8} -- Wlan statistic .10297.203.1002.1.1.3.5.x wlanStatistic-2G OBJECT IDENTIFIER ::= { wlan-2G 5 } wlanStatAPBSSID-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Current connected BSSID of target AP" ::= {wlanStatistic-2G 1} wlanStatAPRSSI-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Current RSSI , return null when is not connected to AP" ::= {wlanStatistic-2G 2} wlanStatTXpower-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Current transmission power (dBm)." ::= {wlanStatistic-2G 3} -- wlanStatSignal-2G OBJECT-TYPE -- SYNTAX Integer32 -- MAX-ACCESS read-only -- STATUS current -- DESCRIPTION "Current signal level , return 0 when is not connected to AP" -- ::= {wlanStatistic-2G 4} -- wlanStatFrequency-2G OBJECT-TYPE -- SYNTAX Integer32 -- MAX-ACCESS read-only -- STATUS current -- DESCRIPTION "Current working frequency" -- ::= {wlanStatistic-2G 5} wlanStatTxPackets-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission packets of WLAN" ::= {wlanStatistic-2G 6} wlanStatTxBytes-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission bytes of WLAN" ::= {wlanStatistic-2G 7} wlanStatRxPackets-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Receive packets of WLAN" ::= {wlanStatistic-2G 8} wlanStatRxBytes-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Receive bytes of WLAN" ::= {wlanStatistic-2G 9} wlanStationListTable-2G OBJECT-TYPE SYNTAX SEQUENCE OF StationListEntry-2G MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of station list." ::= { wlanStatistic-2G 10 } stationListEntry-2G OBJECT-TYPE SYNTAX StationListEntry-2G MAX-ACCESS not-accessible STATUS current DESCRIPTION "The entry of station list." INDEX { wlanStaIndex-2G } ::= { wlanStationListTable-2G 1 } StationListEntry-2G ::= SEQUENCE { wlanStaIndex-2G Integer32, wlanStabssid-2G OCTET STRING, wlanIpAddr-2G OCTET STRING, wlanSignalLev-2G OCTET STRING, wlanConnecteTime-2G OCTET STRING, wlanTxRate-2G OCTET STRING, wlanRxRate-2G OCTET STRING, wlanTxPackets-2G OCTET STRING, wlanTxBytes-2G OCTET STRING, wlanRxPackets-2G OCTET STRING, wlanRxBytes-2G OCTET STRING } wlanStaIndex-2G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of the station number." ::= { stationListEntry-2G 1 } wlanStabssid-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The MAC address on the station." ::= { stationListEntry-2G 2 } wlanIpAddr-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The IPv4 address on the station." ::= { stationListEntry-2G 3 } wlanSignalLev-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The signal level (dBm) on the station." ::= { stationListEntry-2G 4 } wlanConnecteTime-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The Station and AP connection time (seconds)." ::= { stationListEntry-2G 5 } wlanTxRate-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission rate on the station." ::= { stationListEntry-2G 6 } wlanRxRate-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Received rate on the station." ::= { stationListEntry-2G 7 } wlanTxPackets-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission packets on the station." ::= { stationListEntry-2G 8 } wlanTxBytes-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission bytes on the station." ::= { stationListEntry-2G 9 } wlanRxPackets-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Received packets on the station." ::= { stationListEntry-2G 10 } wlanRxBytes-2G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Received bytes on the station." ::= { stationListEntry-2G 11 } -- networking.interface.4(wlan-5G) wirelessBasic-5G OBJECT IDENTIFIER ::= { wlan-5G 1 } wlanMode-5G OBJECT-TYPE SYNTAX INTEGER { client(1), adhoc(2), ap(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "mode for wireless setting" ::= { wirelessBasic-5G 1 } wlanSSID-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "SSID" ::= { wirelessBasic-5G 2 } wlanCountryCode-5G OBJECT-TYPE SYNTAX INTEGER { at(1), au(2), be(3), br(4), ca(5), ch(6), cn(7), cy(8), cz(9), de(10), dk(11), ee(12), es(13), fi(14), fr(15), gb(16), gr(17), hk(18), hu(19), id(20), ie(21), il(22), in(23), is(24), it(25), jp(26), ke(27), lt(28), lu(29), lv(30), my(31), nl(32), no(33), nz(34), ph(35), pl(36), pt(37), se(38), sg(39), si(40), sk(41), th(42), tw(43), us(44), za(45) } MAX-ACCESS read-write STATUS current DESCRIPTION "Countrycode" ::= { wirelessBasic-5G 3 } wlanChannel-5G OBJECT-TYPE SYNTAX INTEGER { auto(0), channel-36(36), channel-40(40), channel-44(44), channel-48(48), channel-149(149), channel-153(153), channel-157(157), channel-161(161), channel-165(165) } MAX-ACCESS read-write STATUS current DESCRIPTION "Setting channel" ::= {wirelessBasic-5G 4} wlanBAND-5G OBJECT-TYPE SYNTAX INTEGER { wifi-5G(1) } MAX-ACCESS read-write STATUS current DESCRIPTION "Operation band" ::= {wirelessBasic-5G 5} wlanBeaconInterval-5G OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Beacon interval in AP mode" ::= {wirelessBasic-5G 6} wlanHiddenSSID-5G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "If SSID broadcasted in the beacon" ::= {wirelessBasic-5G 7} wlanWMM-5G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "If WMM enabled" ::= {wirelessBasic-5G 8} wlanIsolate-5G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(0) } MAX-ACCESS read-write STATUS current DESCRIPTION "Prevent low-level bridging of frames between associated stations in the BSS" ::= {wirelessBasic-5G 9} wlanBandWidth-5G OBJECT-TYPE SYNTAX INTEGER { sta-unconnect-to-ap(0), legacy(1), ht20-11n(2), ht40-11n(3), vht80-11ac(4) } MAX-ACCESS read-write STATUS current DESCRIPTION "Operation bandwidth" ::= {wirelessBasic-5G 10} wlanBSSID-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Wireless AP BSSID" ::= {wirelessBasic-5G 11} -- Security settings .10297.203.1002.1.1.4.2.x wirelessSecurity-5G OBJECT IDENTIFIER ::= { wlan-5G 2 } securityMode-5G OBJECT-TYPE SYNTAX INTEGER { none(1), wep(2), wpa-personal(3), wpa-enterprise(4), dot1x(5) } MAX-ACCESS read-write STATUS current DESCRIPTION "Security Mode" ::= {wirelessSecurity-5G 1} -- WEP relatives .10297.203.1002.1.1.4.2.2.x securityModeWEP-5G OBJECT IDENTIFIER ::= { wirelessSecurity-5G 2 } -- wepAuthAlg-5G OBJECT-TYPE -- SYNTAX INTEGER { -- open-system(1), -- shared-key(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "The authenticate algorithm of WEP encryption" -- ::= {securityModeWEP-5G 1} defaultKeyIndex-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "The WEP key index" ::={securityModeWEP-5G 2} wepKeyFormat-5G OBJECT-TYPE SYNTAX INTEGER { ascii(1), hex(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "The key format of WEP key." ::={securityModeWEP-5G 3} wepKey-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The WEP key." ::= {securityModeWEP-5G 4} -- WPA-Personal relatives .10297.203.1002.1.1.4.2.3.x securityModeWPAPersonal-5G OBJECT IDENTIFIER ::= { wirelessSecurity-5G 3 } wpaPersonalWPAVersion-5G OBJECT-TYPE SYNTAX INTEGER { wp2_wpa3(1), wpa1_wpa2(2), wpa1(3), wpa2(4), wpa3(5) } MAX-ACCESS read-write STATUS current DESCRIPTION "WPA version" ::= {securityModeWPAPersonal-5G 1} passPhrase-5G OBJECT-TYPE SYNTAX OCTET STRING (SIZE(8..63)) MAX-ACCESS read-write STATUS current DESCRIPTION "The WPA key. Note the key length should be 8-63 characters." ::= {securityModeWPAPersonal-5G 2} -- WPA-Enterprise relatives .10297.203.1002.1.1.4.2.4.x securityModeWPAEnterprise-5G OBJECT IDENTIFIER ::= { wirelessSecurity-5G 4 } wpaEnterpriseWPAVersion-5G OBJECT-TYPE SYNTAX INTEGER { wpa(1), wpa2(2), wpa_wpa2(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "WPA version" ::= {securityModeWPAEnterprise-5G 1} eapType-5G OBJECT-TYPE SYNTAX INTEGER { tls(1), ttls(2), peap(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "The EAP method of WPA-enterprise encryption." ::= {securityModeWPAEnterprise-5G 2} eap11w-5G OBJECT-TYPE SYNTAX INTEGER { disable(0), auto(1), required(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Management frame protection of WPA-enterprise encryption." ::= {securityModeWPAEnterprise-5G 3} identity-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The identity of private key when using WPA-enterprise encryption" ::= {securityModeWPAEnterprise-5G 4} privateKeyPassword-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS write-only STATUS current DESCRIPTION "The password of client certificate when using WPA-enterprise encryption" ::= {securityModeWPAEnterprise-5G 5} password-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The password of private key when using WPA-enterprise encryption." ::= {securityModeWPAEnterprise-5G 6} innerAuthentication-5G OBJECT-TYPE SYNTAX INTEGER { mschapv2(1), pap(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "The inner authentication when using TTLS EAP method in WPA-enterprise." ::= {securityModeWPAEnterprise-5G 7} radiusServerIPAddress-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "IP address of radius server when using WPA-enterprise in AP mode" ::= {securityModeWPAEnterprise-5G 8} port-5G OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Port number of radius server when using WPA-enterprise in AP mode" ::= {securityModeWPAEnterprise-5G 9} sharedSecrets-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The secret passphrase to connect to radius server" ::= {securityModeWPAEnterprise-5G 10} -- 802.1X relatives .10297.203.1002.1.1.4.2.5.x securityMode8021x-5G OBJECT IDENTIFIER ::= { wirelessSecurity-5G 5 } dot1xRadiusServerIPAddress-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "IP address of radius server when using 802.1X in AP mode" ::= {securityMode8021x-5G 1} dot1xPort-5G OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Port number of radius server when using 802.1X in AP mode" ::= {securityMode8021x-5G 2} dot1xSharedSecrets-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The secret passphrase to connect to radius server" ::= {securityMode8021x-5G 3} -- Advanced settings .10297.203.1002.1.1.4.3.x wirelessAdvanced-5G OBJECT IDENTIFIER ::= { wlan-5G 3 } rtsThreshold-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "RTS threshold. The accecptable value is 1 - 2347." ::= {wirelessAdvanced-5G 1} -- fragmentThreshold OBJECT-TYPE -- SYNTAX Integer32 -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "Fragment threshold (in ms)" -- ::= {wirelessAdvanced 2} -- preamble OBJECT-TYPE -- SYNTAX INTEGER { -- short(1), -- long(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "Preamble setting" -- ::= {wirelessAdvanced 3} roaming-5G OBJECT-TYPE SYNTAX INTEGER { enabled(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Enable/ disable roaming" ::= {wirelessAdvanced-5G 4} rssiThreshold-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "RSSI threshold, which is the minimum RSSI that is allowed before the client should roam to a better access point." ::= {wirelessAdvanced-5G 5} rssiHysterisis-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "RSSI hysteresis" ::= {wirelessAdvanced-5G 6} scanIntervalHigh-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "Scan interval when signal level is higher than RSSI threshold" ::= {wirelessAdvanced-5G 7} scanIntervalLow-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "Scan interval when signal level is lower than RSSI threshold" ::= {wirelessAdvanced-5G 8} -- Wlan statistic .10297.203.1002.1.1.4.5.x wlanStatistic-5G OBJECT IDENTIFIER ::= { wlan-5G 5 } wlanStatAPBSSID-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Current connected BSSID of target AP" ::= {wlanStatistic-5G 1} wlanStatAPRSSI-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Current RSSI , return 0 when is not connected to AP" ::= {wlanStatistic-5G 2} wlanStatTXpower-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Current transmission power (dBm)." ::= {wlanStatistic-5G 3} -- wlanStatSignal-5G OBJECT-TYPE -- SYNTAX Integer32 -- MAX-ACCESS read-only -- STATUS current -- DESCRIPTION "Current signal level , return 0 when is not connected to AP" -- ::= {wlanStatistic-5G 4} -- wlanStatFrequency-5G OBJECT-TYPE -- SYNTAX Integer32 -- MAX-ACCESS read-only -- STATUS current -- DESCRIPTION "Current working frequency" -- ::= {wlanStatistic-5G 5} wlanStatTxPackets-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission packets of WLAN" ::= {wlanStatistic-5G 6} wlanStatTxBytes-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission bytes of WLAN" ::= {wlanStatistic-5G 7} wlanStatRxPackets-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Receive packets of WLAN" ::= {wlanStatistic-5G 8} wlanStatRxBytes-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current DESCRIPTION "Receive bytes of WLAN" ::= {wlanStatistic-5G 9} wlanStationListTable-5G OBJECT-TYPE SYNTAX SEQUENCE OF StationListEntry-5G MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of station list." ::= { wlanStatistic-5G 10 } stationListEntry-5G OBJECT-TYPE SYNTAX StationListEntry-5G MAX-ACCESS not-accessible STATUS current DESCRIPTION "The entry of station list." INDEX { wlanStaIndex-5G } ::= { wlanStationListTable-5G 1 } StationListEntry-5G ::= SEQUENCE { wlanStaIndex-5G Integer32, wlanStabssid-5G OCTET STRING, wlanIpAddr-5G OCTET STRING, wlanSignalLev-5G OCTET STRING, wlanConnecteTime-5G OCTET STRING, wlanTxRate-5G OCTET STRING, wlanRxRate-5G OCTET STRING, wlanTxPackets-5G OCTET STRING, wlanTxBytes-5G OCTET STRING, wlanRxPackets-5G OCTET STRING, wlanRxBytes-5G OCTET STRING } wlanStaIndex-5G OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index of the station number." ::= { stationListEntry-5G 1 } wlanStabssid-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The MAC address on the station." ::= { stationListEntry-5G 2 } wlanIpAddr-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The IPv4 address on the station." ::= { stationListEntry-5G 3 } wlanSignalLev-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The signal level (dBm) on the station." ::= { stationListEntry-5G 4 } wlanConnecteTime-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "The Station and AP connection time (seconds)." ::= { stationListEntry-5G 5 } wlanTxRate-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission rate on the station." ::= { stationListEntry-5G 6 } wlanRxRate-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Received rate on the station." ::= { stationListEntry-5G 7 } wlanTxPackets-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission packets on the station." ::= { stationListEntry-5G 8 } wlanTxBytes-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Transmission bytes on the station." ::= { stationListEntry-5G 9 } wlanRxPackets-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Received packets on the station." ::= { stationListEntry-5G 10 } wlanRxBytes-5G OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Received bytes on the station." ::= { stationListEntry-5G 11 } -- *************************************************************************** -- atManagement group -- A collection of management objects to device server. -- *************************************************************************** accessible OBJECT IDENTIFIER ::= { atManagement 1 } time OBJECT IDENTIFIER ::= { atManagement 2 } --alarmsetting OBJECT IDENTIFIER ::= { atManagement 3 } reset OBJECT IDENTIFIER ::= { atManagement 4 } lldp OBJECT IDENTIFIER ::= { atManagement 5 } snmp OBJECT IDENTIFIER ::= { atManagement 6 } syslog OBJECT IDENTIFIER ::= { atManagement 7 } -- management.1(accessible) -- deviceDescrip OBJECT-TYPE -- SYNTAX OCTET STRING -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "" -- ::= { accessible 1 } -- enableWebService OBJECT-TYPE -- SYNTAX INTEGER { -- enable(1), -- disable(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "enable web service on the device." -- ::= { accessible 2 } -- enableTelnetService OBJECT-TYPE -- SYNTAX INTEGER { -- enable(1), -- disable(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "enable telnet service on the device." -- ::= { accessible 3 } enableSNMPService OBJECT-TYPE SYNTAX INTEGER { enable(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "enable SNMP service on the device." ::= { accessible 4 } -- allowAnyIp OBJECT-TYPE -- SYNTAX INTEGER { -- anyIp(1), -- specificIp(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "Allowed all IP address can access the device or onlt one IP -- can access the device." -- ::= { accessible 5 } -- accessibleIp OBJECT-TYPE -- SYNTAX OCTET STRING -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "The allowed IP address to access the device. This OID can -- work when the allowAnyIp is specificIp(1)." -- ::= { accessible 6 } -- management.2(time) timeZone OBJECT-TYPE SYNTAX INTEGER { -- gmt-negative12-00-Eniwetok-Kwajalein(0), gmt-negative11-00-Midway_Island_Samoa(1), gmt-negative10-00-Hawaii(2), gmt-negative09-00-Alaska(3), gmt-negative08-00-Pacific-Time(4), gmt-negative07-00-Arizona_Mountain-Time(5), gmt-negative06-00-Central-Time(6), gmt-negative06-00-Middle-America(7), gmt-negative05-00-Indiana-East_Colombia(8), gmt-negative05-00-Eastern-Time(9), gmt-negative04-00-Atlantic_Time_Brazil-West(10), gmt-negative04-00-Bolivia_Venezuela(11), gmt-negative03-00-Guyana(12), gmt-negative03-00-Brazil-East_Greenland(13), gmt-negative02-00-Mid-Atlantic(14), gmt-negative01-00-Azores-Islands(15), gmt-00-00-Gambia_Liberia_Morocco(16), gmt-00-00-England(17), gmt-positive01-00-Czech_Republic_N(18), gmt-positive01-00-Germany(19), gmt-positive01-00-Tunisia(20), gmt-positive02-00-Greece_Ukraine_Turkey(21), gmt-positive02-00-South-Africa(22), gmt-positive03-00-Iraq_Jordan_Kuwait(23), gmt-positive03-00-Moscow-Winter-Time(24), gmt-positive04-00-Armenia(25), gmt-positive05-00-Pakistan_Russia(26), gmt-positive06-00-Bangladesh-Russia(27), gmt-positive07-00-Thailand_Russia(28), gmt-positive08-00-China-Coast_Hong-Kong(29), gmt-positive08-00-Taipei(30), gmt-positive08-00-Singapore(31), gmt-positive08-00-Australia(32), gmt-positive09-00-Japan_Korea(33), gmt-positive09-00-Korean(34), gmt-positive10-00-Guam_Russia(35), gmt-positive10-00-Australia (36), gmt-positive11-00-Solomon_Islands(37), gmt-positive12-00-Fiji(38), gmt-positive12-00-New_Zealand(39) } MAX-ACCESS read-write STATUS current DESCRIPTION "UTC Timezone." ::= { time 1 } modifyDevTime OBJECT IDENTIFIER ::= { time 2 } -- enableModTime OBJECT-TYPE -- SYNTAX INTEGER { -- enable(1), -- disable(2) -- } -- MAX-ACCESS read-write -- STATUS current -- DESCRIPTION "Enable time modifed function." -- ::= { modifyDevTime 1 } modTimeYear OBJECT-TYPE SYNTAX Integer32 (1970..2030) MAX-ACCESS read-write STATUS current DESCRIPTION "The current year is in the device. After enable enableModTime, this value can set into device." ::= { modifyDevTime 2 } modTimeMonth OBJECT-TYPE SYNTAX Integer32 (1..12) MAX-ACCESS read-write STATUS current DESCRIPTION "The current month is in the device. After enable enableModTime, this value can set into device." ::= { modifyDevTime 3 } modTimeDay OBJECT-TYPE SYNTAX Integer32 (1..31) MAX-ACCESS read-write STATUS current DESCRIPTION "The current day is in the device. After enable enableModTime, this value can set into device." ::= { modifyDevTime 4 } modTimeHour OBJECT-TYPE SYNTAX Integer32 (0..23) MAX-ACCESS read-write STATUS current DESCRIPTION "The current hour is in the device. After enable enableModTime, this value can set into device." ::= { modifyDevTime 5 } modTimeMin OBJECT-TYPE SYNTAX Integer32 (0..59) MAX-ACCESS read-write STATUS current DESCRIPTION "The current minute is in the device. After enable enableModTime, this value can set into device." ::= { modifyDevTime 6 } modTimeSec OBJECT-TYPE SYNTAX Integer32 (0..59) MAX-ACCESS read-write STATUS current DESCRIPTION "The current second is in the device. After enable enableModTime, this value can set into device." ::= { modifyDevTime 7 } enNTP OBJECT IDENTIFIER ::= { time 3 } enableNTP OBJECT-TYPE SYNTAX INTEGER { enable(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "enable Network Time Protocol" ::= { enNTP 1 } sNTPServer OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-write STATUS current DESCRIPTION "The IP address of NTP server. The IP address can input IPv4 or IPv6 address. If user set the server address and the NTP service is enable, the time of the device will be the same as the NTP server." ::= { enNTP 2 } -- management.4(reset) reboot OBJECT-TYPE SYNTAX INTEGER { reboot(1) } MAX-ACCESS write-only STATUS current DESCRIPTION "Save and reset system." ::= { reset 1 } -- loadDefault OBJECT-TYPE -- SYNTAX INTEGER { -- loaddefault(1) -- } -- MAX-ACCESS write-only -- STATUS current -- DESCRIPTION "reset device configuration to default. For security issue, -- this feature will not be enable." -- ::= { reset 2 } -- management.5(lldp) lldpEnabled OBJECT-TYPE SYNTAX INTEGER { enable(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "enable LLDP service on the device." ::={lldp 1} lldpTxInterval OBJECT-TYPE SYNTAX Integer32 (5..32767) MAX-ACCESS read-write STATUS current DESCRIPTION "The device actively sends LLDP packet every few seconds." ::={lldp 2} lldpHoldtimeMultiplier OBJECT-TYPE SYNTAX Integer32 (2..10) MAX-ACCESS read-write STATUS current DESCRIPTION "If a neighbor does not respond within a certain number of times, it will assume that the neighbor has disappeared." ::={lldp 3} -- management.6(snmp) snmpState OBJECT-TYPE SYNTAX INTEGER { enable(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Enable SNMP service on the device." ::= { snmp 1 } snmpTrapHostTable OBJECT-TYPE SYNTAX SEQUENCE OF SnmpTrapHostEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The table of SNMP trap host." ::= { snmp 2 } snmpTrapHostEntry OBJECT-TYPE SYNTAX SnmpTrapHostEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "The entry of SNMP trap host." INDEX { snmpTrapHostIndex } ::= { snmpTrapHostTable 1 } SnmpTrapHostEntry ::= SEQUENCE { snmpTrapHostIndex INTEGER, snmpTrapHostVersion INTEGER, snmpTrapHostServerIP OCTET STRING, snmpTrapHostServerPort INTEGER, snmpTrapHostCommunityName DisplayString } snmpTrapHostIndex OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-only STATUS current DESCRIPTION "The index of SNMP trap host." ::= { snmpTrapHostEntry 1 } snmpTrapHostVersion OBJECT-TYPE SYNTAX INTEGER { v1(1), v2(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "The SNMP version of SNMP trap host." ::= { snmpTrapHostEntry 2 } snmpTrapHostServerIP OBJECT-TYPE SYNTAX OCTET STRING (SIZE(7..35)) MAX-ACCESS read-write STATUS current DESCRIPTION "The ip address of SNMP trap host." ::= { snmpTrapHostEntry 3 } snmpTrapHostServerPort OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Port number of SNMP trap server." ::= {snmpTrapHostEntry 4} snmpTrapHostCommunityName OBJECT-TYPE SYNTAX DisplayString MAX-ACCESS read-write STATUS current DESCRIPTION "The community name of SNMP trap host." ::= { snmpTrapHostEntry 5 } -- management.7(syslog) syslogState OBJECT-TYPE SYNTAX INTEGER { enable(1), disable(2) } MAX-ACCESS read-write STATUS current DESCRIPTION "Enable Syslog service on the device." ::= { syslog 1 } syslogIPAddress OBJECT-TYPE SYNTAX OCTET STRING (SIZE(7..35)) MAX-ACCESS read-write STATUS current DESCRIPTION "The ip address of Syslog server." ::= { syslog 2 } syslogPort OBJECT-TYPE SYNTAX INTEGER MAX-ACCESS read-write STATUS current DESCRIPTION "Port number of Syslog server." ::= {syslog 3} syslogAction OBJECT-TYPE SYNTAX INTEGER { apply(1) } MAX-ACCESS read-write STATUS current DESCRIPTION "Apply Syslog service immediately on the device." ::= { syslog 4 } -- ************************************************************************************* -- atSystem group -- A collection of system objects for device information. -- The information contains model name, Firmware Version, CPU Utilization objects. -- ************************************************************************************* -- atSystem.1(Model Name) sysModelName OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Device model name" ::= {atSystem 1} -- atSystem.2(FW Version) sysFWVersion OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "Device firmware version" ::= {atSystem 2} -- atSystem.3(CPU Utilization) sysCPUUtilization OBJECT-TYPE SYNTAX OCTET STRING MAX-ACCESS read-only STATUS current DESCRIPTION "System CPU utilization" ::= {atSystem 3} -- ************************************************************************************* -- traps group -- A collection of traps objects for AP or STA information. -- This information includes objects with AP MAC address or STA MAC address. -- ************************************************************************************* -- traps apSendSTAConnectSuccessTrap NOTIFICATION-TYPE STATUS current DESCRIPTION "AP will send this trap when the client successfully connects to the AP." ::= {traps 1} END