1. Packages
  2. Routeros Provider
  3. API Docs
  4. Wifi
routeros 1.83.0 published on Wednesday, Apr 16, 2025 by terraform-routeros

routeros.Wifi

Explore with Pulumi AI

# routeros.Wifi (Resource)

This resource requires a minimum version of RouterOS 7.13.

Example Usage

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

// If you need to add a reference to an existing configuration, each inline section contains a `config` parameter 
// where you can specify the name of the actual resource.
// configuration = {
//   config = routeros_wifi_configuration.my-config.name
// }
const wifi1 = new routeros.Wifi("wifi1", {configuration: {
    manager: "capsman",
}});
Copy
import pulumi
import pulumi_routeros as routeros

# If you need to add a reference to an existing configuration, each inline section contains a `config` parameter 
# where you can specify the name of the actual resource.
# configuration = {
#   config = routeros_wifi_configuration.my-config.name
# }
wifi1 = routeros.Wifi("wifi1", configuration={
    "manager": "capsman",
})
Copy
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 {
		// If you need to add a reference to an existing configuration, each inline section contains a `config` parameter
		// where you can specify the name of the actual resource.
		//
		//	configuration = {
		//	  config = routeros_wifi_configuration.my-config.name
		//	}
		_, err := routeros.NewWifi(ctx, "wifi1", &routeros.WifiArgs{
			Configuration: pulumi.StringMap{
				"manager": pulumi.String("capsman"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Routeros = Pulumi.Routeros;

return await Deployment.RunAsync(() => 
{
    // If you need to add a reference to an existing configuration, each inline section contains a `config` parameter 
    // where you can specify the name of the actual resource.
    // configuration = {
    //   config = routeros_wifi_configuration.my-config.name
    // }
    var wifi1 = new Routeros.Wifi("wifi1", new()
    {
        Configuration = 
        {
            { "manager", "capsman" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.routeros.Wifi;
import com.pulumi.routeros.WifiArgs;
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) {
        // If you need to add a reference to an existing configuration, each inline section contains a `config` parameter 
        // where you can specify the name of the actual resource.
        // configuration = {
        //   config = routeros_wifi_configuration.my-config.name
        // }
        var wifi1 = new Wifi("wifi1", WifiArgs.builder()
            .configuration(Map.of("manager", "capsman"))
            .build());

    }
}
Copy
resources:
  # If you need to add a reference to an existing configuration, each inline section contains a `config` parameter 
  # // where you can specify the name of the actual resource.
  # // configuration = {
  # //   config = routeros_wifi_configuration.my-config.name
  # // }
  wifi1:
    type: routeros:Wifi
    properties:
      configuration:
        manager: capsman
Copy

Create Wifi Resource

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

Constructor syntax

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

@overload
def Wifi(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         ___id_: Optional[float] = None,
         ___path_: Optional[str] = None,
         ___ts_: Optional[str] = None,
         aaa: Optional[Mapping[str, str]] = None,
         arp: Optional[str] = None,
         arp_timeout: Optional[str] = None,
         channel: Optional[Mapping[str, str]] = None,
         comment: Optional[str] = None,
         configuration: Optional[Mapping[str, str]] = None,
         datapath: Optional[Mapping[str, str]] = None,
         disable_running_check: Optional[bool] = None,
         disabled: Optional[bool] = None,
         interworking: Optional[Mapping[str, str]] = None,
         l2mtu: Optional[float] = None,
         mac_address: Optional[str] = None,
         master_interface: Optional[str] = None,
         mtu: Optional[float] = None,
         name: Optional[str] = None,
         security: Optional[Mapping[str, str]] = None,
         steering: Optional[Mapping[str, str]] = None,
         wifi_id: Optional[str] = None)
func NewWifi(ctx *Context, name string, args *WifiArgs, opts ...ResourceOption) (*Wifi, error)
public Wifi(string name, WifiArgs? args = null, CustomResourceOptions? opts = null)
public Wifi(String name, WifiArgs args)
public Wifi(String name, WifiArgs args, CustomResourceOptions options)
type: routeros:Wifi
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

Wifi 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 Wifi resource accepts the following input properties:

Aaa Dictionary<string, string>
AAA inline settings.
Arp string
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
ArpTimeout string
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
Channel Dictionary<string, string>
Channel inline settings.
Comment string
Configuration Dictionary<string, string>
Configuration inline settings.
Datapath Dictionary<string, string>
Datapath inline settings.
DisableRunningCheck bool
An option to set the running property to true if it is not disabled.
Disabled bool
Interworking Dictionary<string, string>
Interworking inline settings.
L2mtu double
Layer2 Maximum transmission unit. See.
MacAddress string
MAC address (BSSID) to use for the interface.
MasterInterface string
The corresponding master interface of the virtual one.
Mtu double
Layer3 maximum transmission unit
Name string
Name of the interface.
Security Dictionary<string, string>
Security inline settings.
Steering Dictionary<string, string>
Steering inline settings.
WifiId string
___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.
Aaa map[string]string
AAA inline settings.
Arp string
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
ArpTimeout string
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
Channel map[string]string
Channel inline settings.
Comment string
Configuration map[string]string
Configuration inline settings.
Datapath map[string]string
Datapath inline settings.
DisableRunningCheck bool
An option to set the running property to true if it is not disabled.
Disabled bool
Interworking map[string]string
Interworking inline settings.
L2mtu float64
Layer2 Maximum transmission unit. See.
MacAddress string
MAC address (BSSID) to use for the interface.
MasterInterface string
The corresponding master interface of the virtual one.
Mtu float64
Layer3 maximum transmission unit
Name string
Name of the interface.
Security map[string]string
Security inline settings.
Steering map[string]string
Steering inline settings.
WifiId string
___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.
aaa Map<String,String>
AAA inline settings.
arp String
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arpTimeout String
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
channel Map<String,String>
Channel inline settings.
comment String
configuration Map<String,String>
Configuration inline settings.
datapath Map<String,String>
Datapath inline settings.
disableRunningCheck Boolean
An option to set the running property to true if it is not disabled.
disabled Boolean
interworking Map<String,String>
Interworking inline settings.
l2mtu Double
Layer2 Maximum transmission unit. See.
macAddress String
MAC address (BSSID) to use for the interface.
masterInterface String
The corresponding master interface of the virtual one.
mtu Double
Layer3 maximum transmission unit
name String
Name of the interface.
security Map<String,String>
Security inline settings.
steering Map<String,String>
Steering inline settings.
wifiId String
___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.
aaa {[key: string]: string}
AAA inline settings.
arp string
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arpTimeout string
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
channel {[key: string]: string}
Channel inline settings.
comment string
configuration {[key: string]: string}
Configuration inline settings.
datapath {[key: string]: string}
Datapath inline settings.
disableRunningCheck boolean
An option to set the running property to true if it is not disabled.
disabled boolean
interworking {[key: string]: string}
Interworking inline settings.
l2mtu number
Layer2 Maximum transmission unit. See.
macAddress string
MAC address (BSSID) to use for the interface.
masterInterface string
The corresponding master interface of the virtual one.
mtu number
Layer3 maximum transmission unit
name string
Name of the interface.
security {[key: string]: string}
Security inline settings.
steering {[key: string]: string}
Steering inline settings.
wifiId string
___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.
aaa Mapping[str, str]
AAA inline settings.
arp str
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arp_timeout str
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
channel Mapping[str, str]
Channel inline settings.
comment str
configuration Mapping[str, str]
Configuration inline settings.
datapath Mapping[str, str]
Datapath inline settings.
disable_running_check bool
An option to set the running property to true if it is not disabled.
disabled bool
interworking Mapping[str, str]
Interworking inline settings.
l2mtu float
Layer2 Maximum transmission unit. See.
mac_address str
MAC address (BSSID) to use for the interface.
master_interface str
The corresponding master interface of the virtual one.
mtu float
Layer3 maximum transmission unit
name str
Name of the interface.
security Mapping[str, str]
Security inline settings.
steering Mapping[str, str]
Steering inline settings.
wifi_id str
___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.
aaa Map<String>
AAA inline settings.
arp String
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arpTimeout String
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
channel Map<String>
Channel inline settings.
comment String
configuration Map<String>
Configuration inline settings.
datapath Map<String>
Datapath inline settings.
disableRunningCheck Boolean
An option to set the running property to true if it is not disabled.
disabled Boolean
interworking Map<String>
Interworking inline settings.
l2mtu Number
Layer2 Maximum transmission unit. See.
macAddress String
MAC address (BSSID) to use for the interface.
masterInterface String
The corresponding master interface of the virtual one.
mtu Number
Layer3 maximum transmission unit
name String
Name of the interface.
security Map<String>
Security inline settings.
steering Map<String>
Steering inline settings.
wifiId String

Outputs

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

Bound bool
A flag whether the interface is currently available for the WiFi manager.
DefaultName string
The interface's default name.
Id string
The provider-assigned unique ID for this managed resource.
Inactive bool
A flag whether the interface is currently inactive.
Master bool
A flag whether the interface is not a virtual one.
RadioMac string
The MAC address of the associated radio.
Running bool
A flag whether the interface has established a link to another device.
Bound bool
A flag whether the interface is currently available for the WiFi manager.
DefaultName string
The interface's default name.
Id string
The provider-assigned unique ID for this managed resource.
Inactive bool
A flag whether the interface is currently inactive.
Master bool
A flag whether the interface is not a virtual one.
RadioMac string
The MAC address of the associated radio.
Running bool
A flag whether the interface has established a link to another device.
bound Boolean
A flag whether the interface is currently available for the WiFi manager.
defaultName String
The interface's default name.
id String
The provider-assigned unique ID for this managed resource.
inactive Boolean
A flag whether the interface is currently inactive.
master Boolean
A flag whether the interface is not a virtual one.
radioMac String
The MAC address of the associated radio.
running Boolean
A flag whether the interface has established a link to another device.
bound boolean
A flag whether the interface is currently available for the WiFi manager.
defaultName string
The interface's default name.
id string
The provider-assigned unique ID for this managed resource.
inactive boolean
A flag whether the interface is currently inactive.
master boolean
A flag whether the interface is not a virtual one.
radioMac string
The MAC address of the associated radio.
running boolean
A flag whether the interface has established a link to another device.
bound bool
A flag whether the interface is currently available for the WiFi manager.
default_name str
The interface's default name.
id str
The provider-assigned unique ID for this managed resource.
inactive bool
A flag whether the interface is currently inactive.
master bool
A flag whether the interface is not a virtual one.
radio_mac str
The MAC address of the associated radio.
running bool
A flag whether the interface has established a link to another device.
bound Boolean
A flag whether the interface is currently available for the WiFi manager.
defaultName String
The interface's default name.
id String
The provider-assigned unique ID for this managed resource.
inactive Boolean
A flag whether the interface is currently inactive.
master Boolean
A flag whether the interface is not a virtual one.
radioMac String
The MAC address of the associated radio.
running Boolean
A flag whether the interface has established a link to another device.

Look up Existing Wifi Resource

Get an existing Wifi 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?: WifiState, opts?: CustomResourceOptions): Wifi
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        ___id_: Optional[float] = None,
        ___path_: Optional[str] = None,
        ___ts_: Optional[str] = None,
        aaa: Optional[Mapping[str, str]] = None,
        arp: Optional[str] = None,
        arp_timeout: Optional[str] = None,
        bound: Optional[bool] = None,
        channel: Optional[Mapping[str, str]] = None,
        comment: Optional[str] = None,
        configuration: Optional[Mapping[str, str]] = None,
        datapath: Optional[Mapping[str, str]] = None,
        default_name: Optional[str] = None,
        disable_running_check: Optional[bool] = None,
        disabled: Optional[bool] = None,
        inactive: Optional[bool] = None,
        interworking: Optional[Mapping[str, str]] = None,
        l2mtu: Optional[float] = None,
        mac_address: Optional[str] = None,
        master: Optional[bool] = None,
        master_interface: Optional[str] = None,
        mtu: Optional[float] = None,
        name: Optional[str] = None,
        radio_mac: Optional[str] = None,
        running: Optional[bool] = None,
        security: Optional[Mapping[str, str]] = None,
        steering: Optional[Mapping[str, str]] = None,
        wifi_id: Optional[str] = None) -> Wifi
func GetWifi(ctx *Context, name string, id IDInput, state *WifiState, opts ...ResourceOption) (*Wifi, error)
public static Wifi Get(string name, Input<string> id, WifiState? state, CustomResourceOptions? opts = null)
public static Wifi get(String name, Output<String> id, WifiState state, CustomResourceOptions options)
resources:  _:    type: routeros:Wifi    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Aaa Dictionary<string, string>
AAA inline settings.
Arp string
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
ArpTimeout string
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
Bound bool
A flag whether the interface is currently available for the WiFi manager.
Channel Dictionary<string, string>
Channel inline settings.
Comment string
Configuration Dictionary<string, string>
Configuration inline settings.
Datapath Dictionary<string, string>
Datapath inline settings.
DefaultName string
The interface's default name.
DisableRunningCheck bool
An option to set the running property to true if it is not disabled.
Disabled bool
Inactive bool
A flag whether the interface is currently inactive.
Interworking Dictionary<string, string>
Interworking inline settings.
L2mtu double
Layer2 Maximum transmission unit. See.
MacAddress string
MAC address (BSSID) to use for the interface.
Master bool
A flag whether the interface is not a virtual one.
MasterInterface string
The corresponding master interface of the virtual one.
Mtu double
Layer3 maximum transmission unit
Name string
Name of the interface.
RadioMac string
The MAC address of the associated radio.
Running bool
A flag whether the interface has established a link to another device.
Security Dictionary<string, string>
Security inline settings.
Steering Dictionary<string, string>
Steering inline settings.
WifiId string
___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.
Aaa map[string]string
AAA inline settings.
Arp string
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
ArpTimeout string
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
Bound bool
A flag whether the interface is currently available for the WiFi manager.
Channel map[string]string
Channel inline settings.
Comment string
Configuration map[string]string
Configuration inline settings.
Datapath map[string]string
Datapath inline settings.
DefaultName string
The interface's default name.
DisableRunningCheck bool
An option to set the running property to true if it is not disabled.
Disabled bool
Inactive bool
A flag whether the interface is currently inactive.
Interworking map[string]string
Interworking inline settings.
L2mtu float64
Layer2 Maximum transmission unit. See.
MacAddress string
MAC address (BSSID) to use for the interface.
Master bool
A flag whether the interface is not a virtual one.
MasterInterface string
The corresponding master interface of the virtual one.
Mtu float64
Layer3 maximum transmission unit
Name string
Name of the interface.
RadioMac string
The MAC address of the associated radio.
Running bool
A flag whether the interface has established a link to another device.
Security map[string]string
Security inline settings.
Steering map[string]string
Steering inline settings.
WifiId string
___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.
aaa Map<String,String>
AAA inline settings.
arp String
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arpTimeout String
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
bound Boolean
A flag whether the interface is currently available for the WiFi manager.
channel Map<String,String>
Channel inline settings.
comment String
configuration Map<String,String>
Configuration inline settings.
datapath Map<String,String>
Datapath inline settings.
defaultName String
The interface's default name.
disableRunningCheck Boolean
An option to set the running property to true if it is not disabled.
disabled Boolean
inactive Boolean
A flag whether the interface is currently inactive.
interworking Map<String,String>
Interworking inline settings.
l2mtu Double
Layer2 Maximum transmission unit. See.
macAddress String
MAC address (BSSID) to use for the interface.
master Boolean
A flag whether the interface is not a virtual one.
masterInterface String
The corresponding master interface of the virtual one.
mtu Double
Layer3 maximum transmission unit
name String
Name of the interface.
radioMac String
The MAC address of the associated radio.
running Boolean
A flag whether the interface has established a link to another device.
security Map<String,String>
Security inline settings.
steering Map<String,String>
Steering inline settings.
wifiId String
___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.
aaa {[key: string]: string}
AAA inline settings.
arp string
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arpTimeout string
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
bound boolean
A flag whether the interface is currently available for the WiFi manager.
channel {[key: string]: string}
Channel inline settings.
comment string
configuration {[key: string]: string}
Configuration inline settings.
datapath {[key: string]: string}
Datapath inline settings.
defaultName string
The interface's default name.
disableRunningCheck boolean
An option to set the running property to true if it is not disabled.
disabled boolean
inactive boolean
A flag whether the interface is currently inactive.
interworking {[key: string]: string}
Interworking inline settings.
l2mtu number
Layer2 Maximum transmission unit. See.
macAddress string
MAC address (BSSID) to use for the interface.
master boolean
A flag whether the interface is not a virtual one.
masterInterface string
The corresponding master interface of the virtual one.
mtu number
Layer3 maximum transmission unit
name string
Name of the interface.
radioMac string
The MAC address of the associated radio.
running boolean
A flag whether the interface has established a link to another device.
security {[key: string]: string}
Security inline settings.
steering {[key: string]: string}
Steering inline settings.
wifiId string
___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.
aaa Mapping[str, str]
AAA inline settings.
arp str
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arp_timeout str
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
bound bool
A flag whether the interface is currently available for the WiFi manager.
channel Mapping[str, str]
Channel inline settings.
comment str
configuration Mapping[str, str]
Configuration inline settings.
datapath Mapping[str, str]
Datapath inline settings.
default_name str
The interface's default name.
disable_running_check bool
An option to set the running property to true if it is not disabled.
disabled bool
inactive bool
A flag whether the interface is currently inactive.
interworking Mapping[str, str]
Interworking inline settings.
l2mtu float
Layer2 Maximum transmission unit. See.
mac_address str
MAC address (BSSID) to use for the interface.
master bool
A flag whether the interface is not a virtual one.
master_interface str
The corresponding master interface of the virtual one.
mtu float
Layer3 maximum transmission unit
name str
Name of the interface.
radio_mac str
The MAC address of the associated radio.
running bool
A flag whether the interface has established a link to another device.
security Mapping[str, str]
Security inline settings.
steering Mapping[str, str]
Steering inline settings.
wifi_id str
___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.
aaa Map<String>
AAA inline settings.
arp String
Address Resolution Protocol mode: * disabled - the interface will not use ARP * enabled - the interface will use ARP * local-proxy-arp - the router performs proxy ARP on the interface and sends replies to the same interface * proxy-arp - the router performs proxy ARP on the interface and sends replies to other interfaces * reply-only - the interface will only reply to requests originated from matching IP address/MAC address combinations which are entered as static entries in the ARP table. No dynamic entries will be automatically stored in the ARP table. Therefore for communications to be successful, a valid static entry must already exist.
arpTimeout String
ARP timeout is time how long ARP record is kept in ARP table after no packets are received from IP. Value auto equals to the value of arp-timeout in IP/Settings, default is 30s. Can use postfix ms, s, m, h, d for milliseconds, seconds, minutes, hours or days. If no postfix is set then seconds (s) is used.
bound Boolean
A flag whether the interface is currently available for the WiFi manager.
channel Map<String>
Channel inline settings.
comment String
configuration Map<String>
Configuration inline settings.
datapath Map<String>
Datapath inline settings.
defaultName String
The interface's default name.
disableRunningCheck Boolean
An option to set the running property to true if it is not disabled.
disabled Boolean
inactive Boolean
A flag whether the interface is currently inactive.
interworking Map<String>
Interworking inline settings.
l2mtu Number
Layer2 Maximum transmission unit. See.
macAddress String
MAC address (BSSID) to use for the interface.
master Boolean
A flag whether the interface is not a virtual one.
masterInterface String
The corresponding master interface of the virtual one.
mtu Number
Layer3 maximum transmission unit
name String
Name of the interface.
radioMac String
The MAC address of the associated radio.
running Boolean
A flag whether the interface has established a link to another device.
security Map<String>
Security inline settings.
steering Map<String>
Steering inline settings.
wifiId String

Import

#The ID can be found via API or the terminal

#The command for the terminal is -> :put [/interface/wifi get [print show-ids]]

$ pulumi import routeros:index/wifi:Wifi wifi1 '*1'
Copy

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.