1. Packages
  2. Routeros Provider
  3. API Docs
  4. IpFirewallConnectionTracking
routeros 1.83.1 published on Monday, Apr 28, 2025 by terraform-routeros

routeros.IpFirewallConnectionTracking

Explore with Pulumi AI

routeros logo
routeros 1.83.1 published on Monday, Apr 28, 2025 by terraform-routeros

    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.
    GenericTimeout string
    Timeout for all other connection entries
    IcmpTimeout string
    ICMP connection timeout
    IpFirewallConnectionTrackingId string
    The ID of this resource.
    LooseTcpTracking string
    Disable picking up already established connections
    TcpCloseTimeout string
    No documentation
    TcpCloseWaitTimeout string
    No documentation
    TcpEstablishedTimeout string
    Time when established TCP connection times out.
    TcpFinWaitTimeout string
    No documentation
    TcpLastAckTimeout string
    No documentation
    TcpMaxRetransTimeout string
    No documentation
    TcpSynReceivedTimeout string
    TCP SYN timeout.
    TcpSynSentTimeout string
    TCP SYN timeout.
    TcpTimeWaitTimeout string
    No documentation
    TcpUnackedTimeout string
    No documentation
    UdpStreamTimeout string
    Specifies the timeout of UDP connections that has seen packets in both directions
    UdpTimeout 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.
    GenericTimeout string
    Timeout for all other connection entries
    IcmpTimeout string
    ICMP connection timeout
    IpFirewallConnectionTrackingId string
    The ID of this resource.
    LooseTcpTracking string
    Disable picking up already established connections
    TcpCloseTimeout string
    No documentation
    TcpCloseWaitTimeout string
    No documentation
    TcpEstablishedTimeout string
    Time when established TCP connection times out.
    TcpFinWaitTimeout string
    No documentation
    TcpLastAckTimeout string
    No documentation
    TcpMaxRetransTimeout string
    No documentation
    TcpSynReceivedTimeout string
    TCP SYN timeout.
    TcpSynSentTimeout string
    TCP SYN timeout.
    TcpTimeWaitTimeout string
    No documentation
    TcpUnackedTimeout string
    No documentation
    UdpStreamTimeout string
    Specifies the timeout of UDP connections that has seen packets in both directions
    UdpTimeout 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.
    genericTimeout String
    Timeout for all other connection entries
    icmpTimeout String
    ICMP connection timeout
    ipFirewallConnectionTrackingId String
    The ID of this resource.
    looseTcpTracking String
    Disable picking up already established connections
    tcpCloseTimeout String
    No documentation
    tcpCloseWaitTimeout String
    No documentation
    tcpEstablishedTimeout String
    Time when established TCP connection times out.
    tcpFinWaitTimeout String
    No documentation
    tcpLastAckTimeout String
    No documentation
    tcpMaxRetransTimeout String
    No documentation
    tcpSynReceivedTimeout String
    TCP SYN timeout.
    tcpSynSentTimeout String
    TCP SYN timeout.
    tcpTimeWaitTimeout String
    No documentation
    tcpUnackedTimeout String
    No documentation
    udpStreamTimeout String
    Specifies the timeout of UDP connections that has seen packets in both directions
    udpTimeout 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.
    genericTimeout string
    Timeout for all other connection entries
    icmpTimeout string
    ICMP connection timeout
    ipFirewallConnectionTrackingId string
    The ID of this resource.
    looseTcpTracking string
    Disable picking up already established connections
    tcpCloseTimeout string
    No documentation
    tcpCloseWaitTimeout string
    No documentation
    tcpEstablishedTimeout string
    Time when established TCP connection times out.
    tcpFinWaitTimeout string
    No documentation
    tcpLastAckTimeout string
    No documentation
    tcpMaxRetransTimeout string
    No documentation
    tcpSynReceivedTimeout string
    TCP SYN timeout.
    tcpSynSentTimeout string
    TCP SYN timeout.
    tcpTimeWaitTimeout string
    No documentation
    tcpUnackedTimeout string
    No documentation
    udpStreamTimeout string
    Specifies the timeout of UDP connections that has seen packets in both directions
    udpTimeout 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_connection_tracking_id str
    The ID of this resource.
    loose_tcp_tracking str
    Disable picking up already established connections
    tcp_close_timeout str
    No documentation
    tcp_close_wait_timeout str
    No documentation
    tcp_established_timeout str
    Time when established TCP connection times out.
    tcp_fin_wait_timeout str
    No documentation
    tcp_last_ack_timeout str
    No documentation
    tcp_max_retrans_timeout str
    No documentation
    tcp_syn_received_timeout str
    TCP SYN timeout.
    tcp_syn_sent_timeout str
    TCP SYN timeout.
    tcp_time_wait_timeout str
    No documentation
    tcp_unacked_timeout str
    No documentation
    udp_stream_timeout str
    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.
    genericTimeout String
    Timeout for all other connection entries
    icmpTimeout String
    ICMP connection timeout
    ipFirewallConnectionTrackingId String
    The ID of this resource.
    looseTcpTracking String
    Disable picking up already established connections
    tcpCloseTimeout String
    No documentation
    tcpCloseWaitTimeout String
    No documentation
    tcpEstablishedTimeout String
    Time when established TCP connection times out.
    tcpFinWaitTimeout String
    No documentation
    tcpLastAckTimeout String
    No documentation
    tcpMaxRetransTimeout String
    No documentation
    tcpSynReceivedTimeout String
    TCP SYN timeout.
    tcpSynSentTimeout String
    TCP SYN timeout.
    tcpTimeWaitTimeout String
    No documentation
    tcpUnackedTimeout String
    No documentation
    udpStreamTimeout String
    Specifies the timeout of UDP connections that has seen packets in both directions
    udpTimeout 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:

    ActiveIpv4 bool
    documentation is missing
    ActiveIpv6 bool
    documentation is missing
    Id string
    The provider-assigned unique ID for this managed resource.
    MaxEntries 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
    ActiveIpv4 bool
    documentation is missing
    ActiveIpv6 bool
    documentation is missing
    Id string
    The provider-assigned unique ID for this managed resource.
    MaxEntries 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
    activeIpv4 Boolean
    documentation is missing
    activeIpv6 Boolean
    documentation is missing
    id String
    The provider-assigned unique ID for this managed resource.
    maxEntries 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
    activeIpv4 boolean
    documentation is missing
    activeIpv6 boolean
    documentation is missing
    id string
    The provider-assigned unique ID for this managed resource.
    maxEntries 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
    activeIpv4 Boolean
    documentation is missing
    activeIpv6 Boolean
    documentation is missing
    id String
    The provider-assigned unique ID for this managed resource.
    maxEntries 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.
    The following state arguments are supported:
    ActiveIpv4 bool
    documentation is missing
    ActiveIpv6 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.
    GenericTimeout string
    Timeout for all other connection entries
    IcmpTimeout string
    ICMP connection timeout
    IpFirewallConnectionTrackingId string
    The ID of this resource.
    LooseTcpTracking string
    Disable picking up already established connections
    MaxEntries 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
    TcpCloseTimeout string
    No documentation
    TcpCloseWaitTimeout string
    No documentation
    TcpEstablishedTimeout string
    Time when established TCP connection times out.
    TcpFinWaitTimeout string
    No documentation
    TcpLastAckTimeout string
    No documentation
    TcpMaxRetransTimeout string
    No documentation
    TcpSynReceivedTimeout string
    TCP SYN timeout.
    TcpSynSentTimeout string
    TCP SYN timeout.
    TcpTimeWaitTimeout string
    No documentation
    TcpUnackedTimeout string
    No documentation
    UdpStreamTimeout string
    Specifies the timeout of UDP connections that has seen packets in both directions
    UdpTimeout 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.
    ActiveIpv4 bool
    documentation is missing
    ActiveIpv6 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.
    GenericTimeout string
    Timeout for all other connection entries
    IcmpTimeout string
    ICMP connection timeout
    IpFirewallConnectionTrackingId string
    The ID of this resource.
    LooseTcpTracking string
    Disable picking up already established connections
    MaxEntries 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
    TcpCloseTimeout string
    No documentation
    TcpCloseWaitTimeout string
    No documentation
    TcpEstablishedTimeout string
    Time when established TCP connection times out.
    TcpFinWaitTimeout string
    No documentation
    TcpLastAckTimeout string
    No documentation
    TcpMaxRetransTimeout string
    No documentation
    TcpSynReceivedTimeout string
    TCP SYN timeout.
    TcpSynSentTimeout string
    TCP SYN timeout.
    TcpTimeWaitTimeout string
    No documentation
    TcpUnackedTimeout string
    No documentation
    UdpStreamTimeout string
    Specifies the timeout of UDP connections that has seen packets in both directions
    UdpTimeout 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.
    activeIpv4 Boolean
    documentation is missing
    activeIpv6 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.
    genericTimeout String
    Timeout for all other connection entries
    icmpTimeout String
    ICMP connection timeout
    ipFirewallConnectionTrackingId String
    The ID of this resource.
    looseTcpTracking String
    Disable picking up already established connections
    maxEntries 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
    tcpCloseTimeout String
    No documentation
    tcpCloseWaitTimeout String
    No documentation
    tcpEstablishedTimeout String
    Time when established TCP connection times out.
    tcpFinWaitTimeout String
    No documentation
    tcpLastAckTimeout String
    No documentation
    tcpMaxRetransTimeout String
    No documentation
    tcpSynReceivedTimeout String
    TCP SYN timeout.
    tcpSynSentTimeout String
    TCP SYN timeout.
    tcpTimeWaitTimeout String
    No documentation
    tcpUnackedTimeout String
    No documentation
    udpStreamTimeout String
    Specifies the timeout of UDP connections that has seen packets in both directions
    udpTimeout 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.
    activeIpv4 boolean
    documentation is missing
    activeIpv6 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.
    genericTimeout string
    Timeout for all other connection entries
    icmpTimeout string
    ICMP connection timeout
    ipFirewallConnectionTrackingId string
    The ID of this resource.
    looseTcpTracking string
    Disable picking up already established connections
    maxEntries 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
    tcpCloseTimeout string
    No documentation
    tcpCloseWaitTimeout string
    No documentation
    tcpEstablishedTimeout string
    Time when established TCP connection times out.
    tcpFinWaitTimeout string
    No documentation
    tcpLastAckTimeout string
    No documentation
    tcpMaxRetransTimeout string
    No documentation
    tcpSynReceivedTimeout string
    TCP SYN timeout.
    tcpSynSentTimeout string
    TCP SYN timeout.
    tcpTimeWaitTimeout string
    No documentation
    tcpUnackedTimeout string
    No documentation
    udpStreamTimeout string
    Specifies the timeout of UDP connections that has seen packets in both directions
    udpTimeout 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_connection_tracking_id str
    The ID of this resource.
    loose_tcp_tracking str
    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_timeout str
    No documentation
    tcp_close_wait_timeout str
    No documentation
    tcp_established_timeout str
    Time when established TCP connection times out.
    tcp_fin_wait_timeout str
    No documentation
    tcp_last_ack_timeout str
    No documentation
    tcp_max_retrans_timeout str
    No documentation
    tcp_syn_received_timeout str
    TCP SYN timeout.
    tcp_syn_sent_timeout str
    TCP SYN timeout.
    tcp_time_wait_timeout str
    No documentation
    tcp_unacked_timeout str
    No documentation
    udp_stream_timeout str
    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.
    activeIpv4 Boolean
    documentation is missing
    activeIpv6 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.
    genericTimeout String
    Timeout for all other connection entries
    icmpTimeout String
    ICMP connection timeout
    ipFirewallConnectionTrackingId String
    The ID of this resource.
    looseTcpTracking String
    Disable picking up already established connections
    maxEntries 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
    tcpCloseTimeout String
    No documentation
    tcpCloseWaitTimeout String
    No documentation
    tcpEstablishedTimeout String
    Time when established TCP connection times out.
    tcpFinWaitTimeout String
    No documentation
    tcpLastAckTimeout String
    No documentation
    tcpMaxRetransTimeout String
    No documentation
    tcpSynReceivedTimeout String
    TCP SYN timeout.
    tcpSynSentTimeout String
    TCP SYN timeout.
    tcpTimeWaitTimeout String
    No documentation
    tcpUnackedTimeout String
    No documentation
    udpStreamTimeout String
    Specifies the timeout of UDP connections that has seen packets in both directions
    udpTimeout 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.
    routeros logo
    routeros 1.83.1 published on Monday, Apr 28, 2025 by terraform-routeros