routeros.CapsmanConfiguration
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as routeros from "@pulumi/routeros";
const testConfiguration = new routeros.CapsmanConfiguration("testConfiguration", {
comment: "Comment",
country: "no_country_set",
disconnectTimeout: "1s150ms",
distance: "indoors",
frameLifetime: "0.12",
guardInterval: "long",
hideSsid: true,
hwProtectionMode: "rts-cts",
hwRetries: 1,
installation: "indoor",
keepaliveFrames: "enabled",
loadBalancingGroup: "",
maxStaCount: 1,
mode: "ap",
multicastHelper: "full",
rxChains: [
1,
3,
],
ssid: "SSID",
txChains: [
0,
2,
],
});
const testChannel = new routeros.CapsmanChannel("testChannel", {});
const testDatapath = new routeros.CapsmanDatapath("testDatapath", {});
const testRates = new routeros.CapsmanRates("testRates", {});
const testSecurity = new routeros.CapsmanSecurity("testSecurity", {});
const testConfiguration2 = new routeros.CapsmanConfiguration("testConfiguration2", {
channel: {
config: testChannel.name,
band: "2ghz-b/g/n",
control_channel_width: "10mhz",
extension_channel: "eCee",
frequency: "2412",
reselect_interval: "1h",
save_selected: "true",
secondary_frequency: "disabled",
skip_dfs_channels: "true",
tx_power: "20",
},
datapath: {
config: testDatapath.name,
arp: "local-proxy-arp",
bridge: "bridge",
bridge_cost: "100",
bridge_horizon: "200",
client_to_client_forwarding: "true",
interface_list: "static",
l2mtu: "1450",
local_forwarding: "true",
mtu: "1500",
vlan_id: "101",
vlan_mode: "no-tag",
},
rates: {
config: testRates.name,
basic: "1Mbps,5.5Mbps,6Mbps,18Mbps,36Mbps,54Mbps",
ht_basic_mcs: "mcs-0,mcs-7,mcs-11,mcs-14,mcs-16,mcs-21",
ht_supported_mcs: "mcs-3,mcs-8,mcs-10,mcs-13,mcs-17,mcs-18",
supported: "2Mbps,11Mbps,9Mbps,12Mbps,24Mbps,48Mbps",
vht_basic_mcs: "none",
vht_supported_mcs: "mcs0-9,mcs0-7",
},
security: {
config: testSecurity.name,
authentication_types: "wpa-psk,wpa-eap",
disable_pmkid: "true",
eap_methods: "eap-tls,passthrough",
eap_radius_accounting: "true",
encryption: "aes-ccm,tkip",
group_encryption: "aes-ccm",
group_key_update: "1h",
passphrase: "AAAAAAAAA",
tls_certificate: "none",
tls_mode: "verify-certificate",
},
}, {
dependsOn: [
testChannel,
testDatapath,
testRates,
testSecurity,
],
});
import pulumi
import pulumi_routeros as routeros
test_configuration = routeros.CapsmanConfiguration("testConfiguration",
comment="Comment",
country="no_country_set",
disconnect_timeout="1s150ms",
distance="indoors",
frame_lifetime="0.12",
guard_interval="long",
hide_ssid=True,
hw_protection_mode="rts-cts",
hw_retries=1,
installation="indoor",
keepalive_frames="enabled",
load_balancing_group="",
max_sta_count=1,
mode="ap",
multicast_helper="full",
rx_chains=[
1,
3,
],
ssid="SSID",
tx_chains=[
0,
2,
])
test_channel = routeros.CapsmanChannel("testChannel")
test_datapath = routeros.CapsmanDatapath("testDatapath")
test_rates = routeros.CapsmanRates("testRates")
test_security = routeros.CapsmanSecurity("testSecurity")
test_configuration2 = routeros.CapsmanConfiguration("testConfiguration2",
channel={
"config": test_channel.name,
"band": "2ghz-b/g/n",
"control_channel_width": "10mhz",
"extension_channel": "eCee",
"frequency": "2412",
"reselect_interval": "1h",
"save_selected": "true",
"secondary_frequency": "disabled",
"skip_dfs_channels": "true",
"tx_power": "20",
},
datapath={
"config": test_datapath.name,
"arp": "local-proxy-arp",
"bridge": "bridge",
"bridge_cost": "100",
"bridge_horizon": "200",
"client_to_client_forwarding": "true",
"interface_list": "static",
"l2mtu": "1450",
"local_forwarding": "true",
"mtu": "1500",
"vlan_id": "101",
"vlan_mode": "no-tag",
},
rates={
"config": test_rates.name,
"basic": "1Mbps,5.5Mbps,6Mbps,18Mbps,36Mbps,54Mbps",
"ht_basic_mcs": "mcs-0,mcs-7,mcs-11,mcs-14,mcs-16,mcs-21",
"ht_supported_mcs": "mcs-3,mcs-8,mcs-10,mcs-13,mcs-17,mcs-18",
"supported": "2Mbps,11Mbps,9Mbps,12Mbps,24Mbps,48Mbps",
"vht_basic_mcs": "none",
"vht_supported_mcs": "mcs0-9,mcs0-7",
},
security={
"config": test_security.name,
"authentication_types": "wpa-psk,wpa-eap",
"disable_pmkid": "true",
"eap_methods": "eap-tls,passthrough",
"eap_radius_accounting": "true",
"encryption": "aes-ccm,tkip",
"group_encryption": "aes-ccm",
"group_key_update": "1h",
"passphrase": "AAAAAAAAA",
"tls_certificate": "none",
"tls_mode": "verify-certificate",
},
opts = pulumi.ResourceOptions(depends_on=[
test_channel,
test_datapath,
test_rates,
test_security,
]))
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/routeros/routeros"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := routeros.NewCapsmanConfiguration(ctx, "testConfiguration", &routeros.CapsmanConfigurationArgs{
Comment: pulumi.String("Comment"),
Country: pulumi.String("no_country_set"),
DisconnectTimeout: pulumi.String("1s150ms"),
Distance: pulumi.String("indoors"),
FrameLifetime: pulumi.String("0.12"),
GuardInterval: pulumi.String("long"),
HideSsid: pulumi.Bool(true),
HwProtectionMode: pulumi.String("rts-cts"),
HwRetries: pulumi.Float64(1),
Installation: pulumi.String("indoor"),
KeepaliveFrames: pulumi.String("enabled"),
LoadBalancingGroup: pulumi.String(""),
MaxStaCount: pulumi.Float64(1),
Mode: pulumi.String("ap"),
MulticastHelper: pulumi.String("full"),
RxChains: pulumi.Float64Array{
pulumi.Float64(1),
pulumi.Float64(3),
},
Ssid: pulumi.String("SSID"),
TxChains: pulumi.Float64Array{
pulumi.Float64(0),
pulumi.Float64(2),
},
})
if err != nil {
return err
}
testChannel, err := routeros.NewCapsmanChannel(ctx, "testChannel", nil)
if err != nil {
return err
}
testDatapath, err := routeros.NewCapsmanDatapath(ctx, "testDatapath", nil)
if err != nil {
return err
}
testRates, err := routeros.NewCapsmanRates(ctx, "testRates", nil)
if err != nil {
return err
}
testSecurity, err := routeros.NewCapsmanSecurity(ctx, "testSecurity", nil)
if err != nil {
return err
}
_, err = routeros.NewCapsmanConfiguration(ctx, "testConfiguration2", &routeros.CapsmanConfigurationArgs{
Channel: pulumi.StringMap{
"config": testChannel.Name,
"band": pulumi.String("2ghz-b/g/n"),
"control_channel_width": pulumi.String("10mhz"),
"extension_channel": pulumi.String("eCee"),
"frequency": pulumi.String("2412"),
"reselect_interval": pulumi.String("1h"),
"save_selected": pulumi.String("true"),
"secondary_frequency": pulumi.String("disabled"),
"skip_dfs_channels": pulumi.String("true"),
"tx_power": pulumi.String("20"),
},
Datapath: pulumi.StringMap{
"config": testDatapath.Name,
"arp": pulumi.String("local-proxy-arp"),
"bridge": pulumi.String("bridge"),
"bridge_cost": pulumi.String("100"),
"bridge_horizon": pulumi.String("200"),
"client_to_client_forwarding": pulumi.String("true"),
"interface_list": pulumi.String("static"),
"l2mtu": pulumi.String("1450"),
"local_forwarding": pulumi.String("true"),
"mtu": pulumi.String("1500"),
"vlan_id": pulumi.String("101"),
"vlan_mode": pulumi.String("no-tag"),
},
Rates: pulumi.StringMap{
"config": testRates.Name,
"basic": pulumi.String("1Mbps,5.5Mbps,6Mbps,18Mbps,36Mbps,54Mbps"),
"ht_basic_mcs": pulumi.String("mcs-0,mcs-7,mcs-11,mcs-14,mcs-16,mcs-21"),
"ht_supported_mcs": pulumi.String("mcs-3,mcs-8,mcs-10,mcs-13,mcs-17,mcs-18"),
"supported": pulumi.String("2Mbps,11Mbps,9Mbps,12Mbps,24Mbps,48Mbps"),
"vht_basic_mcs": pulumi.String("none"),
"vht_supported_mcs": pulumi.String("mcs0-9,mcs0-7"),
},
Security: pulumi.StringMap{
"config": testSecurity.Name,
"authentication_types": pulumi.String("wpa-psk,wpa-eap"),
"disable_pmkid": pulumi.String("true"),
"eap_methods": pulumi.String("eap-tls,passthrough"),
"eap_radius_accounting": pulumi.String("true"),
"encryption": pulumi.String("aes-ccm,tkip"),
"group_encryption": pulumi.String("aes-ccm"),
"group_key_update": pulumi.String("1h"),
"passphrase": pulumi.String("AAAAAAAAA"),
"tls_certificate": pulumi.String("none"),
"tls_mode": pulumi.String("verify-certificate"),
},
}, pulumi.DependsOn([]pulumi.Resource{
testChannel,
testDatapath,
testRates,
testSecurity,
}))
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Routeros = Pulumi.Routeros;
return await Deployment.RunAsync(() =>
{
var testConfiguration = new Routeros.CapsmanConfiguration("testConfiguration", new()
{
Comment = "Comment",
Country = "no_country_set",
DisconnectTimeout = "1s150ms",
Distance = "indoors",
FrameLifetime = "0.12",
GuardInterval = "long",
HideSsid = true,
HwProtectionMode = "rts-cts",
HwRetries = 1,
Installation = "indoor",
KeepaliveFrames = "enabled",
LoadBalancingGroup = "",
MaxStaCount = 1,
Mode = "ap",
MulticastHelper = "full",
RxChains = new[]
{
1,
3,
},
Ssid = "SSID",
TxChains = new[]
{
0,
2,
},
});
var testChannel = new Routeros.CapsmanChannel("testChannel");
var testDatapath = new Routeros.CapsmanDatapath("testDatapath");
var testRates = new Routeros.CapsmanRates("testRates");
var testSecurity = new Routeros.CapsmanSecurity("testSecurity");
var testConfiguration2 = new Routeros.CapsmanConfiguration("testConfiguration2", new()
{
Channel =
{
{ "config", testChannel.Name },
{ "band", "2ghz-b/g/n" },
{ "control_channel_width", "10mhz" },
{ "extension_channel", "eCee" },
{ "frequency", "2412" },
{ "reselect_interval", "1h" },
{ "save_selected", "true" },
{ "secondary_frequency", "disabled" },
{ "skip_dfs_channels", "true" },
{ "tx_power", "20" },
},
Datapath =
{
{ "config", testDatapath.Name },
{ "arp", "local-proxy-arp" },
{ "bridge", "bridge" },
{ "bridge_cost", "100" },
{ "bridge_horizon", "200" },
{ "client_to_client_forwarding", "true" },
{ "interface_list", "static" },
{ "l2mtu", "1450" },
{ "local_forwarding", "true" },
{ "mtu", "1500" },
{ "vlan_id", "101" },
{ "vlan_mode", "no-tag" },
},
Rates =
{
{ "config", testRates.Name },
{ "basic", "1Mbps,5.5Mbps,6Mbps,18Mbps,36Mbps,54Mbps" },
{ "ht_basic_mcs", "mcs-0,mcs-7,mcs-11,mcs-14,mcs-16,mcs-21" },
{ "ht_supported_mcs", "mcs-3,mcs-8,mcs-10,mcs-13,mcs-17,mcs-18" },
{ "supported", "2Mbps,11Mbps,9Mbps,12Mbps,24Mbps,48Mbps" },
{ "vht_basic_mcs", "none" },
{ "vht_supported_mcs", "mcs0-9,mcs0-7" },
},
Security =
{
{ "config", testSecurity.Name },
{ "authentication_types", "wpa-psk,wpa-eap" },
{ "disable_pmkid", "true" },
{ "eap_methods", "eap-tls,passthrough" },
{ "eap_radius_accounting", "true" },
{ "encryption", "aes-ccm,tkip" },
{ "group_encryption", "aes-ccm" },
{ "group_key_update", "1h" },
{ "passphrase", "AAAAAAAAA" },
{ "tls_certificate", "none" },
{ "tls_mode", "verify-certificate" },
},
}, new CustomResourceOptions
{
DependsOn =
{
testChannel,
testDatapath,
testRates,
testSecurity,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.routeros.CapsmanConfiguration;
import com.pulumi.routeros.CapsmanConfigurationArgs;
import com.pulumi.routeros.CapsmanChannel;
import com.pulumi.routeros.CapsmanDatapath;
import com.pulumi.routeros.CapsmanRates;
import com.pulumi.routeros.CapsmanSecurity;
import com.pulumi.resources.CustomResourceOptions;
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 testConfiguration = new CapsmanConfiguration("testConfiguration", CapsmanConfigurationArgs.builder()
.comment("Comment")
.country("no_country_set")
.disconnectTimeout("1s150ms")
.distance("indoors")
.frameLifetime("0.12")
.guardInterval("long")
.hideSsid(true)
.hwProtectionMode("rts-cts")
.hwRetries(1)
.installation("indoor")
.keepaliveFrames("enabled")
.loadBalancingGroup("")
.maxStaCount(1)
.mode("ap")
.multicastHelper("full")
.rxChains(
1,
3)
.ssid("SSID")
.txChains(
0,
2)
.build());
var testChannel = new CapsmanChannel("testChannel");
var testDatapath = new CapsmanDatapath("testDatapath");
var testRates = new CapsmanRates("testRates");
var testSecurity = new CapsmanSecurity("testSecurity");
var testConfiguration2 = new CapsmanConfiguration("testConfiguration2", CapsmanConfigurationArgs.builder()
.channel(Map.ofEntries(
Map.entry("config", testChannel.name()),
Map.entry("band", "2ghz-b/g/n"),
Map.entry("control_channel_width", "10mhz"),
Map.entry("extension_channel", "eCee"),
Map.entry("frequency", 2412),
Map.entry("reselect_interval", "1h"),
Map.entry("save_selected", "true"),
Map.entry("secondary_frequency", "disabled"),
Map.entry("skip_dfs_channels", "true"),
Map.entry("tx_power", 20)
))
.datapath(Map.ofEntries(
Map.entry("config", testDatapath.name()),
Map.entry("arp", "local-proxy-arp"),
Map.entry("bridge", "bridge"),
Map.entry("bridge_cost", "100"),
Map.entry("bridge_horizon", "200"),
Map.entry("client_to_client_forwarding", "true"),
Map.entry("interface_list", "static"),
Map.entry("l2mtu", "1450"),
Map.entry("local_forwarding", "true"),
Map.entry("mtu", "1500"),
Map.entry("vlan_id", "101"),
Map.entry("vlan_mode", "no-tag")
))
.rates(Map.ofEntries(
Map.entry("config", testRates.name()),
Map.entry("basic", "1Mbps,5.5Mbps,6Mbps,18Mbps,36Mbps,54Mbps"),
Map.entry("ht_basic_mcs", "mcs-0,mcs-7,mcs-11,mcs-14,mcs-16,mcs-21"),
Map.entry("ht_supported_mcs", "mcs-3,mcs-8,mcs-10,mcs-13,mcs-17,mcs-18"),
Map.entry("supported", "2Mbps,11Mbps,9Mbps,12Mbps,24Mbps,48Mbps"),
Map.entry("vht_basic_mcs", "none"),
Map.entry("vht_supported_mcs", "mcs0-9,mcs0-7")
))
.security(Map.ofEntries(
Map.entry("config", testSecurity.name()),
Map.entry("authentication_types", "wpa-psk,wpa-eap"),
Map.entry("disable_pmkid", "true"),
Map.entry("eap_methods", "eap-tls,passthrough"),
Map.entry("eap_radius_accounting", "true"),
Map.entry("encryption", "aes-ccm,tkip"),
Map.entry("group_encryption", "aes-ccm"),
Map.entry("group_key_update", "1h"),
Map.entry("passphrase", "AAAAAAAAA"),
Map.entry("tls_certificate", "none"),
Map.entry("tls_mode", "verify-certificate")
))
.build(), CustomResourceOptions.builder()
.dependsOn(
testChannel,
testDatapath,
testRates,
testSecurity)
.build());
}
}
resources:
testConfiguration:
type: routeros:CapsmanConfiguration
properties:
comment: Comment
country: no_country_set
disconnectTimeout: 1s150ms
distance: indoors
frameLifetime: '0.12'
# 120ms
guardInterval: long
hideSsid: true
hwProtectionMode: rts-cts
hwRetries: 1
installation: indoor
keepaliveFrames: enabled
loadBalancingGroup: ""
maxStaCount: 1
mode: ap
multicastHelper: full
rxChains:
- 1
- 3
ssid: SSID
txChains:
- 0
- 2
testChannel:
type: routeros:CapsmanChannel
testDatapath:
type: routeros:CapsmanDatapath
testRates:
type: routeros:CapsmanRates
testSecurity:
type: routeros:CapsmanSecurity
testConfiguration2:
type: routeros:CapsmanConfiguration
properties:
channel:
config: ${testChannel.name}
band: 2ghz-b/g/n
control_channel_width: 10mhz
extension_channel: eCee
frequency: 2412
reselect_interval: 1h
save_selected: 'true'
secondary_frequency: disabled
skip_dfs_channels: 'true'
tx_power: 20
datapath:
config: ${testDatapath.name}
arp: local-proxy-arp
bridge: bridge
bridge_cost: '100'
bridge_horizon: '200'
client_to_client_forwarding: 'true'
interface_list: static
l2mtu: '1450'
local_forwarding: 'true'
mtu: '1500'
vlan_id: '101'
vlan_mode: no-tag
rates:
config: ${testRates.name}
basic: 1Mbps,5.5Mbps,6Mbps,18Mbps,36Mbps,54Mbps
ht_basic_mcs: mcs-0,mcs-7,mcs-11,mcs-14,mcs-16,mcs-21
ht_supported_mcs: mcs-3,mcs-8,mcs-10,mcs-13,mcs-17,mcs-18
supported: 2Mbps,11Mbps,9Mbps,12Mbps,24Mbps,48Mbps
vht_basic_mcs: none
vht_supported_mcs: mcs0-9,mcs0-7
security:
config: ${testSecurity.name}
authentication_types: wpa-psk,wpa-eap
disable_pmkid: 'true'
eap_methods: eap-tls,passthrough
eap_radius_accounting: 'true'
encryption: aes-ccm,tkip
group_encryption: aes-ccm
group_key_update: 1h
passphrase: AAAAAAAAA
tls_certificate: none
tls_mode: verify-certificate
options:
dependsOn:
- ${testChannel}
- ${testDatapath}
- ${testRates}
- ${testSecurity}
Create CapsmanConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CapsmanConfiguration(name: string, args?: CapsmanConfigurationArgs, opts?: CustomResourceOptions);
@overload
def CapsmanConfiguration(resource_name: str,
args: Optional[CapsmanConfigurationArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def CapsmanConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
___ts_: Optional[str] = None,
capsman_configuration_id: Optional[str] = None,
channel: Optional[Mapping[str, str]] = None,
comment: Optional[str] = None,
country: Optional[str] = None,
datapath: Optional[Mapping[str, str]] = None,
disconnect_timeout: Optional[str] = None,
distance: Optional[str] = None,
frame_lifetime: Optional[str] = None,
guard_interval: Optional[str] = None,
hide_ssid: Optional[bool] = None,
hw_protection_mode: Optional[str] = None,
hw_retries: Optional[float] = None,
installation: Optional[str] = None,
keepalive_frames: Optional[str] = None,
load_balancing_group: Optional[str] = None,
max_sta_count: Optional[float] = None,
mode: Optional[str] = None,
multicast_helper: Optional[str] = None,
name: Optional[str] = None,
rates: Optional[Mapping[str, str]] = None,
rx_chains: Optional[Sequence[float]] = None,
security: Optional[Mapping[str, str]] = None,
ssid: Optional[str] = None,
tx_chains: Optional[Sequence[float]] = None)
func NewCapsmanConfiguration(ctx *Context, name string, args *CapsmanConfigurationArgs, opts ...ResourceOption) (*CapsmanConfiguration, error)
public CapsmanConfiguration(string name, CapsmanConfigurationArgs? args = null, CustomResourceOptions? opts = null)
public CapsmanConfiguration(String name, CapsmanConfigurationArgs args)
public CapsmanConfiguration(String name, CapsmanConfigurationArgs args, CustomResourceOptions options)
type: routeros:CapsmanConfiguration
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 CapsmanConfigurationArgs
- 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 CapsmanConfigurationArgs
- 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 CapsmanConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CapsmanConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CapsmanConfigurationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
CapsmanConfiguration 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 CapsmanConfiguration resource accepts the following input properties:
- Capsman
Configuration stringId - The ID of this resource.
- Channel Dictionary<string, string>
- Channel inline settings.
- Comment string
- Country string
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- Datapath Dictionary<string, string>
- Datapath inline settings.
- Disconnect
Timeout string - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- Distance string
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- Frame
Lifetime string - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- Guard
Interval string - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- Hide
Ssid bool - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- Hw
Protection stringMode - Frame protection support property. See docs.
- Hw
Retries double - Number of times sending frame is retried without considering it a transmission failure. See docs
- Installation string
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- Keepalive
Frames string - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- Load
Balancing stringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- Max
Sta doubleCount - Maximum number of associated clients.
- Mode string
- Set operational mode. Only ap currently supported.
- Multicast
Helper string - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- Name string
- Rates Dictionary<string, string>
- Rates inline settings.
- Rx
Chains List<double> - Which antennas to use for receive.
- Security Dictionary<string, string>
- Security inline settings.
- Ssid string
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- Tx
Chains List<double> - Which antennas to use for transmit.
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- Capsman
Configuration stringId - The ID of this resource.
- Channel map[string]string
- Channel inline settings.
- Comment string
- Country string
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- Datapath map[string]string
- Datapath inline settings.
- Disconnect
Timeout string - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- Distance string
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- Frame
Lifetime string - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- Guard
Interval string - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- Hide
Ssid bool - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- Hw
Protection stringMode - Frame protection support property. See docs.
- Hw
Retries float64 - Number of times sending frame is retried without considering it a transmission failure. See docs
- Installation string
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- Keepalive
Frames string - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- Load
Balancing stringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- Max
Sta float64Count - Maximum number of associated clients.
- Mode string
- Set operational mode. Only ap currently supported.
- Multicast
Helper string - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- Name string
- Rates map[string]string
- Rates inline settings.
- Rx
Chains []float64 - Which antennas to use for receive.
- Security map[string]string
- Security inline settings.
- Ssid string
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- Tx
Chains []float64 - Which antennas to use for transmit.
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman
Configuration StringId - The ID of this resource.
- channel Map<String,String>
- Channel inline settings.
- comment String
- country String
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath Map<String,String>
- Datapath inline settings.
- disconnect
Timeout String - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance String
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame
Lifetime String - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard
Interval String - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide
Ssid Boolean - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw
Protection StringMode - Frame protection support property. See docs.
- hw
Retries Double - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation String
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive
Frames String - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load
Balancing StringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max
Sta DoubleCount - Maximum number of associated clients.
- mode String
- Set operational mode. Only ap currently supported.
- multicast
Helper String - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name String
- rates Map<String,String>
- Rates inline settings.
- rx
Chains List<Double> - Which antennas to use for receive.
- security Map<String,String>
- Security inline settings.
- ssid String
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx
Chains List<Double> - Which antennas to use for transmit.
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman
Configuration stringId - The ID of this resource.
- channel {[key: string]: string}
- Channel inline settings.
- comment string
- country string
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath {[key: string]: string}
- Datapath inline settings.
- disconnect
Timeout string - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance string
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame
Lifetime string - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard
Interval string - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide
Ssid boolean - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw
Protection stringMode - Frame protection support property. See docs.
- hw
Retries number - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation string
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive
Frames string - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load
Balancing stringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max
Sta numberCount - Maximum number of associated clients.
- mode string
- Set operational mode. Only ap currently supported.
- multicast
Helper string - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name string
- rates {[key: string]: string}
- Rates inline settings.
- rx
Chains number[] - Which antennas to use for receive.
- security {[key: string]: string}
- Security inline settings.
- ssid string
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx
Chains number[] - Which antennas to use for transmit.
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ str - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman_
configuration_ strid - The ID of this resource.
- channel Mapping[str, str]
- Channel inline settings.
- comment str
- country str
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath Mapping[str, str]
- Datapath inline settings.
- disconnect_
timeout str - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance str
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame_
lifetime str - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard_
interval str - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide_
ssid bool - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw_
protection_ strmode - Frame protection support property. See docs.
- hw_
retries float - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation str
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive_
frames str - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load_
balancing_ strgroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max_
sta_ floatcount - Maximum number of associated clients.
- mode str
- Set operational mode. Only ap currently supported.
- multicast_
helper str - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name str
- rates Mapping[str, str]
- Rates inline settings.
- rx_
chains Sequence[float] - Which antennas to use for receive.
- security Mapping[str, str]
- Security inline settings.
- ssid str
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx_
chains Sequence[float] - Which antennas to use for transmit.
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman
Configuration StringId - The ID of this resource.
- channel Map<String>
- Channel inline settings.
- comment String
- country String
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath Map<String>
- Datapath inline settings.
- disconnect
Timeout String - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance String
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame
Lifetime String - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard
Interval String - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide
Ssid Boolean - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw
Protection StringMode - Frame protection support property. See docs.
- hw
Retries Number - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation String
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive
Frames String - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load
Balancing StringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max
Sta NumberCount - Maximum number of associated clients.
- mode String
- Set operational mode. Only ap currently supported.
- multicast
Helper String - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name String
- rates Map<String>
- Rates inline settings.
- rx
Chains List<Number> - Which antennas to use for receive.
- security Map<String>
- Security inline settings.
- ssid String
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx
Chains List<Number> - Which antennas to use for transmit.
Outputs
All input properties are implicitly available as output properties. Additionally, the CapsmanConfiguration 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 CapsmanConfiguration Resource
Get an existing CapsmanConfiguration 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?: CapsmanConfigurationState, opts?: CustomResourceOptions): CapsmanConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
___ts_: Optional[str] = None,
capsman_configuration_id: Optional[str] = None,
channel: Optional[Mapping[str, str]] = None,
comment: Optional[str] = None,
country: Optional[str] = None,
datapath: Optional[Mapping[str, str]] = None,
disconnect_timeout: Optional[str] = None,
distance: Optional[str] = None,
frame_lifetime: Optional[str] = None,
guard_interval: Optional[str] = None,
hide_ssid: Optional[bool] = None,
hw_protection_mode: Optional[str] = None,
hw_retries: Optional[float] = None,
installation: Optional[str] = None,
keepalive_frames: Optional[str] = None,
load_balancing_group: Optional[str] = None,
max_sta_count: Optional[float] = None,
mode: Optional[str] = None,
multicast_helper: Optional[str] = None,
name: Optional[str] = None,
rates: Optional[Mapping[str, str]] = None,
rx_chains: Optional[Sequence[float]] = None,
security: Optional[Mapping[str, str]] = None,
ssid: Optional[str] = None,
tx_chains: Optional[Sequence[float]] = None) -> CapsmanConfiguration
func GetCapsmanConfiguration(ctx *Context, name string, id IDInput, state *CapsmanConfigurationState, opts ...ResourceOption) (*CapsmanConfiguration, error)
public static CapsmanConfiguration Get(string name, Input<string> id, CapsmanConfigurationState? state, CustomResourceOptions? opts = null)
public static CapsmanConfiguration get(String name, Output<String> id, CapsmanConfigurationState state, CustomResourceOptions options)
resources: _: type: routeros:CapsmanConfiguration 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.
- Capsman
Configuration stringId - The ID of this resource.
- Channel Dictionary<string, string>
- Channel inline settings.
- Comment string
- Country string
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- Datapath Dictionary<string, string>
- Datapath inline settings.
- Disconnect
Timeout string - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- Distance string
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- Frame
Lifetime string - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- Guard
Interval string - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- Hide
Ssid bool - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- Hw
Protection stringMode - Frame protection support property. See docs.
- Hw
Retries double - Number of times sending frame is retried without considering it a transmission failure. See docs
- Installation string
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- Keepalive
Frames string - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- Load
Balancing stringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- Max
Sta doubleCount - Maximum number of associated clients.
- Mode string
- Set operational mode. Only ap currently supported.
- Multicast
Helper string - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- Name string
- Rates Dictionary<string, string>
- Rates inline settings.
- Rx
Chains List<double> - Which antennas to use for receive.
- Security Dictionary<string, string>
- Security inline settings.
- Ssid string
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- Tx
Chains List<double> - Which antennas to use for transmit.
- ___
id_ double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- Capsman
Configuration stringId - The ID of this resource.
- Channel map[string]string
- Channel inline settings.
- Comment string
- Country string
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- Datapath map[string]string
- Datapath inline settings.
- Disconnect
Timeout string - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- Distance string
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- Frame
Lifetime string - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- Guard
Interval string - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- Hide
Ssid bool - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- Hw
Protection stringMode - Frame protection support property. See docs.
- Hw
Retries float64 - Number of times sending frame is retried without considering it a transmission failure. See docs
- Installation string
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- Keepalive
Frames string - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- Load
Balancing stringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- Max
Sta float64Count - Maximum number of associated clients.
- Mode string
- Set operational mode. Only ap currently supported.
- Multicast
Helper string - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- Name string
- Rates map[string]string
- Rates inline settings.
- Rx
Chains []float64 - Which antennas to use for receive.
- Security map[string]string
- Security inline settings.
- Ssid string
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- Tx
Chains []float64 - Which antennas to use for transmit.
- ___
id_ float64 - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- ___
id_ Double - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman
Configuration StringId - The ID of this resource.
- channel Map<String,String>
- Channel inline settings.
- comment String
- country String
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath Map<String,String>
- Datapath inline settings.
- disconnect
Timeout String - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance String
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame
Lifetime String - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard
Interval String - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide
Ssid Boolean - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw
Protection StringMode - Frame protection support property. See docs.
- hw
Retries Double - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation String
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive
Frames String - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load
Balancing StringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max
Sta DoubleCount - Maximum number of associated clients.
- mode String
- Set operational mode. Only ap currently supported.
- multicast
Helper String - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name String
- rates Map<String,String>
- Rates inline settings.
- rx
Chains List<Double> - Which antennas to use for receive.
- security Map<String,String>
- Security inline settings.
- ssid String
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx
Chains List<Double> - Which antennas to use for transmit.
- ___
id_ number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ string - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman
Configuration stringId - The ID of this resource.
- channel {[key: string]: string}
- Channel inline settings.
- comment string
- country string
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath {[key: string]: string}
- Datapath inline settings.
- disconnect
Timeout string - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance string
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame
Lifetime string - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard
Interval string - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide
Ssid boolean - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw
Protection stringMode - Frame protection support property. See docs.
- hw
Retries number - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation string
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive
Frames string - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load
Balancing stringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max
Sta numberCount - Maximum number of associated clients.
- mode string
- Set operational mode. Only ap currently supported.
- multicast
Helper string - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name string
- rates {[key: string]: string}
- Rates inline settings.
- rx
Chains number[] - Which antennas to use for receive.
- security {[key: string]: string}
- Security inline settings.
- ssid string
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx
Chains number[] - Which antennas to use for transmit.
- ___
id_ float - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ str - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ str - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman_
configuration_ strid - The ID of this resource.
- channel Mapping[str, str]
- Channel inline settings.
- comment str
- country str
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath Mapping[str, str]
- Datapath inline settings.
- disconnect_
timeout str - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance str
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame_
lifetime str - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard_
interval str - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide_
ssid bool - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw_
protection_ strmode - Frame protection support property. See docs.
- hw_
retries float - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation str
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive_
frames str - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load_
balancing_ strgroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max_
sta_ floatcount - Maximum number of associated clients.
- mode str
- Set operational mode. Only ap currently supported.
- multicast_
helper str - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name str
- rates Mapping[str, str]
- Rates inline settings.
- rx_
chains Sequence[float] - Which antennas to use for receive.
- security Mapping[str, str]
- Security inline settings.
- ssid str
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx_
chains Sequence[float] - Which antennas to use for transmit.
- ___
id_ Number - Resource ID type (.id / name). This is an internal service field, setting a value is not required.
- ___
path_ String - Resource path for CRUD operations. This is an internal service field, setting a value is not required.
- ___
ts_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- capsman
Configuration StringId - The ID of this resource.
- channel Map<String>
- Channel inline settings.
- comment String
- country String
- Limits available bands, frequencies and maximum transmit power for each frequency. Also specifies default value of scan-list. Value nocountryset is an FCC compliant set of channels.
- datapath Map<String>
- Datapath inline settings.
- disconnect
Timeout String - This interval is measured from third sending failure on the lowest data rate. At this point 3 * (hw-retries + 1) frame transmits on the lowest data rate had failed. During disconnect-timeout packet transmission will be retried with on-fail-retry-time interval. If no frame can be transmitted successfully during disconnect-timeout, the connection is closed, and this event is logged as "extensive data loss". Successful frame transmission resets this timer.
- distance String
- How long to wait for confirmation of unicast frames (ACKs) before considering transmission unsuccessful, or in short ACK-Timeout.
- frame
Lifetime String - Discard frames that have been queued for sending longer than frame-lifetime. By default, when value of this property is 0, frames are discarded only after connection is closed (format: 0.00 sec).
- guard
Interval String - Whether to allow use of short guard interval (refer to 802.11n MCS specification to see how this may affect throughput). "any" will use either short or long, depending on data rate, "long" will use long.
- hide
Ssid Boolean - This property has effect only in AP mode. Setting it to yes can remove this network from the list of wireless networks that are shown by some client software. Changing this setting does not improve the security of the wireless network, because SSID is included in other frames sent by the AP.
- hw
Protection StringMode - Frame protection support property. See docs.
- hw
Retries Number - Number of times sending frame is retried without considering it a transmission failure. See docs
- installation String
- Adjusts scan-list to use indoor, outdoor or all frequencies for the country that is set.
- keepalive
Frames String - If a client has not communicated for around 20 seconds, AP sends a "keepalive-frame".
- load
Balancing StringGroup - Tags the interface to the load balancing group. For a client to connect to interface in this group, the interface should have the same number of already connected clients as all other interfaces in the group or smaller. Useful in setups where ranges of CAPs mostly overlap.
- max
Sta NumberCount - Maximum number of associated clients.
- mode String
- Set operational mode. Only ap currently supported.
- multicast
Helper String - When set to full multicast packets will be sent with unicast destination MAC address, resolving multicast problem on a wireless link. This option should be enabled only on the access point, clients should be configured in station-bridge mode.
- name String
- rates Map<String>
- Rates inline settings.
- rx
Chains List<Number> - Which antennas to use for receive.
- security Map<String>
- Security inline settings.
- ssid String
- SSID (service set identifier) is a name broadcast in the beacons that identifies wireless network.
- tx
Chains List<Number> - Which antennas to use for transmit.
Import
#The ID can be found via API or the terminal
#The command for the terminal is -> :put [/caps-man/configuration get [print show-ids]]
$ pulumi import routeros:index/capsmanConfiguration:CapsmanConfiguration test_configuration_2 "*1"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- routeros terraform-routeros/terraform-provider-routeros
- License
- Notes
- This Pulumi package is based on the
routeros
Terraform Provider.