1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWirelesscontrollerWtpprofile
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectWirelesscontrollerWtpprofile

Explore with Pulumi AI

Configure WTP profiles or FortiAP profiles that define radio settings for manageable FortiAP platforms.

The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

  • deny_mac_list: fortimanager.ObjectWirelesscontrollerWtpprofileDenymaclist
  • esl_ses_dongle: fortimanager.ObjectWirelesscontrollerWtpprofileEslsesdongle
  • lan: fortimanager.ObjectWirelesscontrollerWtpprofileLan
  • lbs: fortimanager.ObjectWirelesscontrollerWtpprofileLbs
  • platform: fortimanager.ObjectWirelesscontrollerWtpprofilePlatform
  • radio_1: fortimanager.ObjectWirelesscontrollerWtpprofileRadio1
  • radio_2: fortimanager.ObjectWirelesscontrollerWtpprofileRadio2
  • radio_3: fortimanager.ObjectWirelesscontrollerWtpprofileRadio3
  • radio_4: fortimanager.ObjectWirelesscontrollerWtpprofileRadio4
  • split_tunneling_acl: fortimanager.ObjectWirelesscontrollerWtpprofileSplittunnelingacl

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.ObjectWirelesscontrollerWtpprofile("trname", {
    apCountry: "AM",
    apHandoff: "disable",
    comment: "This is a Terraform example",
    controlMessageOffloads: [
        "aeroscout-mu",
        "aeroscout-tag",
        "ap-list",
        "ebp-frame",
        "spectral-analysis",
        "sta-cap-list",
        "sta-health",
        "sta-list",
        "stats",
    ],
    dtlsPolicies: ["clear-text"],
    energyEfficientEthernet: "disable",
    extInfoEnable: "enable",
    frequencyHandoff: "disable",
    handoffRoaming: "enable",
    handoffRssi: 25,
    handoffStaThresh: 55,
    ipFragmentPreventings: ["tcp-mss-adjust"],
    ledState: "enable",
    lldp: "enable",
    loginPasswdChange: "no",
    poeMode: "auto",
    splitTunnelingAclLocalApSubnet: "disable",
    splitTunnelingAclPath: "local",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.ObjectWirelesscontrollerWtpprofile("trname",
    ap_country="AM",
    ap_handoff="disable",
    comment="This is a Terraform example",
    control_message_offloads=[
        "aeroscout-mu",
        "aeroscout-tag",
        "ap-list",
        "ebp-frame",
        "spectral-analysis",
        "sta-cap-list",
        "sta-health",
        "sta-list",
        "stats",
    ],
    dtls_policies=["clear-text"],
    energy_efficient_ethernet="disable",
    ext_info_enable="enable",
    frequency_handoff="disable",
    handoff_roaming="enable",
    handoff_rssi=25,
    handoff_sta_thresh=55,
    ip_fragment_preventings=["tcp-mss-adjust"],
    led_state="enable",
    lldp="enable",
    login_passwd_change="no",
    poe_mode="auto",
    split_tunneling_acl_local_ap_subnet="disable",
    split_tunneling_acl_path="local")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewObjectWirelesscontrollerWtpprofile(ctx, "trname", &fortimanager.ObjectWirelesscontrollerWtpprofileArgs{
			ApCountry: pulumi.String("AM"),
			ApHandoff: pulumi.String("disable"),
			Comment:   pulumi.String("This is a Terraform example"),
			ControlMessageOffloads: pulumi.StringArray{
				pulumi.String("aeroscout-mu"),
				pulumi.String("aeroscout-tag"),
				pulumi.String("ap-list"),
				pulumi.String("ebp-frame"),
				pulumi.String("spectral-analysis"),
				pulumi.String("sta-cap-list"),
				pulumi.String("sta-health"),
				pulumi.String("sta-list"),
				pulumi.String("stats"),
			},
			DtlsPolicies: pulumi.StringArray{
				pulumi.String("clear-text"),
			},
			EnergyEfficientEthernet: pulumi.String("disable"),
			ExtInfoEnable:           pulumi.String("enable"),
			FrequencyHandoff:        pulumi.String("disable"),
			HandoffRoaming:          pulumi.String("enable"),
			HandoffRssi:             pulumi.Float64(25),
			HandoffStaThresh:        pulumi.Float64(55),
			IpFragmentPreventings: pulumi.StringArray{
				pulumi.String("tcp-mss-adjust"),
			},
			LedState:                       pulumi.String("enable"),
			Lldp:                           pulumi.String("enable"),
			LoginPasswdChange:              pulumi.String("no"),
			PoeMode:                        pulumi.String("auto"),
			SplitTunnelingAclLocalApSubnet: pulumi.String("disable"),
			SplitTunnelingAclPath:          pulumi.String("local"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.ObjectWirelesscontrollerWtpprofile("trname", new()
    {
        ApCountry = "AM",
        ApHandoff = "disable",
        Comment = "This is a Terraform example",
        ControlMessageOffloads = new[]
        {
            "aeroscout-mu",
            "aeroscout-tag",
            "ap-list",
            "ebp-frame",
            "spectral-analysis",
            "sta-cap-list",
            "sta-health",
            "sta-list",
            "stats",
        },
        DtlsPolicies = new[]
        {
            "clear-text",
        },
        EnergyEfficientEthernet = "disable",
        ExtInfoEnable = "enable",
        FrequencyHandoff = "disable",
        HandoffRoaming = "enable",
        HandoffRssi = 25,
        HandoffStaThresh = 55,
        IpFragmentPreventings = new[]
        {
            "tcp-mss-adjust",
        },
        LedState = "enable",
        Lldp = "enable",
        LoginPasswdChange = "no",
        PoeMode = "auto",
        SplitTunnelingAclLocalApSubnet = "disable",
        SplitTunnelingAclPath = "local",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofile;
import com.pulumi.fortimanager.ObjectWirelesscontrollerWtpprofileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var trname = new ObjectWirelesscontrollerWtpprofile("trname", ObjectWirelesscontrollerWtpprofileArgs.builder()
            .apCountry("AM")
            .apHandoff("disable")
            .comment("This is a Terraform example")
            .controlMessageOffloads(            
                "aeroscout-mu",
                "aeroscout-tag",
                "ap-list",
                "ebp-frame",
                "spectral-analysis",
                "sta-cap-list",
                "sta-health",
                "sta-list",
                "stats")
            .dtlsPolicies("clear-text")
            .energyEfficientEthernet("disable")
            .extInfoEnable("enable")
            .frequencyHandoff("disable")
            .handoffRoaming("enable")
            .handoffRssi(25)
            .handoffStaThresh(55)
            .ipFragmentPreventings("tcp-mss-adjust")
            .ledState("enable")
            .lldp("enable")
            .loginPasswdChange("no")
            .poeMode("auto")
            .splitTunnelingAclLocalApSubnet("disable")
            .splitTunnelingAclPath("local")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectWirelesscontrollerWtpprofile
    properties:
      apCountry: AM
      apHandoff: disable
      comment: This is a Terraform example
      controlMessageOffloads:
        - aeroscout-mu
        - aeroscout-tag
        - ap-list
        - ebp-frame
        - spectral-analysis
        - sta-cap-list
        - sta-health
        - sta-list
        - stats
      dtlsPolicies:
        - clear-text
      energyEfficientEthernet: disable
      extInfoEnable: enable
      frequencyHandoff: disable
      handoffRoaming: enable
      handoffRssi: 25
      handoffStaThresh: 55
      ipFragmentPreventings:
        - tcp-mss-adjust
      ledState: enable
      lldp: enable
      loginPasswdChange: no
      poeMode: auto
      splitTunnelingAclLocalApSubnet: disable
      splitTunnelingAclPath: local
Copy

Create ObjectWirelesscontrollerWtpprofile Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ObjectWirelesscontrollerWtpprofile(name: string, args?: ObjectWirelesscontrollerWtpprofileArgs, opts?: CustomResourceOptions);
@overload
def ObjectWirelesscontrollerWtpprofile(resource_name: str,
                                       args: Optional[ObjectWirelesscontrollerWtpprofileArgs] = None,
                                       opts: Optional[ResourceOptions] = None)

@overload
def ObjectWirelesscontrollerWtpprofile(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       _is_factory_setting: Optional[str] = None,
                                       adom: Optional[str] = None,
                                       allowaccesses: Optional[Sequence[str]] = None,
                                       ap_country: Optional[str] = None,
                                       ap_handoff: Optional[str] = None,
                                       apcfg_profile: Optional[str] = None,
                                       ble_profile: Optional[str] = None,
                                       bonjour_profile: Optional[str] = None,
                                       comment: Optional[str] = None,
                                       console_login: Optional[str] = None,
                                       control_message_offloads: Optional[Sequence[str]] = None,
                                       deny_mac_lists: Optional[Sequence[ObjectWirelesscontrollerWtpprofileDenyMacListArgs]] = None,
                                       dtls_in_kernel: Optional[str] = None,
                                       dtls_policies: Optional[Sequence[str]] = None,
                                       dynamic_sort_subtable: Optional[str] = None,
                                       energy_efficient_ethernet: Optional[str] = None,
                                       esl_ses_dongle: Optional[ObjectWirelesscontrollerWtpprofileEslSesDongleArgs] = None,
                                       ext_info_enable: Optional[str] = None,
                                       frequency_handoff: Optional[str] = None,
                                       handoff_roaming: Optional[str] = None,
                                       handoff_rssi: Optional[float] = None,
                                       handoff_sta_thresh: Optional[float] = None,
                                       indoor_outdoor_deployment: Optional[str] = None,
                                       ip_fragment_preventings: Optional[Sequence[str]] = None,
                                       lan: Optional[ObjectWirelesscontrollerWtpprofileLanArgs] = None,
                                       lbs: Optional[ObjectWirelesscontrollerWtpprofileLbsArgs] = None,
                                       led_schedules: Optional[Sequence[str]] = None,
                                       led_state: Optional[str] = None,
                                       lldp: Optional[str] = None,
                                       login_passwd_change: Optional[str] = None,
                                       login_passwds: Optional[Sequence[str]] = None,
                                       max_clients: Optional[float] = None,
                                       name: Optional[str] = None,
                                       object_wirelesscontroller_wtpprofile_id: Optional[str] = None,
                                       platform: Optional[ObjectWirelesscontrollerWtpprofilePlatformArgs] = None,
                                       poe_mode: Optional[str] = None,
                                       radio1: Optional[ObjectWirelesscontrollerWtpprofileRadio1Args] = None,
                                       radio2: Optional[ObjectWirelesscontrollerWtpprofileRadio2Args] = None,
                                       radio3: Optional[ObjectWirelesscontrollerWtpprofileRadio3Args] = None,
                                       radio4: Optional[ObjectWirelesscontrollerWtpprofileRadio4Args] = None,
                                       scopetype: Optional[str] = None,
                                       snmp: Optional[str] = None,
                                       split_tunneling_acl_local_ap_subnet: Optional[str] = None,
                                       split_tunneling_acl_path: Optional[str] = None,
                                       split_tunneling_acls: Optional[Sequence[ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs]] = None,
                                       syslog_profile: Optional[str] = None,
                                       tun_mtu_downlink: Optional[float] = None,
                                       tun_mtu_uplink: Optional[float] = None,
                                       unii45ghz_band: Optional[str] = None,
                                       wan_port_auth: Optional[str] = None,
                                       wan_port_auth_macsec: Optional[str] = None,
                                       wan_port_auth_methods: Optional[str] = None,
                                       wan_port_auth_passwords: Optional[Sequence[str]] = None,
                                       wan_port_auth_usrname: Optional[str] = None,
                                       wan_port_mode: Optional[str] = None)
func NewObjectWirelesscontrollerWtpprofile(ctx *Context, name string, args *ObjectWirelesscontrollerWtpprofileArgs, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofile, error)
public ObjectWirelesscontrollerWtpprofile(string name, ObjectWirelesscontrollerWtpprofileArgs? args = null, CustomResourceOptions? opts = null)
public ObjectWirelesscontrollerWtpprofile(String name, ObjectWirelesscontrollerWtpprofileArgs args)
public ObjectWirelesscontrollerWtpprofile(String name, ObjectWirelesscontrollerWtpprofileArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWirelesscontrollerWtpprofile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args ObjectWirelesscontrollerWtpprofileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args ObjectWirelesscontrollerWtpprofileArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args ObjectWirelesscontrollerWtpprofileArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args ObjectWirelesscontrollerWtpprofileArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectWirelesscontrollerWtpprofileArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var objectWirelesscontrollerWtpprofileResource = new Fortimanager.ObjectWirelesscontrollerWtpprofile("objectWirelesscontrollerWtpprofileResource", new()
{
    _isFactorySetting = "string",
    Adom = "string",
    Allowaccesses = new[]
    {
        "string",
    },
    ApCountry = "string",
    ApHandoff = "string",
    ApcfgProfile = "string",
    BleProfile = "string",
    BonjourProfile = "string",
    Comment = "string",
    ConsoleLogin = "string",
    ControlMessageOffloads = new[]
    {
        "string",
    },
    DenyMacLists = new[]
    {
        new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileDenyMacListArgs
        {
            Id = 0,
            Mac = "string",
        },
    },
    DtlsInKernel = "string",
    DtlsPolicies = new[]
    {
        "string",
    },
    DynamicSortSubtable = "string",
    EnergyEfficientEthernet = "string",
    EslSesDongle = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileEslSesDongleArgs
    {
        ApcAddrType = "string",
        ApcFqdn = "string",
        ApcIp = "string",
        ApcPort = 0,
        CoexLevel = "string",
        ComplianceLevel = "string",
        EslChannel = "string",
        OutputPower = "string",
        ScdEnable = "string",
        TlsCertVerification = "string",
        TlsFqdnVerification = "string",
    },
    ExtInfoEnable = "string",
    FrequencyHandoff = "string",
    HandoffRoaming = "string",
    HandoffRssi = 0,
    HandoffStaThresh = 0,
    IndoorOutdoorDeployment = "string",
    IpFragmentPreventings = new[]
    {
        "string",
    },
    Lan = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileLanArgs
    {
        Port1Mode = "string",
        Port1Ssid = "string",
        Port2Mode = "string",
        Port2Ssid = "string",
        Port3Mode = "string",
        Port3Ssid = "string",
        Port4Mode = "string",
        Port4Ssid = "string",
        Port5Mode = "string",
        Port5Ssid = "string",
        Port6Mode = "string",
        Port6Ssid = "string",
        Port7Mode = "string",
        Port7Ssid = "string",
        Port8Mode = "string",
        Port8Ssid = "string",
        PortEslMode = "string",
        PortEslSsid = "string",
        PortMode = "string",
        PortSsid = "string",
    },
    Lbs = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileLbsArgs
    {
        Aeroscout = "string",
        AeroscoutApMac = "string",
        AeroscoutMmuReport = "string",
        AeroscoutMu = "string",
        AeroscoutMuFactor = 0,
        AeroscoutMuTimeout = 0,
        AeroscoutServerIp = "string",
        AeroscoutServerPort = 0,
        EkahauBlinkMode = "string",
        EkahauTag = "string",
        ErcServerIp = "string",
        ErcServerPort = 0,
        Fortipresence = "string",
        FortipresenceBle = "string",
        FortipresenceFrequency = 0,
        FortipresencePort = 0,
        FortipresenceProject = "string",
        FortipresenceRogue = "string",
        FortipresenceSecrets = new[]
        {
            "string",
        },
        FortipresenceServer = "string",
        FortipresenceServerAddrType = "string",
        FortipresenceServerFqdn = "string",
        FortipresenceUnassoc = "string",
        Polestar = "string",
        PolestarAccumulationInterval = 0,
        PolestarAssetAddrgrpList = "string",
        PolestarAssetUuidList1 = "string",
        PolestarAssetUuidList2 = "string",
        PolestarAssetUuidList3 = "string",
        PolestarAssetUuidList4 = "string",
        PolestarProtocol = "string",
        PolestarReportingInterval = 0,
        PolestarServerFqdn = "string",
        PolestarServerPath = "string",
        PolestarServerPort = 0,
        PolestarServerToken = "string",
        StationLocate = "string",
    },
    LedSchedules = new[]
    {
        "string",
    },
    LedState = "string",
    Lldp = "string",
    LoginPasswdChange = "string",
    LoginPasswds = new[]
    {
        "string",
    },
    MaxClients = 0,
    Name = "string",
    ObjectWirelesscontrollerWtpprofileId = "string",
    Platform = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofilePlatformArgs
    {
        _localPlatformStr = "string",
        Ddscan = "string",
        Mode = "string",
        Type = "string",
    },
    PoeMode = "string",
    Radio1 = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileRadio1Args
    {
        AirtimeFairness = "string",
        Amsdu = "string",
        ApHandoff = "string",
        ApSnifferAddr = "string",
        ApSnifferBufsize = 0,
        ApSnifferChan = 0,
        ApSnifferCtl = "string",
        ApSnifferData = "string",
        ApSnifferMgmtBeacon = "string",
        ApSnifferMgmtOther = "string",
        ApSnifferMgmtProbe = "string",
        ArrpProfile = "string",
        AutoPowerHigh = 0,
        AutoPowerLevel = "string",
        AutoPowerLow = 0,
        AutoPowerTarget = "string",
        Band = "string",
        Band5gType = "string",
        BandwidthAdmissionControl = "string",
        BandwidthCapacity = 0,
        BeaconInterval = 0,
        BssColor = 0,
        BssColorMode = "string",
        CallAdmissionControl = "string",
        CallCapacity = 0,
        ChannelBonding = "string",
        ChannelUtilization = "string",
        Channels = new[]
        {
            "string",
        },
        Coexistence = "string",
        Darrp = "string",
        Drma = "string",
        DrmaSensitivity = "string",
        Dtim = 0,
        FragThreshold = 0,
        FrequencyHandoff = "string",
        IperfProtocol = "string",
        IperfServerPort = 0,
        MaxClients = 0,
        MaxDistance = 0,
        MimoMode = "string",
        Mode = "string",
        N80211d = "string",
        OptionalAntenna = "string",
        OptionalAntennaGain = "string",
        PowerLevel = 0,
        PowerMode = "string",
        PowerValue = 0,
        PowersaveOptimizes = new[]
        {
            "string",
        },
        ProtectionMode = "string",
        RadioId = 0,
        RtsThreshold = 0,
        SamBssid = "string",
        SamCaCertificate = "string",
        SamCaptivePortal = "string",
        SamClientCertificate = "string",
        SamCwpFailureString = "string",
        SamCwpMatchString = "string",
        SamCwpPasswords = new[]
        {
            "string",
        },
        SamCwpSuccessString = "string",
        SamCwpTestUrl = "string",
        SamCwpUsername = "string",
        SamEapMethod = "string",
        SamPasswords = new[]
        {
            "string",
        },
        SamPrivateKey = "string",
        SamPrivateKeyPasswords = new[]
        {
            "string",
        },
        SamReportIntv = 0,
        SamSecurityType = "string",
        SamServer = "string",
        SamServerFqdn = "string",
        SamServerIp = "string",
        SamServerType = "string",
        SamSsid = "string",
        SamTest = "string",
        SamUsername = "string",
        ShortGuardInterval = "string",
        SpectrumAnalysis = "string",
        TransmitOptimizes = new[]
        {
            "string",
        },
        Vap1 = "string",
        Vap2 = "string",
        Vap3 = "string",
        Vap4 = "string",
        Vap5 = "string",
        Vap6 = "string",
        Vap7 = "string",
        Vap8 = "string",
        VapAll = "string",
        Vaps = "string",
        WidsProfile = "string",
        ZeroWaitDfs = "string",
    },
    Radio2 = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileRadio2Args
    {
        AirtimeFairness = "string",
        Amsdu = "string",
        ApHandoff = "string",
        ApSnifferAddr = "string",
        ApSnifferBufsize = 0,
        ApSnifferChan = 0,
        ApSnifferCtl = "string",
        ApSnifferData = "string",
        ApSnifferMgmtBeacon = "string",
        ApSnifferMgmtOther = "string",
        ApSnifferMgmtProbe = "string",
        ArrpProfile = "string",
        AutoPowerHigh = 0,
        AutoPowerLevel = "string",
        AutoPowerLow = 0,
        AutoPowerTarget = "string",
        Band = "string",
        Band5gType = "string",
        BandwidthAdmissionControl = "string",
        BandwidthCapacity = 0,
        BeaconInterval = 0,
        BssColor = 0,
        BssColorMode = "string",
        CallAdmissionControl = "string",
        CallCapacity = 0,
        ChannelBonding = "string",
        ChannelUtilization = "string",
        Channels = new[]
        {
            "string",
        },
        Coexistence = "string",
        Darrp = "string",
        Drma = "string",
        DrmaSensitivity = "string",
        Dtim = 0,
        FragThreshold = 0,
        FrequencyHandoff = "string",
        IperfProtocol = "string",
        IperfServerPort = 0,
        MaxClients = 0,
        MaxDistance = 0,
        MimoMode = "string",
        Mode = "string",
        N80211d = "string",
        OptionalAntenna = "string",
        OptionalAntennaGain = "string",
        PowerLevel = 0,
        PowerMode = "string",
        PowerValue = 0,
        PowersaveOptimizes = new[]
        {
            "string",
        },
        ProtectionMode = "string",
        RadioId = 0,
        RtsThreshold = 0,
        SamBssid = "string",
        SamCaCertificate = "string",
        SamCaptivePortal = "string",
        SamClientCertificate = "string",
        SamCwpFailureString = "string",
        SamCwpMatchString = "string",
        SamCwpPasswords = new[]
        {
            "string",
        },
        SamCwpSuccessString = "string",
        SamCwpTestUrl = "string",
        SamCwpUsername = "string",
        SamEapMethod = "string",
        SamPasswords = new[]
        {
            "string",
        },
        SamPrivateKey = "string",
        SamPrivateKeyPasswords = new[]
        {
            "string",
        },
        SamReportIntv = 0,
        SamSecurityType = "string",
        SamServer = "string",
        SamServerFqdn = "string",
        SamServerIp = "string",
        SamServerType = "string",
        SamSsid = "string",
        SamTest = "string",
        SamUsername = "string",
        ShortGuardInterval = "string",
        SpectrumAnalysis = "string",
        TransmitOptimizes = new[]
        {
            "string",
        },
        Vap1 = "string",
        Vap2 = "string",
        Vap3 = "string",
        Vap4 = "string",
        Vap5 = "string",
        Vap6 = "string",
        Vap7 = "string",
        Vap8 = "string",
        VapAll = "string",
        Vaps = "string",
        WidsProfile = "string",
        ZeroWaitDfs = "string",
    },
    Radio3 = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileRadio3Args
    {
        AirtimeFairness = "string",
        Amsdu = "string",
        ApHandoff = "string",
        ApSnifferAddr = "string",
        ApSnifferBufsize = 0,
        ApSnifferChan = 0,
        ApSnifferCtl = "string",
        ApSnifferData = "string",
        ApSnifferMgmtBeacon = "string",
        ApSnifferMgmtOther = "string",
        ApSnifferMgmtProbe = "string",
        ArrpProfile = "string",
        AutoPowerHigh = 0,
        AutoPowerLevel = "string",
        AutoPowerLow = 0,
        AutoPowerTarget = "string",
        Band = "string",
        Band5gType = "string",
        BandwidthAdmissionControl = "string",
        BandwidthCapacity = 0,
        BeaconInterval = 0,
        BssColor = 0,
        BssColorMode = "string",
        CallAdmissionControl = "string",
        CallCapacity = 0,
        ChannelBonding = "string",
        ChannelUtilization = "string",
        Channels = new[]
        {
            "string",
        },
        Coexistence = "string",
        Darrp = "string",
        Drma = "string",
        DrmaSensitivity = "string",
        Dtim = 0,
        FragThreshold = 0,
        FrequencyHandoff = "string",
        IperfProtocol = "string",
        IperfServerPort = 0,
        MaxClients = 0,
        MaxDistance = 0,
        MimoMode = "string",
        Mode = "string",
        N80211d = "string",
        OptionalAntenna = "string",
        OptionalAntennaGain = "string",
        PowerLevel = 0,
        PowerMode = "string",
        PowerValue = 0,
        PowersaveOptimizes = new[]
        {
            "string",
        },
        ProtectionMode = "string",
        RadioId = 0,
        RtsThreshold = 0,
        SamBssid = "string",
        SamCaCertificate = "string",
        SamCaptivePortal = "string",
        SamClientCertificate = "string",
        SamCwpFailureString = "string",
        SamCwpMatchString = "string",
        SamCwpPasswords = new[]
        {
            "string",
        },
        SamCwpSuccessString = "string",
        SamCwpTestUrl = "string",
        SamCwpUsername = "string",
        SamEapMethod = "string",
        SamPasswords = new[]
        {
            "string",
        },
        SamPrivateKey = "string",
        SamPrivateKeyPasswords = new[]
        {
            "string",
        },
        SamReportIntv = 0,
        SamSecurityType = "string",
        SamServer = "string",
        SamServerFqdn = "string",
        SamServerIp = "string",
        SamServerType = "string",
        SamSsid = "string",
        SamTest = "string",
        SamUsername = "string",
        ShortGuardInterval = "string",
        SpectrumAnalysis = "string",
        TransmitOptimizes = new[]
        {
            "string",
        },
        Vap1 = "string",
        Vap2 = "string",
        Vap3 = "string",
        Vap4 = "string",
        Vap5 = "string",
        Vap6 = "string",
        Vap7 = "string",
        Vap8 = "string",
        VapAll = "string",
        Vaps = "string",
        WidsProfile = "string",
        ZeroWaitDfs = "string",
    },
    Radio4 = new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileRadio4Args
    {
        AirtimeFairness = "string",
        Amsdu = "string",
        ApHandoff = "string",
        ApSnifferAddr = "string",
        ApSnifferBufsize = 0,
        ApSnifferChan = 0,
        ApSnifferCtl = "string",
        ApSnifferData = "string",
        ApSnifferMgmtBeacon = "string",
        ApSnifferMgmtOther = "string",
        ApSnifferMgmtProbe = "string",
        ArrpProfile = "string",
        AutoPowerHigh = 0,
        AutoPowerLevel = "string",
        AutoPowerLow = 0,
        AutoPowerTarget = "string",
        Band = "string",
        Band5gType = "string",
        BandwidthAdmissionControl = "string",
        BandwidthCapacity = 0,
        BeaconInterval = 0,
        BssColor = 0,
        BssColorMode = "string",
        CallAdmissionControl = "string",
        CallCapacity = 0,
        ChannelBonding = "string",
        ChannelUtilization = "string",
        Channels = new[]
        {
            "string",
        },
        Coexistence = "string",
        Darrp = "string",
        Drma = "string",
        DrmaSensitivity = "string",
        Dtim = 0,
        FragThreshold = 0,
        FrequencyHandoff = "string",
        IperfProtocol = "string",
        IperfServerPort = 0,
        MaxClients = 0,
        MaxDistance = 0,
        MimoMode = "string",
        Mode = "string",
        N80211d = "string",
        OptionalAntenna = "string",
        OptionalAntennaGain = "string",
        PowerLevel = 0,
        PowerMode = "string",
        PowerValue = 0,
        PowersaveOptimizes = new[]
        {
            "string",
        },
        ProtectionMode = "string",
        RadioId = 0,
        RtsThreshold = 0,
        SamBssid = "string",
        SamCaCertificate = "string",
        SamCaptivePortal = "string",
        SamClientCertificate = "string",
        SamCwpFailureString = "string",
        SamCwpMatchString = "string",
        SamCwpPasswords = new[]
        {
            "string",
        },
        SamCwpSuccessString = "string",
        SamCwpTestUrl = "string",
        SamCwpUsername = "string",
        SamEapMethod = "string",
        SamPasswords = new[]
        {
            "string",
        },
        SamPrivateKey = "string",
        SamPrivateKeyPasswords = new[]
        {
            "string",
        },
        SamReportIntv = 0,
        SamSecurityType = "string",
        SamServer = "string",
        SamServerFqdn = "string",
        SamServerIp = "string",
        SamServerType = "string",
        SamSsid = "string",
        SamTest = "string",
        SamUsername = "string",
        ShortGuardInterval = "string",
        SpectrumAnalysis = "string",
        TransmitOptimizes = new[]
        {
            "string",
        },
        Vap1 = "string",
        Vap2 = "string",
        Vap3 = "string",
        Vap4 = "string",
        Vap5 = "string",
        Vap6 = "string",
        Vap7 = "string",
        Vap8 = "string",
        VapAll = "string",
        Vaps = "string",
        WidsProfile = "string",
        ZeroWaitDfs = "string",
    },
    Scopetype = "string",
    Snmp = "string",
    SplitTunnelingAclLocalApSubnet = "string",
    SplitTunnelingAclPath = "string",
    SplitTunnelingAcls = new[]
    {
        new Fortimanager.Inputs.ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs
        {
            DestIp = "string",
            Id = 0,
        },
    },
    SyslogProfile = "string",
    TunMtuDownlink = 0,
    TunMtuUplink = 0,
    Unii45ghzBand = "string",
    WanPortAuth = "string",
    WanPortAuthMacsec = "string",
    WanPortAuthMethods = "string",
    WanPortAuthPasswords = new[]
    {
        "string",
    },
    WanPortAuthUsrname = "string",
    WanPortMode = "string",
});
Copy
example, err := fortimanager.NewObjectWirelesscontrollerWtpprofile(ctx, "objectWirelesscontrollerWtpprofileResource", &fortimanager.ObjectWirelesscontrollerWtpprofileArgs{
_isFactorySetting: pulumi.String("string"),
Adom: pulumi.String("string"),
Allowaccesses: pulumi.StringArray{
pulumi.String("string"),
},
ApCountry: pulumi.String("string"),
ApHandoff: pulumi.String("string"),
ApcfgProfile: pulumi.String("string"),
BleProfile: pulumi.String("string"),
BonjourProfile: pulumi.String("string"),
Comment: pulumi.String("string"),
ConsoleLogin: pulumi.String("string"),
ControlMessageOffloads: pulumi.StringArray{
pulumi.String("string"),
},
DenyMacLists: .ObjectWirelesscontrollerWtpprofileDenyMacListTypeArray{
&.ObjectWirelesscontrollerWtpprofileDenyMacListTypeArgs{
Id: pulumi.Float64(0),
Mac: pulumi.String("string"),
},
},
DtlsInKernel: pulumi.String("string"),
DtlsPolicies: pulumi.StringArray{
pulumi.String("string"),
},
DynamicSortSubtable: pulumi.String("string"),
EnergyEfficientEthernet: pulumi.String("string"),
EslSesDongle: &.ObjectWirelesscontrollerWtpprofileEslSesDongleTypeArgs{
ApcAddrType: pulumi.String("string"),
ApcFqdn: pulumi.String("string"),
ApcIp: pulumi.String("string"),
ApcPort: pulumi.Float64(0),
CoexLevel: pulumi.String("string"),
ComplianceLevel: pulumi.String("string"),
EslChannel: pulumi.String("string"),
OutputPower: pulumi.String("string"),
ScdEnable: pulumi.String("string"),
TlsCertVerification: pulumi.String("string"),
TlsFqdnVerification: pulumi.String("string"),
},
ExtInfoEnable: pulumi.String("string"),
FrequencyHandoff: pulumi.String("string"),
HandoffRoaming: pulumi.String("string"),
HandoffRssi: pulumi.Float64(0),
HandoffStaThresh: pulumi.Float64(0),
IndoorOutdoorDeployment: pulumi.String("string"),
IpFragmentPreventings: pulumi.StringArray{
pulumi.String("string"),
},
Lan: &.ObjectWirelesscontrollerWtpprofileLanTypeArgs{
Port1Mode: pulumi.String("string"),
Port1Ssid: pulumi.String("string"),
Port2Mode: pulumi.String("string"),
Port2Ssid: pulumi.String("string"),
Port3Mode: pulumi.String("string"),
Port3Ssid: pulumi.String("string"),
Port4Mode: pulumi.String("string"),
Port4Ssid: pulumi.String("string"),
Port5Mode: pulumi.String("string"),
Port5Ssid: pulumi.String("string"),
Port6Mode: pulumi.String("string"),
Port6Ssid: pulumi.String("string"),
Port7Mode: pulumi.String("string"),
Port7Ssid: pulumi.String("string"),
Port8Mode: pulumi.String("string"),
Port8Ssid: pulumi.String("string"),
PortEslMode: pulumi.String("string"),
PortEslSsid: pulumi.String("string"),
PortMode: pulumi.String("string"),
PortSsid: pulumi.String("string"),
},
Lbs: &.ObjectWirelesscontrollerWtpprofileLbsTypeArgs{
Aeroscout: pulumi.String("string"),
AeroscoutApMac: pulumi.String("string"),
AeroscoutMmuReport: pulumi.String("string"),
AeroscoutMu: pulumi.String("string"),
AeroscoutMuFactor: pulumi.Float64(0),
AeroscoutMuTimeout: pulumi.Float64(0),
AeroscoutServerIp: pulumi.String("string"),
AeroscoutServerPort: pulumi.Float64(0),
EkahauBlinkMode: pulumi.String("string"),
EkahauTag: pulumi.String("string"),
ErcServerIp: pulumi.String("string"),
ErcServerPort: pulumi.Float64(0),
Fortipresence: pulumi.String("string"),
FortipresenceBle: pulumi.String("string"),
FortipresenceFrequency: pulumi.Float64(0),
FortipresencePort: pulumi.Float64(0),
FortipresenceProject: pulumi.String("string"),
FortipresenceRogue: pulumi.String("string"),
FortipresenceSecrets: pulumi.StringArray{
pulumi.String("string"),
},
FortipresenceServer: pulumi.String("string"),
FortipresenceServerAddrType: pulumi.String("string"),
FortipresenceServerFqdn: pulumi.String("string"),
FortipresenceUnassoc: pulumi.String("string"),
Polestar: pulumi.String("string"),
PolestarAccumulationInterval: pulumi.Float64(0),
PolestarAssetAddrgrpList: pulumi.String("string"),
PolestarAssetUuidList1: pulumi.String("string"),
PolestarAssetUuidList2: pulumi.String("string"),
PolestarAssetUuidList3: pulumi.String("string"),
PolestarAssetUuidList4: pulumi.String("string"),
PolestarProtocol: pulumi.String("string"),
PolestarReportingInterval: pulumi.Float64(0),
PolestarServerFqdn: pulumi.String("string"),
PolestarServerPath: pulumi.String("string"),
PolestarServerPort: pulumi.Float64(0),
PolestarServerToken: pulumi.String("string"),
StationLocate: pulumi.String("string"),
},
LedSchedules: pulumi.StringArray{
pulumi.String("string"),
},
LedState: pulumi.String("string"),
Lldp: pulumi.String("string"),
LoginPasswdChange: pulumi.String("string"),
LoginPasswds: pulumi.StringArray{
pulumi.String("string"),
},
MaxClients: pulumi.Float64(0),
Name: pulumi.String("string"),
ObjectWirelesscontrollerWtpprofileId: pulumi.String("string"),
Platform: &.ObjectWirelesscontrollerWtpprofilePlatformTypeArgs{
_localPlatformStr: pulumi.String("string"),
Ddscan: pulumi.String("string"),
Mode: pulumi.String("string"),
Type: pulumi.String("string"),
},
PoeMode: pulumi.String("string"),
Radio1: &.ObjectWirelesscontrollerWtpprofileRadio1TypeArgs{
AirtimeFairness: pulumi.String("string"),
Amsdu: pulumi.String("string"),
ApHandoff: pulumi.String("string"),
ApSnifferAddr: pulumi.String("string"),
ApSnifferBufsize: pulumi.Float64(0),
ApSnifferChan: pulumi.Float64(0),
ApSnifferCtl: pulumi.String("string"),
ApSnifferData: pulumi.String("string"),
ApSnifferMgmtBeacon: pulumi.String("string"),
ApSnifferMgmtOther: pulumi.String("string"),
ApSnifferMgmtProbe: pulumi.String("string"),
ArrpProfile: pulumi.String("string"),
AutoPowerHigh: pulumi.Float64(0),
AutoPowerLevel: pulumi.String("string"),
AutoPowerLow: pulumi.Float64(0),
AutoPowerTarget: pulumi.String("string"),
Band: pulumi.String("string"),
Band5gType: pulumi.String("string"),
BandwidthAdmissionControl: pulumi.String("string"),
BandwidthCapacity: pulumi.Float64(0),
BeaconInterval: pulumi.Float64(0),
BssColor: pulumi.Float64(0),
BssColorMode: pulumi.String("string"),
CallAdmissionControl: pulumi.String("string"),
CallCapacity: pulumi.Float64(0),
ChannelBonding: pulumi.String("string"),
ChannelUtilization: pulumi.String("string"),
Channels: pulumi.StringArray{
pulumi.String("string"),
},
Coexistence: pulumi.String("string"),
Darrp: pulumi.String("string"),
Drma: pulumi.String("string"),
DrmaSensitivity: pulumi.String("string"),
Dtim: pulumi.Float64(0),
FragThreshold: pulumi.Float64(0),
FrequencyHandoff: pulumi.String("string"),
IperfProtocol: pulumi.String("string"),
IperfServerPort: pulumi.Float64(0),
MaxClients: pulumi.Float64(0),
MaxDistance: pulumi.Float64(0),
MimoMode: pulumi.String("string"),
Mode: pulumi.String("string"),
N80211d: pulumi.String("string"),
OptionalAntenna: pulumi.String("string"),
OptionalAntennaGain: pulumi.String("string"),
PowerLevel: pulumi.Float64(0),
PowerMode: pulumi.String("string"),
PowerValue: pulumi.Float64(0),
PowersaveOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
ProtectionMode: pulumi.String("string"),
RadioId: pulumi.Float64(0),
RtsThreshold: pulumi.Float64(0),
SamBssid: pulumi.String("string"),
SamCaCertificate: pulumi.String("string"),
SamCaptivePortal: pulumi.String("string"),
SamClientCertificate: pulumi.String("string"),
SamCwpFailureString: pulumi.String("string"),
SamCwpMatchString: pulumi.String("string"),
SamCwpPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamCwpSuccessString: pulumi.String("string"),
SamCwpTestUrl: pulumi.String("string"),
SamCwpUsername: pulumi.String("string"),
SamEapMethod: pulumi.String("string"),
SamPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamPrivateKey: pulumi.String("string"),
SamPrivateKeyPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamReportIntv: pulumi.Float64(0),
SamSecurityType: pulumi.String("string"),
SamServer: pulumi.String("string"),
SamServerFqdn: pulumi.String("string"),
SamServerIp: pulumi.String("string"),
SamServerType: pulumi.String("string"),
SamSsid: pulumi.String("string"),
SamTest: pulumi.String("string"),
SamUsername: pulumi.String("string"),
ShortGuardInterval: pulumi.String("string"),
SpectrumAnalysis: pulumi.String("string"),
TransmitOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
Vap1: pulumi.String("string"),
Vap2: pulumi.String("string"),
Vap3: pulumi.String("string"),
Vap4: pulumi.String("string"),
Vap5: pulumi.String("string"),
Vap6: pulumi.String("string"),
Vap7: pulumi.String("string"),
Vap8: pulumi.String("string"),
VapAll: pulumi.String("string"),
Vaps: pulumi.String("string"),
WidsProfile: pulumi.String("string"),
ZeroWaitDfs: pulumi.String("string"),
},
Radio2: &.ObjectWirelesscontrollerWtpprofileRadio2TypeArgs{
AirtimeFairness: pulumi.String("string"),
Amsdu: pulumi.String("string"),
ApHandoff: pulumi.String("string"),
ApSnifferAddr: pulumi.String("string"),
ApSnifferBufsize: pulumi.Float64(0),
ApSnifferChan: pulumi.Float64(0),
ApSnifferCtl: pulumi.String("string"),
ApSnifferData: pulumi.String("string"),
ApSnifferMgmtBeacon: pulumi.String("string"),
ApSnifferMgmtOther: pulumi.String("string"),
ApSnifferMgmtProbe: pulumi.String("string"),
ArrpProfile: pulumi.String("string"),
AutoPowerHigh: pulumi.Float64(0),
AutoPowerLevel: pulumi.String("string"),
AutoPowerLow: pulumi.Float64(0),
AutoPowerTarget: pulumi.String("string"),
Band: pulumi.String("string"),
Band5gType: pulumi.String("string"),
BandwidthAdmissionControl: pulumi.String("string"),
BandwidthCapacity: pulumi.Float64(0),
BeaconInterval: pulumi.Float64(0),
BssColor: pulumi.Float64(0),
BssColorMode: pulumi.String("string"),
CallAdmissionControl: pulumi.String("string"),
CallCapacity: pulumi.Float64(0),
ChannelBonding: pulumi.String("string"),
ChannelUtilization: pulumi.String("string"),
Channels: pulumi.StringArray{
pulumi.String("string"),
},
Coexistence: pulumi.String("string"),
Darrp: pulumi.String("string"),
Drma: pulumi.String("string"),
DrmaSensitivity: pulumi.String("string"),
Dtim: pulumi.Float64(0),
FragThreshold: pulumi.Float64(0),
FrequencyHandoff: pulumi.String("string"),
IperfProtocol: pulumi.String("string"),
IperfServerPort: pulumi.Float64(0),
MaxClients: pulumi.Float64(0),
MaxDistance: pulumi.Float64(0),
MimoMode: pulumi.String("string"),
Mode: pulumi.String("string"),
N80211d: pulumi.String("string"),
OptionalAntenna: pulumi.String("string"),
OptionalAntennaGain: pulumi.String("string"),
PowerLevel: pulumi.Float64(0),
PowerMode: pulumi.String("string"),
PowerValue: pulumi.Float64(0),
PowersaveOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
ProtectionMode: pulumi.String("string"),
RadioId: pulumi.Float64(0),
RtsThreshold: pulumi.Float64(0),
SamBssid: pulumi.String("string"),
SamCaCertificate: pulumi.String("string"),
SamCaptivePortal: pulumi.String("string"),
SamClientCertificate: pulumi.String("string"),
SamCwpFailureString: pulumi.String("string"),
SamCwpMatchString: pulumi.String("string"),
SamCwpPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamCwpSuccessString: pulumi.String("string"),
SamCwpTestUrl: pulumi.String("string"),
SamCwpUsername: pulumi.String("string"),
SamEapMethod: pulumi.String("string"),
SamPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamPrivateKey: pulumi.String("string"),
SamPrivateKeyPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamReportIntv: pulumi.Float64(0),
SamSecurityType: pulumi.String("string"),
SamServer: pulumi.String("string"),
SamServerFqdn: pulumi.String("string"),
SamServerIp: pulumi.String("string"),
SamServerType: pulumi.String("string"),
SamSsid: pulumi.String("string"),
SamTest: pulumi.String("string"),
SamUsername: pulumi.String("string"),
ShortGuardInterval: pulumi.String("string"),
SpectrumAnalysis: pulumi.String("string"),
TransmitOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
Vap1: pulumi.String("string"),
Vap2: pulumi.String("string"),
Vap3: pulumi.String("string"),
Vap4: pulumi.String("string"),
Vap5: pulumi.String("string"),
Vap6: pulumi.String("string"),
Vap7: pulumi.String("string"),
Vap8: pulumi.String("string"),
VapAll: pulumi.String("string"),
Vaps: pulumi.String("string"),
WidsProfile: pulumi.String("string"),
ZeroWaitDfs: pulumi.String("string"),
},
Radio3: &.ObjectWirelesscontrollerWtpprofileRadio3TypeArgs{
AirtimeFairness: pulumi.String("string"),
Amsdu: pulumi.String("string"),
ApHandoff: pulumi.String("string"),
ApSnifferAddr: pulumi.String("string"),
ApSnifferBufsize: pulumi.Float64(0),
ApSnifferChan: pulumi.Float64(0),
ApSnifferCtl: pulumi.String("string"),
ApSnifferData: pulumi.String("string"),
ApSnifferMgmtBeacon: pulumi.String("string"),
ApSnifferMgmtOther: pulumi.String("string"),
ApSnifferMgmtProbe: pulumi.String("string"),
ArrpProfile: pulumi.String("string"),
AutoPowerHigh: pulumi.Float64(0),
AutoPowerLevel: pulumi.String("string"),
AutoPowerLow: pulumi.Float64(0),
AutoPowerTarget: pulumi.String("string"),
Band: pulumi.String("string"),
Band5gType: pulumi.String("string"),
BandwidthAdmissionControl: pulumi.String("string"),
BandwidthCapacity: pulumi.Float64(0),
BeaconInterval: pulumi.Float64(0),
BssColor: pulumi.Float64(0),
BssColorMode: pulumi.String("string"),
CallAdmissionControl: pulumi.String("string"),
CallCapacity: pulumi.Float64(0),
ChannelBonding: pulumi.String("string"),
ChannelUtilization: pulumi.String("string"),
Channels: pulumi.StringArray{
pulumi.String("string"),
},
Coexistence: pulumi.String("string"),
Darrp: pulumi.String("string"),
Drma: pulumi.String("string"),
DrmaSensitivity: pulumi.String("string"),
Dtim: pulumi.Float64(0),
FragThreshold: pulumi.Float64(0),
FrequencyHandoff: pulumi.String("string"),
IperfProtocol: pulumi.String("string"),
IperfServerPort: pulumi.Float64(0),
MaxClients: pulumi.Float64(0),
MaxDistance: pulumi.Float64(0),
MimoMode: pulumi.String("string"),
Mode: pulumi.String("string"),
N80211d: pulumi.String("string"),
OptionalAntenna: pulumi.String("string"),
OptionalAntennaGain: pulumi.String("string"),
PowerLevel: pulumi.Float64(0),
PowerMode: pulumi.String("string"),
PowerValue: pulumi.Float64(0),
PowersaveOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
ProtectionMode: pulumi.String("string"),
RadioId: pulumi.Float64(0),
RtsThreshold: pulumi.Float64(0),
SamBssid: pulumi.String("string"),
SamCaCertificate: pulumi.String("string"),
SamCaptivePortal: pulumi.String("string"),
SamClientCertificate: pulumi.String("string"),
SamCwpFailureString: pulumi.String("string"),
SamCwpMatchString: pulumi.String("string"),
SamCwpPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamCwpSuccessString: pulumi.String("string"),
SamCwpTestUrl: pulumi.String("string"),
SamCwpUsername: pulumi.String("string"),
SamEapMethod: pulumi.String("string"),
SamPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamPrivateKey: pulumi.String("string"),
SamPrivateKeyPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamReportIntv: pulumi.Float64(0),
SamSecurityType: pulumi.String("string"),
SamServer: pulumi.String("string"),
SamServerFqdn: pulumi.String("string"),
SamServerIp: pulumi.String("string"),
SamServerType: pulumi.String("string"),
SamSsid: pulumi.String("string"),
SamTest: pulumi.String("string"),
SamUsername: pulumi.String("string"),
ShortGuardInterval: pulumi.String("string"),
SpectrumAnalysis: pulumi.String("string"),
TransmitOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
Vap1: pulumi.String("string"),
Vap2: pulumi.String("string"),
Vap3: pulumi.String("string"),
Vap4: pulumi.String("string"),
Vap5: pulumi.String("string"),
Vap6: pulumi.String("string"),
Vap7: pulumi.String("string"),
Vap8: pulumi.String("string"),
VapAll: pulumi.String("string"),
Vaps: pulumi.String("string"),
WidsProfile: pulumi.String("string"),
ZeroWaitDfs: pulumi.String("string"),
},
Radio4: &.ObjectWirelesscontrollerWtpprofileRadio4TypeArgs{
AirtimeFairness: pulumi.String("string"),
Amsdu: pulumi.String("string"),
ApHandoff: pulumi.String("string"),
ApSnifferAddr: pulumi.String("string"),
ApSnifferBufsize: pulumi.Float64(0),
ApSnifferChan: pulumi.Float64(0),
ApSnifferCtl: pulumi.String("string"),
ApSnifferData: pulumi.String("string"),
ApSnifferMgmtBeacon: pulumi.String("string"),
ApSnifferMgmtOther: pulumi.String("string"),
ApSnifferMgmtProbe: pulumi.String("string"),
ArrpProfile: pulumi.String("string"),
AutoPowerHigh: pulumi.Float64(0),
AutoPowerLevel: pulumi.String("string"),
AutoPowerLow: pulumi.Float64(0),
AutoPowerTarget: pulumi.String("string"),
Band: pulumi.String("string"),
Band5gType: pulumi.String("string"),
BandwidthAdmissionControl: pulumi.String("string"),
BandwidthCapacity: pulumi.Float64(0),
BeaconInterval: pulumi.Float64(0),
BssColor: pulumi.Float64(0),
BssColorMode: pulumi.String("string"),
CallAdmissionControl: pulumi.String("string"),
CallCapacity: pulumi.Float64(0),
ChannelBonding: pulumi.String("string"),
ChannelUtilization: pulumi.String("string"),
Channels: pulumi.StringArray{
pulumi.String("string"),
},
Coexistence: pulumi.String("string"),
Darrp: pulumi.String("string"),
Drma: pulumi.String("string"),
DrmaSensitivity: pulumi.String("string"),
Dtim: pulumi.Float64(0),
FragThreshold: pulumi.Float64(0),
FrequencyHandoff: pulumi.String("string"),
IperfProtocol: pulumi.String("string"),
IperfServerPort: pulumi.Float64(0),
MaxClients: pulumi.Float64(0),
MaxDistance: pulumi.Float64(0),
MimoMode: pulumi.String("string"),
Mode: pulumi.String("string"),
N80211d: pulumi.String("string"),
OptionalAntenna: pulumi.String("string"),
OptionalAntennaGain: pulumi.String("string"),
PowerLevel: pulumi.Float64(0),
PowerMode: pulumi.String("string"),
PowerValue: pulumi.Float64(0),
PowersaveOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
ProtectionMode: pulumi.String("string"),
RadioId: pulumi.Float64(0),
RtsThreshold: pulumi.Float64(0),
SamBssid: pulumi.String("string"),
SamCaCertificate: pulumi.String("string"),
SamCaptivePortal: pulumi.String("string"),
SamClientCertificate: pulumi.String("string"),
SamCwpFailureString: pulumi.String("string"),
SamCwpMatchString: pulumi.String("string"),
SamCwpPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamCwpSuccessString: pulumi.String("string"),
SamCwpTestUrl: pulumi.String("string"),
SamCwpUsername: pulumi.String("string"),
SamEapMethod: pulumi.String("string"),
SamPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamPrivateKey: pulumi.String("string"),
SamPrivateKeyPasswords: pulumi.StringArray{
pulumi.String("string"),
},
SamReportIntv: pulumi.Float64(0),
SamSecurityType: pulumi.String("string"),
SamServer: pulumi.String("string"),
SamServerFqdn: pulumi.String("string"),
SamServerIp: pulumi.String("string"),
SamServerType: pulumi.String("string"),
SamSsid: pulumi.String("string"),
SamTest: pulumi.String("string"),
SamUsername: pulumi.String("string"),
ShortGuardInterval: pulumi.String("string"),
SpectrumAnalysis: pulumi.String("string"),
TransmitOptimizes: pulumi.StringArray{
pulumi.String("string"),
},
Vap1: pulumi.String("string"),
Vap2: pulumi.String("string"),
Vap3: pulumi.String("string"),
Vap4: pulumi.String("string"),
Vap5: pulumi.String("string"),
Vap6: pulumi.String("string"),
Vap7: pulumi.String("string"),
Vap8: pulumi.String("string"),
VapAll: pulumi.String("string"),
Vaps: pulumi.String("string"),
WidsProfile: pulumi.String("string"),
ZeroWaitDfs: pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
Snmp: pulumi.String("string"),
SplitTunnelingAclLocalApSubnet: pulumi.String("string"),
SplitTunnelingAclPath: pulumi.String("string"),
SplitTunnelingAcls: .ObjectWirelesscontrollerWtpprofileSplitTunnelingAclTypeArray{
&.ObjectWirelesscontrollerWtpprofileSplitTunnelingAclTypeArgs{
DestIp: pulumi.String("string"),
Id: pulumi.Float64(0),
},
},
SyslogProfile: pulumi.String("string"),
TunMtuDownlink: pulumi.Float64(0),
TunMtuUplink: pulumi.Float64(0),
Unii45ghzBand: pulumi.String("string"),
WanPortAuth: pulumi.String("string"),
WanPortAuthMacsec: pulumi.String("string"),
WanPortAuthMethods: pulumi.String("string"),
WanPortAuthPasswords: pulumi.StringArray{
pulumi.String("string"),
},
WanPortAuthUsrname: pulumi.String("string"),
WanPortMode: pulumi.String("string"),
})
Copy
var objectWirelesscontrollerWtpprofileResource = new ObjectWirelesscontrollerWtpprofile("objectWirelesscontrollerWtpprofileResource", ObjectWirelesscontrollerWtpprofileArgs.builder()
    ._isFactorySetting("string")
    .adom("string")
    .allowaccesses("string")
    .apCountry("string")
    .apHandoff("string")
    .apcfgProfile("string")
    .bleProfile("string")
    .bonjourProfile("string")
    .comment("string")
    .consoleLogin("string")
    .controlMessageOffloads("string")
    .denyMacLists(ObjectWirelesscontrollerWtpprofileDenyMacListArgs.builder()
        .id(0)
        .mac("string")
        .build())
    .dtlsInKernel("string")
    .dtlsPolicies("string")
    .dynamicSortSubtable("string")
    .energyEfficientEthernet("string")
    .eslSesDongle(ObjectWirelesscontrollerWtpprofileEslSesDongleArgs.builder()
        .apcAddrType("string")
        .apcFqdn("string")
        .apcIp("string")
        .apcPort(0)
        .coexLevel("string")
        .complianceLevel("string")
        .eslChannel("string")
        .outputPower("string")
        .scdEnable("string")
        .tlsCertVerification("string")
        .tlsFqdnVerification("string")
        .build())
    .extInfoEnable("string")
    .frequencyHandoff("string")
    .handoffRoaming("string")
    .handoffRssi(0)
    .handoffStaThresh(0)
    .indoorOutdoorDeployment("string")
    .ipFragmentPreventings("string")
    .lan(ObjectWirelesscontrollerWtpprofileLanArgs.builder()
        .port1Mode("string")
        .port1Ssid("string")
        .port2Mode("string")
        .port2Ssid("string")
        .port3Mode("string")
        .port3Ssid("string")
        .port4Mode("string")
        .port4Ssid("string")
        .port5Mode("string")
        .port5Ssid("string")
        .port6Mode("string")
        .port6Ssid("string")
        .port7Mode("string")
        .port7Ssid("string")
        .port8Mode("string")
        .port8Ssid("string")
        .portEslMode("string")
        .portEslSsid("string")
        .portMode("string")
        .portSsid("string")
        .build())
    .lbs(ObjectWirelesscontrollerWtpprofileLbsArgs.builder()
        .aeroscout("string")
        .aeroscoutApMac("string")
        .aeroscoutMmuReport("string")
        .aeroscoutMu("string")
        .aeroscoutMuFactor(0)
        .aeroscoutMuTimeout(0)
        .aeroscoutServerIp("string")
        .aeroscoutServerPort(0)
        .ekahauBlinkMode("string")
        .ekahauTag("string")
        .ercServerIp("string")
        .ercServerPort(0)
        .fortipresence("string")
        .fortipresenceBle("string")
        .fortipresenceFrequency(0)
        .fortipresencePort(0)
        .fortipresenceProject("string")
        .fortipresenceRogue("string")
        .fortipresenceSecrets("string")
        .fortipresenceServer("string")
        .fortipresenceServerAddrType("string")
        .fortipresenceServerFqdn("string")
        .fortipresenceUnassoc("string")
        .polestar("string")
        .polestarAccumulationInterval(0)
        .polestarAssetAddrgrpList("string")
        .polestarAssetUuidList1("string")
        .polestarAssetUuidList2("string")
        .polestarAssetUuidList3("string")
        .polestarAssetUuidList4("string")
        .polestarProtocol("string")
        .polestarReportingInterval(0)
        .polestarServerFqdn("string")
        .polestarServerPath("string")
        .polestarServerPort(0)
        .polestarServerToken("string")
        .stationLocate("string")
        .build())
    .ledSchedules("string")
    .ledState("string")
    .lldp("string")
    .loginPasswdChange("string")
    .loginPasswds("string")
    .maxClients(0)
    .name("string")
    .objectWirelesscontrollerWtpprofileId("string")
    .platform(ObjectWirelesscontrollerWtpprofilePlatformArgs.builder()
        ._localPlatformStr("string")
        .ddscan("string")
        .mode("string")
        .type("string")
        .build())
    .poeMode("string")
    .radio1(ObjectWirelesscontrollerWtpprofileRadio1Args.builder()
        .airtimeFairness("string")
        .amsdu("string")
        .apHandoff("string")
        .apSnifferAddr("string")
        .apSnifferBufsize(0)
        .apSnifferChan(0)
        .apSnifferCtl("string")
        .apSnifferData("string")
        .apSnifferMgmtBeacon("string")
        .apSnifferMgmtOther("string")
        .apSnifferMgmtProbe("string")
        .arrpProfile("string")
        .autoPowerHigh(0)
        .autoPowerLevel("string")
        .autoPowerLow(0)
        .autoPowerTarget("string")
        .band("string")
        .band5gType("string")
        .bandwidthAdmissionControl("string")
        .bandwidthCapacity(0)
        .beaconInterval(0)
        .bssColor(0)
        .bssColorMode("string")
        .callAdmissionControl("string")
        .callCapacity(0)
        .channelBonding("string")
        .channelUtilization("string")
        .channels("string")
        .coexistence("string")
        .darrp("string")
        .drma("string")
        .drmaSensitivity("string")
        .dtim(0)
        .fragThreshold(0)
        .frequencyHandoff("string")
        .iperfProtocol("string")
        .iperfServerPort(0)
        .maxClients(0)
        .maxDistance(0)
        .mimoMode("string")
        .mode("string")
        .n80211d("string")
        .optionalAntenna("string")
        .optionalAntennaGain("string")
        .powerLevel(0)
        .powerMode("string")
        .powerValue(0)
        .powersaveOptimizes("string")
        .protectionMode("string")
        .radioId(0)
        .rtsThreshold(0)
        .samBssid("string")
        .samCaCertificate("string")
        .samCaptivePortal("string")
        .samClientCertificate("string")
        .samCwpFailureString("string")
        .samCwpMatchString("string")
        .samCwpPasswords("string")
        .samCwpSuccessString("string")
        .samCwpTestUrl("string")
        .samCwpUsername("string")
        .samEapMethod("string")
        .samPasswords("string")
        .samPrivateKey("string")
        .samPrivateKeyPasswords("string")
        .samReportIntv(0)
        .samSecurityType("string")
        .samServer("string")
        .samServerFqdn("string")
        .samServerIp("string")
        .samServerType("string")
        .samSsid("string")
        .samTest("string")
        .samUsername("string")
        .shortGuardInterval("string")
        .spectrumAnalysis("string")
        .transmitOptimizes("string")
        .vap1("string")
        .vap2("string")
        .vap3("string")
        .vap4("string")
        .vap5("string")
        .vap6("string")
        .vap7("string")
        .vap8("string")
        .vapAll("string")
        .vaps("string")
        .widsProfile("string")
        .zeroWaitDfs("string")
        .build())
    .radio2(ObjectWirelesscontrollerWtpprofileRadio2Args.builder()
        .airtimeFairness("string")
        .amsdu("string")
        .apHandoff("string")
        .apSnifferAddr("string")
        .apSnifferBufsize(0)
        .apSnifferChan(0)
        .apSnifferCtl("string")
        .apSnifferData("string")
        .apSnifferMgmtBeacon("string")
        .apSnifferMgmtOther("string")
        .apSnifferMgmtProbe("string")
        .arrpProfile("string")
        .autoPowerHigh(0)
        .autoPowerLevel("string")
        .autoPowerLow(0)
        .autoPowerTarget("string")
        .band("string")
        .band5gType("string")
        .bandwidthAdmissionControl("string")
        .bandwidthCapacity(0)
        .beaconInterval(0)
        .bssColor(0)
        .bssColorMode("string")
        .callAdmissionControl("string")
        .callCapacity(0)
        .channelBonding("string")
        .channelUtilization("string")
        .channels("string")
        .coexistence("string")
        .darrp("string")
        .drma("string")
        .drmaSensitivity("string")
        .dtim(0)
        .fragThreshold(0)
        .frequencyHandoff("string")
        .iperfProtocol("string")
        .iperfServerPort(0)
        .maxClients(0)
        .maxDistance(0)
        .mimoMode("string")
        .mode("string")
        .n80211d("string")
        .optionalAntenna("string")
        .optionalAntennaGain("string")
        .powerLevel(0)
        .powerMode("string")
        .powerValue(0)
        .powersaveOptimizes("string")
        .protectionMode("string")
        .radioId(0)
        .rtsThreshold(0)
        .samBssid("string")
        .samCaCertificate("string")
        .samCaptivePortal("string")
        .samClientCertificate("string")
        .samCwpFailureString("string")
        .samCwpMatchString("string")
        .samCwpPasswords("string")
        .samCwpSuccessString("string")
        .samCwpTestUrl("string")
        .samCwpUsername("string")
        .samEapMethod("string")
        .samPasswords("string")
        .samPrivateKey("string")
        .samPrivateKeyPasswords("string")
        .samReportIntv(0)
        .samSecurityType("string")
        .samServer("string")
        .samServerFqdn("string")
        .samServerIp("string")
        .samServerType("string")
        .samSsid("string")
        .samTest("string")
        .samUsername("string")
        .shortGuardInterval("string")
        .spectrumAnalysis("string")
        .transmitOptimizes("string")
        .vap1("string")
        .vap2("string")
        .vap3("string")
        .vap4("string")
        .vap5("string")
        .vap6("string")
        .vap7("string")
        .vap8("string")
        .vapAll("string")
        .vaps("string")
        .widsProfile("string")
        .zeroWaitDfs("string")
        .build())
    .radio3(ObjectWirelesscontrollerWtpprofileRadio3Args.builder()
        .airtimeFairness("string")
        .amsdu("string")
        .apHandoff("string")
        .apSnifferAddr("string")
        .apSnifferBufsize(0)
        .apSnifferChan(0)
        .apSnifferCtl("string")
        .apSnifferData("string")
        .apSnifferMgmtBeacon("string")
        .apSnifferMgmtOther("string")
        .apSnifferMgmtProbe("string")
        .arrpProfile("string")
        .autoPowerHigh(0)
        .autoPowerLevel("string")
        .autoPowerLow(0)
        .autoPowerTarget("string")
        .band("string")
        .band5gType("string")
        .bandwidthAdmissionControl("string")
        .bandwidthCapacity(0)
        .beaconInterval(0)
        .bssColor(0)
        .bssColorMode("string")
        .callAdmissionControl("string")
        .callCapacity(0)
        .channelBonding("string")
        .channelUtilization("string")
        .channels("string")
        .coexistence("string")
        .darrp("string")
        .drma("string")
        .drmaSensitivity("string")
        .dtim(0)
        .fragThreshold(0)
        .frequencyHandoff("string")
        .iperfProtocol("string")
        .iperfServerPort(0)
        .maxClients(0)
        .maxDistance(0)
        .mimoMode("string")
        .mode("string")
        .n80211d("string")
        .optionalAntenna("string")
        .optionalAntennaGain("string")
        .powerLevel(0)
        .powerMode("string")
        .powerValue(0)
        .powersaveOptimizes("string")
        .protectionMode("string")
        .radioId(0)
        .rtsThreshold(0)
        .samBssid("string")
        .samCaCertificate("string")
        .samCaptivePortal("string")
        .samClientCertificate("string")
        .samCwpFailureString("string")
        .samCwpMatchString("string")
        .samCwpPasswords("string")
        .samCwpSuccessString("string")
        .samCwpTestUrl("string")
        .samCwpUsername("string")
        .samEapMethod("string")
        .samPasswords("string")
        .samPrivateKey("string")
        .samPrivateKeyPasswords("string")
        .samReportIntv(0)
        .samSecurityType("string")
        .samServer("string")
        .samServerFqdn("string")
        .samServerIp("string")
        .samServerType("string")
        .samSsid("string")
        .samTest("string")
        .samUsername("string")
        .shortGuardInterval("string")
        .spectrumAnalysis("string")
        .transmitOptimizes("string")
        .vap1("string")
        .vap2("string")
        .vap3("string")
        .vap4("string")
        .vap5("string")
        .vap6("string")
        .vap7("string")
        .vap8("string")
        .vapAll("string")
        .vaps("string")
        .widsProfile("string")
        .zeroWaitDfs("string")
        .build())
    .radio4(ObjectWirelesscontrollerWtpprofileRadio4Args.builder()
        .airtimeFairness("string")
        .amsdu("string")
        .apHandoff("string")
        .apSnifferAddr("string")
        .apSnifferBufsize(0)
        .apSnifferChan(0)
        .apSnifferCtl("string")
        .apSnifferData("string")
        .apSnifferMgmtBeacon("string")
        .apSnifferMgmtOther("string")
        .apSnifferMgmtProbe("string")
        .arrpProfile("string")
        .autoPowerHigh(0)
        .autoPowerLevel("string")
        .autoPowerLow(0)
        .autoPowerTarget("string")
        .band("string")
        .band5gType("string")
        .bandwidthAdmissionControl("string")
        .bandwidthCapacity(0)
        .beaconInterval(0)
        .bssColor(0)
        .bssColorMode("string")
        .callAdmissionControl("string")
        .callCapacity(0)
        .channelBonding("string")
        .channelUtilization("string")
        .channels("string")
        .coexistence("string")
        .darrp("string")
        .drma("string")
        .drmaSensitivity("string")
        .dtim(0)
        .fragThreshold(0)
        .frequencyHandoff("string")
        .iperfProtocol("string")
        .iperfServerPort(0)
        .maxClients(0)
        .maxDistance(0)
        .mimoMode("string")
        .mode("string")
        .n80211d("string")
        .optionalAntenna("string")
        .optionalAntennaGain("string")
        .powerLevel(0)
        .powerMode("string")
        .powerValue(0)
        .powersaveOptimizes("string")
        .protectionMode("string")
        .radioId(0)
        .rtsThreshold(0)
        .samBssid("string")
        .samCaCertificate("string")
        .samCaptivePortal("string")
        .samClientCertificate("string")
        .samCwpFailureString("string")
        .samCwpMatchString("string")
        .samCwpPasswords("string")
        .samCwpSuccessString("string")
        .samCwpTestUrl("string")
        .samCwpUsername("string")
        .samEapMethod("string")
        .samPasswords("string")
        .samPrivateKey("string")
        .samPrivateKeyPasswords("string")
        .samReportIntv(0)
        .samSecurityType("string")
        .samServer("string")
        .samServerFqdn("string")
        .samServerIp("string")
        .samServerType("string")
        .samSsid("string")
        .samTest("string")
        .samUsername("string")
        .shortGuardInterval("string")
        .spectrumAnalysis("string")
        .transmitOptimizes("string")
        .vap1("string")
        .vap2("string")
        .vap3("string")
        .vap4("string")
        .vap5("string")
        .vap6("string")
        .vap7("string")
        .vap8("string")
        .vapAll("string")
        .vaps("string")
        .widsProfile("string")
        .zeroWaitDfs("string")
        .build())
    .scopetype("string")
    .snmp("string")
    .splitTunnelingAclLocalApSubnet("string")
    .splitTunnelingAclPath("string")
    .splitTunnelingAcls(ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs.builder()
        .destIp("string")
        .id(0)
        .build())
    .syslogProfile("string")
    .tunMtuDownlink(0)
    .tunMtuUplink(0)
    .unii45ghzBand("string")
    .wanPortAuth("string")
    .wanPortAuthMacsec("string")
    .wanPortAuthMethods("string")
    .wanPortAuthPasswords("string")
    .wanPortAuthUsrname("string")
    .wanPortMode("string")
    .build());
Copy
object_wirelesscontroller_wtpprofile_resource = fortimanager.ObjectWirelesscontrollerWtpprofile("objectWirelesscontrollerWtpprofileResource",
    _is_factory_setting="string",
    adom="string",
    allowaccesses=["string"],
    ap_country="string",
    ap_handoff="string",
    apcfg_profile="string",
    ble_profile="string",
    bonjour_profile="string",
    comment="string",
    console_login="string",
    control_message_offloads=["string"],
    deny_mac_lists=[{
        "id": 0,
        "mac": "string",
    }],
    dtls_in_kernel="string",
    dtls_policies=["string"],
    dynamic_sort_subtable="string",
    energy_efficient_ethernet="string",
    esl_ses_dongle={
        "apc_addr_type": "string",
        "apc_fqdn": "string",
        "apc_ip": "string",
        "apc_port": 0,
        "coex_level": "string",
        "compliance_level": "string",
        "esl_channel": "string",
        "output_power": "string",
        "scd_enable": "string",
        "tls_cert_verification": "string",
        "tls_fqdn_verification": "string",
    },
    ext_info_enable="string",
    frequency_handoff="string",
    handoff_roaming="string",
    handoff_rssi=0,
    handoff_sta_thresh=0,
    indoor_outdoor_deployment="string",
    ip_fragment_preventings=["string"],
    lan={
        "port1_mode": "string",
        "port1_ssid": "string",
        "port2_mode": "string",
        "port2_ssid": "string",
        "port3_mode": "string",
        "port3_ssid": "string",
        "port4_mode": "string",
        "port4_ssid": "string",
        "port5_mode": "string",
        "port5_ssid": "string",
        "port6_mode": "string",
        "port6_ssid": "string",
        "port7_mode": "string",
        "port7_ssid": "string",
        "port8_mode": "string",
        "port8_ssid": "string",
        "port_esl_mode": "string",
        "port_esl_ssid": "string",
        "port_mode": "string",
        "port_ssid": "string",
    },
    lbs={
        "aeroscout": "string",
        "aeroscout_ap_mac": "string",
        "aeroscout_mmu_report": "string",
        "aeroscout_mu": "string",
        "aeroscout_mu_factor": 0,
        "aeroscout_mu_timeout": 0,
        "aeroscout_server_ip": "string",
        "aeroscout_server_port": 0,
        "ekahau_blink_mode": "string",
        "ekahau_tag": "string",
        "erc_server_ip": "string",
        "erc_server_port": 0,
        "fortipresence": "string",
        "fortipresence_ble": "string",
        "fortipresence_frequency": 0,
        "fortipresence_port": 0,
        "fortipresence_project": "string",
        "fortipresence_rogue": "string",
        "fortipresence_secrets": ["string"],
        "fortipresence_server": "string",
        "fortipresence_server_addr_type": "string",
        "fortipresence_server_fqdn": "string",
        "fortipresence_unassoc": "string",
        "polestar": "string",
        "polestar_accumulation_interval": 0,
        "polestar_asset_addrgrp_list": "string",
        "polestar_asset_uuid_list1": "string",
        "polestar_asset_uuid_list2": "string",
        "polestar_asset_uuid_list3": "string",
        "polestar_asset_uuid_list4": "string",
        "polestar_protocol": "string",
        "polestar_reporting_interval": 0,
        "polestar_server_fqdn": "string",
        "polestar_server_path": "string",
        "polestar_server_port": 0,
        "polestar_server_token": "string",
        "station_locate": "string",
    },
    led_schedules=["string"],
    led_state="string",
    lldp="string",
    login_passwd_change="string",
    login_passwds=["string"],
    max_clients=0,
    name="string",
    object_wirelesscontroller_wtpprofile_id="string",
    platform={
        "_local_platform_str": "string",
        "ddscan": "string",
        "mode": "string",
        "type": "string",
    },
    poe_mode="string",
    radio1={
        "airtime_fairness": "string",
        "amsdu": "string",
        "ap_handoff": "string",
        "ap_sniffer_addr": "string",
        "ap_sniffer_bufsize": 0,
        "ap_sniffer_chan": 0,
        "ap_sniffer_ctl": "string",
        "ap_sniffer_data": "string",
        "ap_sniffer_mgmt_beacon": "string",
        "ap_sniffer_mgmt_other": "string",
        "ap_sniffer_mgmt_probe": "string",
        "arrp_profile": "string",
        "auto_power_high": 0,
        "auto_power_level": "string",
        "auto_power_low": 0,
        "auto_power_target": "string",
        "band": "string",
        "band5g_type": "string",
        "bandwidth_admission_control": "string",
        "bandwidth_capacity": 0,
        "beacon_interval": 0,
        "bss_color": 0,
        "bss_color_mode": "string",
        "call_admission_control": "string",
        "call_capacity": 0,
        "channel_bonding": "string",
        "channel_utilization": "string",
        "channels": ["string"],
        "coexistence": "string",
        "darrp": "string",
        "drma": "string",
        "drma_sensitivity": "string",
        "dtim": 0,
        "frag_threshold": 0,
        "frequency_handoff": "string",
        "iperf_protocol": "string",
        "iperf_server_port": 0,
        "max_clients": 0,
        "max_distance": 0,
        "mimo_mode": "string",
        "mode": "string",
        "n80211d": "string",
        "optional_antenna": "string",
        "optional_antenna_gain": "string",
        "power_level": 0,
        "power_mode": "string",
        "power_value": 0,
        "powersave_optimizes": ["string"],
        "protection_mode": "string",
        "radio_id": 0,
        "rts_threshold": 0,
        "sam_bssid": "string",
        "sam_ca_certificate": "string",
        "sam_captive_portal": "string",
        "sam_client_certificate": "string",
        "sam_cwp_failure_string": "string",
        "sam_cwp_match_string": "string",
        "sam_cwp_passwords": ["string"],
        "sam_cwp_success_string": "string",
        "sam_cwp_test_url": "string",
        "sam_cwp_username": "string",
        "sam_eap_method": "string",
        "sam_passwords": ["string"],
        "sam_private_key": "string",
        "sam_private_key_passwords": ["string"],
        "sam_report_intv": 0,
        "sam_security_type": "string",
        "sam_server": "string",
        "sam_server_fqdn": "string",
        "sam_server_ip": "string",
        "sam_server_type": "string",
        "sam_ssid": "string",
        "sam_test": "string",
        "sam_username": "string",
        "short_guard_interval": "string",
        "spectrum_analysis": "string",
        "transmit_optimizes": ["string"],
        "vap1": "string",
        "vap2": "string",
        "vap3": "string",
        "vap4": "string",
        "vap5": "string",
        "vap6": "string",
        "vap7": "string",
        "vap8": "string",
        "vap_all": "string",
        "vaps": "string",
        "wids_profile": "string",
        "zero_wait_dfs": "string",
    },
    radio2={
        "airtime_fairness": "string",
        "amsdu": "string",
        "ap_handoff": "string",
        "ap_sniffer_addr": "string",
        "ap_sniffer_bufsize": 0,
        "ap_sniffer_chan": 0,
        "ap_sniffer_ctl": "string",
        "ap_sniffer_data": "string",
        "ap_sniffer_mgmt_beacon": "string",
        "ap_sniffer_mgmt_other": "string",
        "ap_sniffer_mgmt_probe": "string",
        "arrp_profile": "string",
        "auto_power_high": 0,
        "auto_power_level": "string",
        "auto_power_low": 0,
        "auto_power_target": "string",
        "band": "string",
        "band5g_type": "string",
        "bandwidth_admission_control": "string",
        "bandwidth_capacity": 0,
        "beacon_interval": 0,
        "bss_color": 0,
        "bss_color_mode": "string",
        "call_admission_control": "string",
        "call_capacity": 0,
        "channel_bonding": "string",
        "channel_utilization": "string",
        "channels": ["string"],
        "coexistence": "string",
        "darrp": "string",
        "drma": "string",
        "drma_sensitivity": "string",
        "dtim": 0,
        "frag_threshold": 0,
        "frequency_handoff": "string",
        "iperf_protocol": "string",
        "iperf_server_port": 0,
        "max_clients": 0,
        "max_distance": 0,
        "mimo_mode": "string",
        "mode": "string",
        "n80211d": "string",
        "optional_antenna": "string",
        "optional_antenna_gain": "string",
        "power_level": 0,
        "power_mode": "string",
        "power_value": 0,
        "powersave_optimizes": ["string"],
        "protection_mode": "string",
        "radio_id": 0,
        "rts_threshold": 0,
        "sam_bssid": "string",
        "sam_ca_certificate": "string",
        "sam_captive_portal": "string",
        "sam_client_certificate": "string",
        "sam_cwp_failure_string": "string",
        "sam_cwp_match_string": "string",
        "sam_cwp_passwords": ["string"],
        "sam_cwp_success_string": "string",
        "sam_cwp_test_url": "string",
        "sam_cwp_username": "string",
        "sam_eap_method": "string",
        "sam_passwords": ["string"],
        "sam_private_key": "string",
        "sam_private_key_passwords": ["string"],
        "sam_report_intv": 0,
        "sam_security_type": "string",
        "sam_server": "string",
        "sam_server_fqdn": "string",
        "sam_server_ip": "string",
        "sam_server_type": "string",
        "sam_ssid": "string",
        "sam_test": "string",
        "sam_username": "string",
        "short_guard_interval": "string",
        "spectrum_analysis": "string",
        "transmit_optimizes": ["string"],
        "vap1": "string",
        "vap2": "string",
        "vap3": "string",
        "vap4": "string",
        "vap5": "string",
        "vap6": "string",
        "vap7": "string",
        "vap8": "string",
        "vap_all": "string",
        "vaps": "string",
        "wids_profile": "string",
        "zero_wait_dfs": "string",
    },
    radio3={
        "airtime_fairness": "string",
        "amsdu": "string",
        "ap_handoff": "string",
        "ap_sniffer_addr": "string",
        "ap_sniffer_bufsize": 0,
        "ap_sniffer_chan": 0,
        "ap_sniffer_ctl": "string",
        "ap_sniffer_data": "string",
        "ap_sniffer_mgmt_beacon": "string",
        "ap_sniffer_mgmt_other": "string",
        "ap_sniffer_mgmt_probe": "string",
        "arrp_profile": "string",
        "auto_power_high": 0,
        "auto_power_level": "string",
        "auto_power_low": 0,
        "auto_power_target": "string",
        "band": "string",
        "band5g_type": "string",
        "bandwidth_admission_control": "string",
        "bandwidth_capacity": 0,
        "beacon_interval": 0,
        "bss_color": 0,
        "bss_color_mode": "string",
        "call_admission_control": "string",
        "call_capacity": 0,
        "channel_bonding": "string",
        "channel_utilization": "string",
        "channels": ["string"],
        "coexistence": "string",
        "darrp": "string",
        "drma": "string",
        "drma_sensitivity": "string",
        "dtim": 0,
        "frag_threshold": 0,
        "frequency_handoff": "string",
        "iperf_protocol": "string",
        "iperf_server_port": 0,
        "max_clients": 0,
        "max_distance": 0,
        "mimo_mode": "string",
        "mode": "string",
        "n80211d": "string",
        "optional_antenna": "string",
        "optional_antenna_gain": "string",
        "power_level": 0,
        "power_mode": "string",
        "power_value": 0,
        "powersave_optimizes": ["string"],
        "protection_mode": "string",
        "radio_id": 0,
        "rts_threshold": 0,
        "sam_bssid": "string",
        "sam_ca_certificate": "string",
        "sam_captive_portal": "string",
        "sam_client_certificate": "string",
        "sam_cwp_failure_string": "string",
        "sam_cwp_match_string": "string",
        "sam_cwp_passwords": ["string"],
        "sam_cwp_success_string": "string",
        "sam_cwp_test_url": "string",
        "sam_cwp_username": "string",
        "sam_eap_method": "string",
        "sam_passwords": ["string"],
        "sam_private_key": "string",
        "sam_private_key_passwords": ["string"],
        "sam_report_intv": 0,
        "sam_security_type": "string",
        "sam_server": "string",
        "sam_server_fqdn": "string",
        "sam_server_ip": "string",
        "sam_server_type": "string",
        "sam_ssid": "string",
        "sam_test": "string",
        "sam_username": "string",
        "short_guard_interval": "string",
        "spectrum_analysis": "string",
        "transmit_optimizes": ["string"],
        "vap1": "string",
        "vap2": "string",
        "vap3": "string",
        "vap4": "string",
        "vap5": "string",
        "vap6": "string",
        "vap7": "string",
        "vap8": "string",
        "vap_all": "string",
        "vaps": "string",
        "wids_profile": "string",
        "zero_wait_dfs": "string",
    },
    radio4={
        "airtime_fairness": "string",
        "amsdu": "string",
        "ap_handoff": "string",
        "ap_sniffer_addr": "string",
        "ap_sniffer_bufsize": 0,
        "ap_sniffer_chan": 0,
        "ap_sniffer_ctl": "string",
        "ap_sniffer_data": "string",
        "ap_sniffer_mgmt_beacon": "string",
        "ap_sniffer_mgmt_other": "string",
        "ap_sniffer_mgmt_probe": "string",
        "arrp_profile": "string",
        "auto_power_high": 0,
        "auto_power_level": "string",
        "auto_power_low": 0,
        "auto_power_target": "string",
        "band": "string",
        "band5g_type": "string",
        "bandwidth_admission_control": "string",
        "bandwidth_capacity": 0,
        "beacon_interval": 0,
        "bss_color": 0,
        "bss_color_mode": "string",
        "call_admission_control": "string",
        "call_capacity": 0,
        "channel_bonding": "string",
        "channel_utilization": "string",
        "channels": ["string"],
        "coexistence": "string",
        "darrp": "string",
        "drma": "string",
        "drma_sensitivity": "string",
        "dtim": 0,
        "frag_threshold": 0,
        "frequency_handoff": "string",
        "iperf_protocol": "string",
        "iperf_server_port": 0,
        "max_clients": 0,
        "max_distance": 0,
        "mimo_mode": "string",
        "mode": "string",
        "n80211d": "string",
        "optional_antenna": "string",
        "optional_antenna_gain": "string",
        "power_level": 0,
        "power_mode": "string",
        "power_value": 0,
        "powersave_optimizes": ["string"],
        "protection_mode": "string",
        "radio_id": 0,
        "rts_threshold": 0,
        "sam_bssid": "string",
        "sam_ca_certificate": "string",
        "sam_captive_portal": "string",
        "sam_client_certificate": "string",
        "sam_cwp_failure_string": "string",
        "sam_cwp_match_string": "string",
        "sam_cwp_passwords": ["string"],
        "sam_cwp_success_string": "string",
        "sam_cwp_test_url": "string",
        "sam_cwp_username": "string",
        "sam_eap_method": "string",
        "sam_passwords": ["string"],
        "sam_private_key": "string",
        "sam_private_key_passwords": ["string"],
        "sam_report_intv": 0,
        "sam_security_type": "string",
        "sam_server": "string",
        "sam_server_fqdn": "string",
        "sam_server_ip": "string",
        "sam_server_type": "string",
        "sam_ssid": "string",
        "sam_test": "string",
        "sam_username": "string",
        "short_guard_interval": "string",
        "spectrum_analysis": "string",
        "transmit_optimizes": ["string"],
        "vap1": "string",
        "vap2": "string",
        "vap3": "string",
        "vap4": "string",
        "vap5": "string",
        "vap6": "string",
        "vap7": "string",
        "vap8": "string",
        "vap_all": "string",
        "vaps": "string",
        "wids_profile": "string",
        "zero_wait_dfs": "string",
    },
    scopetype="string",
    snmp="string",
    split_tunneling_acl_local_ap_subnet="string",
    split_tunneling_acl_path="string",
    split_tunneling_acls=[{
        "dest_ip": "string",
        "id": 0,
    }],
    syslog_profile="string",
    tun_mtu_downlink=0,
    tun_mtu_uplink=0,
    unii45ghz_band="string",
    wan_port_auth="string",
    wan_port_auth_macsec="string",
    wan_port_auth_methods="string",
    wan_port_auth_passwords=["string"],
    wan_port_auth_usrname="string",
    wan_port_mode="string")
Copy
const objectWirelesscontrollerWtpprofileResource = new fortimanager.ObjectWirelesscontrollerWtpprofile("objectWirelesscontrollerWtpprofileResource", {
    _isFactorySetting: "string",
    adom: "string",
    allowaccesses: ["string"],
    apCountry: "string",
    apHandoff: "string",
    apcfgProfile: "string",
    bleProfile: "string",
    bonjourProfile: "string",
    comment: "string",
    consoleLogin: "string",
    controlMessageOffloads: ["string"],
    denyMacLists: [{
        id: 0,
        mac: "string",
    }],
    dtlsInKernel: "string",
    dtlsPolicies: ["string"],
    dynamicSortSubtable: "string",
    energyEfficientEthernet: "string",
    eslSesDongle: {
        apcAddrType: "string",
        apcFqdn: "string",
        apcIp: "string",
        apcPort: 0,
        coexLevel: "string",
        complianceLevel: "string",
        eslChannel: "string",
        outputPower: "string",
        scdEnable: "string",
        tlsCertVerification: "string",
        tlsFqdnVerification: "string",
    },
    extInfoEnable: "string",
    frequencyHandoff: "string",
    handoffRoaming: "string",
    handoffRssi: 0,
    handoffStaThresh: 0,
    indoorOutdoorDeployment: "string",
    ipFragmentPreventings: ["string"],
    lan: {
        port1Mode: "string",
        port1Ssid: "string",
        port2Mode: "string",
        port2Ssid: "string",
        port3Mode: "string",
        port3Ssid: "string",
        port4Mode: "string",
        port4Ssid: "string",
        port5Mode: "string",
        port5Ssid: "string",
        port6Mode: "string",
        port6Ssid: "string",
        port7Mode: "string",
        port7Ssid: "string",
        port8Mode: "string",
        port8Ssid: "string",
        portEslMode: "string",
        portEslSsid: "string",
        portMode: "string",
        portSsid: "string",
    },
    lbs: {
        aeroscout: "string",
        aeroscoutApMac: "string",
        aeroscoutMmuReport: "string",
        aeroscoutMu: "string",
        aeroscoutMuFactor: 0,
        aeroscoutMuTimeout: 0,
        aeroscoutServerIp: "string",
        aeroscoutServerPort: 0,
        ekahauBlinkMode: "string",
        ekahauTag: "string",
        ercServerIp: "string",
        ercServerPort: 0,
        fortipresence: "string",
        fortipresenceBle: "string",
        fortipresenceFrequency: 0,
        fortipresencePort: 0,
        fortipresenceProject: "string",
        fortipresenceRogue: "string",
        fortipresenceSecrets: ["string"],
        fortipresenceServer: "string",
        fortipresenceServerAddrType: "string",
        fortipresenceServerFqdn: "string",
        fortipresenceUnassoc: "string",
        polestar: "string",
        polestarAccumulationInterval: 0,
        polestarAssetAddrgrpList: "string",
        polestarAssetUuidList1: "string",
        polestarAssetUuidList2: "string",
        polestarAssetUuidList3: "string",
        polestarAssetUuidList4: "string",
        polestarProtocol: "string",
        polestarReportingInterval: 0,
        polestarServerFqdn: "string",
        polestarServerPath: "string",
        polestarServerPort: 0,
        polestarServerToken: "string",
        stationLocate: "string",
    },
    ledSchedules: ["string"],
    ledState: "string",
    lldp: "string",
    loginPasswdChange: "string",
    loginPasswds: ["string"],
    maxClients: 0,
    name: "string",
    objectWirelesscontrollerWtpprofileId: "string",
    platform: {
        _localPlatformStr: "string",
        ddscan: "string",
        mode: "string",
        type: "string",
    },
    poeMode: "string",
    radio1: {
        airtimeFairness: "string",
        amsdu: "string",
        apHandoff: "string",
        apSnifferAddr: "string",
        apSnifferBufsize: 0,
        apSnifferChan: 0,
        apSnifferCtl: "string",
        apSnifferData: "string",
        apSnifferMgmtBeacon: "string",
        apSnifferMgmtOther: "string",
        apSnifferMgmtProbe: "string",
        arrpProfile: "string",
        autoPowerHigh: 0,
        autoPowerLevel: "string",
        autoPowerLow: 0,
        autoPowerTarget: "string",
        band: "string",
        band5gType: "string",
        bandwidthAdmissionControl: "string",
        bandwidthCapacity: 0,
        beaconInterval: 0,
        bssColor: 0,
        bssColorMode: "string",
        callAdmissionControl: "string",
        callCapacity: 0,
        channelBonding: "string",
        channelUtilization: "string",
        channels: ["string"],
        coexistence: "string",
        darrp: "string",
        drma: "string",
        drmaSensitivity: "string",
        dtim: 0,
        fragThreshold: 0,
        frequencyHandoff: "string",
        iperfProtocol: "string",
        iperfServerPort: 0,
        maxClients: 0,
        maxDistance: 0,
        mimoMode: "string",
        mode: "string",
        n80211d: "string",
        optionalAntenna: "string",
        optionalAntennaGain: "string",
        powerLevel: 0,
        powerMode: "string",
        powerValue: 0,
        powersaveOptimizes: ["string"],
        protectionMode: "string",
        radioId: 0,
        rtsThreshold: 0,
        samBssid: "string",
        samCaCertificate: "string",
        samCaptivePortal: "string",
        samClientCertificate: "string",
        samCwpFailureString: "string",
        samCwpMatchString: "string",
        samCwpPasswords: ["string"],
        samCwpSuccessString: "string",
        samCwpTestUrl: "string",
        samCwpUsername: "string",
        samEapMethod: "string",
        samPasswords: ["string"],
        samPrivateKey: "string",
        samPrivateKeyPasswords: ["string"],
        samReportIntv: 0,
        samSecurityType: "string",
        samServer: "string",
        samServerFqdn: "string",
        samServerIp: "string",
        samServerType: "string",
        samSsid: "string",
        samTest: "string",
        samUsername: "string",
        shortGuardInterval: "string",
        spectrumAnalysis: "string",
        transmitOptimizes: ["string"],
        vap1: "string",
        vap2: "string",
        vap3: "string",
        vap4: "string",
        vap5: "string",
        vap6: "string",
        vap7: "string",
        vap8: "string",
        vapAll: "string",
        vaps: "string",
        widsProfile: "string",
        zeroWaitDfs: "string",
    },
    radio2: {
        airtimeFairness: "string",
        amsdu: "string",
        apHandoff: "string",
        apSnifferAddr: "string",
        apSnifferBufsize: 0,
        apSnifferChan: 0,
        apSnifferCtl: "string",
        apSnifferData: "string",
        apSnifferMgmtBeacon: "string",
        apSnifferMgmtOther: "string",
        apSnifferMgmtProbe: "string",
        arrpProfile: "string",
        autoPowerHigh: 0,
        autoPowerLevel: "string",
        autoPowerLow: 0,
        autoPowerTarget: "string",
        band: "string",
        band5gType: "string",
        bandwidthAdmissionControl: "string",
        bandwidthCapacity: 0,
        beaconInterval: 0,
        bssColor: 0,
        bssColorMode: "string",
        callAdmissionControl: "string",
        callCapacity: 0,
        channelBonding: "string",
        channelUtilization: "string",
        channels: ["string"],
        coexistence: "string",
        darrp: "string",
        drma: "string",
        drmaSensitivity: "string",
        dtim: 0,
        fragThreshold: 0,
        frequencyHandoff: "string",
        iperfProtocol: "string",
        iperfServerPort: 0,
        maxClients: 0,
        maxDistance: 0,
        mimoMode: "string",
        mode: "string",
        n80211d: "string",
        optionalAntenna: "string",
        optionalAntennaGain: "string",
        powerLevel: 0,
        powerMode: "string",
        powerValue: 0,
        powersaveOptimizes: ["string"],
        protectionMode: "string",
        radioId: 0,
        rtsThreshold: 0,
        samBssid: "string",
        samCaCertificate: "string",
        samCaptivePortal: "string",
        samClientCertificate: "string",
        samCwpFailureString: "string",
        samCwpMatchString: "string",
        samCwpPasswords: ["string"],
        samCwpSuccessString: "string",
        samCwpTestUrl: "string",
        samCwpUsername: "string",
        samEapMethod: "string",
        samPasswords: ["string"],
        samPrivateKey: "string",
        samPrivateKeyPasswords: ["string"],
        samReportIntv: 0,
        samSecurityType: "string",
        samServer: "string",
        samServerFqdn: "string",
        samServerIp: "string",
        samServerType: "string",
        samSsid: "string",
        samTest: "string",
        samUsername: "string",
        shortGuardInterval: "string",
        spectrumAnalysis: "string",
        transmitOptimizes: ["string"],
        vap1: "string",
        vap2: "string",
        vap3: "string",
        vap4: "string",
        vap5: "string",
        vap6: "string",
        vap7: "string",
        vap8: "string",
        vapAll: "string",
        vaps: "string",
        widsProfile: "string",
        zeroWaitDfs: "string",
    },
    radio3: {
        airtimeFairness: "string",
        amsdu: "string",
        apHandoff: "string",
        apSnifferAddr: "string",
        apSnifferBufsize: 0,
        apSnifferChan: 0,
        apSnifferCtl: "string",
        apSnifferData: "string",
        apSnifferMgmtBeacon: "string",
        apSnifferMgmtOther: "string",
        apSnifferMgmtProbe: "string",
        arrpProfile: "string",
        autoPowerHigh: 0,
        autoPowerLevel: "string",
        autoPowerLow: 0,
        autoPowerTarget: "string",
        band: "string",
        band5gType: "string",
        bandwidthAdmissionControl: "string",
        bandwidthCapacity: 0,
        beaconInterval: 0,
        bssColor: 0,
        bssColorMode: "string",
        callAdmissionControl: "string",
        callCapacity: 0,
        channelBonding: "string",
        channelUtilization: "string",
        channels: ["string"],
        coexistence: "string",
        darrp: "string",
        drma: "string",
        drmaSensitivity: "string",
        dtim: 0,
        fragThreshold: 0,
        frequencyHandoff: "string",
        iperfProtocol: "string",
        iperfServerPort: 0,
        maxClients: 0,
        maxDistance: 0,
        mimoMode: "string",
        mode: "string",
        n80211d: "string",
        optionalAntenna: "string",
        optionalAntennaGain: "string",
        powerLevel: 0,
        powerMode: "string",
        powerValue: 0,
        powersaveOptimizes: ["string"],
        protectionMode: "string",
        radioId: 0,
        rtsThreshold: 0,
        samBssid: "string",
        samCaCertificate: "string",
        samCaptivePortal: "string",
        samClientCertificate: "string",
        samCwpFailureString: "string",
        samCwpMatchString: "string",
        samCwpPasswords: ["string"],
        samCwpSuccessString: "string",
        samCwpTestUrl: "string",
        samCwpUsername: "string",
        samEapMethod: "string",
        samPasswords: ["string"],
        samPrivateKey: "string",
        samPrivateKeyPasswords: ["string"],
        samReportIntv: 0,
        samSecurityType: "string",
        samServer: "string",
        samServerFqdn: "string",
        samServerIp: "string",
        samServerType: "string",
        samSsid: "string",
        samTest: "string",
        samUsername: "string",
        shortGuardInterval: "string",
        spectrumAnalysis: "string",
        transmitOptimizes: ["string"],
        vap1: "string",
        vap2: "string",
        vap3: "string",
        vap4: "string",
        vap5: "string",
        vap6: "string",
        vap7: "string",
        vap8: "string",
        vapAll: "string",
        vaps: "string",
        widsProfile: "string",
        zeroWaitDfs: "string",
    },
    radio4: {
        airtimeFairness: "string",
        amsdu: "string",
        apHandoff: "string",
        apSnifferAddr: "string",
        apSnifferBufsize: 0,
        apSnifferChan: 0,
        apSnifferCtl: "string",
        apSnifferData: "string",
        apSnifferMgmtBeacon: "string",
        apSnifferMgmtOther: "string",
        apSnifferMgmtProbe: "string",
        arrpProfile: "string",
        autoPowerHigh: 0,
        autoPowerLevel: "string",
        autoPowerLow: 0,
        autoPowerTarget: "string",
        band: "string",
        band5gType: "string",
        bandwidthAdmissionControl: "string",
        bandwidthCapacity: 0,
        beaconInterval: 0,
        bssColor: 0,
        bssColorMode: "string",
        callAdmissionControl: "string",
        callCapacity: 0,
        channelBonding: "string",
        channelUtilization: "string",
        channels: ["string"],
        coexistence: "string",
        darrp: "string",
        drma: "string",
        drmaSensitivity: "string",
        dtim: 0,
        fragThreshold: 0,
        frequencyHandoff: "string",
        iperfProtocol: "string",
        iperfServerPort: 0,
        maxClients: 0,
        maxDistance: 0,
        mimoMode: "string",
        mode: "string",
        n80211d: "string",
        optionalAntenna: "string",
        optionalAntennaGain: "string",
        powerLevel: 0,
        powerMode: "string",
        powerValue: 0,
        powersaveOptimizes: ["string"],
        protectionMode: "string",
        radioId: 0,
        rtsThreshold: 0,
        samBssid: "string",
        samCaCertificate: "string",
        samCaptivePortal: "string",
        samClientCertificate: "string",
        samCwpFailureString: "string",
        samCwpMatchString: "string",
        samCwpPasswords: ["string"],
        samCwpSuccessString: "string",
        samCwpTestUrl: "string",
        samCwpUsername: "string",
        samEapMethod: "string",
        samPasswords: ["string"],
        samPrivateKey: "string",
        samPrivateKeyPasswords: ["string"],
        samReportIntv: 0,
        samSecurityType: "string",
        samServer: "string",
        samServerFqdn: "string",
        samServerIp: "string",
        samServerType: "string",
        samSsid: "string",
        samTest: "string",
        samUsername: "string",
        shortGuardInterval: "string",
        spectrumAnalysis: "string",
        transmitOptimizes: ["string"],
        vap1: "string",
        vap2: "string",
        vap3: "string",
        vap4: "string",
        vap5: "string",
        vap6: "string",
        vap7: "string",
        vap8: "string",
        vapAll: "string",
        vaps: "string",
        widsProfile: "string",
        zeroWaitDfs: "string",
    },
    scopetype: "string",
    snmp: "string",
    splitTunnelingAclLocalApSubnet: "string",
    splitTunnelingAclPath: "string",
    splitTunnelingAcls: [{
        destIp: "string",
        id: 0,
    }],
    syslogProfile: "string",
    tunMtuDownlink: 0,
    tunMtuUplink: 0,
    unii45ghzBand: "string",
    wanPortAuth: "string",
    wanPortAuthMacsec: "string",
    wanPortAuthMethods: "string",
    wanPortAuthPasswords: ["string"],
    wanPortAuthUsrname: "string",
    wanPortMode: "string",
});
Copy
type: fortimanager:ObjectWirelesscontrollerWtpprofile
properties:
    _isFactorySetting: string
    adom: string
    allowaccesses:
        - string
    apCountry: string
    apHandoff: string
    apcfgProfile: string
    bleProfile: string
    bonjourProfile: string
    comment: string
    consoleLogin: string
    controlMessageOffloads:
        - string
    denyMacLists:
        - id: 0
          mac: string
    dtlsInKernel: string
    dtlsPolicies:
        - string
    dynamicSortSubtable: string
    energyEfficientEthernet: string
    eslSesDongle:
        apcAddrType: string
        apcFqdn: string
        apcIp: string
        apcPort: 0
        coexLevel: string
        complianceLevel: string
        eslChannel: string
        outputPower: string
        scdEnable: string
        tlsCertVerification: string
        tlsFqdnVerification: string
    extInfoEnable: string
    frequencyHandoff: string
    handoffRoaming: string
    handoffRssi: 0
    handoffStaThresh: 0
    indoorOutdoorDeployment: string
    ipFragmentPreventings:
        - string
    lan:
        port1Mode: string
        port1Ssid: string
        port2Mode: string
        port2Ssid: string
        port3Mode: string
        port3Ssid: string
        port4Mode: string
        port4Ssid: string
        port5Mode: string
        port5Ssid: string
        port6Mode: string
        port6Ssid: string
        port7Mode: string
        port7Ssid: string
        port8Mode: string
        port8Ssid: string
        portEslMode: string
        portEslSsid: string
        portMode: string
        portSsid: string
    lbs:
        aeroscout: string
        aeroscoutApMac: string
        aeroscoutMmuReport: string
        aeroscoutMu: string
        aeroscoutMuFactor: 0
        aeroscoutMuTimeout: 0
        aeroscoutServerIp: string
        aeroscoutServerPort: 0
        ekahauBlinkMode: string
        ekahauTag: string
        ercServerIp: string
        ercServerPort: 0
        fortipresence: string
        fortipresenceBle: string
        fortipresenceFrequency: 0
        fortipresencePort: 0
        fortipresenceProject: string
        fortipresenceRogue: string
        fortipresenceSecrets:
            - string
        fortipresenceServer: string
        fortipresenceServerAddrType: string
        fortipresenceServerFqdn: string
        fortipresenceUnassoc: string
        polestar: string
        polestarAccumulationInterval: 0
        polestarAssetAddrgrpList: string
        polestarAssetUuidList1: string
        polestarAssetUuidList2: string
        polestarAssetUuidList3: string
        polestarAssetUuidList4: string
        polestarProtocol: string
        polestarReportingInterval: 0
        polestarServerFqdn: string
        polestarServerPath: string
        polestarServerPort: 0
        polestarServerToken: string
        stationLocate: string
    ledSchedules:
        - string
    ledState: string
    lldp: string
    loginPasswdChange: string
    loginPasswds:
        - string
    maxClients: 0
    name: string
    objectWirelesscontrollerWtpprofileId: string
    platform:
        _localPlatformStr: string
        ddscan: string
        mode: string
        type: string
    poeMode: string
    radio1:
        airtimeFairness: string
        amsdu: string
        apHandoff: string
        apSnifferAddr: string
        apSnifferBufsize: 0
        apSnifferChan: 0
        apSnifferCtl: string
        apSnifferData: string
        apSnifferMgmtBeacon: string
        apSnifferMgmtOther: string
        apSnifferMgmtProbe: string
        arrpProfile: string
        autoPowerHigh: 0
        autoPowerLevel: string
        autoPowerLow: 0
        autoPowerTarget: string
        band: string
        band5gType: string
        bandwidthAdmissionControl: string
        bandwidthCapacity: 0
        beaconInterval: 0
        bssColor: 0
        bssColorMode: string
        callAdmissionControl: string
        callCapacity: 0
        channelBonding: string
        channelUtilization: string
        channels:
            - string
        coexistence: string
        darrp: string
        drma: string
        drmaSensitivity: string
        dtim: 0
        fragThreshold: 0
        frequencyHandoff: string
        iperfProtocol: string
        iperfServerPort: 0
        maxClients: 0
        maxDistance: 0
        mimoMode: string
        mode: string
        n80211d: string
        optionalAntenna: string
        optionalAntennaGain: string
        powerLevel: 0
        powerMode: string
        powerValue: 0
        powersaveOptimizes:
            - string
        protectionMode: string
        radioId: 0
        rtsThreshold: 0
        samBssid: string
        samCaCertificate: string
        samCaptivePortal: string
        samClientCertificate: string
        samCwpFailureString: string
        samCwpMatchString: string
        samCwpPasswords:
            - string
        samCwpSuccessString: string
        samCwpTestUrl: string
        samCwpUsername: string
        samEapMethod: string
        samPasswords:
            - string
        samPrivateKey: string
        samPrivateKeyPasswords:
            - string
        samReportIntv: 0
        samSecurityType: string
        samServer: string
        samServerFqdn: string
        samServerIp: string
        samServerType: string
        samSsid: string
        samTest: string
        samUsername: string
        shortGuardInterval: string
        spectrumAnalysis: string
        transmitOptimizes:
            - string
        vap1: string
        vap2: string
        vap3: string
        vap4: string
        vap5: string
        vap6: string
        vap7: string
        vap8: string
        vapAll: string
        vaps: string
        widsProfile: string
        zeroWaitDfs: string
    radio2:
        airtimeFairness: string
        amsdu: string
        apHandoff: string
        apSnifferAddr: string
        apSnifferBufsize: 0
        apSnifferChan: 0
        apSnifferCtl: string
        apSnifferData: string
        apSnifferMgmtBeacon: string
        apSnifferMgmtOther: string
        apSnifferMgmtProbe: string
        arrpProfile: string
        autoPowerHigh: 0
        autoPowerLevel: string
        autoPowerLow: 0
        autoPowerTarget: string
        band: string
        band5gType: string
        bandwidthAdmissionControl: string
        bandwidthCapacity: 0
        beaconInterval: 0
        bssColor: 0
        bssColorMode: string
        callAdmissionControl: string
        callCapacity: 0
        channelBonding: string
        channelUtilization: string
        channels:
            - string
        coexistence: string
        darrp: string
        drma: string
        drmaSensitivity: string
        dtim: 0
        fragThreshold: 0
        frequencyHandoff: string
        iperfProtocol: string
        iperfServerPort: 0
        maxClients: 0
        maxDistance: 0
        mimoMode: string
        mode: string
        n80211d: string
        optionalAntenna: string
        optionalAntennaGain: string
        powerLevel: 0
        powerMode: string
        powerValue: 0
        powersaveOptimizes:
            - string
        protectionMode: string
        radioId: 0
        rtsThreshold: 0
        samBssid: string
        samCaCertificate: string
        samCaptivePortal: string
        samClientCertificate: string
        samCwpFailureString: string
        samCwpMatchString: string
        samCwpPasswords:
            - string
        samCwpSuccessString: string
        samCwpTestUrl: string
        samCwpUsername: string
        samEapMethod: string
        samPasswords:
            - string
        samPrivateKey: string
        samPrivateKeyPasswords:
            - string
        samReportIntv: 0
        samSecurityType: string
        samServer: string
        samServerFqdn: string
        samServerIp: string
        samServerType: string
        samSsid: string
        samTest: string
        samUsername: string
        shortGuardInterval: string
        spectrumAnalysis: string
        transmitOptimizes:
            - string
        vap1: string
        vap2: string
        vap3: string
        vap4: string
        vap5: string
        vap6: string
        vap7: string
        vap8: string
        vapAll: string
        vaps: string
        widsProfile: string
        zeroWaitDfs: string
    radio3:
        airtimeFairness: string
        amsdu: string
        apHandoff: string
        apSnifferAddr: string
        apSnifferBufsize: 0
        apSnifferChan: 0
        apSnifferCtl: string
        apSnifferData: string
        apSnifferMgmtBeacon: string
        apSnifferMgmtOther: string
        apSnifferMgmtProbe: string
        arrpProfile: string
        autoPowerHigh: 0
        autoPowerLevel: string
        autoPowerLow: 0
        autoPowerTarget: string
        band: string
        band5gType: string
        bandwidthAdmissionControl: string
        bandwidthCapacity: 0
        beaconInterval: 0
        bssColor: 0
        bssColorMode: string
        callAdmissionControl: string
        callCapacity: 0
        channelBonding: string
        channelUtilization: string
        channels:
            - string
        coexistence: string
        darrp: string
        drma: string
        drmaSensitivity: string
        dtim: 0
        fragThreshold: 0
        frequencyHandoff: string
        iperfProtocol: string
        iperfServerPort: 0
        maxClients: 0
        maxDistance: 0
        mimoMode: string
        mode: string
        n80211d: string
        optionalAntenna: string
        optionalAntennaGain: string
        powerLevel: 0
        powerMode: string
        powerValue: 0
        powersaveOptimizes:
            - string
        protectionMode: string
        radioId: 0
        rtsThreshold: 0
        samBssid: string
        samCaCertificate: string
        samCaptivePortal: string
        samClientCertificate: string
        samCwpFailureString: string
        samCwpMatchString: string
        samCwpPasswords:
            - string
        samCwpSuccessString: string
        samCwpTestUrl: string
        samCwpUsername: string
        samEapMethod: string
        samPasswords:
            - string
        samPrivateKey: string
        samPrivateKeyPasswords:
            - string
        samReportIntv: 0
        samSecurityType: string
        samServer: string
        samServerFqdn: string
        samServerIp: string
        samServerType: string
        samSsid: string
        samTest: string
        samUsername: string
        shortGuardInterval: string
        spectrumAnalysis: string
        transmitOptimizes:
            - string
        vap1: string
        vap2: string
        vap3: string
        vap4: string
        vap5: string
        vap6: string
        vap7: string
        vap8: string
        vapAll: string
        vaps: string
        widsProfile: string
        zeroWaitDfs: string
    radio4:
        airtimeFairness: string
        amsdu: string
        apHandoff: string
        apSnifferAddr: string
        apSnifferBufsize: 0
        apSnifferChan: 0
        apSnifferCtl: string
        apSnifferData: string
        apSnifferMgmtBeacon: string
        apSnifferMgmtOther: string
        apSnifferMgmtProbe: string
        arrpProfile: string
        autoPowerHigh: 0
        autoPowerLevel: string
        autoPowerLow: 0
        autoPowerTarget: string
        band: string
        band5gType: string
        bandwidthAdmissionControl: string
        bandwidthCapacity: 0
        beaconInterval: 0
        bssColor: 0
        bssColorMode: string
        callAdmissionControl: string
        callCapacity: 0
        channelBonding: string
        channelUtilization: string
        channels:
            - string
        coexistence: string
        darrp: string
        drma: string
        drmaSensitivity: string
        dtim: 0
        fragThreshold: 0
        frequencyHandoff: string
        iperfProtocol: string
        iperfServerPort: 0
        maxClients: 0
        maxDistance: 0
        mimoMode: string
        mode: string
        n80211d: string
        optionalAntenna: string
        optionalAntennaGain: string
        powerLevel: 0
        powerMode: string
        powerValue: 0
        powersaveOptimizes:
            - string
        protectionMode: string
        radioId: 0
        rtsThreshold: 0
        samBssid: string
        samCaCertificate: string
        samCaptivePortal: string
        samClientCertificate: string
        samCwpFailureString: string
        samCwpMatchString: string
        samCwpPasswords:
            - string
        samCwpSuccessString: string
        samCwpTestUrl: string
        samCwpUsername: string
        samEapMethod: string
        samPasswords:
            - string
        samPrivateKey: string
        samPrivateKeyPasswords:
            - string
        samReportIntv: 0
        samSecurityType: string
        samServer: string
        samServerFqdn: string
        samServerIp: string
        samServerType: string
        samSsid: string
        samTest: string
        samUsername: string
        shortGuardInterval: string
        spectrumAnalysis: string
        transmitOptimizes:
            - string
        vap1: string
        vap2: string
        vap3: string
        vap4: string
        vap5: string
        vap6: string
        vap7: string
        vap8: string
        vapAll: string
        vaps: string
        widsProfile: string
        zeroWaitDfs: string
    scopetype: string
    snmp: string
    splitTunnelingAclLocalApSubnet: string
    splitTunnelingAclPath: string
    splitTunnelingAcls:
        - destIp: string
          id: 0
    syslogProfile: string
    tunMtuDownlink: 0
    tunMtuUplink: 0
    unii45ghzBand: string
    wanPortAuth: string
    wanPortAuthMacsec: string
    wanPortAuthMethods: string
    wanPortAuthPasswords:
        - string
    wanPortAuthUsrname: string
    wanPortMode: string
Copy

ObjectWirelesscontrollerWtpprofile Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The ObjectWirelesscontrollerWtpprofile resource accepts the following input properties:

Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Allowaccesses List<string>
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
ApCountry string
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApcfgProfile string
AP local configuration profile name.
BleProfile string
Bluetooth Low Energy profile name.
BonjourProfile string
Bonjour profile name.
Comment string
Comment.
ConsoleLogin string
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
ControlMessageOffloads List<string>
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
DenyMacLists List<ObjectWirelesscontrollerWtpprofileDenyMacList>
Deny-Mac-List. The structure of deny_mac_list block is documented below.
DtlsInKernel string
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
DtlsPolicies List<string>
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EnergyEfficientEthernet string
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
EslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongle
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
ExtInfoEnable string
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
HandoffRoaming string
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
HandoffRssi double
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
HandoffStaThresh double
Threshold value for AP handoff.
IndoorOutdoorDeployment string
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
IpFragmentPreventings List<string>
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
Lan ObjectWirelesscontrollerWtpprofileLan
Lan. The structure of lan block is documented below.
Lbs ObjectWirelesscontrollerWtpprofileLbs
Lbs. The structure of lbs block is documented below.
LedSchedules List<string>
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
LedState string
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
Lldp string
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
LoginPasswdChange string
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswds List<string>
Set the managed WTP, FortiAP, or AP's administrator password.
MaxClients double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
Name string
WTP (or FortiAP or AP) profile name.
ObjectWirelesscontrollerWtpprofileId string
an identifier for the resource with format {{name}}.
Platform ObjectWirelesscontrollerWtpprofilePlatform
Platform. The structure of platform block is documented below.
PoeMode string
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
Radio1 ObjectWirelesscontrollerWtpprofileRadio1
Radio-1. The structure of radio_1 block is documented below.
Radio2 ObjectWirelesscontrollerWtpprofileRadio2
Radio-2. The structure of radio_2 block is documented below.
Radio3 ObjectWirelesscontrollerWtpprofileRadio3
Radio-3. The structure of radio_3 block is documented below.
Radio4 ObjectWirelesscontrollerWtpprofileRadio4
Radio-4. The structure of radio_4 block is documented below.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Snmp string
Snmp. Valid values: disable, enable.
SplitTunnelingAclLocalApSubnet string
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
SplitTunnelingAclPath string
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
SplitTunnelingAcls List<ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl>
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
SyslogProfile string
System log server configuration profile name.
TunMtuDownlink double
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
TunMtuUplink double
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
Unii45ghzBand string
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
WanPortAuth string
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
WanPortAuthMacsec string
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
WanPortAuthMethods string
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
WanPortAuthPasswords List<string>
Set WAN port 802.1x supplicant password.
WanPortAuthUsrname string
Set WAN port 802.1x supplicant user name.
WanPortMode string
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting string
_Is_Factory_Setting. Valid values: disable, enable, ext.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Allowaccesses []string
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
ApCountry string
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApcfgProfile string
AP local configuration profile name.
BleProfile string
Bluetooth Low Energy profile name.
BonjourProfile string
Bonjour profile name.
Comment string
Comment.
ConsoleLogin string
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
ControlMessageOffloads []string
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
DenyMacLists []ObjectWirelesscontrollerWtpprofileDenyMacListTypeArgs
Deny-Mac-List. The structure of deny_mac_list block is documented below.
DtlsInKernel string
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
DtlsPolicies []string
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EnergyEfficientEthernet string
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
EslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongleTypeArgs
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
ExtInfoEnable string
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
HandoffRoaming string
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
HandoffRssi float64
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
HandoffStaThresh float64
Threshold value for AP handoff.
IndoorOutdoorDeployment string
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
IpFragmentPreventings []string
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
Lan ObjectWirelesscontrollerWtpprofileLanTypeArgs
Lan. The structure of lan block is documented below.
Lbs ObjectWirelesscontrollerWtpprofileLbsTypeArgs
Lbs. The structure of lbs block is documented below.
LedSchedules []string
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
LedState string
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
Lldp string
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
LoginPasswdChange string
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswds []string
Set the managed WTP, FortiAP, or AP's administrator password.
MaxClients float64
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
Name string
WTP (or FortiAP or AP) profile name.
ObjectWirelesscontrollerWtpprofileId string
an identifier for the resource with format {{name}}.
Platform ObjectWirelesscontrollerWtpprofilePlatformTypeArgs
Platform. The structure of platform block is documented below.
PoeMode string
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
Radio1 ObjectWirelesscontrollerWtpprofileRadio1TypeArgs
Radio-1. The structure of radio_1 block is documented below.
Radio2 ObjectWirelesscontrollerWtpprofileRadio2TypeArgs
Radio-2. The structure of radio_2 block is documented below.
Radio3 ObjectWirelesscontrollerWtpprofileRadio3TypeArgs
Radio-3. The structure of radio_3 block is documented below.
Radio4 ObjectWirelesscontrollerWtpprofileRadio4TypeArgs
Radio-4. The structure of radio_4 block is documented below.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Snmp string
Snmp. Valid values: disable, enable.
SplitTunnelingAclLocalApSubnet string
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
SplitTunnelingAclPath string
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
SplitTunnelingAcls []ObjectWirelesscontrollerWtpprofileSplitTunnelingAclTypeArgs
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
SyslogProfile string
System log server configuration profile name.
TunMtuDownlink float64
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
TunMtuUplink float64
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
Unii45ghzBand string
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
WanPortAuth string
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
WanPortAuthMacsec string
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
WanPortAuthMethods string
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
WanPortAuthPasswords []string
Set WAN port 802.1x supplicant password.
WanPortAuthUsrname string
Set WAN port 802.1x supplicant user name.
WanPortMode string
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting string
_Is_Factory_Setting. Valid values: disable, enable, ext.
_isFactorySetting String
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
apCountry String
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfgProfile String
AP local configuration profile name.
bleProfile String
Bluetooth Low Energy profile name.
bonjourProfile String
Bonjour profile name.
comment String
Comment.
consoleLogin String
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
controlMessageOffloads List<String>
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
denyMacLists List<ObjectWirelesscontrollerWtpprofileDenyMacList>
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtlsInKernel String
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtlsPolicies List<String>
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energyEfficientEthernet String
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
eslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongle
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
extInfoEnable String
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoffRoaming String
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoffRssi Double
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoffStaThresh Double
Threshold value for AP handoff.
indoorOutdoorDeployment String
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ipFragmentPreventings List<String>
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan ObjectWirelesscontrollerWtpprofileLan
Lan. The structure of lan block is documented below.
lbs ObjectWirelesscontrollerWtpprofileLbs
Lbs. The structure of lbs block is documented below.
ledSchedules List<String>
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
ledState String
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp String
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
loginPasswdChange String
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswds List<String>
Set the managed WTP, FortiAP, or AP's administrator password.
maxClients Double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name String
WTP (or FortiAP or AP) profile name.
objectWirelesscontrollerWtpprofileId String
an identifier for the resource with format {{name}}.
platform ObjectWirelesscontrollerWtpprofilePlatform
Platform. The structure of platform block is documented below.
poeMode String
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 ObjectWirelesscontrollerWtpprofileRadio1
Radio-1. The structure of radio_1 block is documented below.
radio2 ObjectWirelesscontrollerWtpprofileRadio2
Radio-2. The structure of radio_2 block is documented below.
radio3 ObjectWirelesscontrollerWtpprofileRadio3
Radio-3. The structure of radio_3 block is documented below.
radio4 ObjectWirelesscontrollerWtpprofileRadio4
Radio-4. The structure of radio_4 block is documented below.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp String
Snmp. Valid values: disable, enable.
splitTunnelingAclLocalApSubnet String
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
splitTunnelingAclPath String
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
splitTunnelingAcls List<ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl>
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslogProfile String
System log server configuration profile name.
tunMtuDownlink Double
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tunMtuUplink Double
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghzBand String
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wanPortAuth String
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wanPortAuthMacsec String
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wanPortAuthMethods String
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wanPortAuthPasswords List<String>
Set WAN port 802.1x supplicant password.
wanPortAuthUsrname String
Set WAN port 802.1x supplicant user name.
wanPortMode String
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting string
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses string[]
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
apCountry string
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
apHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfgProfile string
AP local configuration profile name.
bleProfile string
Bluetooth Low Energy profile name.
bonjourProfile string
Bonjour profile name.
comment string
Comment.
consoleLogin string
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
controlMessageOffloads string[]
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
denyMacLists ObjectWirelesscontrollerWtpprofileDenyMacList[]
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtlsInKernel string
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtlsPolicies string[]
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energyEfficientEthernet string
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
eslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongle
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
extInfoEnable string
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoffRoaming string
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoffRssi number
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoffStaThresh number
Threshold value for AP handoff.
indoorOutdoorDeployment string
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ipFragmentPreventings string[]
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan ObjectWirelesscontrollerWtpprofileLan
Lan. The structure of lan block is documented below.
lbs ObjectWirelesscontrollerWtpprofileLbs
Lbs. The structure of lbs block is documented below.
ledSchedules string[]
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
ledState string
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp string
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
loginPasswdChange string
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswds string[]
Set the managed WTP, FortiAP, or AP's administrator password.
maxClients number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name string
WTP (or FortiAP or AP) profile name.
objectWirelesscontrollerWtpprofileId string
an identifier for the resource with format {{name}}.
platform ObjectWirelesscontrollerWtpprofilePlatform
Platform. The structure of platform block is documented below.
poeMode string
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 ObjectWirelesscontrollerWtpprofileRadio1
Radio-1. The structure of radio_1 block is documented below.
radio2 ObjectWirelesscontrollerWtpprofileRadio2
Radio-2. The structure of radio_2 block is documented below.
radio3 ObjectWirelesscontrollerWtpprofileRadio3
Radio-3. The structure of radio_3 block is documented below.
radio4 ObjectWirelesscontrollerWtpprofileRadio4
Radio-4. The structure of radio_4 block is documented below.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp string
Snmp. Valid values: disable, enable.
splitTunnelingAclLocalApSubnet string
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
splitTunnelingAclPath string
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
splitTunnelingAcls ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl[]
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslogProfile string
System log server configuration profile name.
tunMtuDownlink number
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tunMtuUplink number
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghzBand string
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wanPortAuth string
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wanPortAuthMacsec string
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wanPortAuthMethods string
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wanPortAuthPasswords string[]
Set WAN port 802.1x supplicant password.
wanPortAuthUsrname string
Set WAN port 802.1x supplicant user name.
wanPortMode string
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_is_factory_setting str
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses Sequence[str]
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
ap_country str
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
ap_handoff str
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfg_profile str
AP local configuration profile name.
ble_profile str
Bluetooth Low Energy profile name.
bonjour_profile str
Bonjour profile name.
comment str
Comment.
console_login str
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
control_message_offloads Sequence[str]
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
deny_mac_lists Sequence[ObjectWirelesscontrollerWtpprofileDenyMacListArgs]
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtls_in_kernel str
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtls_policies Sequence[str]
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energy_efficient_ethernet str
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
esl_ses_dongle ObjectWirelesscontrollerWtpprofileEslSesDongleArgs
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
ext_info_enable str
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequency_handoff str
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoff_roaming str
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoff_rssi float
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoff_sta_thresh float
Threshold value for AP handoff.
indoor_outdoor_deployment str
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ip_fragment_preventings Sequence[str]
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan ObjectWirelesscontrollerWtpprofileLanArgs
Lan. The structure of lan block is documented below.
lbs ObjectWirelesscontrollerWtpprofileLbsArgs
Lbs. The structure of lbs block is documented below.
led_schedules Sequence[str]
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
led_state str
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp str
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
login_passwd_change str
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
login_passwds Sequence[str]
Set the managed WTP, FortiAP, or AP's administrator password.
max_clients float
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name str
WTP (or FortiAP or AP) profile name.
object_wirelesscontroller_wtpprofile_id str
an identifier for the resource with format {{name}}.
platform ObjectWirelesscontrollerWtpprofilePlatformArgs
Platform. The structure of platform block is documented below.
poe_mode str
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 ObjectWirelesscontrollerWtpprofileRadio1Args
Radio-1. The structure of radio_1 block is documented below.
radio2 ObjectWirelesscontrollerWtpprofileRadio2Args
Radio-2. The structure of radio_2 block is documented below.
radio3 ObjectWirelesscontrollerWtpprofileRadio3Args
Radio-3. The structure of radio_3 block is documented below.
radio4 ObjectWirelesscontrollerWtpprofileRadio4Args
Radio-4. The structure of radio_4 block is documented below.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp str
Snmp. Valid values: disable, enable.
split_tunneling_acl_local_ap_subnet str
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
split_tunneling_acl_path str
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
split_tunneling_acls Sequence[ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs]
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslog_profile str
System log server configuration profile name.
tun_mtu_downlink float
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tun_mtu_uplink float
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghz_band str
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wan_port_auth str
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wan_port_auth_macsec str
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wan_port_auth_methods str
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wan_port_auth_passwords Sequence[str]
Set WAN port 802.1x supplicant password.
wan_port_auth_usrname str
Set WAN port 802.1x supplicant user name.
wan_port_mode str
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting String
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
apCountry String
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfgProfile String
AP local configuration profile name.
bleProfile String
Bluetooth Low Energy profile name.
bonjourProfile String
Bonjour profile name.
comment String
Comment.
consoleLogin String
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
controlMessageOffloads List<String>
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
denyMacLists List<Property Map>
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtlsInKernel String
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtlsPolicies List<String>
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energyEfficientEthernet String
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
eslSesDongle Property Map
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
extInfoEnable String
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoffRoaming String
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoffRssi Number
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoffStaThresh Number
Threshold value for AP handoff.
indoorOutdoorDeployment String
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ipFragmentPreventings List<String>
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan Property Map
Lan. The structure of lan block is documented below.
lbs Property Map
Lbs. The structure of lbs block is documented below.
ledSchedules List<String>
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
ledState String
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp String
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
loginPasswdChange String
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswds List<String>
Set the managed WTP, FortiAP, or AP's administrator password.
maxClients Number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name String
WTP (or FortiAP or AP) profile name.
objectWirelesscontrollerWtpprofileId String
an identifier for the resource with format {{name}}.
platform Property Map
Platform. The structure of platform block is documented below.
poeMode String
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 Property Map
Radio-1. The structure of radio_1 block is documented below.
radio2 Property Map
Radio-2. The structure of radio_2 block is documented below.
radio3 Property Map
Radio-3. The structure of radio_3 block is documented below.
radio4 Property Map
Radio-4. The structure of radio_4 block is documented below.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp String
Snmp. Valid values: disable, enable.
splitTunnelingAclLocalApSubnet String
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
splitTunnelingAclPath String
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
splitTunnelingAcls List<Property Map>
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslogProfile String
System log server configuration profile name.
tunMtuDownlink Number
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tunMtuUplink Number
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghzBand String
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wanPortAuth String
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wanPortAuthMacsec String
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wanPortAuthMethods String
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wanPortAuthPasswords List<String>
Set WAN port 802.1x supplicant password.
wanPortAuthUsrname String
Set WAN port 802.1x supplicant user name.
wanPortMode String
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.

Outputs

All input properties are implicitly available as output properties. Additionally, the ObjectWirelesscontrollerWtpprofile resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing ObjectWirelesscontrollerWtpprofile Resource

Get an existing ObjectWirelesscontrollerWtpprofile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ObjectWirelesscontrollerWtpprofileState, opts?: CustomResourceOptions): ObjectWirelesscontrollerWtpprofile
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        _is_factory_setting: Optional[str] = None,
        adom: Optional[str] = None,
        allowaccesses: Optional[Sequence[str]] = None,
        ap_country: Optional[str] = None,
        ap_handoff: Optional[str] = None,
        apcfg_profile: Optional[str] = None,
        ble_profile: Optional[str] = None,
        bonjour_profile: Optional[str] = None,
        comment: Optional[str] = None,
        console_login: Optional[str] = None,
        control_message_offloads: Optional[Sequence[str]] = None,
        deny_mac_lists: Optional[Sequence[ObjectWirelesscontrollerWtpprofileDenyMacListArgs]] = None,
        dtls_in_kernel: Optional[str] = None,
        dtls_policies: Optional[Sequence[str]] = None,
        dynamic_sort_subtable: Optional[str] = None,
        energy_efficient_ethernet: Optional[str] = None,
        esl_ses_dongle: Optional[ObjectWirelesscontrollerWtpprofileEslSesDongleArgs] = None,
        ext_info_enable: Optional[str] = None,
        frequency_handoff: Optional[str] = None,
        handoff_roaming: Optional[str] = None,
        handoff_rssi: Optional[float] = None,
        handoff_sta_thresh: Optional[float] = None,
        indoor_outdoor_deployment: Optional[str] = None,
        ip_fragment_preventings: Optional[Sequence[str]] = None,
        lan: Optional[ObjectWirelesscontrollerWtpprofileLanArgs] = None,
        lbs: Optional[ObjectWirelesscontrollerWtpprofileLbsArgs] = None,
        led_schedules: Optional[Sequence[str]] = None,
        led_state: Optional[str] = None,
        lldp: Optional[str] = None,
        login_passwd_change: Optional[str] = None,
        login_passwds: Optional[Sequence[str]] = None,
        max_clients: Optional[float] = None,
        name: Optional[str] = None,
        object_wirelesscontroller_wtpprofile_id: Optional[str] = None,
        platform: Optional[ObjectWirelesscontrollerWtpprofilePlatformArgs] = None,
        poe_mode: Optional[str] = None,
        radio1: Optional[ObjectWirelesscontrollerWtpprofileRadio1Args] = None,
        radio2: Optional[ObjectWirelesscontrollerWtpprofileRadio2Args] = None,
        radio3: Optional[ObjectWirelesscontrollerWtpprofileRadio3Args] = None,
        radio4: Optional[ObjectWirelesscontrollerWtpprofileRadio4Args] = None,
        scopetype: Optional[str] = None,
        snmp: Optional[str] = None,
        split_tunneling_acl_local_ap_subnet: Optional[str] = None,
        split_tunneling_acl_path: Optional[str] = None,
        split_tunneling_acls: Optional[Sequence[ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs]] = None,
        syslog_profile: Optional[str] = None,
        tun_mtu_downlink: Optional[float] = None,
        tun_mtu_uplink: Optional[float] = None,
        unii45ghz_band: Optional[str] = None,
        wan_port_auth: Optional[str] = None,
        wan_port_auth_macsec: Optional[str] = None,
        wan_port_auth_methods: Optional[str] = None,
        wan_port_auth_passwords: Optional[Sequence[str]] = None,
        wan_port_auth_usrname: Optional[str] = None,
        wan_port_mode: Optional[str] = None) -> ObjectWirelesscontrollerWtpprofile
func GetObjectWirelesscontrollerWtpprofile(ctx *Context, name string, id IDInput, state *ObjectWirelesscontrollerWtpprofileState, opts ...ResourceOption) (*ObjectWirelesscontrollerWtpprofile, error)
public static ObjectWirelesscontrollerWtpprofile Get(string name, Input<string> id, ObjectWirelesscontrollerWtpprofileState? state, CustomResourceOptions? opts = null)
public static ObjectWirelesscontrollerWtpprofile get(String name, Output<String> id, ObjectWirelesscontrollerWtpprofileState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWirelesscontrollerWtpprofile    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Allowaccesses List<string>
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
ApCountry string
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApcfgProfile string
AP local configuration profile name.
BleProfile string
Bluetooth Low Energy profile name.
BonjourProfile string
Bonjour profile name.
Comment string
Comment.
ConsoleLogin string
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
ControlMessageOffloads List<string>
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
DenyMacLists List<ObjectWirelesscontrollerWtpprofileDenyMacList>
Deny-Mac-List. The structure of deny_mac_list block is documented below.
DtlsInKernel string
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
DtlsPolicies List<string>
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EnergyEfficientEthernet string
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
EslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongle
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
ExtInfoEnable string
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
HandoffRoaming string
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
HandoffRssi double
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
HandoffStaThresh double
Threshold value for AP handoff.
IndoorOutdoorDeployment string
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
IpFragmentPreventings List<string>
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
Lan ObjectWirelesscontrollerWtpprofileLan
Lan. The structure of lan block is documented below.
Lbs ObjectWirelesscontrollerWtpprofileLbs
Lbs. The structure of lbs block is documented below.
LedSchedules List<string>
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
LedState string
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
Lldp string
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
LoginPasswdChange string
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswds List<string>
Set the managed WTP, FortiAP, or AP's administrator password.
MaxClients double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
Name string
WTP (or FortiAP or AP) profile name.
ObjectWirelesscontrollerWtpprofileId string
an identifier for the resource with format {{name}}.
Platform ObjectWirelesscontrollerWtpprofilePlatform
Platform. The structure of platform block is documented below.
PoeMode string
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
Radio1 ObjectWirelesscontrollerWtpprofileRadio1
Radio-1. The structure of radio_1 block is documented below.
Radio2 ObjectWirelesscontrollerWtpprofileRadio2
Radio-2. The structure of radio_2 block is documented below.
Radio3 ObjectWirelesscontrollerWtpprofileRadio3
Radio-3. The structure of radio_3 block is documented below.
Radio4 ObjectWirelesscontrollerWtpprofileRadio4
Radio-4. The structure of radio_4 block is documented below.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Snmp string
Snmp. Valid values: disable, enable.
SplitTunnelingAclLocalApSubnet string
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
SplitTunnelingAclPath string
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
SplitTunnelingAcls List<ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl>
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
SyslogProfile string
System log server configuration profile name.
TunMtuDownlink double
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
TunMtuUplink double
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
Unii45ghzBand string
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
WanPortAuth string
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
WanPortAuthMacsec string
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
WanPortAuthMethods string
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
WanPortAuthPasswords List<string>
Set WAN port 802.1x supplicant password.
WanPortAuthUsrname string
Set WAN port 802.1x supplicant user name.
WanPortMode string
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting string
_Is_Factory_Setting. Valid values: disable, enable, ext.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Allowaccesses []string
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
ApCountry string
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApcfgProfile string
AP local configuration profile name.
BleProfile string
Bluetooth Low Energy profile name.
BonjourProfile string
Bonjour profile name.
Comment string
Comment.
ConsoleLogin string
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
ControlMessageOffloads []string
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
DenyMacLists []ObjectWirelesscontrollerWtpprofileDenyMacListTypeArgs
Deny-Mac-List. The structure of deny_mac_list block is documented below.
DtlsInKernel string
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
DtlsPolicies []string
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
DynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
EnergyEfficientEthernet string
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
EslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongleTypeArgs
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
ExtInfoEnable string
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
HandoffRoaming string
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
HandoffRssi float64
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
HandoffStaThresh float64
Threshold value for AP handoff.
IndoorOutdoorDeployment string
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
IpFragmentPreventings []string
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
Lan ObjectWirelesscontrollerWtpprofileLanTypeArgs
Lan. The structure of lan block is documented below.
Lbs ObjectWirelesscontrollerWtpprofileLbsTypeArgs
Lbs. The structure of lbs block is documented below.
LedSchedules []string
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
LedState string
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
Lldp string
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
LoginPasswdChange string
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
LoginPasswds []string
Set the managed WTP, FortiAP, or AP's administrator password.
MaxClients float64
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
Name string
WTP (or FortiAP or AP) profile name.
ObjectWirelesscontrollerWtpprofileId string
an identifier for the resource with format {{name}}.
Platform ObjectWirelesscontrollerWtpprofilePlatformTypeArgs
Platform. The structure of platform block is documented below.
PoeMode string
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
Radio1 ObjectWirelesscontrollerWtpprofileRadio1TypeArgs
Radio-1. The structure of radio_1 block is documented below.
Radio2 ObjectWirelesscontrollerWtpprofileRadio2TypeArgs
Radio-2. The structure of radio_2 block is documented below.
Radio3 ObjectWirelesscontrollerWtpprofileRadio3TypeArgs
Radio-3. The structure of radio_3 block is documented below.
Radio4 ObjectWirelesscontrollerWtpprofileRadio4TypeArgs
Radio-4. The structure of radio_4 block is documented below.
Scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
Snmp string
Snmp. Valid values: disable, enable.
SplitTunnelingAclLocalApSubnet string
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
SplitTunnelingAclPath string
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
SplitTunnelingAcls []ObjectWirelesscontrollerWtpprofileSplitTunnelingAclTypeArgs
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
SyslogProfile string
System log server configuration profile name.
TunMtuDownlink float64
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
TunMtuUplink float64
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
Unii45ghzBand string
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
WanPortAuth string
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
WanPortAuthMacsec string
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
WanPortAuthMethods string
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
WanPortAuthPasswords []string
Set WAN port 802.1x supplicant password.
WanPortAuthUsrname string
Set WAN port 802.1x supplicant user name.
WanPortMode string
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting string
_Is_Factory_Setting. Valid values: disable, enable, ext.
_isFactorySetting String
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
apCountry String
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfgProfile String
AP local configuration profile name.
bleProfile String
Bluetooth Low Energy profile name.
bonjourProfile String
Bonjour profile name.
comment String
Comment.
consoleLogin String
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
controlMessageOffloads List<String>
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
denyMacLists List<ObjectWirelesscontrollerWtpprofileDenyMacList>
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtlsInKernel String
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtlsPolicies List<String>
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energyEfficientEthernet String
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
eslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongle
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
extInfoEnable String
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoffRoaming String
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoffRssi Double
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoffStaThresh Double
Threshold value for AP handoff.
indoorOutdoorDeployment String
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ipFragmentPreventings List<String>
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan ObjectWirelesscontrollerWtpprofileLan
Lan. The structure of lan block is documented below.
lbs ObjectWirelesscontrollerWtpprofileLbs
Lbs. The structure of lbs block is documented below.
ledSchedules List<String>
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
ledState String
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp String
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
loginPasswdChange String
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswds List<String>
Set the managed WTP, FortiAP, or AP's administrator password.
maxClients Double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name String
WTP (or FortiAP or AP) profile name.
objectWirelesscontrollerWtpprofileId String
an identifier for the resource with format {{name}}.
platform ObjectWirelesscontrollerWtpprofilePlatform
Platform. The structure of platform block is documented below.
poeMode String
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 ObjectWirelesscontrollerWtpprofileRadio1
Radio-1. The structure of radio_1 block is documented below.
radio2 ObjectWirelesscontrollerWtpprofileRadio2
Radio-2. The structure of radio_2 block is documented below.
radio3 ObjectWirelesscontrollerWtpprofileRadio3
Radio-3. The structure of radio_3 block is documented below.
radio4 ObjectWirelesscontrollerWtpprofileRadio4
Radio-4. The structure of radio_4 block is documented below.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp String
Snmp. Valid values: disable, enable.
splitTunnelingAclLocalApSubnet String
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
splitTunnelingAclPath String
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
splitTunnelingAcls List<ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl>
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslogProfile String
System log server configuration profile name.
tunMtuDownlink Double
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tunMtuUplink Double
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghzBand String
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wanPortAuth String
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wanPortAuthMacsec String
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wanPortAuthMethods String
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wanPortAuthPasswords List<String>
Set WAN port 802.1x supplicant password.
wanPortAuthUsrname String
Set WAN port 802.1x supplicant user name.
wanPortMode String
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting string
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses string[]
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
apCountry string
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
apHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfgProfile string
AP local configuration profile name.
bleProfile string
Bluetooth Low Energy profile name.
bonjourProfile string
Bonjour profile name.
comment string
Comment.
consoleLogin string
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
controlMessageOffloads string[]
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
denyMacLists ObjectWirelesscontrollerWtpprofileDenyMacList[]
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtlsInKernel string
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtlsPolicies string[]
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamicSortSubtable string
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energyEfficientEthernet string
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
eslSesDongle ObjectWirelesscontrollerWtpprofileEslSesDongle
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
extInfoEnable string
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoffRoaming string
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoffRssi number
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoffStaThresh number
Threshold value for AP handoff.
indoorOutdoorDeployment string
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ipFragmentPreventings string[]
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan ObjectWirelesscontrollerWtpprofileLan
Lan. The structure of lan block is documented below.
lbs ObjectWirelesscontrollerWtpprofileLbs
Lbs. The structure of lbs block is documented below.
ledSchedules string[]
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
ledState string
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp string
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
loginPasswdChange string
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswds string[]
Set the managed WTP, FortiAP, or AP's administrator password.
maxClients number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name string
WTP (or FortiAP or AP) profile name.
objectWirelesscontrollerWtpprofileId string
an identifier for the resource with format {{name}}.
platform ObjectWirelesscontrollerWtpprofilePlatform
Platform. The structure of platform block is documented below.
poeMode string
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 ObjectWirelesscontrollerWtpprofileRadio1
Radio-1. The structure of radio_1 block is documented below.
radio2 ObjectWirelesscontrollerWtpprofileRadio2
Radio-2. The structure of radio_2 block is documented below.
radio3 ObjectWirelesscontrollerWtpprofileRadio3
Radio-3. The structure of radio_3 block is documented below.
radio4 ObjectWirelesscontrollerWtpprofileRadio4
Radio-4. The structure of radio_4 block is documented below.
scopetype string
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp string
Snmp. Valid values: disable, enable.
splitTunnelingAclLocalApSubnet string
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
splitTunnelingAclPath string
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
splitTunnelingAcls ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl[]
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslogProfile string
System log server configuration profile name.
tunMtuDownlink number
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tunMtuUplink number
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghzBand string
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wanPortAuth string
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wanPortAuthMacsec string
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wanPortAuthMethods string
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wanPortAuthPasswords string[]
Set WAN port 802.1x supplicant password.
wanPortAuthUsrname string
Set WAN port 802.1x supplicant user name.
wanPortMode string
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_is_factory_setting str
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses Sequence[str]
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
ap_country str
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
ap_handoff str
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfg_profile str
AP local configuration profile name.
ble_profile str
Bluetooth Low Energy profile name.
bonjour_profile str
Bonjour profile name.
comment str
Comment.
console_login str
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
control_message_offloads Sequence[str]
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
deny_mac_lists Sequence[ObjectWirelesscontrollerWtpprofileDenyMacListArgs]
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtls_in_kernel str
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtls_policies Sequence[str]
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamic_sort_subtable str
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energy_efficient_ethernet str
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
esl_ses_dongle ObjectWirelesscontrollerWtpprofileEslSesDongleArgs
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
ext_info_enable str
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequency_handoff str
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoff_roaming str
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoff_rssi float
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoff_sta_thresh float
Threshold value for AP handoff.
indoor_outdoor_deployment str
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ip_fragment_preventings Sequence[str]
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan ObjectWirelesscontrollerWtpprofileLanArgs
Lan. The structure of lan block is documented below.
lbs ObjectWirelesscontrollerWtpprofileLbsArgs
Lbs. The structure of lbs block is documented below.
led_schedules Sequence[str]
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
led_state str
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp str
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
login_passwd_change str
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
login_passwds Sequence[str]
Set the managed WTP, FortiAP, or AP's administrator password.
max_clients float
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name str
WTP (or FortiAP or AP) profile name.
object_wirelesscontroller_wtpprofile_id str
an identifier for the resource with format {{name}}.
platform ObjectWirelesscontrollerWtpprofilePlatformArgs
Platform. The structure of platform block is documented below.
poe_mode str
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 ObjectWirelesscontrollerWtpprofileRadio1Args
Radio-1. The structure of radio_1 block is documented below.
radio2 ObjectWirelesscontrollerWtpprofileRadio2Args
Radio-2. The structure of radio_2 block is documented below.
radio3 ObjectWirelesscontrollerWtpprofileRadio3Args
Radio-3. The structure of radio_3 block is documented below.
radio4 ObjectWirelesscontrollerWtpprofileRadio4Args
Radio-4. The structure of radio_4 block is documented below.
scopetype str
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp str
Snmp. Valid values: disable, enable.
split_tunneling_acl_local_ap_subnet str
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
split_tunneling_acl_path str
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
split_tunneling_acls Sequence[ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs]
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslog_profile str
System log server configuration profile name.
tun_mtu_downlink float
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tun_mtu_uplink float
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghz_band str
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wan_port_auth str
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wan_port_auth_macsec str
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wan_port_auth_methods str
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wan_port_auth_passwords Sequence[str]
Set WAN port 802.1x supplicant password.
wan_port_auth_usrname str
Set WAN port 802.1x supplicant user name.
wan_port_mode str
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.
_isFactorySetting String
_Is_Factory_Setting. Valid values: disable, enable, ext.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
allowaccesses List<String>
Control management access to the managed WTP, FortiAP, or AP. Separate entries with a space. Valid values: https, ssh, snmp, http, telnet.
apCountry String
Country in which this WTP, FortiAP or AP will operate (default = NA, automatically use the country configured for the current VDOM). Valid values: AL, DZ, AR, AM, AU, AT, AZ, BH, BD, BY, BE, BZ, BO, BA, BR, BN, BG, CA, CL, CN, CO, CR, HR, CY, CZ, DK, DO, EC, EG, SV, EE, FI, FR, GE, DE, GR, GT, HN, HK, HU, IS, IN, ID, IR, IE, IL, IT, JM, JP, JO, KZ, KE, KP, KR, KW, LV, LB, LI, LT, LU, MO, MK, MY, MT, MX, MC, MA, NP, NL, AN, NZ, NO, OM, PK, PA, PG, PE, PH, PL, PT, PR, QA, RO, RU, SA, SG, SK, SI, ZA, ES, LK, SE, CH, SY, TW, TH, TT, TN, TR, AE, UA, GB, US, PS, UY, UZ, VE, VN, YE, ZW, NA, BS, VC, KH, MV, TZ, SN, CI, GH, SD, MW, AO, RW, MZ, UG, BF, CF, RS, ME, KY, BB, TC, GD, GL, TM, VU, GU, FM, PY, HT, GY, AW, KN, MM, LC, ZB, CX.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apcfgProfile String
AP local configuration profile name.
bleProfile String
Bluetooth Low Energy profile name.
bonjourProfile String
Bonjour profile name.
comment String
Comment.
consoleLogin String
Enable/disable FAP console login access (default = enable). Valid values: disable, enable.
controlMessageOffloads List<String>
Enable/disable CAPWAP control message data channel offload. Valid values: ebp-frame, aeroscout-tag, ap-list, sta-list, sta-cap-list, stats, aeroscout-mu, sta-health, spectral-analysis.
denyMacLists List<Property Map>
Deny-Mac-List. The structure of deny_mac_list block is documented below.
dtlsInKernel String
Enable/disable data channel DTLS in kernel. Valid values: disable, enable.
dtlsPolicies List<String>
WTP data channel DTLS policy (default = clear-text). Valid values: clear-text, dtls-enabled, ipsec-vpn.
dynamicSortSubtable String
true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
energyEfficientEthernet String
Enable/disable use of energy efficient Ethernet on WTP. Valid values: disable, enable.
eslSesDongle Property Map
Esl-Ses-Dongle. The structure of esl_ses_dongle block is documented below.
extInfoEnable String
Enable/disable station/VAP/radio extension information. Valid values: disable, enable.
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
handoffRoaming String
Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values: disable, enable.
handoffRssi Number
Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
handoffStaThresh Number
Threshold value for AP handoff.
indoorOutdoorDeployment String
Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values: platform-determined, outdoor, indoor.
ipFragmentPreventings List<String>
Method(s) by which IP fragmentation is prevented for control and data packets through CAPWAP tunnel (default = tcp-mss-adjust). Valid values: tcp-mss-adjust, icmp-unreachable.
lan Property Map
Lan. The structure of lan block is documented below.
lbs Property Map
Lbs. The structure of lbs block is documented below.
ledSchedules List<String>
Recurring firewall schedules for illuminating LEDs on the FortiAP. If led-state is enabled, LEDs will be visible when at least one of the schedules is valid. Separate multiple schedule names with a space.
ledState String
Enable/disable use of LEDs on WTP (default = disable). Valid values: disable, enable.
lldp String
Enable/disable Link Layer Discovery Protocol (LLDP) for the WTP, FortiAP, or AP (default = enable). Valid values: disable, enable.
loginPasswdChange String
Change or reset the administrator password of a managed WTP, FortiAP or AP (yes, default, or no, default = no). Valid values: no, yes, default.
loginPasswds List<String>
Set the managed WTP, FortiAP, or AP's administrator password.
maxClients Number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
name String
WTP (or FortiAP or AP) profile name.
objectWirelesscontrollerWtpprofileId String
an identifier for the resource with format {{name}}.
platform Property Map
Platform. The structure of platform block is documented below.
poeMode String
Set the WTP, FortiAP, or AP's PoE mode. Valid values: auto, 8023af, 8023at, power-adapter, full, high, low.
radio1 Property Map
Radio-1. The structure of radio_1 block is documented below.
radio2 Property Map
Radio-2. The structure of radio_2 block is documented below.
radio3 Property Map
Radio-3. The structure of radio_3 block is documented below.
radio4 Property Map
Radio-4. The structure of radio_4 block is documented below.
scopetype String
The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
snmp String
Snmp. Valid values: disable, enable.
splitTunnelingAclLocalApSubnet String
Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values: disable, enable.
splitTunnelingAclPath String
Split tunneling ACL path is local/tunnel. Valid values: tunnel, local.
splitTunnelingAcls List<Property Map>
Split-Tunneling-Acl. The structure of split_tunneling_acl block is documented below.
syslogProfile String
System log server configuration profile name.
tunMtuDownlink Number
The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
tunMtuUplink Number
The maximum transmission unit (MTU) of uplink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
unii45ghzBand String
Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values: disable, enable.
wanPortAuth String
Set WAN port authentication mode (default = none). Valid values: none, 802.1x.
wanPortAuthMacsec String
Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values: disable, enable.
wanPortAuthMethods String
WAN port 802.1x supplicant EAP methods (default = all). Valid values: all, EAP-FAST, EAP-TLS, EAP-PEAP.
wanPortAuthPasswords List<String>
Set WAN port 802.1x supplicant password.
wanPortAuthUsrname String
Set WAN port 802.1x supplicant user name.
wanPortMode String
Enable/disable using a WAN port as a LAN port. Valid values: wan-lan, wan-only.

Supporting Types

ObjectWirelesscontrollerWtpprofileDenyMacList
, ObjectWirelesscontrollerWtpprofileDenyMacListArgs

Id double
ID.
Mac string
A WiFi device with this MAC address is denied access to this WTP, FortiAP or AP.
Id float64
ID.
Mac string
A WiFi device with this MAC address is denied access to this WTP, FortiAP or AP.
id Double
ID.
mac String
A WiFi device with this MAC address is denied access to this WTP, FortiAP or AP.
id number
ID.
mac string
A WiFi device with this MAC address is denied access to this WTP, FortiAP or AP.
id float
ID.
mac str
A WiFi device with this MAC address is denied access to this WTP, FortiAP or AP.
id Number
ID.
mac String
A WiFi device with this MAC address is denied access to this WTP, FortiAP or AP.

ObjectWirelesscontrollerWtpprofileEslSesDongle
, ObjectWirelesscontrollerWtpprofileEslSesDongleArgs

ApcAddrType string
ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
ApcFqdn string
FQDN of ESL SES-imagotag Access Point Controller (APC).
ApcIp string
IP address of ESL SES-imagotag Access Point Controller (APC).
ApcPort double
Port of ESL SES-imagotag Access Point Controller (APC).
CoexLevel string
ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
ComplianceLevel string
Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
EslChannel string
ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
OutputPower string
ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
ScdEnable string
Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
TlsCertVerification string
Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
TlsFqdnVerification string
Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
ApcAddrType string
ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
ApcFqdn string
FQDN of ESL SES-imagotag Access Point Controller (APC).
ApcIp string
IP address of ESL SES-imagotag Access Point Controller (APC).
ApcPort float64
Port of ESL SES-imagotag Access Point Controller (APC).
CoexLevel string
ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
ComplianceLevel string
Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
EslChannel string
ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
OutputPower string
ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
ScdEnable string
Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
TlsCertVerification string
Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
TlsFqdnVerification string
Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
apcAddrType String
ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
apcFqdn String
FQDN of ESL SES-imagotag Access Point Controller (APC).
apcIp String
IP address of ESL SES-imagotag Access Point Controller (APC).
apcPort Double
Port of ESL SES-imagotag Access Point Controller (APC).
coexLevel String
ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
complianceLevel String
Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
eslChannel String
ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
outputPower String
ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
scdEnable String
Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
tlsCertVerification String
Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
tlsFqdnVerification String
Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
apcAddrType string
ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
apcFqdn string
FQDN of ESL SES-imagotag Access Point Controller (APC).
apcIp string
IP address of ESL SES-imagotag Access Point Controller (APC).
apcPort number
Port of ESL SES-imagotag Access Point Controller (APC).
coexLevel string
ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
complianceLevel string
Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
eslChannel string
ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
outputPower string
ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
scdEnable string
Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
tlsCertVerification string
Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
tlsFqdnVerification string
Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
apc_addr_type str
ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
apc_fqdn str
FQDN of ESL SES-imagotag Access Point Controller (APC).
apc_ip str
IP address of ESL SES-imagotag Access Point Controller (APC).
apc_port float
Port of ESL SES-imagotag Access Point Controller (APC).
coex_level str
ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
compliance_level str
Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
esl_channel str
ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
output_power str
ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
scd_enable str
Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
tls_cert_verification str
Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
tls_fqdn_verification str
Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.
apcAddrType String
ESL SES-imagotag APC address type (default = fqdn). Valid values: fqdn, ip.
apcFqdn String
FQDN of ESL SES-imagotag Access Point Controller (APC).
apcIp String
IP address of ESL SES-imagotag Access Point Controller (APC).
apcPort Number
Port of ESL SES-imagotag Access Point Controller (APC).
coexLevel String
ESL SES-imagotag dongle coexistence level (default = none). Valid values: none.
complianceLevel String
Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values: compliance-level-2.
eslChannel String
ESL SES-imagotag dongle channel (default = 127). Valid values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 127, -1.
outputPower String
ESL SES-imagotag dongle output power (default = A). Valid values: a, b, c, d, e, f, g, h.
scdEnable String
Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values: disable, enable.
tlsCertVerification String
Enable/disable TLS Certificate verification. (default = enable). Valid values: disable, enable.
tlsFqdnVerification String
Enable/disable TLS Certificate verification. (default = disable). Valid values: disable, enable.

ObjectWirelesscontrollerWtpprofileLan
, ObjectWirelesscontrollerWtpprofileLanArgs

Port1Mode string
LAN port 1 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port1Ssid string
Bridge LAN port 1 to SSID.
Port2Mode string
LAN port 2 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port2Ssid string
Bridge LAN port 2 to SSID.
Port3Mode string
LAN port 3 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port3Ssid string
Bridge LAN port 3 to SSID.
Port4Mode string
LAN port 4 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port4Ssid string
Bridge LAN port 4 to SSID.
Port5Mode string
LAN port 5 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port5Ssid string
Bridge LAN port 5 to SSID.
Port6Mode string
LAN port 6 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port6Ssid string
Bridge LAN port 6 to SSID.
Port7Mode string
LAN port 7 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port7Ssid string
Bridge LAN port 7 to SSID.
Port8Mode string
LAN port 8 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port8Ssid string
Bridge LAN port 8 to SSID.
PortEslMode string
ESL port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
PortEslSsid string
Bridge ESL port to SSID.
PortMode string
LAN port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
PortSsid string
Bridge LAN port to SSID.
Port1Mode string
LAN port 1 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port1Ssid string
Bridge LAN port 1 to SSID.
Port2Mode string
LAN port 2 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port2Ssid string
Bridge LAN port 2 to SSID.
Port3Mode string
LAN port 3 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port3Ssid string
Bridge LAN port 3 to SSID.
Port4Mode string
LAN port 4 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port4Ssid string
Bridge LAN port 4 to SSID.
Port5Mode string
LAN port 5 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port5Ssid string
Bridge LAN port 5 to SSID.
Port6Mode string
LAN port 6 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port6Ssid string
Bridge LAN port 6 to SSID.
Port7Mode string
LAN port 7 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port7Ssid string
Bridge LAN port 7 to SSID.
Port8Mode string
LAN port 8 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
Port8Ssid string
Bridge LAN port 8 to SSID.
PortEslMode string
ESL port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
PortEslSsid string
Bridge ESL port to SSID.
PortMode string
LAN port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
PortSsid string
Bridge LAN port to SSID.
port1Mode String
LAN port 1 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port1Ssid String
Bridge LAN port 1 to SSID.
port2Mode String
LAN port 2 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port2Ssid String
Bridge LAN port 2 to SSID.
port3Mode String
LAN port 3 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port3Ssid String
Bridge LAN port 3 to SSID.
port4Mode String
LAN port 4 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port4Ssid String
Bridge LAN port 4 to SSID.
port5Mode String
LAN port 5 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port5Ssid String
Bridge LAN port 5 to SSID.
port6Mode String
LAN port 6 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port6Ssid String
Bridge LAN port 6 to SSID.
port7Mode String
LAN port 7 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port7Ssid String
Bridge LAN port 7 to SSID.
port8Mode String
LAN port 8 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port8Ssid String
Bridge LAN port 8 to SSID.
portEslMode String
ESL port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
portEslSsid String
Bridge ESL port to SSID.
portMode String
LAN port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
portSsid String
Bridge LAN port to SSID.
port1Mode string
LAN port 1 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port1Ssid string
Bridge LAN port 1 to SSID.
port2Mode string
LAN port 2 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port2Ssid string
Bridge LAN port 2 to SSID.
port3Mode string
LAN port 3 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port3Ssid string
Bridge LAN port 3 to SSID.
port4Mode string
LAN port 4 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port4Ssid string
Bridge LAN port 4 to SSID.
port5Mode string
LAN port 5 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port5Ssid string
Bridge LAN port 5 to SSID.
port6Mode string
LAN port 6 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port6Ssid string
Bridge LAN port 6 to SSID.
port7Mode string
LAN port 7 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port7Ssid string
Bridge LAN port 7 to SSID.
port8Mode string
LAN port 8 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port8Ssid string
Bridge LAN port 8 to SSID.
portEslMode string
ESL port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
portEslSsid string
Bridge ESL port to SSID.
portMode string
LAN port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
portSsid string
Bridge LAN port to SSID.
port1_mode str
LAN port 1 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port1_ssid str
Bridge LAN port 1 to SSID.
port2_mode str
LAN port 2 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port2_ssid str
Bridge LAN port 2 to SSID.
port3_mode str
LAN port 3 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port3_ssid str
Bridge LAN port 3 to SSID.
port4_mode str
LAN port 4 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port4_ssid str
Bridge LAN port 4 to SSID.
port5_mode str
LAN port 5 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port5_ssid str
Bridge LAN port 5 to SSID.
port6_mode str
LAN port 6 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port6_ssid str
Bridge LAN port 6 to SSID.
port7_mode str
LAN port 7 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port7_ssid str
Bridge LAN port 7 to SSID.
port8_mode str
LAN port 8 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port8_ssid str
Bridge LAN port 8 to SSID.
port_esl_mode str
ESL port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port_esl_ssid str
Bridge ESL port to SSID.
port_mode str
LAN port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port_ssid str
Bridge LAN port to SSID.
port1Mode String
LAN port 1 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port1Ssid String
Bridge LAN port 1 to SSID.
port2Mode String
LAN port 2 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port2Ssid String
Bridge LAN port 2 to SSID.
port3Mode String
LAN port 3 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port3Ssid String
Bridge LAN port 3 to SSID.
port4Mode String
LAN port 4 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port4Ssid String
Bridge LAN port 4 to SSID.
port5Mode String
LAN port 5 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port5Ssid String
Bridge LAN port 5 to SSID.
port6Mode String
LAN port 6 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port6Ssid String
Bridge LAN port 6 to SSID.
port7Mode String
LAN port 7 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port7Ssid String
Bridge LAN port 7 to SSID.
port8Mode String
LAN port 8 mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
port8Ssid String
Bridge LAN port 8 to SSID.
portEslMode String
ESL port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
portEslSsid String
Bridge ESL port to SSID.
portMode String
LAN port mode. Valid values: offline, bridge-to-wan, bridge-to-ssid, nat-to-wan.
portSsid String
Bridge LAN port to SSID.

ObjectWirelesscontrollerWtpprofileLbs
, ObjectWirelesscontrollerWtpprofileLbsArgs

Aeroscout string
Enable/disable AeroScout Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
AeroscoutApMac string
Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values: bssid, board-mac.
AeroscoutMmuReport string
Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values: disable, enable.
AeroscoutMu string
Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values: disable, enable.
AeroscoutMuFactor double
AeroScout MU mode dilution factor (default = 20).
AeroscoutMuTimeout double
AeroScout MU mode timeout (0 - 65535 sec, default = 5).
AeroscoutServerIp string
IP address of AeroScout server.
AeroscoutServerPort double
AeroScout server UDP listening port.
EkahauBlinkMode string
Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values: disable, enable.
EkahauTag string
WiFi frame MAC address or WiFi Tag.
ErcServerIp string
IP address of Ekahau RTLS Controller (ERC).
ErcServerPort double
Ekahau RTLS Controller (ERC) UDP listening port.
Fortipresence string
Enable/disable FortiPresence to monitor the location and activity of WiFi clients even if they don't connect to this WiFi network (default = disable). Valid values: disable, enable, enable2, foreign, both.
FortipresenceBle string
Enable/disable FortiPresence finding and reporting BLE devices. Valid values: disable, enable.
FortipresenceFrequency double
FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
FortipresencePort double
FortiPresence server UDP listening port (default = 3000).
FortipresenceProject string
FortiPresence project name (max. 16 characters, default = fortipresence).
FortipresenceRogue string
Enable/disable FortiPresence finding and reporting rogue APs. Valid values: disable, enable.
FortipresenceSecrets List<string>
FortiPresence secret password (max. 16 characters).
FortipresenceServer string
FortiPresence server IP address.
FortipresenceServerAddrType string
FortiPresence server address type (default = ipv4). Valid values: fqdn, ipv4.
FortipresenceServerFqdn string
FQDN of FortiPresence server.
FortipresenceUnassoc string
Enable/disable FortiPresence finding and reporting unassociated stations. Valid values: disable, enable.
Polestar string
Enable/disable PoleStar BLE NAO Track Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
PolestarAccumulationInterval double
Time that measurements should be accumulated in seconds (default = 2).
PolestarAssetAddrgrpList string
Tags and asset addrgrp list to be reported.
PolestarAssetUuidList1 string
Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarAssetUuidList2 string
Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarAssetUuidList3 string
Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarAssetUuidList4 string
Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarProtocol string
Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values: WSS.
PolestarReportingInterval double
Time between reporting accumulated measurements in seconds (default = 2).
PolestarServerFqdn string
FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
PolestarServerPath string
Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
PolestarServerPort double
Port of PoleStar Nao Track Server (default = 443).
PolestarServerToken string
Access Token of PoleStar Nao Track Server.
StationLocate string
Enable/disable client station locating services for all clients, whether associated or not (default = disable). Valid values: disable, enable.
Aeroscout string
Enable/disable AeroScout Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
AeroscoutApMac string
Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values: bssid, board-mac.
AeroscoutMmuReport string
Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values: disable, enable.
AeroscoutMu string
Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values: disable, enable.
AeroscoutMuFactor float64
AeroScout MU mode dilution factor (default = 20).
AeroscoutMuTimeout float64
AeroScout MU mode timeout (0 - 65535 sec, default = 5).
AeroscoutServerIp string
IP address of AeroScout server.
AeroscoutServerPort float64
AeroScout server UDP listening port.
EkahauBlinkMode string
Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values: disable, enable.
EkahauTag string
WiFi frame MAC address or WiFi Tag.
ErcServerIp string
IP address of Ekahau RTLS Controller (ERC).
ErcServerPort float64
Ekahau RTLS Controller (ERC) UDP listening port.
Fortipresence string
Enable/disable FortiPresence to monitor the location and activity of WiFi clients even if they don't connect to this WiFi network (default = disable). Valid values: disable, enable, enable2, foreign, both.
FortipresenceBle string
Enable/disable FortiPresence finding and reporting BLE devices. Valid values: disable, enable.
FortipresenceFrequency float64
FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
FortipresencePort float64
FortiPresence server UDP listening port (default = 3000).
FortipresenceProject string
FortiPresence project name (max. 16 characters, default = fortipresence).
FortipresenceRogue string
Enable/disable FortiPresence finding and reporting rogue APs. Valid values: disable, enable.
FortipresenceSecrets []string
FortiPresence secret password (max. 16 characters).
FortipresenceServer string
FortiPresence server IP address.
FortipresenceServerAddrType string
FortiPresence server address type (default = ipv4). Valid values: fqdn, ipv4.
FortipresenceServerFqdn string
FQDN of FortiPresence server.
FortipresenceUnassoc string
Enable/disable FortiPresence finding and reporting unassociated stations. Valid values: disable, enable.
Polestar string
Enable/disable PoleStar BLE NAO Track Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
PolestarAccumulationInterval float64
Time that measurements should be accumulated in seconds (default = 2).
PolestarAssetAddrgrpList string
Tags and asset addrgrp list to be reported.
PolestarAssetUuidList1 string
Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarAssetUuidList2 string
Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarAssetUuidList3 string
Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarAssetUuidList4 string
Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
PolestarProtocol string
Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values: WSS.
PolestarReportingInterval float64
Time between reporting accumulated measurements in seconds (default = 2).
PolestarServerFqdn string
FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
PolestarServerPath string
Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
PolestarServerPort float64
Port of PoleStar Nao Track Server (default = 443).
PolestarServerToken string
Access Token of PoleStar Nao Track Server.
StationLocate string
Enable/disable client station locating services for all clients, whether associated or not (default = disable). Valid values: disable, enable.
aeroscout String
Enable/disable AeroScout Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
aeroscoutApMac String
Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values: bssid, board-mac.
aeroscoutMmuReport String
Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values: disable, enable.
aeroscoutMu String
Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values: disable, enable.
aeroscoutMuFactor Double
AeroScout MU mode dilution factor (default = 20).
aeroscoutMuTimeout Double
AeroScout MU mode timeout (0 - 65535 sec, default = 5).
aeroscoutServerIp String
IP address of AeroScout server.
aeroscoutServerPort Double
AeroScout server UDP listening port.
ekahauBlinkMode String
Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values: disable, enable.
ekahauTag String
WiFi frame MAC address or WiFi Tag.
ercServerIp String
IP address of Ekahau RTLS Controller (ERC).
ercServerPort Double
Ekahau RTLS Controller (ERC) UDP listening port.
fortipresence String
Enable/disable FortiPresence to monitor the location and activity of WiFi clients even if they don't connect to this WiFi network (default = disable). Valid values: disable, enable, enable2, foreign, both.
fortipresenceBle String
Enable/disable FortiPresence finding and reporting BLE devices. Valid values: disable, enable.
fortipresenceFrequency Double
FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
fortipresencePort Double
FortiPresence server UDP listening port (default = 3000).
fortipresenceProject String
FortiPresence project name (max. 16 characters, default = fortipresence).
fortipresenceRogue String
Enable/disable FortiPresence finding and reporting rogue APs. Valid values: disable, enable.
fortipresenceSecrets List<String>
FortiPresence secret password (max. 16 characters).
fortipresenceServer String
FortiPresence server IP address.
fortipresenceServerAddrType String
FortiPresence server address type (default = ipv4). Valid values: fqdn, ipv4.
fortipresenceServerFqdn String
FQDN of FortiPresence server.
fortipresenceUnassoc String
Enable/disable FortiPresence finding and reporting unassociated stations. Valid values: disable, enable.
polestar String
Enable/disable PoleStar BLE NAO Track Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
polestarAccumulationInterval Double
Time that measurements should be accumulated in seconds (default = 2).
polestarAssetAddrgrpList String
Tags and asset addrgrp list to be reported.
polestarAssetUuidList1 String
Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList2 String
Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList3 String
Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList4 String
Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarProtocol String
Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values: WSS.
polestarReportingInterval Double
Time between reporting accumulated measurements in seconds (default = 2).
polestarServerFqdn String
FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
polestarServerPath String
Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
polestarServerPort Double
Port of PoleStar Nao Track Server (default = 443).
polestarServerToken String
Access Token of PoleStar Nao Track Server.
stationLocate String
Enable/disable client station locating services for all clients, whether associated or not (default = disable). Valid values: disable, enable.
aeroscout string
Enable/disable AeroScout Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
aeroscoutApMac string
Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values: bssid, board-mac.
aeroscoutMmuReport string
Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values: disable, enable.
aeroscoutMu string
Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values: disable, enable.
aeroscoutMuFactor number
AeroScout MU mode dilution factor (default = 20).
aeroscoutMuTimeout number
AeroScout MU mode timeout (0 - 65535 sec, default = 5).
aeroscoutServerIp string
IP address of AeroScout server.
aeroscoutServerPort number
AeroScout server UDP listening port.
ekahauBlinkMode string
Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values: disable, enable.
ekahauTag string
WiFi frame MAC address or WiFi Tag.
ercServerIp string
IP address of Ekahau RTLS Controller (ERC).
ercServerPort number
Ekahau RTLS Controller (ERC) UDP listening port.
fortipresence string
Enable/disable FortiPresence to monitor the location and activity of WiFi clients even if they don't connect to this WiFi network (default = disable). Valid values: disable, enable, enable2, foreign, both.
fortipresenceBle string
Enable/disable FortiPresence finding and reporting BLE devices. Valid values: disable, enable.
fortipresenceFrequency number
FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
fortipresencePort number
FortiPresence server UDP listening port (default = 3000).
fortipresenceProject string
FortiPresence project name (max. 16 characters, default = fortipresence).
fortipresenceRogue string
Enable/disable FortiPresence finding and reporting rogue APs. Valid values: disable, enable.
fortipresenceSecrets string[]
FortiPresence secret password (max. 16 characters).
fortipresenceServer string
FortiPresence server IP address.
fortipresenceServerAddrType string
FortiPresence server address type (default = ipv4). Valid values: fqdn, ipv4.
fortipresenceServerFqdn string
FQDN of FortiPresence server.
fortipresenceUnassoc string
Enable/disable FortiPresence finding and reporting unassociated stations. Valid values: disable, enable.
polestar string
Enable/disable PoleStar BLE NAO Track Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
polestarAccumulationInterval number
Time that measurements should be accumulated in seconds (default = 2).
polestarAssetAddrgrpList string
Tags and asset addrgrp list to be reported.
polestarAssetUuidList1 string
Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList2 string
Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList3 string
Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList4 string
Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarProtocol string
Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values: WSS.
polestarReportingInterval number
Time between reporting accumulated measurements in seconds (default = 2).
polestarServerFqdn string
FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
polestarServerPath string
Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
polestarServerPort number
Port of PoleStar Nao Track Server (default = 443).
polestarServerToken string
Access Token of PoleStar Nao Track Server.
stationLocate string
Enable/disable client station locating services for all clients, whether associated or not (default = disable). Valid values: disable, enable.
aeroscout str
Enable/disable AeroScout Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
aeroscout_ap_mac str
Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values: bssid, board-mac.
aeroscout_mmu_report str
Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values: disable, enable.
aeroscout_mu str
Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values: disable, enable.
aeroscout_mu_factor float
AeroScout MU mode dilution factor (default = 20).
aeroscout_mu_timeout float
AeroScout MU mode timeout (0 - 65535 sec, default = 5).
aeroscout_server_ip str
IP address of AeroScout server.
aeroscout_server_port float
AeroScout server UDP listening port.
ekahau_blink_mode str
Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values: disable, enable.
ekahau_tag str
WiFi frame MAC address or WiFi Tag.
erc_server_ip str
IP address of Ekahau RTLS Controller (ERC).
erc_server_port float
Ekahau RTLS Controller (ERC) UDP listening port.
fortipresence str
Enable/disable FortiPresence to monitor the location and activity of WiFi clients even if they don't connect to this WiFi network (default = disable). Valid values: disable, enable, enable2, foreign, both.
fortipresence_ble str
Enable/disable FortiPresence finding and reporting BLE devices. Valid values: disable, enable.
fortipresence_frequency float
FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
fortipresence_port float
FortiPresence server UDP listening port (default = 3000).
fortipresence_project str
FortiPresence project name (max. 16 characters, default = fortipresence).
fortipresence_rogue str
Enable/disable FortiPresence finding and reporting rogue APs. Valid values: disable, enable.
fortipresence_secrets Sequence[str]
FortiPresence secret password (max. 16 characters).
fortipresence_server str
FortiPresence server IP address.
fortipresence_server_addr_type str
FortiPresence server address type (default = ipv4). Valid values: fqdn, ipv4.
fortipresence_server_fqdn str
FQDN of FortiPresence server.
fortipresence_unassoc str
Enable/disable FortiPresence finding and reporting unassociated stations. Valid values: disable, enable.
polestar str
Enable/disable PoleStar BLE NAO Track Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
polestar_accumulation_interval float
Time that measurements should be accumulated in seconds (default = 2).
polestar_asset_addrgrp_list str
Tags and asset addrgrp list to be reported.
polestar_asset_uuid_list1 str
Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestar_asset_uuid_list2 str
Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestar_asset_uuid_list3 str
Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestar_asset_uuid_list4 str
Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestar_protocol str
Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values: WSS.
polestar_reporting_interval float
Time between reporting accumulated measurements in seconds (default = 2).
polestar_server_fqdn str
FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
polestar_server_path str
Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
polestar_server_port float
Port of PoleStar Nao Track Server (default = 443).
polestar_server_token str
Access Token of PoleStar Nao Track Server.
station_locate str
Enable/disable client station locating services for all clients, whether associated or not (default = disable). Valid values: disable, enable.
aeroscout String
Enable/disable AeroScout Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
aeroscoutApMac String
Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values: bssid, board-mac.
aeroscoutMmuReport String
Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values: disable, enable.
aeroscoutMu String
Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values: disable, enable.
aeroscoutMuFactor Number
AeroScout MU mode dilution factor (default = 20).
aeroscoutMuTimeout Number
AeroScout MU mode timeout (0 - 65535 sec, default = 5).
aeroscoutServerIp String
IP address of AeroScout server.
aeroscoutServerPort Number
AeroScout server UDP listening port.
ekahauBlinkMode String
Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values: disable, enable.
ekahauTag String
WiFi frame MAC address or WiFi Tag.
ercServerIp String
IP address of Ekahau RTLS Controller (ERC).
ercServerPort Number
Ekahau RTLS Controller (ERC) UDP listening port.
fortipresence String
Enable/disable FortiPresence to monitor the location and activity of WiFi clients even if they don't connect to this WiFi network (default = disable). Valid values: disable, enable, enable2, foreign, both.
fortipresenceBle String
Enable/disable FortiPresence finding and reporting BLE devices. Valid values: disable, enable.
fortipresenceFrequency Number
FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
fortipresencePort Number
FortiPresence server UDP listening port (default = 3000).
fortipresenceProject String
FortiPresence project name (max. 16 characters, default = fortipresence).
fortipresenceRogue String
Enable/disable FortiPresence finding and reporting rogue APs. Valid values: disable, enable.
fortipresenceSecrets List<String>
FortiPresence secret password (max. 16 characters).
fortipresenceServer String
FortiPresence server IP address.
fortipresenceServerAddrType String
FortiPresence server address type (default = ipv4). Valid values: fqdn, ipv4.
fortipresenceServerFqdn String
FQDN of FortiPresence server.
fortipresenceUnassoc String
Enable/disable FortiPresence finding and reporting unassociated stations. Valid values: disable, enable.
polestar String
Enable/disable PoleStar BLE NAO Track Real Time Location Service (RTLS) support (default = disable). Valid values: disable, enable.
polestarAccumulationInterval Number
Time that measurements should be accumulated in seconds (default = 2).
polestarAssetAddrgrpList String
Tags and asset addrgrp list to be reported.
polestarAssetUuidList1 String
Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList2 String
Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList3 String
Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarAssetUuidList4 String
Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
polestarProtocol String
Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values: WSS.
polestarReportingInterval Number
Time between reporting accumulated measurements in seconds (default = 2).
polestarServerFqdn String
FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
polestarServerPath String
Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
polestarServerPort Number
Port of PoleStar Nao Track Server (default = 443).
polestarServerToken String
Access Token of PoleStar Nao Track Server.
stationLocate String
Enable/disable client station locating services for all clients, whether associated or not (default = disable). Valid values: disable, enable.

ObjectWirelesscontrollerWtpprofilePlatform
, ObjectWirelesscontrollerWtpprofilePlatformArgs

Ddscan string
Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
Type string

WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

The radio_1 block supports:

_localPlatformStr string
_Local_Platform_Str.
Ddscan string
Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
Type string

WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

The radio_1 block supports:

_localPlatformStr string
_Local_Platform_Str.
_localPlatformStr String
_Local_Platform_Str.
ddscan String
Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
type String

WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

The radio_1 block supports:

_localPlatformStr string
_Local_Platform_Str.
ddscan string
Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
type string

WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

The radio_1 block supports:

_local_platform_str str
_Local_Platform_Str.
ddscan str
Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
mode str
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
type str

WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

The radio_1 block supports:

_localPlatformStr String
_Local_Platform_Str.
ddscan String
Enable/disable use of one radio for dedicated dual-band scanning to detect RF characterization and wireless threat management. Valid values: disable, enable.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
type String

WTP, FortiAP or AP platform type. There are built-in WTP profiles for all supported FortiAP models. You can select a built-in profile and customize it or create a new profile. Valid values: 30B-50B, 60B, 80CM-81CM, 220A, 220B, 210B, 60C, 222B, 112B, 320B, 11C, 14C, 223B, 28C, 320C, 221C, 25D, 222C, 224D, 214B, 21D, 24D, 112D, 223C, 321C, C220C, C225C, S321C, S323C, FWF, S311C, S313C, AP-11N, S322C, S321CR, S322CR, S323CR, S421E, S422E, S423E, 421E, 423E, C221E, C226E, C23JD, C24JE, C21D, U421E, U423E, 221E, 222E, 223E, S221E, S223E, U221EV, U223EV, U321EV, U323EV, 224E, U422EV, U24JEV, 321E, U431F, U433F, 231E, 431F, 433F, 231F, 432F, 234F, 23JF, U231F, 831F, U234F, U432F.

The radio_1 block supports:

ObjectWirelesscontrollerWtpprofileRadio1
, ObjectWirelesscontrollerWtpprofileRadio1Args

AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize double
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan double
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels List<string>
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort double
Iperf service port number.
MaxClients double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue double
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes List<string>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId double
Radio-Id.
RtsThreshold double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords List<string>
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords List<string>
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords List<string>
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv double
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes List<string>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize float64
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan float64
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh float64
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow float64
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity float64
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval float64
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor float64
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity float64
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels []string
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim float64
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold float64
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort float64
Iperf service port number.
MaxClients float64
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance float64
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel float64
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue float64
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes []string
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId float64
Radio-Id.
RtsThreshold float64
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords []string
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords []string
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords []string
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv float64
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes []string
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Double
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Double
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Double
Iperf service port number.
maxClients Double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Double
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Double
Radio-Id.
rtsThreshold Double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Double
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr string
MAC address to monitor.
apSnifferBufsize number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels string[]
Selected list of wireless radio channels.
coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort number
Iperf service port number.
maxClients number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes string[]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId number
Radio-Id.
rtsThreshold number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid string
BSSID for WiFi network.
samCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString string
Failure identification on the page after an incorrect login.
samCwpMatchString string
Identification string from the captive portal login form.
samCwpPasswords string[]
Password for captive portal authentication.
samCwpSuccessString string
Success identification on the page after a successful login.
samCwpTestUrl string
Website the client is trying to access.
samCwpUsername string
Username for captive portal authentication.
samEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords string[]
Passphrase for WiFi network connection.
samPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords string[]
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv number
SAM report interval (sec), 0 for a one-time report.
samSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer string
SAM test server IP address or domain name.
samServerFqdn string
SAM test server domain name.
samServerIp string
SAM test server IP address.
samServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid string
SSID for WiFi network.
samTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername string
Username for WiFi network connection.
shortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes string[]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 string
Virtual Access Point (VAP) for wlan ID 1
vap2 string
Virtual Access Point (VAP) for wlan ID 2
vap3 string
Virtual Access Point (VAP) for wlan ID 3
vap4 string
Virtual Access Point (VAP) for wlan ID 4
vap5 string
Virtual Access Point (VAP) for wlan ID 5
vap6 string
Virtual Access Point (VAP) for wlan ID 6
vap7 string
Virtual Access Point (VAP) for wlan ID 7
vap8 string
Virtual Access Point (VAP) for wlan ID 8
vapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps string
Manually selected list of Virtual Access Points (VAPs).
widsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtime_fairness str
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu str
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ap_handoff str
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ap_sniffer_addr str
MAC address to monitor.
ap_sniffer_bufsize float
Sniffer buffer size (1 - 32 MB, default = 16).
ap_sniffer_chan float
Channel on which to operate the sniffer (default = 6).
ap_sniffer_ctl str
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ap_sniffer_data str
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_beacon str
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_other str
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_probe str
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrp_profile str
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
auto_power_high float
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_level str
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
auto_power_low float
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_target str
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band str
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5g_type str
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidth_admission_control str
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidth_capacity float
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beacon_interval float
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bss_color float
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bss_color_mode str
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
call_admission_control str
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
call_capacity float
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channel_bonding str
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channel_utilization str
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels Sequence[str]
Selected list of wireless radio channels.
coexistence str
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp str
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma str
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drma_sensitivity str
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim float
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
frag_threshold float
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequency_handoff str
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperf_protocol str
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperf_server_port float
Iperf service port number.
max_clients float
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
max_distance float
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimo_mode str
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode str
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d str
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optional_antenna str
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optional_antenna_gain str
Optional antenna gain in dBi (0 to 20, default = 0).
power_level float
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
power_mode str
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
power_value float
Radio EIRP power in dBm (1 - 33, default = 27).
powersave_optimizes Sequence[str]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protection_mode str
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radio_id float
Radio-Id.
rts_threshold float
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
sam_bssid str
BSSID for WiFi network.
sam_ca_certificate str
CA certificate for WPA2/WPA3-ENTERPRISE.
sam_captive_portal str
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
sam_client_certificate str
Client certificate for WPA2/WPA3-ENTERPRISE.
sam_cwp_failure_string str
Failure identification on the page after an incorrect login.
sam_cwp_match_string str
Identification string from the captive portal login form.
sam_cwp_passwords Sequence[str]
Password for captive portal authentication.
sam_cwp_success_string str
Success identification on the page after a successful login.
sam_cwp_test_url str
Website the client is trying to access.
sam_cwp_username str
Username for captive portal authentication.
sam_eap_method str
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
sam_passwords Sequence[str]
Passphrase for WiFi network connection.
sam_private_key str
Private key for WPA2/WPA3-ENTERPRISE.
sam_private_key_passwords Sequence[str]
Password for private key file for WPA2/WPA3-ENTERPRISE.
sam_report_intv float
SAM report interval (sec), 0 for a one-time report.
sam_security_type str
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
sam_server str
SAM test server IP address or domain name.
sam_server_fqdn str
SAM test server domain name.
sam_server_ip str
SAM test server IP address.
sam_server_type str
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
sam_ssid str
SSID for WiFi network.
sam_test str
Select SAM test type (default = "PING"). Valid values: ping, iperf.
sam_username str
Username for WiFi network connection.
short_guard_interval str
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrum_analysis str
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmit_optimizes Sequence[str]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 str
Virtual Access Point (VAP) for wlan ID 1
vap2 str
Virtual Access Point (VAP) for wlan ID 2
vap3 str
Virtual Access Point (VAP) for wlan ID 3
vap4 str
Virtual Access Point (VAP) for wlan ID 4
vap5 str
Virtual Access Point (VAP) for wlan ID 5
vap6 str
Virtual Access Point (VAP) for wlan ID 6
vap7 str
Virtual Access Point (VAP) for wlan ID 7
vap8 str
Virtual Access Point (VAP) for wlan ID 8
vap_all str
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps str
Manually selected list of Virtual Access Points (VAPs).
wids_profile str
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zero_wait_dfs str
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Number
Iperf service port number.
maxClients Number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Number
Radio-Id.
rtsThreshold Number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Number
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.

ObjectWirelesscontrollerWtpprofileRadio2
, ObjectWirelesscontrollerWtpprofileRadio2Args

AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize double
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan double
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels List<string>
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort double
Iperf service port number.
MaxClients double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue double
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes List<string>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId double
Radio-Id.
RtsThreshold double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords List<string>
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords List<string>
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords List<string>
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv double
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes List<string>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize float64
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan float64
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh float64
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow float64
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity float64
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval float64
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor float64
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity float64
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels []string
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim float64
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold float64
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort float64
Iperf service port number.
MaxClients float64
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance float64
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel float64
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue float64
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes []string
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId float64
Radio-Id.
RtsThreshold float64
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords []string
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords []string
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords []string
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv float64
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes []string
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Double
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Double
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Double
Iperf service port number.
maxClients Double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Double
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Double
Radio-Id.
rtsThreshold Double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Double
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr string
MAC address to monitor.
apSnifferBufsize number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels string[]
Selected list of wireless radio channels.
coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort number
Iperf service port number.
maxClients number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes string[]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId number
Radio-Id.
rtsThreshold number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid string
BSSID for WiFi network.
samCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString string
Failure identification on the page after an incorrect login.
samCwpMatchString string
Identification string from the captive portal login form.
samCwpPasswords string[]
Password for captive portal authentication.
samCwpSuccessString string
Success identification on the page after a successful login.
samCwpTestUrl string
Website the client is trying to access.
samCwpUsername string
Username for captive portal authentication.
samEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords string[]
Passphrase for WiFi network connection.
samPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords string[]
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv number
SAM report interval (sec), 0 for a one-time report.
samSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer string
SAM test server IP address or domain name.
samServerFqdn string
SAM test server domain name.
samServerIp string
SAM test server IP address.
samServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid string
SSID for WiFi network.
samTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername string
Username for WiFi network connection.
shortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes string[]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 string
Virtual Access Point (VAP) for wlan ID 1
vap2 string
Virtual Access Point (VAP) for wlan ID 2
vap3 string
Virtual Access Point (VAP) for wlan ID 3
vap4 string
Virtual Access Point (VAP) for wlan ID 4
vap5 string
Virtual Access Point (VAP) for wlan ID 5
vap6 string
Virtual Access Point (VAP) for wlan ID 6
vap7 string
Virtual Access Point (VAP) for wlan ID 7
vap8 string
Virtual Access Point (VAP) for wlan ID 8
vapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps string
Manually selected list of Virtual Access Points (VAPs).
widsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtime_fairness str
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu str
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ap_handoff str
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ap_sniffer_addr str
MAC address to monitor.
ap_sniffer_bufsize float
Sniffer buffer size (1 - 32 MB, default = 16).
ap_sniffer_chan float
Channel on which to operate the sniffer (default = 6).
ap_sniffer_ctl str
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ap_sniffer_data str
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_beacon str
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_other str
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_probe str
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrp_profile str
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
auto_power_high float
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_level str
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
auto_power_low float
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_target str
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band str
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5g_type str
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidth_admission_control str
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidth_capacity float
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beacon_interval float
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bss_color float
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bss_color_mode str
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
call_admission_control str
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
call_capacity float
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channel_bonding str
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channel_utilization str
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels Sequence[str]
Selected list of wireless radio channels.
coexistence str
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp str
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma str
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drma_sensitivity str
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim float
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
frag_threshold float
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequency_handoff str
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperf_protocol str
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperf_server_port float
Iperf service port number.
max_clients float
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
max_distance float
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimo_mode str
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode str
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d str
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optional_antenna str
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optional_antenna_gain str
Optional antenna gain in dBi (0 to 20, default = 0).
power_level float
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
power_mode str
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
power_value float
Radio EIRP power in dBm (1 - 33, default = 27).
powersave_optimizes Sequence[str]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protection_mode str
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radio_id float
Radio-Id.
rts_threshold float
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
sam_bssid str
BSSID for WiFi network.
sam_ca_certificate str
CA certificate for WPA2/WPA3-ENTERPRISE.
sam_captive_portal str
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
sam_client_certificate str
Client certificate for WPA2/WPA3-ENTERPRISE.
sam_cwp_failure_string str
Failure identification on the page after an incorrect login.
sam_cwp_match_string str
Identification string from the captive portal login form.
sam_cwp_passwords Sequence[str]
Password for captive portal authentication.
sam_cwp_success_string str
Success identification on the page after a successful login.
sam_cwp_test_url str
Website the client is trying to access.
sam_cwp_username str
Username for captive portal authentication.
sam_eap_method str
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
sam_passwords Sequence[str]
Passphrase for WiFi network connection.
sam_private_key str
Private key for WPA2/WPA3-ENTERPRISE.
sam_private_key_passwords Sequence[str]
Password for private key file for WPA2/WPA3-ENTERPRISE.
sam_report_intv float
SAM report interval (sec), 0 for a one-time report.
sam_security_type str
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
sam_server str
SAM test server IP address or domain name.
sam_server_fqdn str
SAM test server domain name.
sam_server_ip str
SAM test server IP address.
sam_server_type str
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
sam_ssid str
SSID for WiFi network.
sam_test str
Select SAM test type (default = "PING"). Valid values: ping, iperf.
sam_username str
Username for WiFi network connection.
short_guard_interval str
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrum_analysis str
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmit_optimizes Sequence[str]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 str
Virtual Access Point (VAP) for wlan ID 1
vap2 str
Virtual Access Point (VAP) for wlan ID 2
vap3 str
Virtual Access Point (VAP) for wlan ID 3
vap4 str
Virtual Access Point (VAP) for wlan ID 4
vap5 str
Virtual Access Point (VAP) for wlan ID 5
vap6 str
Virtual Access Point (VAP) for wlan ID 6
vap7 str
Virtual Access Point (VAP) for wlan ID 7
vap8 str
Virtual Access Point (VAP) for wlan ID 8
vap_all str
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps str
Manually selected list of Virtual Access Points (VAPs).
wids_profile str
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zero_wait_dfs str
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Number
Iperf service port number.
maxClients Number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Number
Radio-Id.
rtsThreshold Number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Number
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.

ObjectWirelesscontrollerWtpprofileRadio3
, ObjectWirelesscontrollerWtpprofileRadio3Args

AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize double
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan double
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels List<string>
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort double
Iperf service port number.
MaxClients double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue double
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes List<string>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId double
Radio-Id.
RtsThreshold double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords List<string>
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords List<string>
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords List<string>
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv double
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes List<string>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize float64
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan float64
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh float64
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow float64
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity float64
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval float64
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor float64
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity float64
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels []string
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim float64
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold float64
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort float64
Iperf service port number.
MaxClients float64
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance float64
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel float64
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue float64
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes []string
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId float64
Radio-Id.
RtsThreshold float64
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords []string
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords []string
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords []string
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv float64
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes []string
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Double
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Double
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Double
Iperf service port number.
maxClients Double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Double
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Double
Radio-Id.
rtsThreshold Double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Double
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr string
MAC address to monitor.
apSnifferBufsize number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels string[]
Selected list of wireless radio channels.
coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort number
Iperf service port number.
maxClients number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes string[]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId number
Radio-Id.
rtsThreshold number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid string
BSSID for WiFi network.
samCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString string
Failure identification on the page after an incorrect login.
samCwpMatchString string
Identification string from the captive portal login form.
samCwpPasswords string[]
Password for captive portal authentication.
samCwpSuccessString string
Success identification on the page after a successful login.
samCwpTestUrl string
Website the client is trying to access.
samCwpUsername string
Username for captive portal authentication.
samEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords string[]
Passphrase for WiFi network connection.
samPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords string[]
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv number
SAM report interval (sec), 0 for a one-time report.
samSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer string
SAM test server IP address or domain name.
samServerFqdn string
SAM test server domain name.
samServerIp string
SAM test server IP address.
samServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid string
SSID for WiFi network.
samTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername string
Username for WiFi network connection.
shortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes string[]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 string
Virtual Access Point (VAP) for wlan ID 1
vap2 string
Virtual Access Point (VAP) for wlan ID 2
vap3 string
Virtual Access Point (VAP) for wlan ID 3
vap4 string
Virtual Access Point (VAP) for wlan ID 4
vap5 string
Virtual Access Point (VAP) for wlan ID 5
vap6 string
Virtual Access Point (VAP) for wlan ID 6
vap7 string
Virtual Access Point (VAP) for wlan ID 7
vap8 string
Virtual Access Point (VAP) for wlan ID 8
vapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps string
Manually selected list of Virtual Access Points (VAPs).
widsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtime_fairness str
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu str
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ap_handoff str
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ap_sniffer_addr str
MAC address to monitor.
ap_sniffer_bufsize float
Sniffer buffer size (1 - 32 MB, default = 16).
ap_sniffer_chan float
Channel on which to operate the sniffer (default = 6).
ap_sniffer_ctl str
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ap_sniffer_data str
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_beacon str
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_other str
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_probe str
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrp_profile str
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
auto_power_high float
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_level str
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
auto_power_low float
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_target str
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band str
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5g_type str
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidth_admission_control str
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidth_capacity float
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beacon_interval float
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bss_color float
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bss_color_mode str
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
call_admission_control str
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
call_capacity float
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channel_bonding str
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channel_utilization str
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels Sequence[str]
Selected list of wireless radio channels.
coexistence str
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp str
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma str
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drma_sensitivity str
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim float
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
frag_threshold float
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequency_handoff str
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperf_protocol str
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperf_server_port float
Iperf service port number.
max_clients float
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
max_distance float
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimo_mode str
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode str
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d str
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optional_antenna str
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optional_antenna_gain str
Optional antenna gain in dBi (0 to 20, default = 0).
power_level float
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
power_mode str
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
power_value float
Radio EIRP power in dBm (1 - 33, default = 27).
powersave_optimizes Sequence[str]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protection_mode str
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radio_id float
Radio-Id.
rts_threshold float
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
sam_bssid str
BSSID for WiFi network.
sam_ca_certificate str
CA certificate for WPA2/WPA3-ENTERPRISE.
sam_captive_portal str
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
sam_client_certificate str
Client certificate for WPA2/WPA3-ENTERPRISE.
sam_cwp_failure_string str
Failure identification on the page after an incorrect login.
sam_cwp_match_string str
Identification string from the captive portal login form.
sam_cwp_passwords Sequence[str]
Password for captive portal authentication.
sam_cwp_success_string str
Success identification on the page after a successful login.
sam_cwp_test_url str
Website the client is trying to access.
sam_cwp_username str
Username for captive portal authentication.
sam_eap_method str
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
sam_passwords Sequence[str]
Passphrase for WiFi network connection.
sam_private_key str
Private key for WPA2/WPA3-ENTERPRISE.
sam_private_key_passwords Sequence[str]
Password for private key file for WPA2/WPA3-ENTERPRISE.
sam_report_intv float
SAM report interval (sec), 0 for a one-time report.
sam_security_type str
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
sam_server str
SAM test server IP address or domain name.
sam_server_fqdn str
SAM test server domain name.
sam_server_ip str
SAM test server IP address.
sam_server_type str
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
sam_ssid str
SSID for WiFi network.
sam_test str
Select SAM test type (default = "PING"). Valid values: ping, iperf.
sam_username str
Username for WiFi network connection.
short_guard_interval str
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrum_analysis str
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmit_optimizes Sequence[str]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 str
Virtual Access Point (VAP) for wlan ID 1
vap2 str
Virtual Access Point (VAP) for wlan ID 2
vap3 str
Virtual Access Point (VAP) for wlan ID 3
vap4 str
Virtual Access Point (VAP) for wlan ID 4
vap5 str
Virtual Access Point (VAP) for wlan ID 5
vap6 str
Virtual Access Point (VAP) for wlan ID 6
vap7 str
Virtual Access Point (VAP) for wlan ID 7
vap8 str
Virtual Access Point (VAP) for wlan ID 8
vap_all str
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps str
Manually selected list of Virtual Access Points (VAPs).
wids_profile str
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zero_wait_dfs str
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Number
Iperf service port number.
maxClients Number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Number
Radio-Id.
rtsThreshold Number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Number
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.

ObjectWirelesscontrollerWtpprofileRadio4
, ObjectWirelesscontrollerWtpprofileRadio4Args

AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize double
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan double
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels List<string>
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort double
Iperf service port number.
MaxClients double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue double
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes List<string>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId double
Radio-Id.
RtsThreshold double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords List<string>
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords List<string>
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords List<string>
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv double
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes List<string>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
AirtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
Amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ApHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ApSnifferAddr string
MAC address to monitor.
ApSnifferBufsize float64
Sniffer buffer size (1 - 32 MB, default = 16).
ApSnifferChan float64
Channel on which to operate the sniffer (default = 6).
ApSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ApSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ApSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ApSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
ArrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
AutoPowerHigh float64
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
AutoPowerLow float64
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
AutoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
Band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
Band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
BandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
BandwidthCapacity float64
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
BeaconInterval float64
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
BssColor float64
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
BssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
CallAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
CallCapacity float64
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
ChannelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
ChannelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
Channels []string
Selected list of wireless radio channels.
Coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
Darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
Drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
DrmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
Dtim float64
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
FragThreshold float64
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
FrequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
IperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
IperfServerPort float64
Iperf service port number.
MaxClients float64
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
MaxDistance float64
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
MimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
Mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
N80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
OptionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
OptionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
PowerLevel float64
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
PowerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
PowerValue float64
Radio EIRP power in dBm (1 - 33, default = 27).
PowersaveOptimizes []string
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
ProtectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
RadioId float64
Radio-Id.
RtsThreshold float64
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
SamBssid string
BSSID for WiFi network.
SamCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
SamCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
SamClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
SamCwpFailureString string
Failure identification on the page after an incorrect login.
SamCwpMatchString string
Identification string from the captive portal login form.
SamCwpPasswords []string
Password for captive portal authentication.
SamCwpSuccessString string
Success identification on the page after a successful login.
SamCwpTestUrl string
Website the client is trying to access.
SamCwpUsername string
Username for captive portal authentication.
SamEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
SamPasswords []string
Passphrase for WiFi network connection.
SamPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
SamPrivateKeyPasswords []string
Password for private key file for WPA2/WPA3-ENTERPRISE.
SamReportIntv float64
SAM report interval (sec), 0 for a one-time report.
SamSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
SamServer string
SAM test server IP address or domain name.
SamServerFqdn string
SAM test server domain name.
SamServerIp string
SAM test server IP address.
SamServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
SamSsid string
SSID for WiFi network.
SamTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
SamUsername string
Username for WiFi network connection.
ShortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
SpectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
TransmitOptimizes []string
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
Vap1 string
Virtual Access Point (VAP) for wlan ID 1
Vap2 string
Virtual Access Point (VAP) for wlan ID 2
Vap3 string
Virtual Access Point (VAP) for wlan ID 3
Vap4 string
Virtual Access Point (VAP) for wlan ID 4
Vap5 string
Virtual Access Point (VAP) for wlan ID 5
Vap6 string
Virtual Access Point (VAP) for wlan ID 6
Vap7 string
Virtual Access Point (VAP) for wlan ID 7
Vap8 string
Virtual Access Point (VAP) for wlan ID 8
VapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
Vaps string
Manually selected list of Virtual Access Points (VAPs).
WidsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
ZeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Double
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Double
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Double
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Double
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Double
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Double
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Double
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Double
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Double
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Double
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Double
Iperf service port number.
maxClients Double
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Double
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Double
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Double
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Double
Radio-Id.
rtsThreshold Double
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Double
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness string
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu string
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff string
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr string
MAC address to monitor.
apSnifferBufsize number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl string
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData string
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon string
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther string
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe string
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile string
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel string
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget string
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band string
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType string
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl string
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode string
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl string
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding string
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization string
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels string[]
Selected list of wireless radio channels.
coexistence string
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp string
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma string
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity string
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff string
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol string
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort number
Iperf service port number.
maxClients number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode string
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode string
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d string
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna string
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain string
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode string
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes string[]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode string
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId number
Radio-Id.
rtsThreshold number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid string
BSSID for WiFi network.
samCaCertificate string
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal string
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate string
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString string
Failure identification on the page after an incorrect login.
samCwpMatchString string
Identification string from the captive portal login form.
samCwpPasswords string[]
Password for captive portal authentication.
samCwpSuccessString string
Success identification on the page after a successful login.
samCwpTestUrl string
Website the client is trying to access.
samCwpUsername string
Username for captive portal authentication.
samEapMethod string
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords string[]
Passphrase for WiFi network connection.
samPrivateKey string
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords string[]
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv number
SAM report interval (sec), 0 for a one-time report.
samSecurityType string
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer string
SAM test server IP address or domain name.
samServerFqdn string
SAM test server domain name.
samServerIp string
SAM test server IP address.
samServerType string
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid string
SSID for WiFi network.
samTest string
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername string
Username for WiFi network connection.
shortGuardInterval string
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis string
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes string[]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 string
Virtual Access Point (VAP) for wlan ID 1
vap2 string
Virtual Access Point (VAP) for wlan ID 2
vap3 string
Virtual Access Point (VAP) for wlan ID 3
vap4 string
Virtual Access Point (VAP) for wlan ID 4
vap5 string
Virtual Access Point (VAP) for wlan ID 5
vap6 string
Virtual Access Point (VAP) for wlan ID 6
vap7 string
Virtual Access Point (VAP) for wlan ID 7
vap8 string
Virtual Access Point (VAP) for wlan ID 8
vapAll string
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps string
Manually selected list of Virtual Access Points (VAPs).
widsProfile string
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs string
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtime_fairness str
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu str
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
ap_handoff str
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
ap_sniffer_addr str
MAC address to monitor.
ap_sniffer_bufsize float
Sniffer buffer size (1 - 32 MB, default = 16).
ap_sniffer_chan float
Channel on which to operate the sniffer (default = 6).
ap_sniffer_ctl str
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
ap_sniffer_data str
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_beacon str
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_other str
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
ap_sniffer_mgmt_probe str
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrp_profile str
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
auto_power_high float
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_level str
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
auto_power_low float
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
auto_power_target str
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band str
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5g_type str
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidth_admission_control str
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidth_capacity float
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beacon_interval float
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bss_color float
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bss_color_mode str
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
call_admission_control str
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
call_capacity float
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channel_bonding str
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channel_utilization str
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels Sequence[str]
Selected list of wireless radio channels.
coexistence str
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp str
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma str
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drma_sensitivity str
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim float
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
frag_threshold float
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequency_handoff str
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperf_protocol str
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperf_server_port float
Iperf service port number.
max_clients float
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
max_distance float
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimo_mode str
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode str
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d str
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optional_antenna str
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optional_antenna_gain str
Optional antenna gain in dBi (0 to 20, default = 0).
power_level float
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
power_mode str
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
power_value float
Radio EIRP power in dBm (1 - 33, default = 27).
powersave_optimizes Sequence[str]
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protection_mode str
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radio_id float
Radio-Id.
rts_threshold float
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
sam_bssid str
BSSID for WiFi network.
sam_ca_certificate str
CA certificate for WPA2/WPA3-ENTERPRISE.
sam_captive_portal str
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
sam_client_certificate str
Client certificate for WPA2/WPA3-ENTERPRISE.
sam_cwp_failure_string str
Failure identification on the page after an incorrect login.
sam_cwp_match_string str
Identification string from the captive portal login form.
sam_cwp_passwords Sequence[str]
Password for captive portal authentication.
sam_cwp_success_string str
Success identification on the page after a successful login.
sam_cwp_test_url str
Website the client is trying to access.
sam_cwp_username str
Username for captive portal authentication.
sam_eap_method str
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
sam_passwords Sequence[str]
Passphrase for WiFi network connection.
sam_private_key str
Private key for WPA2/WPA3-ENTERPRISE.
sam_private_key_passwords Sequence[str]
Password for private key file for WPA2/WPA3-ENTERPRISE.
sam_report_intv float
SAM report interval (sec), 0 for a one-time report.
sam_security_type str
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
sam_server str
SAM test server IP address or domain name.
sam_server_fqdn str
SAM test server domain name.
sam_server_ip str
SAM test server IP address.
sam_server_type str
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
sam_ssid str
SSID for WiFi network.
sam_test str
Select SAM test type (default = "PING"). Valid values: ping, iperf.
sam_username str
Username for WiFi network connection.
short_guard_interval str
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrum_analysis str
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmit_optimizes Sequence[str]
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 str
Virtual Access Point (VAP) for wlan ID 1
vap2 str
Virtual Access Point (VAP) for wlan ID 2
vap3 str
Virtual Access Point (VAP) for wlan ID 3
vap4 str
Virtual Access Point (VAP) for wlan ID 4
vap5 str
Virtual Access Point (VAP) for wlan ID 5
vap6 str
Virtual Access Point (VAP) for wlan ID 6
vap7 str
Virtual Access Point (VAP) for wlan ID 7
vap8 str
Virtual Access Point (VAP) for wlan ID 8
vap_all str
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps str
Manually selected list of Virtual Access Points (VAPs).
wids_profile str
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zero_wait_dfs str
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.
airtimeFairness String
Enable/disable airtime fairness (default = disable). Valid values: disable, enable.
amsdu String
Enable/disable 802.11n AMSDU support. AMSDU can improve performance if supported by your WiFi clients (default = enable). Valid values: disable, enable.
apHandoff String
Enable/disable AP handoff of clients to other APs (default = disable). Valid values: disable, enable.
apSnifferAddr String
MAC address to monitor.
apSnifferBufsize Number
Sniffer buffer size (1 - 32 MB, default = 16).
apSnifferChan Number
Channel on which to operate the sniffer (default = 6).
apSnifferCtl String
Enable/disable sniffer on WiFi control frame (default = enable). Valid values: disable, enable.
apSnifferData String
Enable/disable sniffer on WiFi data frame (default = enable). Valid values: disable, enable.
apSnifferMgmtBeacon String
Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values: disable, enable.
apSnifferMgmtOther String
Enable/disable sniffer on WiFi management other frames (default = enable). Valid values: disable, enable.
apSnifferMgmtProbe String
Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values: disable, enable.
arrpProfile String
Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
autoPowerHigh Number
The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerLevel String
Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values: disable, enable.
autoPowerLow Number
The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
autoPowerTarget String
The target of automatic transmit power adjustment in dBm. (-95 to -20, default = -70).
band String
WiFi band that Radio 3 operates on. Valid values: 802.11b, 802.11a, 802.11g, 802.11n, 802.11ac, 802.11n-5G, 802.11ax-5G, 802.11ax, 802.11ac-2G, 802.11g-only, 802.11n-only, 802.11n,g-only, 802.11ac-only, 802.11ac,n-only, 802.11n-5G-only, 802.11ax-5G-only, 802.11ax,ac-only, 802.11ax,ac,n-only, 802.11ax-only, 802.11ax,n-only, 802.11ax,n,g-only.
band5gType String
WiFi 5G band type. Valid values: 5g-full, 5g-high, 5g-low.
bandwidthAdmissionControl String
Enable/disable WiFi multimedia (WMM) bandwidth admission control to optimize WiFi bandwidth use. A request to join the wireless network is only allowed if the access point has enough bandwidth to support it. Valid values: disable, enable.
bandwidthCapacity Number
Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
beaconInterval Number
Beacon interval. The time between beacon frames in msec (the actual range of beacon interval depends on the AP platform type, default = 100).
bssColor Number
BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
bssColorMode String
BSS color mode for this 11ax radio (default = auto). Valid values: auto, static.
callAdmissionControl String
Enable/disable WiFi multimedia (WMM) call admission control to optimize WiFi bandwidth use for VoIP calls. New VoIP calls are only accepted if there is enough bandwidth available to support them. Valid values: disable, enable.
callCapacity Number
Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
channelBonding String
Channel bandwidth: 160,80, 40, or 20MHz. Channels may use both 20 and 40 by enabling coexistence. Valid values: 80MHz, 40MHz, 20MHz, 160MHz.
channelUtilization String
Enable/disable measuring channel utilization. Valid values: disable, enable.
channels List<String>
Selected list of wireless radio channels.
coexistence String
Enable/disable allowing both HT20 and HT40 on the same radio (default = enable). Valid values: disable, enable.
darrp String
Enable/disable Distributed Automatic Radio Resource Provisioning (DARRP) to make sure the radio is always using the most optimal channel (default = disable). Valid values: disable, enable.
drma String
Enable/disable dynamic radio mode assignment (DRMA) (default = disable). Valid values: disable, enable.
drmaSensitivity String
Network Coverage Factor (NCF) percentage required to consider a radio as redundant (default = low). Valid values: low, medium, high.
dtim Number
Delivery Traffic Indication Map (DTIM) period (1 - 255, default = 1). Set higher to save battery life of WiFi client in power-save mode.
fragThreshold Number
Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
frequencyHandoff String
Enable/disable frequency handoff of clients to other channels (default = disable). Valid values: disable, enable.
iperfProtocol String
Iperf test protocol (default = "UDP"). Valid values: udp, tcp.
iperfServerPort Number
Iperf service port number.
maxClients Number
Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
maxDistance Number
Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
mimoMode String
Configure radio MIMO mode (default = default). Valid values: default, 1x1, 2x2, 3x3, 4x4, 8x8.
mode String
Mode of radio 3. Radio 3 can be disabled, configured as an access point, a rogue AP monitor, or a sniffer. Valid values: ap, monitor, sniffer, disabled, sam.
n80211d String
Enable/disable 802.11d countryie(default = enable). Valid values: disable, enable.
optionalAntenna String
Optional antenna used on FAP (default = none). Valid values: none, FANT-04ABGN-0606-O-N, FANT-04ABGN-1414-P-N, FANT-04ABGN-8065-P-N, FANT-04ABGN-0606-O-R, FANT-04ABGN-0606-P-R, FANT-10ACAX-1213-D-N, FANT-08ABGN-1213-D-R.
optionalAntennaGain String
Optional antenna gain in dBi (0 to 20, default = 0).
powerLevel Number
Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
powerMode String
Set radio effective isotropic radiated power (EIRP) in dBm or by a percentage of the maximum EIRP (default = percentage). This power takes into account both radio transmit power and antenna gain. Higher power level settings may be constrained by local regulatory requirements and AP capabilities. Valid values: dBm, percentage.
powerValue Number
Radio EIRP power in dBm (1 - 33, default = 27).
powersaveOptimizes List<String>
Enable client power-saving features such as TIM, AC VO, and OBSS etc. Valid values: tim, ac-vo, no-obss-scan, no-11b-rate, client-rate-follow.
protectionMode String
Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values: rtscts, ctsonly, disable.
radioId Number
Radio-Id.
rtsThreshold Number
Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
samBssid String
BSSID for WiFi network.
samCaCertificate String
CA certificate for WPA2/WPA3-ENTERPRISE.
samCaptivePortal String
Enable/disable Captive Portal Authentication (default = disable). Valid values: disable, enable.
samClientCertificate String
Client certificate for WPA2/WPA3-ENTERPRISE.
samCwpFailureString String
Failure identification on the page after an incorrect login.
samCwpMatchString String
Identification string from the captive portal login form.
samCwpPasswords List<String>
Password for captive portal authentication.
samCwpSuccessString String
Success identification on the page after a successful login.
samCwpTestUrl String
Website the client is trying to access.
samCwpUsername String
Username for captive portal authentication.
samEapMethod String
Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values: tls, peap, both.
samPasswords List<String>
Passphrase for WiFi network connection.
samPrivateKey String
Private key for WPA2/WPA3-ENTERPRISE.
samPrivateKeyPasswords List<String>
Password for private key file for WPA2/WPA3-ENTERPRISE.
samReportIntv Number
SAM report interval (sec), 0 for a one-time report.
samSecurityType String
Select WiFi network security type (default = "wpa-personal"). Valid values: open, wpa-personal, wpa-enterprise.
samServer String
SAM test server IP address or domain name.
samServerFqdn String
SAM test server domain name.
samServerIp String
SAM test server IP address.
samServerType String
Select SAM server type (default = "IP"). Valid values: ip, fqdn.
samSsid String
SSID for WiFi network.
samTest String
Select SAM test type (default = "PING"). Valid values: ping, iperf.
samUsername String
Username for WiFi network connection.
shortGuardInterval String
Use either the short guard interval (Short GI) of 400 ns or the long guard interval (Long GI) of 800 ns. Valid values: disable, enable.
spectrumAnalysis String
Spectrum-Analysis. Valid values: disable, enable, scan-only.
transmitOptimizes List<String>
Packet transmission optimization options including power saving, aggregation limiting, retry limiting, etc. All are enabled by default. Valid values: disable, power-save, aggr-limit, retry-limit, send-bar.
vap1 String
Virtual Access Point (VAP) for wlan ID 1
vap2 String
Virtual Access Point (VAP) for wlan ID 2
vap3 String
Virtual Access Point (VAP) for wlan ID 3
vap4 String
Virtual Access Point (VAP) for wlan ID 4
vap5 String
Virtual Access Point (VAP) for wlan ID 5
vap6 String
Virtual Access Point (VAP) for wlan ID 6
vap7 String
Virtual Access Point (VAP) for wlan ID 7
vap8 String
Virtual Access Point (VAP) for wlan ID 8
vapAll String
Configure method for assigning SSIDs to this FortiAP (default = automatically assign tunnel SSIDs). Valid values: disable, enable, tunnel, bridge, manual.
vaps String
Manually selected list of Virtual Access Points (VAPs).
widsProfile String
Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
zeroWaitDfs String
Enable/disable zero wait DFS on radio (default = enable). Valid values: disable, enable.

ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl
, ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs

DestIp string
Destination IP and mask for the split-tunneling subnet.
Id double
ID.
DestIp string
Destination IP and mask for the split-tunneling subnet.
Id float64
ID.
destIp String
Destination IP and mask for the split-tunneling subnet.
id Double
ID.
destIp string
Destination IP and mask for the split-tunneling subnet.
id number
ID.
dest_ip str
Destination IP and mask for the split-tunneling subnet.
id float
ID.
destIp String
Destination IP and mask for the split-tunneling subnet.
id Number
ID.

Import

ObjectWirelessController WtpProfile can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWirelesscontrollerWtpprofile:ObjectWirelesscontrollerWtpprofile labelname {{name}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.