-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9d39bf8
commit 8421929
Showing
7 changed files
with
86 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# routeros_ip_firewall_connection_tracking (Resource) | ||
|
||
|
||
## Example Usage | ||
```terraform | ||
resource "routeros_ip_firewall_connection_tracking" "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" | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `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 | ||
- `loose_tcp_tracking` (String) Disable picking up already established connections | ||
- `tcp_close_timeout` (String) No documentation | ||
- `tcp_close_wait_timeout` (String) No documentation | ||
- `tcp_established_timeout` (String) Time when established TCP connection times out. | ||
- `tcp_fin_wait_timeout` (String) No documentation | ||
- `tcp_last_ack_timeout` (String) No documentation | ||
- `tcp_max_retrans_timeout` (String) No documentation | ||
- `tcp_syn_received_timeout` (String) TCP SYN timeout. | ||
- `tcp_syn_sent_timeout` (String) TCP SYN timeout. | ||
- `tcp_time_wait_timeout` (String) No documentation | ||
- `tcp_unacked_timeout` (String) No documentation | ||
- `udp_stream_timeout` (String) 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 | ||
|
||
### Read-Only | ||
|
||
- `active_ipv4` (Boolean) documentation is missing | ||
- `active_ipv6` (Boolean) documentation is missing | ||
- `id` (String) The ID of this 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 | ||
- `total_entries` (Number) Amount of connections that currently connection table holds. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters