UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

29 lines 1.09 kB
import { ChannelModeEnum } from '../xdslModemConfig/ChannelModeEnum'; import { FrequencyEnum } from '../xdslModemConfig/FrequencyEnum'; import { SecurityTypeEnum } from './SecurityTypeEnum'; /** WLAN Configuration for Modem Template */ export interface WLAN { /** Service Set Identifier of the WLAN interface */ SSID: string; /** Control if Wifi is discoverable or hidden */ SSIDAdvertisementEnabled: boolean; /** Indicate if frequencies 2.4GHz and 5GHz are agregated */ bandSteering: boolean; /** Channel number (Useless if channelMode is set to Auto) */ channel: number; /** How the WiFi channel is selected */ channelMode: ChannelModeEnum; /** Wifi state */ enabled: boolean; /** Modem frequency */ frequency: FrequencyEnum; /** Indicate if it is normal access wifi or guest wifi */ guest: boolean; /** Encrypted WLAN passphrase */ securityKey: string; /** Type of WLAN security protection */ securityType: SecurityTypeEnum; /** Wifi Name */ wifiName: string; } //# sourceMappingURL=WLAN.d.ts.map