routeros.IpFirewallConnectionTracking
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as routeros from "@pulumi/routeros";
const data = new routeros.IpFirewallConnectionTracking("data", {
enabled: "yes",
genericTimeout: "3m",
icmpTimeout: "3m",
looseTcpTracking: "false",
tcpCloseTimeout: "3m",
tcpCloseWaitTimeout: "3m",
tcpEstablishedTimeout: "3m",
tcpFinWaitTimeout: "3m",
tcpLastAckTimeout: "3m",
tcpMaxRetransTimeout: "3m",
tcpSynReceivedTimeout: "3m",
tcpSynSentTimeout: "3m",
tcpTimeWaitTimeout: "3m",
tcpUnackedTimeout: "3m",
udpStreamTimeout: "3m",
udpTimeout: "3m",
});
import pulumi
import pulumi_routeros as routeros
data = routeros.IpFirewallConnectionTracking("data",
enabled="yes",
generic_timeout="3m",
icmp_timeout="3m",
loose_tcp_tracking="false",
tcp_close_timeout="3m",
tcp_close_wait_timeout="3m",
tcp_established_timeout="3m",
tcp_fin_wait_timeout="3m",
tcp_last_ack_timeout="3m",
tcp_max_retrans_timeout="3m",
tcp_syn_received_timeout="3m",
tcp_syn_sent_timeout="3m",
tcp_time_wait_timeout="3m",
tcp_unacked_timeout="3m",
udp_stream_timeout="3m",
udp_timeout="3m")
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.NewIpFirewallConnectionTracking(ctx, "data", &routeros.IpFirewallConnectionTrackingArgs{
Enabled: pulumi.String("yes"),
GenericTimeout: pulumi.String("3m"),
IcmpTimeout: pulumi.String("3m"),
LooseTcpTracking: pulumi.String("false"),
TcpCloseTimeout: pulumi.String("3m"),
TcpCloseWaitTimeout: pulumi.String("3m"),
TcpEstablishedTimeout: pulumi.String("3m"),
TcpFinWaitTimeout: pulumi.String("3m"),
TcpLastAckTimeout: pulumi.String("3m"),
TcpMaxRetransTimeout: pulumi.String("3m"),
TcpSynReceivedTimeout: pulumi.String("3m"),
TcpSynSentTimeout: pulumi.String("3m"),
TcpTimeWaitTimeout: pulumi.String("3m"),
TcpUnackedTimeout: pulumi.String("3m"),
UdpStreamTimeout: pulumi.String("3m"),
UdpTimeout: pulumi.String("3m"),
})
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 data = new Routeros.IpFirewallConnectionTracking("data", new()
{
Enabled = "yes",
GenericTimeout = "3m",
IcmpTimeout = "3m",
LooseTcpTracking = "false",
TcpCloseTimeout = "3m",
TcpCloseWaitTimeout = "3m",
TcpEstablishedTimeout = "3m",
TcpFinWaitTimeout = "3m",
TcpLastAckTimeout = "3m",
TcpMaxRetransTimeout = "3m",
TcpSynReceivedTimeout = "3m",
TcpSynSentTimeout = "3m",
TcpTimeWaitTimeout = "3m",
TcpUnackedTimeout = "3m",
UdpStreamTimeout = "3m",
UdpTimeout = "3m",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.routeros.IpFirewallConnectionTracking;
import com.pulumi.routeros.IpFirewallConnectionTrackingArgs;
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 data = new IpFirewallConnectionTracking("data", IpFirewallConnectionTrackingArgs.builder()
.enabled("yes")
.genericTimeout("3m")
.icmpTimeout("3m")
.looseTcpTracking("false")
.tcpCloseTimeout("3m")
.tcpCloseWaitTimeout("3m")
.tcpEstablishedTimeout("3m")
.tcpFinWaitTimeout("3m")
.tcpLastAckTimeout("3m")
.tcpMaxRetransTimeout("3m")
.tcpSynReceivedTimeout("3m")
.tcpSynSentTimeout("3m")
.tcpTimeWaitTimeout("3m")
.tcpUnackedTimeout("3m")
.udpStreamTimeout("3m")
.udpTimeout("3m")
.build());
}
}
resources:
data:
type: routeros:IpFirewallConnectionTracking
properties:
enabled: yes
genericTimeout: 3m
icmpTimeout: 3m
looseTcpTracking: 'false'
tcpCloseTimeout: 3m
tcpCloseWaitTimeout: 3m
tcpEstablishedTimeout: 3m
tcpFinWaitTimeout: 3m
tcpLastAckTimeout: 3m
tcpMaxRetransTimeout: 3m
tcpSynReceivedTimeout: 3m
tcpSynSentTimeout: 3m
tcpTimeWaitTimeout: 3m
tcpUnackedTimeout: 3m
udpStreamTimeout: 3m
udpTimeout: 3m
Create IpFirewallConnectionTracking Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IpFirewallConnectionTracking(name: string, args?: IpFirewallConnectionTrackingArgs, opts?: CustomResourceOptions);
@overload
def IpFirewallConnectionTracking(resource_name: str,
args: Optional[IpFirewallConnectionTrackingArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def IpFirewallConnectionTracking(resource_name: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
___skip_: Optional[str] = None,
enabled: Optional[str] = None,
generic_timeout: Optional[str] = None,
icmp_timeout: Optional[str] = None,
ip_firewall_connection_tracking_id: Optional[str] = None,
loose_tcp_tracking: Optional[str] = None,
tcp_close_timeout: Optional[str] = None,
tcp_close_wait_timeout: Optional[str] = None,
tcp_established_timeout: Optional[str] = None,
tcp_fin_wait_timeout: Optional[str] = None,
tcp_last_ack_timeout: Optional[str] = None,
tcp_max_retrans_timeout: Optional[str] = None,
tcp_syn_received_timeout: Optional[str] = None,
tcp_syn_sent_timeout: Optional[str] = None,
tcp_time_wait_timeout: Optional[str] = None,
tcp_unacked_timeout: Optional[str] = None,
udp_stream_timeout: Optional[str] = None,
udp_timeout: Optional[str] = None)
func NewIpFirewallConnectionTracking(ctx *Context, name string, args *IpFirewallConnectionTrackingArgs, opts ...ResourceOption) (*IpFirewallConnectionTracking, error)
public IpFirewallConnectionTracking(string name, IpFirewallConnectionTrackingArgs? args = null, CustomResourceOptions? opts = null)
public IpFirewallConnectionTracking(String name, IpFirewallConnectionTrackingArgs args)
public IpFirewallConnectionTracking(String name, IpFirewallConnectionTrackingArgs args, CustomResourceOptions options)
type: routeros:IpFirewallConnectionTracking
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 IpFirewallConnectionTrackingArgs
- 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 IpFirewallConnectionTrackingArgs
- 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 IpFirewallConnectionTrackingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IpFirewallConnectionTrackingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IpFirewallConnectionTrackingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
IpFirewallConnectionTracking 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 IpFirewallConnectionTracking resource accepts the following input properties:
- Enabled string
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- Generic
Timeout string - Timeout for all other connection entries
- Icmp
Timeout string - ICMP connection timeout
- Ip
Firewall stringConnection Tracking Id - The ID of this resource.
- Loose
Tcp stringTracking - Disable picking up already established connections
- Tcp
Close stringTimeout - No documentation
- Tcp
Close stringWait Timeout - No documentation
- Tcp
Established stringTimeout - Time when established TCP connection times out.
- Tcp
Fin stringWait Timeout - No documentation
- Tcp
Last stringAck Timeout - No documentation
- Tcp
Max stringRetrans Timeout - No documentation
- Tcp
Syn stringReceived Timeout - TCP SYN timeout.
- Tcp
Syn stringSent Timeout - TCP SYN timeout.
- Tcp
Time stringWait Timeout - No documentation
- Tcp
Unacked stringTimeout - No documentation
- Udp
Stream stringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- Udp
Timeout string - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- Enabled string
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- Generic
Timeout string - Timeout for all other connection entries
- Icmp
Timeout string - ICMP connection timeout
- Ip
Firewall stringConnection Tracking Id - The ID of this resource.
- Loose
Tcp stringTracking - Disable picking up already established connections
- Tcp
Close stringTimeout - No documentation
- Tcp
Close stringWait Timeout - No documentation
- Tcp
Established stringTimeout - Time when established TCP connection times out.
- Tcp
Fin stringWait Timeout - No documentation
- Tcp
Last stringAck Timeout - No documentation
- Tcp
Max stringRetrans Timeout - No documentation
- Tcp
Syn stringReceived Timeout - TCP SYN timeout.
- Tcp
Syn stringSent Timeout - TCP SYN timeout.
- Tcp
Time stringWait Timeout - No documentation
- Tcp
Unacked stringTimeout - No documentation
- Udp
Stream stringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- Udp
Timeout string - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ 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.
- ___
skip_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- enabled String
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic
Timeout String - Timeout for all other connection entries
- icmp
Timeout String - ICMP connection timeout
- ip
Firewall StringConnection Tracking Id - The ID of this resource.
- loose
Tcp StringTracking - Disable picking up already established connections
- tcp
Close StringTimeout - No documentation
- tcp
Close StringWait Timeout - No documentation
- tcp
Established StringTimeout - Time when established TCP connection times out.
- tcp
Fin StringWait Timeout - No documentation
- tcp
Last StringAck Timeout - No documentation
- tcp
Max StringRetrans Timeout - No documentation
- tcp
Syn StringReceived Timeout - TCP SYN timeout.
- tcp
Syn StringSent Timeout - TCP SYN timeout.
- tcp
Time StringWait Timeout - No documentation
- tcp
Unacked StringTimeout - No documentation
- udp
Stream StringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp
Timeout String - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- enabled string
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic
Timeout string - Timeout for all other connection entries
- icmp
Timeout string - ICMP connection timeout
- ip
Firewall stringConnection Tracking Id - The ID of this resource.
- loose
Tcp stringTracking - Disable picking up already established connections
- tcp
Close stringTimeout - No documentation
- tcp
Close stringWait Timeout - No documentation
- tcp
Established stringTimeout - Time when established TCP connection times out.
- tcp
Fin stringWait Timeout - No documentation
- tcp
Last stringAck Timeout - No documentation
- tcp
Max stringRetrans Timeout - No documentation
- tcp
Syn stringReceived Timeout - TCP SYN timeout.
- tcp
Syn stringSent Timeout - TCP SYN timeout.
- tcp
Time stringWait Timeout - No documentation
- tcp
Unacked stringTimeout - No documentation
- udp
Stream stringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp
Timeout string - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ str - A set of transformations for field names. This is an internal service field, setting a value is not required.
- enabled str
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic_
timeout str - Timeout for all other connection entries
- icmp_
timeout str - ICMP connection timeout
- ip_
firewall_ strconnection_ tracking_ id - The ID of this resource.
- loose_
tcp_ strtracking - Disable picking up already established connections
- tcp_
close_ strtimeout - No documentation
- tcp_
close_ strwait_ timeout - No documentation
- tcp_
established_ strtimeout - Time when established TCP connection times out.
- tcp_
fin_ strwait_ timeout - No documentation
- tcp_
last_ strack_ timeout - No documentation
- tcp_
max_ strretrans_ timeout - No documentation
- tcp_
syn_ strreceived_ timeout - TCP SYN timeout.
- tcp_
syn_ strsent_ timeout - TCP SYN timeout.
- tcp_
time_ strwait_ timeout - No documentation
- tcp_
unacked_ strtimeout - No documentation
- udp_
stream_ strtimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp_
timeout str - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- enabled String
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic
Timeout String - Timeout for all other connection entries
- icmp
Timeout String - ICMP connection timeout
- ip
Firewall StringConnection Tracking Id - The ID of this resource.
- loose
Tcp StringTracking - Disable picking up already established connections
- tcp
Close StringTimeout - No documentation
- tcp
Close StringWait Timeout - No documentation
- tcp
Established StringTimeout - Time when established TCP connection times out.
- tcp
Fin StringWait Timeout - No documentation
- tcp
Last StringAck Timeout - No documentation
- tcp
Max StringRetrans Timeout - No documentation
- tcp
Syn StringReceived Timeout - TCP SYN timeout.
- tcp
Syn StringSent Timeout - TCP SYN timeout.
- tcp
Time StringWait Timeout - No documentation
- tcp
Unacked StringTimeout - No documentation
- udp
Stream StringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp
Timeout String - Specifies the timeout for UDP connections that have seen packets in one direction
Outputs
All input properties are implicitly available as output properties. Additionally, the IpFirewallConnectionTracking resource produces the following output properties:
- Active
Ipv4 bool - documentation is missing
- Active
Ipv6 bool - documentation is missing
- Id string
- The provider-assigned unique ID for this managed resource.
- Max
Entries string - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- Active
Ipv4 bool - documentation is missing
- Active
Ipv6 bool - documentation is missing
- Id string
- The provider-assigned unique ID for this managed resource.
- Max
Entries string - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- active
Ipv4 Boolean - documentation is missing
- active
Ipv6 Boolean - documentation is missing
- id String
- The provider-assigned unique ID for this managed resource.
- max
Entries String - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- active
Ipv4 boolean - documentation is missing
- active
Ipv6 boolean - documentation is missing
- id string
- The provider-assigned unique ID for this managed resource.
- max
Entries string - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- active_
ipv4 bool - documentation is missing
- active_
ipv6 bool - documentation is missing
- id str
- The provider-assigned unique ID for this managed resource.
- max_
entries str - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- active
Ipv4 Boolean - documentation is missing
- active
Ipv6 Boolean - documentation is missing
- id String
- The provider-assigned unique ID for this managed resource.
- max
Entries String - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
Look up Existing IpFirewallConnectionTracking Resource
Get an existing IpFirewallConnectionTracking 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?: IpFirewallConnectionTrackingState, opts?: CustomResourceOptions): IpFirewallConnectionTracking
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
___id_: Optional[float] = None,
___path_: Optional[str] = None,
___skip_: Optional[str] = None,
active_ipv4: Optional[bool] = None,
active_ipv6: Optional[bool] = None,
enabled: Optional[str] = None,
generic_timeout: Optional[str] = None,
icmp_timeout: Optional[str] = None,
ip_firewall_connection_tracking_id: Optional[str] = None,
loose_tcp_tracking: Optional[str] = None,
max_entries: Optional[str] = None,
tcp_close_timeout: Optional[str] = None,
tcp_close_wait_timeout: Optional[str] = None,
tcp_established_timeout: Optional[str] = None,
tcp_fin_wait_timeout: Optional[str] = None,
tcp_last_ack_timeout: Optional[str] = None,
tcp_max_retrans_timeout: Optional[str] = None,
tcp_syn_received_timeout: Optional[str] = None,
tcp_syn_sent_timeout: Optional[str] = None,
tcp_time_wait_timeout: Optional[str] = None,
tcp_unacked_timeout: Optional[str] = None,
udp_stream_timeout: Optional[str] = None,
udp_timeout: Optional[str] = None) -> IpFirewallConnectionTracking
func GetIpFirewallConnectionTracking(ctx *Context, name string, id IDInput, state *IpFirewallConnectionTrackingState, opts ...ResourceOption) (*IpFirewallConnectionTracking, error)
public static IpFirewallConnectionTracking Get(string name, Input<string> id, IpFirewallConnectionTrackingState? state, CustomResourceOptions? opts = null)
public static IpFirewallConnectionTracking get(String name, Output<String> id, IpFirewallConnectionTrackingState state, CustomResourceOptions options)
resources: _: type: routeros:IpFirewallConnectionTracking 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.
- Active
Ipv4 bool - documentation is missing
- Active
Ipv6 bool - documentation is missing
- Enabled string
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- Generic
Timeout string - Timeout for all other connection entries
- Icmp
Timeout string - ICMP connection timeout
- Ip
Firewall stringConnection Tracking Id - The ID of this resource.
- Loose
Tcp stringTracking - Disable picking up already established connections
- Max
Entries string - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- Tcp
Close stringTimeout - No documentation
- Tcp
Close stringWait Timeout - No documentation
- Tcp
Established stringTimeout - Time when established TCP connection times out.
- Tcp
Fin stringWait Timeout - No documentation
- Tcp
Last stringAck Timeout - No documentation
- Tcp
Max stringRetrans Timeout - No documentation
- Tcp
Syn stringReceived Timeout - TCP SYN timeout.
- Tcp
Syn stringSent Timeout - TCP SYN timeout.
- Tcp
Time stringWait Timeout - No documentation
- Tcp
Unacked stringTimeout - No documentation
- Udp
Stream stringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- Udp
Timeout string - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- Active
Ipv4 bool - documentation is missing
- Active
Ipv6 bool - documentation is missing
- Enabled string
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- Generic
Timeout string - Timeout for all other connection entries
- Icmp
Timeout string - ICMP connection timeout
- Ip
Firewall stringConnection Tracking Id - The ID of this resource.
- Loose
Tcp stringTracking - Disable picking up already established connections
- Max
Entries string - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- Tcp
Close stringTimeout - No documentation
- Tcp
Close stringWait Timeout - No documentation
- Tcp
Established stringTimeout - Time when established TCP connection times out.
- Tcp
Fin stringWait Timeout - No documentation
- Tcp
Last stringAck Timeout - No documentation
- Tcp
Max stringRetrans Timeout - No documentation
- Tcp
Syn stringReceived Timeout - TCP SYN timeout.
- Tcp
Syn stringSent Timeout - TCP SYN timeout.
- Tcp
Time stringWait Timeout - No documentation
- Tcp
Unacked stringTimeout - No documentation
- Udp
Stream stringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- Udp
Timeout string - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ 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.
- ___
skip_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- active
Ipv4 Boolean - documentation is missing
- active
Ipv6 Boolean - documentation is missing
- enabled String
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic
Timeout String - Timeout for all other connection entries
- icmp
Timeout String - ICMP connection timeout
- ip
Firewall StringConnection Tracking Id - The ID of this resource.
- loose
Tcp StringTracking - Disable picking up already established connections
- max
Entries String - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- tcp
Close StringTimeout - No documentation
- tcp
Close StringWait Timeout - No documentation
- tcp
Established StringTimeout - Time when established TCP connection times out.
- tcp
Fin StringWait Timeout - No documentation
- tcp
Last StringAck Timeout - No documentation
- tcp
Max StringRetrans Timeout - No documentation
- tcp
Syn StringReceived Timeout - TCP SYN timeout.
- tcp
Syn StringSent Timeout - TCP SYN timeout.
- tcp
Time StringWait Timeout - No documentation
- tcp
Unacked StringTimeout - No documentation
- udp
Stream StringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp
Timeout String - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ string - A set of transformations for field names. This is an internal service field, setting a value is not required.
- active
Ipv4 boolean - documentation is missing
- active
Ipv6 boolean - documentation is missing
- enabled string
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic
Timeout string - Timeout for all other connection entries
- icmp
Timeout string - ICMP connection timeout
- ip
Firewall stringConnection Tracking Id - The ID of this resource.
- loose
Tcp stringTracking - Disable picking up already established connections
- max
Entries string - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- tcp
Close stringTimeout - No documentation
- tcp
Close stringWait Timeout - No documentation
- tcp
Established stringTimeout - Time when established TCP connection times out.
- tcp
Fin stringWait Timeout - No documentation
- tcp
Last stringAck Timeout - No documentation
- tcp
Max stringRetrans Timeout - No documentation
- tcp
Syn stringReceived Timeout - TCP SYN timeout.
- tcp
Syn stringSent Timeout - TCP SYN timeout.
- tcp
Time stringWait Timeout - No documentation
- tcp
Unacked stringTimeout - No documentation
- udp
Stream stringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp
Timeout string - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ str - A set of transformations for field names. This is an internal service field, setting a value is not required.
- active_
ipv4 bool - documentation is missing
- active_
ipv6 bool - documentation is missing
- enabled str
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic_
timeout str - Timeout for all other connection entries
- icmp_
timeout str - ICMP connection timeout
- ip_
firewall_ strconnection_ tracking_ id - The ID of this resource.
- loose_
tcp_ strtracking - Disable picking up already established connections
- max_
entries str - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- tcp_
close_ strtimeout - No documentation
- tcp_
close_ strwait_ timeout - No documentation
- tcp_
established_ strtimeout - Time when established TCP connection times out.
- tcp_
fin_ strwait_ timeout - No documentation
- tcp_
last_ strack_ timeout - No documentation
- tcp_
max_ strretrans_ timeout - No documentation
- tcp_
syn_ strreceived_ timeout - TCP SYN timeout.
- tcp_
syn_ strsent_ timeout - TCP SYN timeout.
- tcp_
time_ strwait_ timeout - No documentation
- tcp_
unacked_ strtimeout - No documentation
- udp_
stream_ strtimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp_
timeout str - Specifies the timeout for UDP connections that have seen packets in one direction
- ___
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.
- ___
skip_ String - A set of transformations for field names. This is an internal service field, setting a value is not required.
- active
Ipv4 Boolean - documentation is missing
- active
Ipv6 Boolean - documentation is missing
- enabled String
- Allows to disable or enable connection tracking. Disabling connection tracking will cause several firewall features to stop working. See the list of affected features. Starting from v6.0rc2 default value is auto. This means that connection tracing is disabled until at least one firewall rule is added.
- generic
Timeout String - Timeout for all other connection entries
- icmp
Timeout String - ICMP connection timeout
- ip
Firewall StringConnection Tracking Id - The ID of this resource.
- loose
Tcp StringTracking - Disable picking up already established connections
- max
Entries String - Max amount of entries that the connection tracking table can hold. This value depends on the installed amount of RAM. Note that the system does not create a maximum_size connection tracking table when it starts, it may increase if the situation demands it and the system still has free ram, but size will not exceed 1048576
- tcp
Close StringTimeout - No documentation
- tcp
Close StringWait Timeout - No documentation
- tcp
Established StringTimeout - Time when established TCP connection times out.
- tcp
Fin StringWait Timeout - No documentation
- tcp
Last StringAck Timeout - No documentation
- tcp
Max StringRetrans Timeout - No documentation
- tcp
Syn StringReceived Timeout - TCP SYN timeout.
- tcp
Syn StringSent Timeout - TCP SYN timeout.
- tcp
Time StringWait Timeout - No documentation
- tcp
Unacked StringTimeout - No documentation
- udp
Stream StringTimeout - Specifies the timeout of UDP connections that has seen packets in both directions
- udp
Timeout String - Specifies the timeout for UDP connections that have seen packets in one direction
Package Details
- Repository
- routeros terraform-routeros/terraform-provider-routeros
- License
- Notes
- This Pulumi package is based on the
routeros
Terraform Provider.