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",
});
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")
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
})
}
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",
});
});
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());
}
}
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
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
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
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
isadom
, 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
. - Ap
Country 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Apcfg
Profile string - AP local configuration profile name.
- Ble
Profile string - Bluetooth Low Energy profile name.
- Bonjour
Profile string - Bonjour profile name.
- Comment string
- Comment.
- Console
Login string - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - Control
Message List<string>Offloads - 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 List<ObjectLists Wirelesscontroller Wtpprofile Deny Mac List> - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - Dtls
In stringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - Dtls
Policies List<string> - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - Dynamic
Sort stringSubtable - 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 stringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - Esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - Ext
Info stringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Handoff
Roaming string - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - Handoff
Rssi double - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- Handoff
Sta doubleThresh - Threshold value for AP handoff.
- Indoor
Outdoor stringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - Ip
Fragment List<string>Preventings - 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
Object
Wirelesscontroller Wtpprofile Lan - Lan. The structure of
lan
block is documented below. - Lbs
Object
Wirelesscontroller Wtpprofile Lbs - Lbs. The structure of
lbs
block is documented below. - Led
Schedules 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.
- Led
State 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
. - Login
Passwd stringChange - 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 List<string> - Set the managed WTP, FortiAP, or AP's administrator password.
- Max
Clients 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.
- Object
Wirelesscontroller stringWtpprofile Id - an identifier for the resource with format {{name}}.
- Platform
Object
Wirelesscontroller Wtpprofile Platform - Platform. The structure of
platform
block is documented below. - Poe
Mode string - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - Radio1
Object
Wirelesscontroller Wtpprofile Radio1 - Radio-1. The structure of
radio_1
block is documented below. - Radio2
Object
Wirelesscontroller Wtpprofile Radio2 - Radio-2. The structure of
radio_2
block is documented below. - Radio3
Object
Wirelesscontroller Wtpprofile Radio3 - Radio-3. The structure of
radio_3
block is documented below. - Radio4
Object
Wirelesscontroller Wtpprofile Radio4 - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Snmp string
- Snmp. Valid values:
disable
,enable
. - Split
Tunneling stringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - Split
Tunneling stringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - Split
Tunneling List<ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl> - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - Syslog
Profile string - System log server configuration profile name.
- Tun
Mtu doubleDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- Tun
Mtu doubleUplink - 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 string - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - Wan
Port stringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - Wan
Port List<string>Auth Passwords - Set WAN port 802.1x supplicant password.
- Wan
Port stringAuth Usrname - Set WAN port 802.1x supplicant user name.
- Wan
Port stringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
. - _
is stringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - Ap
Country 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Apcfg
Profile string - AP local configuration profile name.
- Ble
Profile string - Bluetooth Low Energy profile name.
- Bonjour
Profile string - Bonjour profile name.
- Comment string
- Comment.
- Console
Login string - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - Control
Message []stringOffloads - 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 []ObjectLists Wirelesscontroller Wtpprofile Deny Mac List Type Args - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - Dtls
In stringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - Dtls
Policies []string - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - Dynamic
Sort stringSubtable - 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 stringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - Esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle Type Args - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - Ext
Info stringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Handoff
Roaming string - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - Handoff
Rssi float64 - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- Handoff
Sta float64Thresh - Threshold value for AP handoff.
- Indoor
Outdoor stringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - Ip
Fragment []stringPreventings - 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
Object
Wirelesscontroller Wtpprofile Lan Type Args - Lan. The structure of
lan
block is documented below. - Lbs
Object
Wirelesscontroller Wtpprofile Lbs Type Args - Lbs. The structure of
lbs
block is documented below. - Led
Schedules []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.
- Led
State 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
. - Login
Passwd stringChange - 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 []string - Set the managed WTP, FortiAP, or AP's administrator password.
- Max
Clients 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.
- Object
Wirelesscontroller stringWtpprofile Id - an identifier for the resource with format {{name}}.
- Platform
Object
Wirelesscontroller Wtpprofile Platform Type Args - Platform. The structure of
platform
block is documented below. - Poe
Mode string - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - Radio1
Object
Wirelesscontroller Wtpprofile Radio1Type Args - Radio-1. The structure of
radio_1
block is documented below. - Radio2
Object
Wirelesscontroller Wtpprofile Radio2Type Args - Radio-2. The structure of
radio_2
block is documented below. - Radio3
Object
Wirelesscontroller Wtpprofile Radio3Type Args - Radio-3. The structure of
radio_3
block is documented below. - Radio4
Object
Wirelesscontroller Wtpprofile Radio4Type Args - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Snmp string
- Snmp. Valid values:
disable
,enable
. - Split
Tunneling stringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - Split
Tunneling stringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - Split
Tunneling []ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl Type Args - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - Syslog
Profile string - System log server configuration profile name.
- Tun
Mtu float64Downlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- Tun
Mtu float64Uplink - 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 string - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - Wan
Port stringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - Wan
Port []stringAuth Passwords - Set WAN port 802.1x supplicant password.
- Wan
Port stringAuth Usrname - Set WAN port 802.1x supplicant user name.
- Wan
Port stringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
. - _
is stringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
.
- _
is StringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - ap
Country 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - apcfg
Profile String - AP local configuration profile name.
- ble
Profile String - Bluetooth Low Energy profile name.
- bonjour
Profile String - Bonjour profile name.
- comment String
- Comment.
- console
Login String - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - control
Message List<String>Offloads - 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 List<ObjectLists Wirelesscontroller Wtpprofile Deny Mac List> - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls
In StringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - dtls
Policies List<String> - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - dynamic
Sort StringSubtable - 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 StringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext
Info StringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - handoff
Roaming String - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - handoff
Rssi Double - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- handoff
Sta DoubleThresh - Threshold value for AP handoff.
- indoor
Outdoor StringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip
Fragment List<String>Preventings - 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
Object
Wirelesscontroller Wtpprofile Lan - Lan. The structure of
lan
block is documented below. - lbs
Object
Wirelesscontroller Wtpprofile Lbs - Lbs. The structure of
lbs
block is documented below. - led
Schedules 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.
- led
State 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
. - login
Passwd StringChange - 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 List<String> - Set the managed WTP, FortiAP, or AP's administrator password.
- max
Clients 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.
- object
Wirelesscontroller StringWtpprofile Id - an identifier for the resource with format {{name}}.
- platform
Object
Wirelesscontroller Wtpprofile Platform - Platform. The structure of
platform
block is documented below. - poe
Mode String - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - radio1
Object
Wirelesscontroller Wtpprofile Radio1 - Radio-1. The structure of
radio_1
block is documented below. - radio2
Object
Wirelesscontroller Wtpprofile Radio2 - Radio-2. The structure of
radio_2
block is documented below. - radio3
Object
Wirelesscontroller Wtpprofile Radio3 - Radio-3. The structure of
radio_3
block is documented below. - radio4
Object
Wirelesscontroller Wtpprofile Radio4 - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp String
- Snmp. Valid values:
disable
,enable
. - split
Tunneling StringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split
Tunneling StringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split
Tunneling List<ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl> - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog
Profile String - System log server configuration profile name.
- tun
Mtu DoubleDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun
Mtu DoubleUplink - 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 String - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan
Port StringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan
Port List<String>Auth Passwords - Set WAN port 802.1x supplicant password.
- wan
Port StringAuth Usrname - Set WAN port 802.1x supplicant user name.
- wan
Port StringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
- _
is stringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - ap
Country 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
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - apcfg
Profile string - AP local configuration profile name.
- ble
Profile string - Bluetooth Low Energy profile name.
- bonjour
Profile string - Bonjour profile name.
- comment string
- Comment.
- console
Login string - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - control
Message string[]Offloads - 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 ObjectLists Wirelesscontroller Wtpprofile Deny Mac List[] - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls
In stringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - dtls
Policies string[] - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - dynamic
Sort stringSubtable - 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 stringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext
Info stringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - handoff
Roaming string - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - handoff
Rssi number - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- handoff
Sta numberThresh - Threshold value for AP handoff.
- indoor
Outdoor stringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip
Fragment string[]Preventings - 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
Object
Wirelesscontroller Wtpprofile Lan - Lan. The structure of
lan
block is documented below. - lbs
Object
Wirelesscontroller Wtpprofile Lbs - Lbs. The structure of
lbs
block is documented below. - led
Schedules 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.
- led
State 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
. - login
Passwd stringChange - 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 string[] - Set the managed WTP, FortiAP, or AP's administrator password.
- max
Clients 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.
- object
Wirelesscontroller stringWtpprofile Id - an identifier for the resource with format {{name}}.
- platform
Object
Wirelesscontroller Wtpprofile Platform - Platform. The structure of
platform
block is documented below. - poe
Mode string - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - radio1
Object
Wirelesscontroller Wtpprofile Radio1 - Radio-1. The structure of
radio_1
block is documented below. - radio2
Object
Wirelesscontroller Wtpprofile Radio2 - Radio-2. The structure of
radio_2
block is documented below. - radio3
Object
Wirelesscontroller Wtpprofile Radio3 - Radio-3. The structure of
radio_3
block is documented below. - radio4
Object
Wirelesscontroller Wtpprofile Radio4 - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp string
- Snmp. Valid values:
disable
,enable
. - split
Tunneling stringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split
Tunneling stringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split
Tunneling ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl[] - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog
Profile string - System log server configuration profile name.
- tun
Mtu numberDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun
Mtu numberUplink - 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 string - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - wan
Port stringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan
Port stringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan
Port stringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan
Port string[]Auth Passwords - Set WAN port 802.1x supplicant password.
- wan
Port stringAuth Usrname - Set WAN port 802.1x supplicant user name.
- wan
Port stringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
- _
is_ strfactory_ setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ Sequence[str]offloads - 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_ Sequence[Objectlists Wirelesscontroller Wtpprofile Deny Mac List Args] - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls_
in_ strkernel - 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_ strsubtable - 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_ strethernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl_
ses_ Objectdongle Wirelesscontroller Wtpprofile Esl Ses Dongle Args - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext_
info_ strenable - 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_ floatthresh - Threshold value for AP handoff.
- indoor_
outdoor_ strdeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip_
fragment_ Sequence[str]preventings - 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
Object
Wirelesscontroller Wtpprofile Lan Args - Lan. The structure of
lan
block is documented below. - lbs
Object
Wirelesscontroller Wtpprofile Lbs Args - 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_ strchange - 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_ strwtpprofile_ id - an identifier for the resource with format {{name}}.
- platform
Object
Wirelesscontroller Wtpprofile Platform Args - 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
Object
Wirelesscontroller Wtpprofile Radio1Args - Radio-1. The structure of
radio_1
block is documented below. - radio2
Object
Wirelesscontroller Wtpprofile Radio2Args - Radio-2. The structure of
radio_2
block is documented below. - radio3
Object
Wirelesscontroller Wtpprofile Radio3Args - Radio-3. The structure of
radio_3
block is documented below. - radio4
Object
Wirelesscontroller Wtpprofile Radio4Args - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp str
- Snmp. Valid values:
disable
,enable
. - split_
tunneling_ stracl_ local_ ap_ subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split_
tunneling_ stracl_ path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split_
tunneling_ Sequence[Objectacls Wirelesscontroller Wtpprofile Split Tunneling Acl Args] - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog_
profile str - System log server configuration profile name.
- tun_
mtu_ floatdownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun_
mtu_ floatuplink - 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_ strauth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan_
port_ strauth_ macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan_
port_ strauth_ methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan_
port_ Sequence[str]auth_ passwords - Set WAN port 802.1x supplicant password.
- wan_
port_ strauth_ usrname - Set WAN port 802.1x supplicant user name.
- wan_
port_ strmode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
- _
is StringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - ap
Country 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - apcfg
Profile String - AP local configuration profile name.
- ble
Profile String - Bluetooth Low Energy profile name.
- bonjour
Profile String - Bonjour profile name.
- comment String
- Comment.
- console
Login String - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - control
Message List<String>Offloads - 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 List<Property Map>Lists - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls
In StringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - dtls
Policies List<String> - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - dynamic
Sort StringSubtable - 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 StringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl
Ses Property MapDongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext
Info StringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - handoff
Roaming String - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - handoff
Rssi Number - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- handoff
Sta NumberThresh - Threshold value for AP handoff.
- indoor
Outdoor StringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip
Fragment List<String>Preventings - 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. - led
Schedules 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.
- led
State 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
. - login
Passwd StringChange - 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 List<String> - Set the managed WTP, FortiAP, or AP's administrator password.
- max
Clients 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.
- object
Wirelesscontroller StringWtpprofile Id - an identifier for the resource with format {{name}}.
- platform Property Map
- Platform. The structure of
platform
block is documented below. - poe
Mode 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp String
- Snmp. Valid values:
disable
,enable
. - split
Tunneling StringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split
Tunneling StringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split
Tunneling List<Property Map>Acls - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog
Profile String - System log server configuration profile name.
- tun
Mtu NumberDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun
Mtu NumberUplink - 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 String - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan
Port StringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan
Port List<String>Auth Passwords - Set WAN port 802.1x supplicant password.
- wan
Port StringAuth Usrname - Set WAN port 802.1x supplicant user name.
- wan
Port StringMode - 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - Ap
Country 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Apcfg
Profile string - AP local configuration profile name.
- Ble
Profile string - Bluetooth Low Energy profile name.
- Bonjour
Profile string - Bonjour profile name.
- Comment string
- Comment.
- Console
Login string - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - Control
Message List<string>Offloads - 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 List<ObjectLists Wirelesscontroller Wtpprofile Deny Mac List> - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - Dtls
In stringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - Dtls
Policies List<string> - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - Dynamic
Sort stringSubtable - 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 stringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - Esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - Ext
Info stringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Handoff
Roaming string - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - Handoff
Rssi double - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- Handoff
Sta doubleThresh - Threshold value for AP handoff.
- Indoor
Outdoor stringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - Ip
Fragment List<string>Preventings - 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
Object
Wirelesscontroller Wtpprofile Lan - Lan. The structure of
lan
block is documented below. - Lbs
Object
Wirelesscontroller Wtpprofile Lbs - Lbs. The structure of
lbs
block is documented below. - Led
Schedules 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.
- Led
State 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
. - Login
Passwd stringChange - 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 List<string> - Set the managed WTP, FortiAP, or AP's administrator password.
- Max
Clients 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.
- Object
Wirelesscontroller stringWtpprofile Id - an identifier for the resource with format {{name}}.
- Platform
Object
Wirelesscontroller Wtpprofile Platform - Platform. The structure of
platform
block is documented below. - Poe
Mode string - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - Radio1
Object
Wirelesscontroller Wtpprofile Radio1 - Radio-1. The structure of
radio_1
block is documented below. - Radio2
Object
Wirelesscontroller Wtpprofile Radio2 - Radio-2. The structure of
radio_2
block is documented below. - Radio3
Object
Wirelesscontroller Wtpprofile Radio3 - Radio-3. The structure of
radio_3
block is documented below. - Radio4
Object
Wirelesscontroller Wtpprofile Radio4 - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Snmp string
- Snmp. Valid values:
disable
,enable
. - Split
Tunneling stringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - Split
Tunneling stringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - Split
Tunneling List<ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl> - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - Syslog
Profile string - System log server configuration profile name.
- Tun
Mtu doubleDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- Tun
Mtu doubleUplink - 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 string - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - Wan
Port stringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - Wan
Port List<string>Auth Passwords - Set WAN port 802.1x supplicant password.
- Wan
Port stringAuth Usrname - Set WAN port 802.1x supplicant user name.
- Wan
Port stringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
. - _
is stringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - Ap
Country 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Apcfg
Profile string - AP local configuration profile name.
- Ble
Profile string - Bluetooth Low Energy profile name.
- Bonjour
Profile string - Bonjour profile name.
- Comment string
- Comment.
- Console
Login string - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - Control
Message []stringOffloads - 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 []ObjectLists Wirelesscontroller Wtpprofile Deny Mac List Type Args - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - Dtls
In stringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - Dtls
Policies []string - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - Dynamic
Sort stringSubtable - 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 stringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - Esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle Type Args - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - Ext
Info stringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Handoff
Roaming string - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - Handoff
Rssi float64 - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- Handoff
Sta float64Thresh - Threshold value for AP handoff.
- Indoor
Outdoor stringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - Ip
Fragment []stringPreventings - 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
Object
Wirelesscontroller Wtpprofile Lan Type Args - Lan. The structure of
lan
block is documented below. - Lbs
Object
Wirelesscontroller Wtpprofile Lbs Type Args - Lbs. The structure of
lbs
block is documented below. - Led
Schedules []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.
- Led
State 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
. - Login
Passwd stringChange - 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 []string - Set the managed WTP, FortiAP, or AP's administrator password.
- Max
Clients 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.
- Object
Wirelesscontroller stringWtpprofile Id - an identifier for the resource with format {{name}}.
- Platform
Object
Wirelesscontroller Wtpprofile Platform Type Args - Platform. The structure of
platform
block is documented below. - Poe
Mode string - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - Radio1
Object
Wirelesscontroller Wtpprofile Radio1Type Args - Radio-1. The structure of
radio_1
block is documented below. - Radio2
Object
Wirelesscontroller Wtpprofile Radio2Type Args - Radio-2. The structure of
radio_2
block is documented below. - Radio3
Object
Wirelesscontroller Wtpprofile Radio3Type Args - Radio-3. The structure of
radio_3
block is documented below. - Radio4
Object
Wirelesscontroller Wtpprofile Radio4Type Args - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Snmp string
- Snmp. Valid values:
disable
,enable
. - Split
Tunneling stringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - Split
Tunneling stringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - Split
Tunneling []ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl Type Args - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - Syslog
Profile string - System log server configuration profile name.
- Tun
Mtu float64Downlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- Tun
Mtu float64Uplink - 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 string - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - Wan
Port stringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - Wan
Port stringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - Wan
Port []stringAuth Passwords - Set WAN port 802.1x supplicant password.
- Wan
Port stringAuth Usrname - Set WAN port 802.1x supplicant user name.
- Wan
Port stringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
. - _
is stringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
.
- _
is StringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - ap
Country 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - apcfg
Profile String - AP local configuration profile name.
- ble
Profile String - Bluetooth Low Energy profile name.
- bonjour
Profile String - Bonjour profile name.
- comment String
- Comment.
- console
Login String - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - control
Message List<String>Offloads - 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 List<ObjectLists Wirelesscontroller Wtpprofile Deny Mac List> - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls
In StringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - dtls
Policies List<String> - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - dynamic
Sort StringSubtable - 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 StringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext
Info StringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - handoff
Roaming String - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - handoff
Rssi Double - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- handoff
Sta DoubleThresh - Threshold value for AP handoff.
- indoor
Outdoor StringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip
Fragment List<String>Preventings - 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
Object
Wirelesscontroller Wtpprofile Lan - Lan. The structure of
lan
block is documented below. - lbs
Object
Wirelesscontroller Wtpprofile Lbs - Lbs. The structure of
lbs
block is documented below. - led
Schedules 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.
- led
State 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
. - login
Passwd StringChange - 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 List<String> - Set the managed WTP, FortiAP, or AP's administrator password.
- max
Clients 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.
- object
Wirelesscontroller StringWtpprofile Id - an identifier for the resource with format {{name}}.
- platform
Object
Wirelesscontroller Wtpprofile Platform - Platform. The structure of
platform
block is documented below. - poe
Mode String - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - radio1
Object
Wirelesscontroller Wtpprofile Radio1 - Radio-1. The structure of
radio_1
block is documented below. - radio2
Object
Wirelesscontroller Wtpprofile Radio2 - Radio-2. The structure of
radio_2
block is documented below. - radio3
Object
Wirelesscontroller Wtpprofile Radio3 - Radio-3. The structure of
radio_3
block is documented below. - radio4
Object
Wirelesscontroller Wtpprofile Radio4 - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp String
- Snmp. Valid values:
disable
,enable
. - split
Tunneling StringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split
Tunneling StringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split
Tunneling List<ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl> - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog
Profile String - System log server configuration profile name.
- tun
Mtu DoubleDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun
Mtu DoubleUplink - 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 String - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan
Port StringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan
Port List<String>Auth Passwords - Set WAN port 802.1x supplicant password.
- wan
Port StringAuth Usrname - Set WAN port 802.1x supplicant user name.
- wan
Port StringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
- _
is stringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom string
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - ap
Country 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
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - apcfg
Profile string - AP local configuration profile name.
- ble
Profile string - Bluetooth Low Energy profile name.
- bonjour
Profile string - Bonjour profile name.
- comment string
- Comment.
- console
Login string - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - control
Message string[]Offloads - 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 ObjectLists Wirelesscontroller Wtpprofile Deny Mac List[] - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls
In stringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - dtls
Policies string[] - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - dynamic
Sort stringSubtable - 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 stringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl
Ses ObjectDongle Wirelesscontroller Wtpprofile Esl Ses Dongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext
Info stringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - handoff
Roaming string - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - handoff
Rssi number - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- handoff
Sta numberThresh - Threshold value for AP handoff.
- indoor
Outdoor stringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip
Fragment string[]Preventings - 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
Object
Wirelesscontroller Wtpprofile Lan - Lan. The structure of
lan
block is documented below. - lbs
Object
Wirelesscontroller Wtpprofile Lbs - Lbs. The structure of
lbs
block is documented below. - led
Schedules 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.
- led
State 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
. - login
Passwd stringChange - 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 string[] - Set the managed WTP, FortiAP, or AP's administrator password.
- max
Clients 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.
- object
Wirelesscontroller stringWtpprofile Id - an identifier for the resource with format {{name}}.
- platform
Object
Wirelesscontroller Wtpprofile Platform - Platform. The structure of
platform
block is documented below. - poe
Mode string - Set the WTP, FortiAP, or AP's PoE mode. Valid values:
auto
,8023af
,8023at
,power-adapter
,full
,high
,low
. - radio1
Object
Wirelesscontroller Wtpprofile Radio1 - Radio-1. The structure of
radio_1
block is documented below. - radio2
Object
Wirelesscontroller Wtpprofile Radio2 - Radio-2. The structure of
radio_2
block is documented below. - radio3
Object
Wirelesscontroller Wtpprofile Radio3 - Radio-3. The structure of
radio_3
block is documented below. - radio4
Object
Wirelesscontroller Wtpprofile Radio4 - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp string
- Snmp. Valid values:
disable
,enable
. - split
Tunneling stringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split
Tunneling stringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split
Tunneling ObjectAcls Wirelesscontroller Wtpprofile Split Tunneling Acl[] - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog
Profile string - System log server configuration profile name.
- tun
Mtu numberDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun
Mtu numberUplink - 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 string - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - wan
Port stringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan
Port stringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan
Port stringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan
Port string[]Auth Passwords - Set WAN port 802.1x supplicant password.
- wan
Port stringAuth Usrname - Set WAN port 802.1x supplicant user name.
- wan
Port stringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
- _
is_ strfactory_ setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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_ Sequence[str]offloads - 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_ Sequence[Objectlists Wirelesscontroller Wtpprofile Deny Mac List Args] - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls_
in_ strkernel - 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_ strsubtable - 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_ strethernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl_
ses_ Objectdongle Wirelesscontroller Wtpprofile Esl Ses Dongle Args - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext_
info_ strenable - 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_ floatthresh - Threshold value for AP handoff.
- indoor_
outdoor_ strdeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip_
fragment_ Sequence[str]preventings - 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
Object
Wirelesscontroller Wtpprofile Lan Args - Lan. The structure of
lan
block is documented below. - lbs
Object
Wirelesscontroller Wtpprofile Lbs Args - 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_ strchange - 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_ strwtpprofile_ id - an identifier for the resource with format {{name}}.
- platform
Object
Wirelesscontroller Wtpprofile Platform Args - 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
Object
Wirelesscontroller Wtpprofile Radio1Args - Radio-1. The structure of
radio_1
block is documented below. - radio2
Object
Wirelesscontroller Wtpprofile Radio2Args - Radio-2. The structure of
radio_2
block is documented below. - radio3
Object
Wirelesscontroller Wtpprofile Radio3Args - Radio-3. The structure of
radio_3
block is documented below. - radio4
Object
Wirelesscontroller Wtpprofile Radio4Args - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp str
- Snmp. Valid values:
disable
,enable
. - split_
tunneling_ stracl_ local_ ap_ subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split_
tunneling_ stracl_ path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split_
tunneling_ Sequence[Objectacls Wirelesscontroller Wtpprofile Split Tunneling Acl Args] - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog_
profile str - System log server configuration profile name.
- tun_
mtu_ floatdownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun_
mtu_ floatuplink - 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_ strauth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan_
port_ strauth_ macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan_
port_ strauth_ methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan_
port_ Sequence[str]auth_ passwords - Set WAN port 802.1x supplicant password.
- wan_
port_ strauth_ usrname - Set WAN port 802.1x supplicant user name.
- wan_
port_ strmode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
- _
is StringFactory Setting - _Is_Factory_Setting. Valid values:
disable
,enable
,ext
. - adom String
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - ap
Country 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - apcfg
Profile String - AP local configuration profile name.
- ble
Profile String - Bluetooth Low Energy profile name.
- bonjour
Profile String - Bonjour profile name.
- comment String
- Comment.
- console
Login String - Enable/disable FAP console login access (default = enable). Valid values:
disable
,enable
. - control
Message List<String>Offloads - 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 List<Property Map>Lists - Deny-Mac-List. The structure of
deny_mac_list
block is documented below. - dtls
In StringKernel - Enable/disable data channel DTLS in kernel. Valid values:
disable
,enable
. - dtls
Policies List<String> - WTP data channel DTLS policy (default = clear-text). Valid values:
clear-text
,dtls-enabled
,ipsec-vpn
. - dynamic
Sort StringSubtable - 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 StringEthernet - Enable/disable use of energy efficient Ethernet on WTP. Valid values:
disable
,enable
. - esl
Ses Property MapDongle - Esl-Ses-Dongle. The structure of
esl_ses_dongle
block is documented below. - ext
Info StringEnable - Enable/disable station/VAP/radio extension information. Valid values:
disable
,enable
. - frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - handoff
Roaming String - Enable/disable client load balancing during roaming to avoid roaming delay (default = disable). Valid values:
disable
,enable
. - handoff
Rssi Number - Minimum received signal strength indicator (RSSI) value for handoff (20 - 30, default = 25).
- handoff
Sta NumberThresh - Threshold value for AP handoff.
- indoor
Outdoor StringDeployment - Set to allow indoor/outdoor-only channels under regulatory rules (default = platform-determined). Valid values:
platform-determined
,outdoor
,indoor
. - ip
Fragment List<String>Preventings - 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. - led
Schedules 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.
- led
State 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
. - login
Passwd StringChange - 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 List<String> - Set the managed WTP, FortiAP, or AP's administrator password.
- max
Clients 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.
- object
Wirelesscontroller StringWtpprofile Id - an identifier for the resource with format {{name}}.
- platform Property Map
- Platform. The structure of
platform
block is documented below. - poe
Mode 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - snmp String
- Snmp. Valid values:
disable
,enable
. - split
Tunneling StringAcl Local Ap Subnet - Enable/disable automatically adding local subnetwork of FortiAP to split-tunneling ACL (default = disable). Valid values:
disable
,enable
. - split
Tunneling StringAcl Path - Split tunneling ACL path is local/tunnel. Valid values:
tunnel
,local
. - split
Tunneling List<Property Map>Acls - Split-Tunneling-Acl. The structure of
split_tunneling_acl
block is documented below. - syslog
Profile String - System log server configuration profile name.
- tun
Mtu NumberDownlink - The MTU of downlink CAPWAP tunnel (576 - 1500 bytes or 0; 0 means the local MTU of FortiAP; default = 0).
- tun
Mtu NumberUplink - 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 String - Enable/disable UNII-4 5Ghz band channels (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth - Set WAN port authentication mode (default = none). Valid values:
none
,802.1x
. - wan
Port StringAuth Macsec - Enable/disable WAN port 802.1x supplicant MACsec policy (default = disable). Valid values:
disable
,enable
. - wan
Port StringAuth Methods - WAN port 802.1x supplicant EAP methods (default = all). Valid values:
all
,EAP-FAST
,EAP-TLS
,EAP-PEAP
. - wan
Port List<String>Auth Passwords - Set WAN port 802.1x supplicant password.
- wan
Port StringAuth Usrname - Set WAN port 802.1x supplicant user name.
- wan
Port StringMode - Enable/disable using a WAN port as a LAN port. Valid values:
wan-lan
,wan-only
.
Supporting Types
ObjectWirelesscontrollerWtpprofileDenyMacList, ObjectWirelesscontrollerWtpprofileDenyMacListArgs
ObjectWirelesscontrollerWtpprofileEslSesDongle, ObjectWirelesscontrollerWtpprofileEslSesDongleArgs
- Apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - Apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- Apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- Apc
Port double - Port of ESL SES-imagotag Access Point Controller (APC).
- Coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - Compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - Esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - Output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - Scd
Enable string - Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values:
disable
,enable
. - Tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - Tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- Apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - Apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- Apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- Apc
Port float64 - Port of ESL SES-imagotag Access Point Controller (APC).
- Coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - Compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - Esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - Output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - Scd
Enable string - Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values:
disable
,enable
. - Tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - Tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- apc
Addr StringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn String - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip String - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port Double - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level String - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level String - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel String - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - output
Power String - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable String - Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values:
disable
,enable
. - tls
Cert StringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn StringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- apc
Addr stringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn string - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip string - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port number - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level string - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level string - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel string - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - output
Power string - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable string - Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values:
disable
,enable
. - tls
Cert stringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn stringVerification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- apc_
addr_ strtype - 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_ strverification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls_
fqdn_ strverification - Enable/disable TLS Certificate verification. (default = disable). Valid values:
disable
,enable
.
- apc
Addr StringType - ESL SES-imagotag APC address type (default = fqdn). Valid values:
fqdn
,ip
. - apc
Fqdn String - FQDN of ESL SES-imagotag Access Point Controller (APC).
- apc
Ip String - IP address of ESL SES-imagotag Access Point Controller (APC).
- apc
Port Number - Port of ESL SES-imagotag Access Point Controller (APC).
- coex
Level String - ESL SES-imagotag dongle coexistence level (default = none). Valid values:
none
. - compliance
Level String - Compliance levels for the ESL solution integration (default = compliance-level-2). Valid values:
compliance-level-2
. - esl
Channel String - ESL SES-imagotag dongle channel (default = 127). Valid values:
0
,1
,2
,3
,4
,5
,6
,7
,8
,9
,10
,127
,-1
. - output
Power String - ESL SES-imagotag dongle output power (default = A). Valid values:
a
,b
,c
,d
,e
,f
,g
,h
. - scd
Enable String - Enable/disable ESL SES-imagotag Serial Communication Daemon (SCD) (default = disable). Valid values:
disable
,enable
. - tls
Cert StringVerification - Enable/disable TLS Certificate verification. (default = enable). Valid values:
disable
,enable
. - tls
Fqdn StringVerification - 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.
- Port
Esl stringMode - ESL port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - Port
Esl stringSsid - Bridge ESL port to SSID.
- Port
Mode string - LAN port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - Port
Ssid 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.
- Port
Esl stringMode - ESL port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - Port
Esl stringSsid - Bridge ESL port to SSID.
- Port
Mode string - LAN port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - Port
Ssid 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.
- port
Esl StringMode - ESL port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port
Esl StringSsid - Bridge ESL port to SSID.
- port
Mode String - LAN port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port
Ssid 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.
- port
Esl stringMode - ESL port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port
Esl stringSsid - Bridge ESL port to SSID.
- port
Mode string - LAN port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port
Ssid 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_ strmode - ESL port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port_
esl_ strssid - 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.
- port
Esl StringMode - ESL port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port
Esl StringSsid - Bridge ESL port to SSID.
- port
Mode String - LAN port mode. Valid values:
offline
,bridge-to-wan
,bridge-to-ssid
,nat-to-wan
. - port
Ssid 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
. - Aeroscout
Ap stringMac - Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values:
bssid
,board-mac
. - Aeroscout
Mmu stringReport - Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values:
disable
,enable
. - Aeroscout
Mu string - Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values:
disable
,enable
. - Aeroscout
Mu doubleFactor - AeroScout MU mode dilution factor (default = 20).
- Aeroscout
Mu doubleTimeout - AeroScout MU mode timeout (0 - 65535 sec, default = 5).
- Aeroscout
Server stringIp - IP address of AeroScout server.
- Aeroscout
Server doublePort - AeroScout server UDP listening port.
- Ekahau
Blink stringMode - Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values:
disable
,enable
. - Ekahau
Tag string - WiFi frame MAC address or WiFi Tag.
- Erc
Server stringIp - IP address of Ekahau RTLS Controller (ERC).
- Erc
Server doublePort - 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
. - Fortipresence
Ble string - Enable/disable FortiPresence finding and reporting BLE devices. Valid values:
disable
,enable
. - Fortipresence
Frequency double - FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
- Fortipresence
Port double - FortiPresence server UDP listening port (default = 3000).
- Fortipresence
Project string - FortiPresence project name (max. 16 characters, default = fortipresence).
- Fortipresence
Rogue string - Enable/disable FortiPresence finding and reporting rogue APs. Valid values:
disable
,enable
. - Fortipresence
Secrets List<string> - FortiPresence secret password (max. 16 characters).
- Fortipresence
Server string - FortiPresence server IP address.
- Fortipresence
Server stringAddr Type - FortiPresence server address type (default = ipv4). Valid values:
fqdn
,ipv4
. - Fortipresence
Server stringFqdn - FQDN of FortiPresence server.
- Fortipresence
Unassoc 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
. - Polestar
Accumulation doubleInterval - Time that measurements should be accumulated in seconds (default = 2).
- Polestar
Asset stringAddrgrp List - Tags and asset addrgrp list to be reported.
- Polestar
Asset stringUuid List1 - Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Asset stringUuid List2 - Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Asset stringUuid List3 - Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Asset stringUuid List4 - Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Protocol string - Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values:
WSS
. - Polestar
Reporting doubleInterval - Time between reporting accumulated measurements in seconds (default = 2).
- Polestar
Server stringFqdn - FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
- Polestar
Server stringPath - Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
- Polestar
Server doublePort - Port of PoleStar Nao Track Server (default = 443).
- Polestar
Server stringToken - Access Token of PoleStar Nao Track Server.
- Station
Locate 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
. - Aeroscout
Ap stringMac - Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values:
bssid
,board-mac
. - Aeroscout
Mmu stringReport - Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values:
disable
,enable
. - Aeroscout
Mu string - Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values:
disable
,enable
. - Aeroscout
Mu float64Factor - AeroScout MU mode dilution factor (default = 20).
- Aeroscout
Mu float64Timeout - AeroScout MU mode timeout (0 - 65535 sec, default = 5).
- Aeroscout
Server stringIp - IP address of AeroScout server.
- Aeroscout
Server float64Port - AeroScout server UDP listening port.
- Ekahau
Blink stringMode - Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values:
disable
,enable
. - Ekahau
Tag string - WiFi frame MAC address or WiFi Tag.
- Erc
Server stringIp - IP address of Ekahau RTLS Controller (ERC).
- Erc
Server float64Port - 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
. - Fortipresence
Ble string - Enable/disable FortiPresence finding and reporting BLE devices. Valid values:
disable
,enable
. - Fortipresence
Frequency float64 - FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
- Fortipresence
Port float64 - FortiPresence server UDP listening port (default = 3000).
- Fortipresence
Project string - FortiPresence project name (max. 16 characters, default = fortipresence).
- Fortipresence
Rogue string - Enable/disable FortiPresence finding and reporting rogue APs. Valid values:
disable
,enable
. - Fortipresence
Secrets []string - FortiPresence secret password (max. 16 characters).
- Fortipresence
Server string - FortiPresence server IP address.
- Fortipresence
Server stringAddr Type - FortiPresence server address type (default = ipv4). Valid values:
fqdn
,ipv4
. - Fortipresence
Server stringFqdn - FQDN of FortiPresence server.
- Fortipresence
Unassoc 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
. - Polestar
Accumulation float64Interval - Time that measurements should be accumulated in seconds (default = 2).
- Polestar
Asset stringAddrgrp List - Tags and asset addrgrp list to be reported.
- Polestar
Asset stringUuid List1 - Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Asset stringUuid List2 - Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Asset stringUuid List3 - Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Asset stringUuid List4 - Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- Polestar
Protocol string - Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values:
WSS
. - Polestar
Reporting float64Interval - Time between reporting accumulated measurements in seconds (default = 2).
- Polestar
Server stringFqdn - FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
- Polestar
Server stringPath - Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
- Polestar
Server float64Port - Port of PoleStar Nao Track Server (default = 443).
- Polestar
Server stringToken - Access Token of PoleStar Nao Track Server.
- Station
Locate 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
. - aeroscout
Ap StringMac - Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values:
bssid
,board-mac
. - aeroscout
Mmu StringReport - Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values:
disable
,enable
. - aeroscout
Mu String - Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values:
disable
,enable
. - aeroscout
Mu DoubleFactor - AeroScout MU mode dilution factor (default = 20).
- aeroscout
Mu DoubleTimeout - AeroScout MU mode timeout (0 - 65535 sec, default = 5).
- aeroscout
Server StringIp - IP address of AeroScout server.
- aeroscout
Server DoublePort - AeroScout server UDP listening port.
- ekahau
Blink StringMode - Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values:
disable
,enable
. - ekahau
Tag String - WiFi frame MAC address or WiFi Tag.
- erc
Server StringIp - IP address of Ekahau RTLS Controller (ERC).
- erc
Server DoublePort - 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
. - fortipresence
Ble String - Enable/disable FortiPresence finding and reporting BLE devices. Valid values:
disable
,enable
. - fortipresence
Frequency Double - FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
- fortipresence
Port Double - FortiPresence server UDP listening port (default = 3000).
- fortipresence
Project String - FortiPresence project name (max. 16 characters, default = fortipresence).
- fortipresence
Rogue String - Enable/disable FortiPresence finding and reporting rogue APs. Valid values:
disable
,enable
. - fortipresence
Secrets List<String> - FortiPresence secret password (max. 16 characters).
- fortipresence
Server String - FortiPresence server IP address.
- fortipresence
Server StringAddr Type - FortiPresence server address type (default = ipv4). Valid values:
fqdn
,ipv4
. - fortipresence
Server StringFqdn - FQDN of FortiPresence server.
- fortipresence
Unassoc 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
. - polestar
Accumulation DoubleInterval - Time that measurements should be accumulated in seconds (default = 2).
- polestar
Asset StringAddrgrp List - Tags and asset addrgrp list to be reported.
- polestar
Asset StringUuid List1 - Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset StringUuid List2 - Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset StringUuid List3 - Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset StringUuid List4 - Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Protocol String - Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values:
WSS
. - polestar
Reporting DoubleInterval - Time between reporting accumulated measurements in seconds (default = 2).
- polestar
Server StringFqdn - FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
- polestar
Server StringPath - Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
- polestar
Server DoublePort - Port of PoleStar Nao Track Server (default = 443).
- polestar
Server StringToken - Access Token of PoleStar Nao Track Server.
- station
Locate 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
. - aeroscout
Ap stringMac - Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values:
bssid
,board-mac
. - aeroscout
Mmu stringReport - Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values:
disable
,enable
. - aeroscout
Mu string - Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values:
disable
,enable
. - aeroscout
Mu numberFactor - AeroScout MU mode dilution factor (default = 20).
- aeroscout
Mu numberTimeout - AeroScout MU mode timeout (0 - 65535 sec, default = 5).
- aeroscout
Server stringIp - IP address of AeroScout server.
- aeroscout
Server numberPort - AeroScout server UDP listening port.
- ekahau
Blink stringMode - Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values:
disable
,enable
. - ekahau
Tag string - WiFi frame MAC address or WiFi Tag.
- erc
Server stringIp - IP address of Ekahau RTLS Controller (ERC).
- erc
Server numberPort - 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
. - fortipresence
Ble string - Enable/disable FortiPresence finding and reporting BLE devices. Valid values:
disable
,enable
. - fortipresence
Frequency number - FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
- fortipresence
Port number - FortiPresence server UDP listening port (default = 3000).
- fortipresence
Project string - FortiPresence project name (max. 16 characters, default = fortipresence).
- fortipresence
Rogue string - Enable/disable FortiPresence finding and reporting rogue APs. Valid values:
disable
,enable
. - fortipresence
Secrets string[] - FortiPresence secret password (max. 16 characters).
- fortipresence
Server string - FortiPresence server IP address.
- fortipresence
Server stringAddr Type - FortiPresence server address type (default = ipv4). Valid values:
fqdn
,ipv4
. - fortipresence
Server stringFqdn - FQDN of FortiPresence server.
- fortipresence
Unassoc 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
. - polestar
Accumulation numberInterval - Time that measurements should be accumulated in seconds (default = 2).
- polestar
Asset stringAddrgrp List - Tags and asset addrgrp list to be reported.
- polestar
Asset stringUuid List1 - Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset stringUuid List2 - Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset stringUuid List3 - Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset stringUuid List4 - Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Protocol string - Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values:
WSS
. - polestar
Reporting numberInterval - Time between reporting accumulated measurements in seconds (default = 2).
- polestar
Server stringFqdn - FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
- polestar
Server stringPath - Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
- polestar
Server numberPort - Port of PoleStar Nao Track Server (default = 443).
- polestar
Server stringToken - Access Token of PoleStar Nao Track Server.
- station
Locate 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_ strmac - Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values:
bssid
,board-mac
. - aeroscout_
mmu_ strreport - 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_ floatfactor - AeroScout MU mode dilution factor (default = 20).
- aeroscout_
mu_ floattimeout - AeroScout MU mode timeout (0 - 65535 sec, default = 5).
- aeroscout_
server_ strip - IP address of AeroScout server.
- aeroscout_
server_ floatport - AeroScout server UDP listening port.
- ekahau_
blink_ strmode - 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_ strip - IP address of Ekahau RTLS Controller (ERC).
- erc_
server_ floatport - 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_ straddr_ type - FortiPresence server address type (default = ipv4). Valid values:
fqdn
,ipv4
. - fortipresence_
server_ strfqdn - 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_ floatinterval - Time that measurements should be accumulated in seconds (default = 2).
- polestar_
asset_ straddrgrp_ list - Tags and asset addrgrp list to be reported.
- polestar_
asset_ struuid_ list1 - Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar_
asset_ struuid_ list2 - Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar_
asset_ struuid_ list3 - Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar_
asset_ struuid_ list4 - 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_ floatinterval - Time between reporting accumulated measurements in seconds (default = 2).
- polestar_
server_ strfqdn - FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
- polestar_
server_ strpath - Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
- polestar_
server_ floatport - Port of PoleStar Nao Track Server (default = 443).
- polestar_
server_ strtoken - 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
. - aeroscout
Ap StringMac - Use BSSID or board MAC address as AP MAC address in AeroScout AP messages (default = bssid). Valid values:
bssid
,board-mac
. - aeroscout
Mmu StringReport - Enable/disable compounded AeroScout tag and MU report (default = enable). Valid values:
disable
,enable
. - aeroscout
Mu String - Enable/disable AeroScout Mobile Unit (MU) support (default = disable). Valid values:
disable
,enable
. - aeroscout
Mu NumberFactor - AeroScout MU mode dilution factor (default = 20).
- aeroscout
Mu NumberTimeout - AeroScout MU mode timeout (0 - 65535 sec, default = 5).
- aeroscout
Server StringIp - IP address of AeroScout server.
- aeroscout
Server NumberPort - AeroScout server UDP listening port.
- ekahau
Blink StringMode - Enable/disable Ekahau blink mode (now known as AiRISTA Flow) to track and locate WiFi tags (default = disable). Valid values:
disable
,enable
. - ekahau
Tag String - WiFi frame MAC address or WiFi Tag.
- erc
Server StringIp - IP address of Ekahau RTLS Controller (ERC).
- erc
Server NumberPort - 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
. - fortipresence
Ble String - Enable/disable FortiPresence finding and reporting BLE devices. Valid values:
disable
,enable
. - fortipresence
Frequency Number - FortiPresence report transmit frequency (5 - 65535 sec, default = 30).
- fortipresence
Port Number - FortiPresence server UDP listening port (default = 3000).
- fortipresence
Project String - FortiPresence project name (max. 16 characters, default = fortipresence).
- fortipresence
Rogue String - Enable/disable FortiPresence finding and reporting rogue APs. Valid values:
disable
,enable
. - fortipresence
Secrets List<String> - FortiPresence secret password (max. 16 characters).
- fortipresence
Server String - FortiPresence server IP address.
- fortipresence
Server StringAddr Type - FortiPresence server address type (default = ipv4). Valid values:
fqdn
,ipv4
. - fortipresence
Server StringFqdn - FQDN of FortiPresence server.
- fortipresence
Unassoc 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
. - polestar
Accumulation NumberInterval - Time that measurements should be accumulated in seconds (default = 2).
- polestar
Asset StringAddrgrp List - Tags and asset addrgrp list to be reported.
- polestar
Asset StringUuid List1 - Tags and asset UUID list 1 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset StringUuid List2 - Tags and asset UUID list 2 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset StringUuid List3 - Tags and asset UUID list 3 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Asset StringUuid List4 - Tags and asset UUID list 4 to be reported (string in the format of 'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX').
- polestar
Protocol String - Select the protocol to report Measurements, Advertising Data, or Location Data to NAO Cloud. (default = WSS). Valid values:
WSS
. - polestar
Reporting NumberInterval - Time between reporting accumulated measurements in seconds (default = 2).
- polestar
Server StringFqdn - FQDN of PoleStar Nao Track Server (default = ws.nao-cloud.com).
- polestar
Server StringPath - Path of PoleStar Nao Track Server (default = /v1/token/<access_token>/pst-v2).
- polestar
Server NumberPort - Port of PoleStar Nao Track Server (default = 443).
- polestar
Server StringToken - Access Token of PoleStar Nao Track Server.
- station
Locate 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:- _
local stringPlatform Str - _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 stringPlatform Str - _Local_Platform_Str.
- _
local StringPlatform Str - _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 stringPlatform Str - _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_ strplatform_ 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:
- _
local StringPlatform Str - _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
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer doubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer doubleChan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power doubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power doubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval double - 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 double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server doublePort - Iperf service port number.
- Max
Clients double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value double - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes 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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id double - Radio-Id.
- Rts
Threshold double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp List<string>Passwords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords List<string> - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private List<string>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report doubleIntv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes 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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer float64Bufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer float64Chan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power float64High - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power float64Low - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval float64 - 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 float64 - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 float64 - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold float64 - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server float64Port - Iperf service port number.
- Max
Clients float64 - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance float64 - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level float64 - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value float64 - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes []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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id float64 - Radio-Id.
- Rts
Threshold float64 - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp []stringPasswords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords []string - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private []stringKey Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report float64Intv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes []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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer DoubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer DoubleChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power DoubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power DoubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Double - 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 Double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server DoublePort - Iperf service port number.
- max
Clients Double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Double - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Double - Radio-Id.
- rts
Threshold Double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report DoubleIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer stringAddr - MAC address to monitor.
- ap
Sniffer numberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer numberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power numberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power numberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringTarget - 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
. - band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission stringControl - 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 number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval number - 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 number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission stringControl - 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 number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding string - 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 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
. - drma
Sensitivity 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.
- frag
Threshold number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server numberPort - Iperf service port number.
- max
Clients number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id number - Radio-Id.
- rts
Threshold number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid string - BSSID for WiFi network.
- sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp stringMatch String - Identification string from the captive portal login form.
- sam
Cwp string[]Passwords - Password for captive portal authentication.
- sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- sam
Cwp stringTest Url - Website the client is trying to access.
- sam
Cwp stringUsername - Username for captive portal authentication.
- sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords string[] - Passphrase for WiFi network connection.
- sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private string[]Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report numberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server string - SAM test server IP address or domain name.
- sam
Server stringFqdn - SAM test server domain name.
- sam
Server stringIp - SAM test server IP address.
- sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid string - SSID for WiFi network.
- sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username string - Username for WiFi network connection.
- short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait stringDfs - 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_ straddr - MAC address to monitor.
- ap_
sniffer_ floatbufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap_
sniffer_ floatchan - Channel on which to operate the sniffer (default = 6).
- ap_
sniffer_ strctl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strdata - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ probe - 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_ floathigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strlevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto_
power_ floatlow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strtarget - 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_ strcontrol - 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_ strmode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call_
admission_ strcontrol - 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_ floatport - 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_ strgain - 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_ strcertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam_
captive_ strportal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam_
client_ strcertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam_
cwp_ strfailure_ string - Failure identification on the page after an incorrect login.
- sam_
cwp_ strmatch_ string - Identification string from the captive portal login form.
- sam_
cwp_ Sequence[str]passwords - Password for captive portal authentication.
- sam_
cwp_ strsuccess_ string - Success identification on the page after a successful login.
- sam_
cwp_ strtest_ url - Website the client is trying to access.
- sam_
cwp_ strusername - Username for captive portal authentication.
- sam_
eap_ strmethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam_
passwords Sequence[str] - Passphrase for WiFi network connection.
- sam_
private_ strkey - Private key for WPA2/WPA3-ENTERPRISE.
- sam_
private_ Sequence[str]key_ passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam_
report_ floatintv - SAM report interval (sec), 0 for a one-time report.
- sam_
security_ strtype - 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_ strfqdn - SAM test server domain name.
- sam_
server_ strip - SAM test server IP address.
- sam_
server_ strtype - 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_ strinterval - 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_ strdfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer NumberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer NumberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power NumberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power NumberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Number - 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 Number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server NumberPort - Iperf service port number.
- max
Clients Number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Number - Radio-Id.
- rts
Threshold Number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report NumberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
ObjectWirelesscontrollerWtpprofileRadio2, ObjectWirelesscontrollerWtpprofileRadio2Args
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer doubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer doubleChan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power doubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power doubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval double - 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 double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server doublePort - Iperf service port number.
- Max
Clients double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value double - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes 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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id double - Radio-Id.
- Rts
Threshold double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp List<string>Passwords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords List<string> - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private List<string>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report doubleIntv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes 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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer float64Bufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer float64Chan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power float64High - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power float64Low - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval float64 - 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 float64 - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 float64 - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold float64 - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server float64Port - Iperf service port number.
- Max
Clients float64 - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance float64 - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level float64 - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value float64 - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes []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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id float64 - Radio-Id.
- Rts
Threshold float64 - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp []stringPasswords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords []string - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private []stringKey Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report float64Intv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes []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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer DoubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer DoubleChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power DoubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power DoubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Double - 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 Double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server DoublePort - Iperf service port number.
- max
Clients Double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Double - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Double - Radio-Id.
- rts
Threshold Double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report DoubleIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer stringAddr - MAC address to monitor.
- ap
Sniffer numberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer numberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power numberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power numberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringTarget - 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
. - band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission stringControl - 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 number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval number - 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 number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission stringControl - 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 number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding string - 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 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
. - drma
Sensitivity 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.
- frag
Threshold number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server numberPort - Iperf service port number.
- max
Clients number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id number - Radio-Id.
- rts
Threshold number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid string - BSSID for WiFi network.
- sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp stringMatch String - Identification string from the captive portal login form.
- sam
Cwp string[]Passwords - Password for captive portal authentication.
- sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- sam
Cwp stringTest Url - Website the client is trying to access.
- sam
Cwp stringUsername - Username for captive portal authentication.
- sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords string[] - Passphrase for WiFi network connection.
- sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private string[]Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report numberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server string - SAM test server IP address or domain name.
- sam
Server stringFqdn - SAM test server domain name.
- sam
Server stringIp - SAM test server IP address.
- sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid string - SSID for WiFi network.
- sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username string - Username for WiFi network connection.
- short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait stringDfs - 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_ straddr - MAC address to monitor.
- ap_
sniffer_ floatbufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap_
sniffer_ floatchan - Channel on which to operate the sniffer (default = 6).
- ap_
sniffer_ strctl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strdata - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ probe - 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_ floathigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strlevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto_
power_ floatlow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strtarget - 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_ strcontrol - 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_ strmode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call_
admission_ strcontrol - 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_ floatport - 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_ strgain - 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_ strcertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam_
captive_ strportal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam_
client_ strcertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam_
cwp_ strfailure_ string - Failure identification on the page after an incorrect login.
- sam_
cwp_ strmatch_ string - Identification string from the captive portal login form.
- sam_
cwp_ Sequence[str]passwords - Password for captive portal authentication.
- sam_
cwp_ strsuccess_ string - Success identification on the page after a successful login.
- sam_
cwp_ strtest_ url - Website the client is trying to access.
- sam_
cwp_ strusername - Username for captive portal authentication.
- sam_
eap_ strmethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam_
passwords Sequence[str] - Passphrase for WiFi network connection.
- sam_
private_ strkey - Private key for WPA2/WPA3-ENTERPRISE.
- sam_
private_ Sequence[str]key_ passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam_
report_ floatintv - SAM report interval (sec), 0 for a one-time report.
- sam_
security_ strtype - 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_ strfqdn - SAM test server domain name.
- sam_
server_ strip - SAM test server IP address.
- sam_
server_ strtype - 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_ strinterval - 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_ strdfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer NumberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer NumberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power NumberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power NumberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Number - 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 Number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server NumberPort - Iperf service port number.
- max
Clients Number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Number - Radio-Id.
- rts
Threshold Number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report NumberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
ObjectWirelesscontrollerWtpprofileRadio3, ObjectWirelesscontrollerWtpprofileRadio3Args
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer doubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer doubleChan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power doubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power doubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval double - 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 double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server doublePort - Iperf service port number.
- Max
Clients double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value double - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes 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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id double - Radio-Id.
- Rts
Threshold double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp List<string>Passwords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords List<string> - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private List<string>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report doubleIntv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes 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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer float64Bufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer float64Chan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power float64High - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power float64Low - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval float64 - 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 float64 - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 float64 - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold float64 - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server float64Port - Iperf service port number.
- Max
Clients float64 - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance float64 - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level float64 - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value float64 - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes []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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id float64 - Radio-Id.
- Rts
Threshold float64 - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp []stringPasswords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords []string - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private []stringKey Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report float64Intv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes []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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer DoubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer DoubleChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power DoubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power DoubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Double - 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 Double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server DoublePort - Iperf service port number.
- max
Clients Double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Double - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Double - Radio-Id.
- rts
Threshold Double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report DoubleIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer stringAddr - MAC address to monitor.
- ap
Sniffer numberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer numberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power numberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power numberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringTarget - 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
. - band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission stringControl - 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 number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval number - 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 number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission stringControl - 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 number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding string - 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 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
. - drma
Sensitivity 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.
- frag
Threshold number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server numberPort - Iperf service port number.
- max
Clients number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id number - Radio-Id.
- rts
Threshold number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid string - BSSID for WiFi network.
- sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp stringMatch String - Identification string from the captive portal login form.
- sam
Cwp string[]Passwords - Password for captive portal authentication.
- sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- sam
Cwp stringTest Url - Website the client is trying to access.
- sam
Cwp stringUsername - Username for captive portal authentication.
- sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords string[] - Passphrase for WiFi network connection.
- sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private string[]Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report numberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server string - SAM test server IP address or domain name.
- sam
Server stringFqdn - SAM test server domain name.
- sam
Server stringIp - SAM test server IP address.
- sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid string - SSID for WiFi network.
- sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username string - Username for WiFi network connection.
- short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait stringDfs - 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_ straddr - MAC address to monitor.
- ap_
sniffer_ floatbufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap_
sniffer_ floatchan - Channel on which to operate the sniffer (default = 6).
- ap_
sniffer_ strctl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strdata - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ probe - 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_ floathigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strlevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto_
power_ floatlow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strtarget - 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_ strcontrol - 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_ strmode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call_
admission_ strcontrol - 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_ floatport - 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_ strgain - 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_ strcertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam_
captive_ strportal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam_
client_ strcertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam_
cwp_ strfailure_ string - Failure identification on the page after an incorrect login.
- sam_
cwp_ strmatch_ string - Identification string from the captive portal login form.
- sam_
cwp_ Sequence[str]passwords - Password for captive portal authentication.
- sam_
cwp_ strsuccess_ string - Success identification on the page after a successful login.
- sam_
cwp_ strtest_ url - Website the client is trying to access.
- sam_
cwp_ strusername - Username for captive portal authentication.
- sam_
eap_ strmethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam_
passwords Sequence[str] - Passphrase for WiFi network connection.
- sam_
private_ strkey - Private key for WPA2/WPA3-ENTERPRISE.
- sam_
private_ Sequence[str]key_ passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam_
report_ floatintv - SAM report interval (sec), 0 for a one-time report.
- sam_
security_ strtype - 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_ strfqdn - SAM test server domain name.
- sam_
server_ strip - SAM test server IP address.
- sam_
server_ strtype - 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_ strinterval - 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_ strdfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer NumberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer NumberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power NumberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power NumberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Number - 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 Number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server NumberPort - Iperf service port number.
- max
Clients Number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Number - Radio-Id.
- rts
Threshold Number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report NumberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
ObjectWirelesscontrollerWtpprofileRadio4, ObjectWirelesscontrollerWtpprofileRadio4Args
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer doubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer doubleChan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power doubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power doubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval double - 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 double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server doublePort - Iperf service port number.
- Max
Clients double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value double - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes 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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id double - Radio-Id.
- Rts
Threshold double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp List<string>Passwords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords List<string> - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private List<string>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report doubleIntv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes 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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- Airtime
Fairness 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
. - Ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - Ap
Sniffer stringAddr - MAC address to monitor.
- Ap
Sniffer float64Bufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- Ap
Sniffer float64Chan - Channel on which to operate the sniffer (default = 6).
- Ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - Ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - Arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- Auto
Power float64High - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - Auto
Power float64Low - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- Auto
Power stringTarget - 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
. - Band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - Bandwidth
Admission stringControl - 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 float64 - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- Beacon
Interval float64 - 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 float64 - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- Bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - Call
Admission stringControl - 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 float64 - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- Channel
Bonding string - 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 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
. - Drma
Sensitivity 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.
- Frag
Threshold float64 - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- Frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - Iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - Iperf
Server float64Port - Iperf service port number.
- Max
Clients float64 - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- Max
Distance float64 - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- Mimo
Mode 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
. - Optional
Antenna 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
. - Optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- Power
Level float64 - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- Power
Mode 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
. - Power
Value float64 - Radio EIRP power in dBm (1 - 33, default = 27).
- Powersave
Optimizes []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
. - Protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - Radio
Id float64 - Radio-Id.
- Rts
Threshold float64 - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- Sam
Bssid string - BSSID for WiFi network.
- Sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - Sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- Sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- Sam
Cwp stringMatch String - Identification string from the captive portal login form.
- Sam
Cwp []stringPasswords - Password for captive portal authentication.
- Sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- Sam
Cwp stringTest Url - Website the client is trying to access.
- Sam
Cwp stringUsername - Username for captive portal authentication.
- Sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - Sam
Passwords []string - Passphrase for WiFi network connection.
- Sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- Sam
Private []stringKey Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- Sam
Report float64Intv - SAM report interval (sec), 0 for a one-time report.
- Sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - Sam
Server string - SAM test server IP address or domain name.
- Sam
Server stringFqdn - SAM test server domain name.
- Sam
Server stringIp - SAM test server IP address.
- Sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - Sam
Ssid string - SSID for WiFi network.
- Sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - Sam
Username string - Username for WiFi network connection.
- Short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - Transmit
Optimizes []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
- Vap
All 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).
- Wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- Zero
Wait stringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer DoubleBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer DoubleChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power DoubleHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power DoubleLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Double - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Double - 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 Double - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Double - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Double - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server DoublePort - Iperf service port number.
- max
Clients Double - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Double - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Double - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Double - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Double - Radio-Id.
- rts
Threshold Double - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report DoubleIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff string - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer stringAddr - MAC address to monitor.
- ap
Sniffer numberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer numberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer stringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer stringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile string - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power numberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power numberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power stringTarget - 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
. - band5g
Type string - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission stringControl - 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 number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval number - 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 number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color stringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission stringControl - 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 number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding string - 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 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
. - drma
Sensitivity 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.
- frag
Threshold number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff string - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol string - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server numberPort - Iperf service port number.
- max
Clients number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna stringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode string - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id number - Radio-Id.
- rts
Threshold number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid string - BSSID for WiFi network.
- sam
Ca stringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive stringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client stringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp stringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp stringMatch String - Identification string from the captive portal login form.
- sam
Cwp string[]Passwords - Password for captive portal authentication.
- sam
Cwp stringSuccess String - Success identification on the page after a successful login.
- sam
Cwp stringTest Url - Website the client is trying to access.
- sam
Cwp stringUsername - Username for captive portal authentication.
- sam
Eap stringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords string[] - Passphrase for WiFi network connection.
- sam
Private stringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private string[]Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report numberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security stringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server string - SAM test server IP address or domain name.
- sam
Server stringFqdn - SAM test server domain name.
- sam
Server stringIp - SAM test server IP address.
- sam
Server stringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid string - SSID for WiFi network.
- sam
Test string - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username string - Username for WiFi network connection.
- short
Guard stringInterval - 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 string - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile string - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait stringDfs - 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_ straddr - MAC address to monitor.
- ap_
sniffer_ floatbufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap_
sniffer_ floatchan - Channel on which to operate the sniffer (default = 6).
- ap_
sniffer_ strctl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strdata - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap_
sniffer_ strmgmt_ probe - 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_ floathigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strlevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto_
power_ floatlow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto_
power_ strtarget - 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_ strcontrol - 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_ strmode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call_
admission_ strcontrol - 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_ floatport - 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_ strgain - 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_ strcertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam_
captive_ strportal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam_
client_ strcertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam_
cwp_ strfailure_ string - Failure identification on the page after an incorrect login.
- sam_
cwp_ strmatch_ string - Identification string from the captive portal login form.
- sam_
cwp_ Sequence[str]passwords - Password for captive portal authentication.
- sam_
cwp_ strsuccess_ string - Success identification on the page after a successful login.
- sam_
cwp_ strtest_ url - Website the client is trying to access.
- sam_
cwp_ strusername - Username for captive portal authentication.
- sam_
eap_ strmethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam_
passwords Sequence[str] - Passphrase for WiFi network connection.
- sam_
private_ strkey - Private key for WPA2/WPA3-ENTERPRISE.
- sam_
private_ Sequence[str]key_ passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam_
report_ floatintv - SAM report interval (sec), 0 for a one-time report.
- sam_
security_ strtype - 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_ strfqdn - SAM test server domain name.
- sam_
server_ strip - SAM test server IP address.
- sam_
server_ strtype - 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_ strinterval - 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_ strdfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
- airtime
Fairness 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
. - ap
Handoff String - Enable/disable AP handoff of clients to other APs (default = disable). Valid values:
disable
,enable
. - ap
Sniffer StringAddr - MAC address to monitor.
- ap
Sniffer NumberBufsize - Sniffer buffer size (1 - 32 MB, default = 16).
- ap
Sniffer NumberChan - Channel on which to operate the sniffer (default = 6).
- ap
Sniffer StringCtl - Enable/disable sniffer on WiFi control frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringData - Enable/disable sniffer on WiFi data frame (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Beacon - Enable/disable sniffer on WiFi management Beacon frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Other - Enable/disable sniffer on WiFi management other frames (default = enable). Valid values:
disable
,enable
. - ap
Sniffer StringMgmt Probe - Enable/disable sniffer on WiFi management probe frames (default = enable). Valid values:
disable
,enable
. - arrp
Profile String - Distributed Automatic Radio Resource Provisioning (DARRP) profile name to assign to the radio.
- auto
Power NumberHigh - The upper bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringLevel - Enable/disable automatic power-level adjustment to prevent co-channel interference (default = enable). Valid values:
disable
,enable
. - auto
Power NumberLow - The lower bound of automatic transmit power adjustment in dBm (the actual range of transmit power depends on the AP platform type).
- auto
Power StringTarget - 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
. - band5g
Type String - WiFi 5G band type. Valid values:
5g-full
,5g-high
,5g-low
. - bandwidth
Admission StringControl - 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 Number - Maximum bandwidth capacity allowed (1 - 600000 Kbps, default = 2000).
- beacon
Interval Number - 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 Number - BSS color value for this 11ax radio (0 - 63, 0 means disable. default = 0).
- bss
Color StringMode - BSS color mode for this 11ax radio (default = auto). Valid values:
auto
,static
. - call
Admission StringControl - 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 Number - Maximum number of Voice over WLAN (VoWLAN) phones supported by the radio (0 - 60, default = 10).
- channel
Bonding String - 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 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
. - drma
Sensitivity 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.
- frag
Threshold Number - Maximum packet size that can be sent without fragmentation (800 - 2346 bytes, default = 2346).
- frequency
Handoff String - Enable/disable frequency handoff of clients to other channels (default = disable). Valid values:
disable
,enable
. - iperf
Protocol String - Iperf test protocol (default = "UDP"). Valid values:
udp
,tcp
. - iperf
Server NumberPort - Iperf service port number.
- max
Clients Number - Maximum number of stations (STAs) supported by the WTP (default = 0, meaning no client limitation).
- max
Distance Number - Maximum expected distance between the AP and clients (0 - 54000 m, default = 0).
- mimo
Mode 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
. - optional
Antenna 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
. - optional
Antenna StringGain - Optional antenna gain in dBi (0 to 20, default = 0).
- power
Level Number - Radio power level as a percentage of the maximum transmit power (0 - 100, default = 100).
- power
Mode 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
. - power
Value Number - Radio EIRP power in dBm (1 - 33, default = 27).
- powersave
Optimizes 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
. - protection
Mode String - Enable/disable 802.11g protection modes to support backwards compatibility with older clients (rtscts, ctsonly, disable). Valid values:
rtscts
,ctsonly
,disable
. - radio
Id Number - Radio-Id.
- rts
Threshold Number - Maximum packet size for RTS transmissions, specifying the maximum size of a data packet before RTS/CTS (256 - 2346 bytes, default = 2346).
- sam
Bssid String - BSSID for WiFi network.
- sam
Ca StringCertificate - CA certificate for WPA2/WPA3-ENTERPRISE.
- sam
Captive StringPortal - Enable/disable Captive Portal Authentication (default = disable). Valid values:
disable
,enable
. - sam
Client StringCertificate - Client certificate for WPA2/WPA3-ENTERPRISE.
- sam
Cwp StringFailure String - Failure identification on the page after an incorrect login.
- sam
Cwp StringMatch String - Identification string from the captive portal login form.
- sam
Cwp List<String>Passwords - Password for captive portal authentication.
- sam
Cwp StringSuccess String - Success identification on the page after a successful login.
- sam
Cwp StringTest Url - Website the client is trying to access.
- sam
Cwp StringUsername - Username for captive portal authentication.
- sam
Eap StringMethod - Select WPA2/WPA3-ENTERPRISE EAP Method (default = PEAP). Valid values:
tls
,peap
,both
. - sam
Passwords List<String> - Passphrase for WiFi network connection.
- sam
Private StringKey - Private key for WPA2/WPA3-ENTERPRISE.
- sam
Private List<String>Key Passwords - Password for private key file for WPA2/WPA3-ENTERPRISE.
- sam
Report NumberIntv - SAM report interval (sec), 0 for a one-time report.
- sam
Security StringType - Select WiFi network security type (default = "wpa-personal"). Valid values:
open
,wpa-personal
,wpa-enterprise
. - sam
Server String - SAM test server IP address or domain name.
- sam
Server StringFqdn - SAM test server domain name.
- sam
Server StringIp - SAM test server IP address.
- sam
Server StringType - Select SAM server type (default = "IP"). Valid values:
ip
,fqdn
. - sam
Ssid String - SSID for WiFi network.
- sam
Test String - Select SAM test type (default = "PING"). Valid values:
ping
,iperf
. - sam
Username String - Username for WiFi network connection.
- short
Guard StringInterval - 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 String - Spectrum-Analysis. Valid values:
disable
,enable
,scan-only
. - transmit
Optimizes 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
- vap
All 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).
- wids
Profile String - Wireless Intrusion Detection System (WIDS) profile name to assign to the radio.
- zero
Wait StringDfs - Enable/disable zero wait DFS on radio (default = enable). Valid values:
disable
,enable
.
ObjectWirelesscontrollerWtpprofileSplitTunnelingAcl, ObjectWirelesscontrollerWtpprofileSplitTunnelingAclArgs
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}}
$ 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.