f5bigip.ltm.ProfileTcp
Explore with Pulumi AI
f5bigip.ltm.ProfileTcp
Configures a custom TCP LTM Profile for use by health checks.
Resources should be named with their full path
. The full path is the combination of the partition + name
(example: /Common/my-pool ) or partition + directory + name
of the resource (example: /Common/test/my-pool )
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as f5bigip from "@pulumi/f5bigip";
const sanjose_tcp_lan_profile = new f5bigip.ltm.ProfileTcp("sanjose-tcp-lan-profile", {
name: "/Common/sanjose-tcp-lan-profile",
idleTimeout: 200,
closeWaitTimeout: 5,
finwait2timeout: 5,
finwaitTimeout: 300,
keepaliveInterval: 1700,
deferredAccept: "enabled",
fastOpen: "enabled",
});
import pulumi
import pulumi_f5bigip as f5bigip
sanjose_tcp_lan_profile = f5bigip.ltm.ProfileTcp("sanjose-tcp-lan-profile",
name="/Common/sanjose-tcp-lan-profile",
idle_timeout=200,
close_wait_timeout=5,
finwait2timeout=5,
finwait_timeout=300,
keepalive_interval=1700,
deferred_accept="enabled",
fast_open="enabled")
package main
import (
"github.com/pulumi/pulumi-f5bigip/sdk/v3/go/f5bigip/ltm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ltm.NewProfileTcp(ctx, "sanjose-tcp-lan-profile", <m.ProfileTcpArgs{
Name: pulumi.String("/Common/sanjose-tcp-lan-profile"),
IdleTimeout: pulumi.Int(200),
CloseWaitTimeout: pulumi.Int(5),
Finwait2timeout: pulumi.Int(5),
FinwaitTimeout: pulumi.Int(300),
KeepaliveInterval: pulumi.Int(1700),
DeferredAccept: pulumi.String("enabled"),
FastOpen: pulumi.String("enabled"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
return await Deployment.RunAsync(() =>
{
var sanjose_tcp_lan_profile = new F5BigIP.Ltm.ProfileTcp("sanjose-tcp-lan-profile", new()
{
Name = "/Common/sanjose-tcp-lan-profile",
IdleTimeout = 200,
CloseWaitTimeout = 5,
Finwait2timeout = 5,
FinwaitTimeout = 300,
KeepaliveInterval = 1700,
DeferredAccept = "enabled",
FastOpen = "enabled",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.f5bigip.ltm.ProfileTcp;
import com.pulumi.f5bigip.ltm.ProfileTcpArgs;
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 sanjose_tcp_lan_profile = new ProfileTcp("sanjose-tcp-lan-profile", ProfileTcpArgs.builder()
.name("/Common/sanjose-tcp-lan-profile")
.idleTimeout(200)
.closeWaitTimeout(5)
.finwait2timeout(5)
.finwaitTimeout(300)
.keepaliveInterval(1700)
.deferredAccept("enabled")
.fastOpen("enabled")
.build());
}
}
resources:
sanjose-tcp-lan-profile:
type: f5bigip:ltm:ProfileTcp
properties:
name: /Common/sanjose-tcp-lan-profile
idleTimeout: 200
closeWaitTimeout: 5
finwait2timeout: 5
finwaitTimeout: 300
keepaliveInterval: 1700
deferredAccept: enabled
fastOpen: enabled
Create ProfileTcp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProfileTcp(name: string, args: ProfileTcpArgs, opts?: CustomResourceOptions);
@overload
def ProfileTcp(resource_name: str,
args: ProfileTcpArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProfileTcp(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
initial_congestion_windowsize: Optional[int] = None,
early_retransmit: Optional[str] = None,
keepalive_interval: Optional[int] = None,
congestion_control: Optional[str] = None,
nagle: Optional[str] = None,
fast_open: Optional[str] = None,
finwait2timeout: Optional[int] = None,
finwait_timeout: Optional[int] = None,
idle_timeout: Optional[int] = None,
close_wait_timeout: Optional[int] = None,
deferred_accept: Optional[str] = None,
defaults_from: Optional[str] = None,
delayed_acks: Optional[str] = None,
partition: Optional[str] = None,
proxybuffer_high: Optional[int] = None,
receive_windowsize: Optional[int] = None,
send_buffersize: Optional[int] = None,
tailloss_probe: Optional[str] = None,
timewait_recycle: Optional[str] = None,
verified_accept: Optional[str] = None,
zerowindow_timeout: Optional[int] = None)
func NewProfileTcp(ctx *Context, name string, args ProfileTcpArgs, opts ...ResourceOption) (*ProfileTcp, error)
public ProfileTcp(string name, ProfileTcpArgs args, CustomResourceOptions? opts = null)
public ProfileTcp(String name, ProfileTcpArgs args)
public ProfileTcp(String name, ProfileTcpArgs args, CustomResourceOptions options)
type: f5bigip:ltm:ProfileTcp
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 ProfileTcpArgs
- 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 ProfileTcpArgs
- 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 ProfileTcpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProfileTcpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProfileTcpArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var profileTcpResource = new F5BigIP.Ltm.ProfileTcp("profileTcpResource", new()
{
Name = "string",
InitialCongestionWindowsize = 0,
EarlyRetransmit = "string",
KeepaliveInterval = 0,
CongestionControl = "string",
Nagle = "string",
FastOpen = "string",
Finwait2timeout = 0,
FinwaitTimeout = 0,
IdleTimeout = 0,
CloseWaitTimeout = 0,
DeferredAccept = "string",
DefaultsFrom = "string",
DelayedAcks = "string",
Partition = "string",
ProxybufferHigh = 0,
ReceiveWindowsize = 0,
SendBuffersize = 0,
TaillossProbe = "string",
TimewaitRecycle = "string",
VerifiedAccept = "string",
ZerowindowTimeout = 0,
});
example, err := ltm.NewProfileTcp(ctx, "profileTcpResource", <m.ProfileTcpArgs{
Name: pulumi.String("string"),
InitialCongestionWindowsize: pulumi.Int(0),
EarlyRetransmit: pulumi.String("string"),
KeepaliveInterval: pulumi.Int(0),
CongestionControl: pulumi.String("string"),
Nagle: pulumi.String("string"),
FastOpen: pulumi.String("string"),
Finwait2timeout: pulumi.Int(0),
FinwaitTimeout: pulumi.Int(0),
IdleTimeout: pulumi.Int(0),
CloseWaitTimeout: pulumi.Int(0),
DeferredAccept: pulumi.String("string"),
DefaultsFrom: pulumi.String("string"),
DelayedAcks: pulumi.String("string"),
Partition: pulumi.String("string"),
ProxybufferHigh: pulumi.Int(0),
ReceiveWindowsize: pulumi.Int(0),
SendBuffersize: pulumi.Int(0),
TaillossProbe: pulumi.String("string"),
TimewaitRecycle: pulumi.String("string"),
VerifiedAccept: pulumi.String("string"),
ZerowindowTimeout: pulumi.Int(0),
})
var profileTcpResource = new ProfileTcp("profileTcpResource", ProfileTcpArgs.builder()
.name("string")
.initialCongestionWindowsize(0)
.earlyRetransmit("string")
.keepaliveInterval(0)
.congestionControl("string")
.nagle("string")
.fastOpen("string")
.finwait2timeout(0)
.finwaitTimeout(0)
.idleTimeout(0)
.closeWaitTimeout(0)
.deferredAccept("string")
.defaultsFrom("string")
.delayedAcks("string")
.partition("string")
.proxybufferHigh(0)
.receiveWindowsize(0)
.sendBuffersize(0)
.taillossProbe("string")
.timewaitRecycle("string")
.verifiedAccept("string")
.zerowindowTimeout(0)
.build());
profile_tcp_resource = f5bigip.ltm.ProfileTcp("profileTcpResource",
name="string",
initial_congestion_windowsize=0,
early_retransmit="string",
keepalive_interval=0,
congestion_control="string",
nagle="string",
fast_open="string",
finwait2timeout=0,
finwait_timeout=0,
idle_timeout=0,
close_wait_timeout=0,
deferred_accept="string",
defaults_from="string",
delayed_acks="string",
partition="string",
proxybuffer_high=0,
receive_windowsize=0,
send_buffersize=0,
tailloss_probe="string",
timewait_recycle="string",
verified_accept="string",
zerowindow_timeout=0)
const profileTcpResource = new f5bigip.ltm.ProfileTcp("profileTcpResource", {
name: "string",
initialCongestionWindowsize: 0,
earlyRetransmit: "string",
keepaliveInterval: 0,
congestionControl: "string",
nagle: "string",
fastOpen: "string",
finwait2timeout: 0,
finwaitTimeout: 0,
idleTimeout: 0,
closeWaitTimeout: 0,
deferredAccept: "string",
defaultsFrom: "string",
delayedAcks: "string",
partition: "string",
proxybufferHigh: 0,
receiveWindowsize: 0,
sendBuffersize: 0,
taillossProbe: "string",
timewaitRecycle: "string",
verifiedAccept: "string",
zerowindowTimeout: 0,
});
type: f5bigip:ltm:ProfileTcp
properties:
closeWaitTimeout: 0
congestionControl: string
defaultsFrom: string
deferredAccept: string
delayedAcks: string
earlyRetransmit: string
fastOpen: string
finwait2timeout: 0
finwaitTimeout: 0
idleTimeout: 0
initialCongestionWindowsize: 0
keepaliveInterval: 0
nagle: string
name: string
partition: string
proxybufferHigh: 0
receiveWindowsize: 0
sendBuffersize: 0
taillossProbe: string
timewaitRecycle: string
verifiedAccept: string
zerowindowTimeout: 0
ProfileTcp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ProfileTcp resource accepts the following input properties:
- Name string
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - Close
Wait intTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- Congestion
Control string - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Deferred
Accept string - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- Delayed
Acks string - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- Early
Retransmit string - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- Fast
Open string - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - Finwait2timeout int
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- Finwait
Timeout int - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- Idle
Timeout int - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- Initial
Congestion intWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- Keepalive
Interval int - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- Nagle string
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- Partition string
- name of partition
- Proxybuffer
High int - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- Receive
Windowsize int - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- Send
Buffersize int - Specifies the SEND window size. The default is 131072 bytes.
- Tailloss
Probe string - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- Timewait
Recycle string - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- Verified
Accept string - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - Zerowindow
Timeout int - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- Name string
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - Close
Wait intTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- Congestion
Control string - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Deferred
Accept string - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- Delayed
Acks string - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- Early
Retransmit string - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- Fast
Open string - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - Finwait2timeout int
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- Finwait
Timeout int - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- Idle
Timeout int - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- Initial
Congestion intWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- Keepalive
Interval int - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- Nagle string
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- Partition string
- name of partition
- Proxybuffer
High int - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- Receive
Windowsize int - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- Send
Buffersize int - Specifies the SEND window size. The default is 131072 bytes.
- Tailloss
Probe string - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- Timewait
Recycle string - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- Verified
Accept string - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - Zerowindow
Timeout int - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- name String
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - close
Wait IntegerTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion
Control String - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred
Accept String - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed
Acks String - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early
Retransmit String - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast
Open String - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout Integer
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait
Timeout Integer - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle
Timeout Integer - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial
Congestion IntegerWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive
Interval Integer - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle String
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- partition String
- name of partition
- proxybuffer
High Integer - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive
Windowsize Integer - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send
Buffersize Integer - Specifies the SEND window size. The default is 131072 bytes.
- tailloss
Probe String - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait
Recycle String - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified
Accept String - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow
Timeout Integer - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- name string
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - close
Wait numberTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion
Control string - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred
Accept string - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed
Acks string - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early
Retransmit string - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast
Open string - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout number
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait
Timeout number - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle
Timeout number - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial
Congestion numberWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive
Interval number - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle string
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- partition string
- name of partition
- proxybuffer
High number - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive
Windowsize number - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send
Buffersize number - Specifies the SEND window size. The default is 131072 bytes.
- tailloss
Probe string - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait
Recycle string - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified
Accept string - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow
Timeout number - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- name str
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - close_
wait_ inttimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion_
control str - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults_
from str - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred_
accept str - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed_
acks str - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early_
retransmit str - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast_
open str - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout int
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait_
timeout int - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle_
timeout int - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial_
congestion_ intwindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive_
interval int - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle str
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- partition str
- name of partition
- proxybuffer_
high int - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive_
windowsize int - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send_
buffersize int - Specifies the SEND window size. The default is 131072 bytes.
- tailloss_
probe str - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait_
recycle str - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified_
accept str - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow_
timeout int - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- name String
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - close
Wait NumberTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion
Control String - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred
Accept String - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed
Acks String - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early
Retransmit String - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast
Open String - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout Number
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait
Timeout Number - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle
Timeout Number - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial
Congestion NumberWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive
Interval Number - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle String
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- partition String
- name of partition
- proxybuffer
High Number - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive
Windowsize Number - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send
Buffersize Number - Specifies the SEND window size. The default is 131072 bytes.
- tailloss
Probe String - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait
Recycle String - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified
Accept String - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow
Timeout Number - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProfileTcp resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ProfileTcp Resource
Get an existing ProfileTcp 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?: ProfileTcpState, opts?: CustomResourceOptions): ProfileTcp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
close_wait_timeout: Optional[int] = None,
congestion_control: Optional[str] = None,
defaults_from: Optional[str] = None,
deferred_accept: Optional[str] = None,
delayed_acks: Optional[str] = None,
early_retransmit: Optional[str] = None,
fast_open: Optional[str] = None,
finwait2timeout: Optional[int] = None,
finwait_timeout: Optional[int] = None,
idle_timeout: Optional[int] = None,
initial_congestion_windowsize: Optional[int] = None,
keepalive_interval: Optional[int] = None,
nagle: Optional[str] = None,
name: Optional[str] = None,
partition: Optional[str] = None,
proxybuffer_high: Optional[int] = None,
receive_windowsize: Optional[int] = None,
send_buffersize: Optional[int] = None,
tailloss_probe: Optional[str] = None,
timewait_recycle: Optional[str] = None,
verified_accept: Optional[str] = None,
zerowindow_timeout: Optional[int] = None) -> ProfileTcp
func GetProfileTcp(ctx *Context, name string, id IDInput, state *ProfileTcpState, opts ...ResourceOption) (*ProfileTcp, error)
public static ProfileTcp Get(string name, Input<string> id, ProfileTcpState? state, CustomResourceOptions? opts = null)
public static ProfileTcp get(String name, Output<String> id, ProfileTcpState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Close
Wait intTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- Congestion
Control string - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Deferred
Accept string - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- Delayed
Acks string - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- Early
Retransmit string - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- Fast
Open string - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - Finwait2timeout int
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- Finwait
Timeout int - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- Idle
Timeout int - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- Initial
Congestion intWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- Keepalive
Interval int - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- Nagle string
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- Name string
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - Partition string
- name of partition
- Proxybuffer
High int - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- Receive
Windowsize int - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- Send
Buffersize int - Specifies the SEND window size. The default is 131072 bytes.
- Tailloss
Probe string - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- Timewait
Recycle string - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- Verified
Accept string - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - Zerowindow
Timeout int - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- Close
Wait intTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- Congestion
Control string - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- Defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- Deferred
Accept string - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- Delayed
Acks string - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- Early
Retransmit string - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- Fast
Open string - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - Finwait2timeout int
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- Finwait
Timeout int - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- Idle
Timeout int - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- Initial
Congestion intWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- Keepalive
Interval int - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- Nagle string
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- Name string
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - Partition string
- name of partition
- Proxybuffer
High int - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- Receive
Windowsize int - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- Send
Buffersize int - Specifies the SEND window size. The default is 131072 bytes.
- Tailloss
Probe string - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- Timewait
Recycle string - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- Verified
Accept string - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - Zerowindow
Timeout int - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- close
Wait IntegerTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion
Control String - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred
Accept String - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed
Acks String - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early
Retransmit String - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast
Open String - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout Integer
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait
Timeout Integer - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle
Timeout Integer - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial
Congestion IntegerWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive
Interval Integer - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle String
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- name String
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - partition String
- name of partition
- proxybuffer
High Integer - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive
Windowsize Integer - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send
Buffersize Integer - Specifies the SEND window size. The default is 131072 bytes.
- tailloss
Probe String - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait
Recycle String - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified
Accept String - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow
Timeout Integer - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- close
Wait numberTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion
Control string - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults
From string - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred
Accept string - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed
Acks string - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early
Retransmit string - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast
Open string - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout number
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait
Timeout number - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle
Timeout number - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial
Congestion numberWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive
Interval number - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle string
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- name string
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - partition string
- name of partition
- proxybuffer
High number - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive
Windowsize number - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send
Buffersize number - Specifies the SEND window size. The default is 131072 bytes.
- tailloss
Probe string - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait
Recycle string - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified
Accept string - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow
Timeout number - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- close_
wait_ inttimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion_
control str - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults_
from str - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred_
accept str - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed_
acks str - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early_
retransmit str - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast_
open str - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout int
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait_
timeout int - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle_
timeout int - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial_
congestion_ intwindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive_
interval int - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle str
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- name str
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - partition str
- name of partition
- proxybuffer_
high int - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive_
windowsize int - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send_
buffersize int - Specifies the SEND window size. The default is 131072 bytes.
- tailloss_
probe str - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait_
recycle str - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified_
accept str - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow_
timeout int - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
- close
Wait NumberTimeout - Specifies the number of seconds that a connection remains in a LAST-ACK state before quitting. A value of 0 represents a term of forever (or until the maxrtx of the FIN state). The default value is 5 seconds.
- congestion
Control String - Specifies the algorithm to use to share network resources among competing users to reduce congestion. The default is High Speed.
- defaults
From String - Specifies the profile that you want to use as the parent profile. Your new profile inherits all settings and values from the parent profile specified.
- deferred
Accept String - Specifies, when enabled, that the system defers allocation of the connection chain context until the client response is received. This option is useful for dealing with 3-way handshake DOS attacks. The default value is disabled.
- delayed
Acks String - Specifies, when checked (enabled), that the system can send fewer than one ACK (acknowledgment) segment per data segment received. By default, this setting is enabled.
- early
Retransmit String - Enabling this setting allows TCP to assume a packet is lost after fewer than the standard number of duplicate ACKs, if there is no way to send new data and generate more duplicate ACKs.
- fast
Open String - When enabled, permits TCP Fast Open, allowing properly equipped TCP clients to send data with the SYN packet. Default is
enabled
. Iffast_open
set toenabled
, argumentverified_accept
can't be set toenabled
. - finwait2timeout Number
- Specifies the number of seconds that a connection is in the FIN-WAIT-2 state before quitting. The default value is 300 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state).
- finwait
Timeout Number - Specifies the number of seconds that a connection is in the FIN-WAIT-1 or closing state before quitting. The default value is 5 seconds. A value of 0 (zero) represents a term of forever (or until the maxrtx of the FIN state). You can also specify immediate or indefinite.
- idle
Timeout Number - Specifies the number of seconds that a connection is idle before the connection is eligible for deletion. The default value is 300 seconds.
- initial
Congestion NumberWindowsize - Specifies the initial congestion window size for connections to this destination. Actual window size is this value multiplied by the MSS (Maximum Segment Size) for the same connection. The default is 10. Valid values range from 0 to 64.
- keepalive
Interval Number - Specifies the keep alive probe interval, in seconds. The default value is 1800 seconds.
- nagle String
- Specifies whether the system applies Nagle's algorithm to reduce the number of short segments on the network.If you select Auto, the system determines whether to use Nagle's algorithm based on network conditions. By default, this setting is disabled.
- name String
- Name of the LTM TCP Profile,name should be
full path
. The full path is the combination of thepartition + name
(example: /Common/my-pool ) orpartition + directory + name
of the resource (example: /Common/test/my-pool ) - partition String
- name of partition
- proxybuffer
High Number - Specifies the proxy buffer level, in bytes, at which the receive window is closed.
- receive
Windowsize Number - Specifies the maximum advertised RECEIVE window size. This value represents the maximum number of bytes to which the RECEIVE window can scale. The default is 65535 bytes.
- send
Buffersize Number - Specifies the SEND window size. The default is 131072 bytes.
- tailloss
Probe String - Enabling this setting allows TCP to send a probe segment to trigger fast recovery instead of recovering a loss via a retransmission timeout,By default, this setting is enabled.
- timewait
Recycle String - Using this setting enabled, the system can recycle a wait-state connection immediately upon receipt of a new connection request instead of having to wait until the connection times out of the wait state. By default, this setting is enabled.
- verified
Accept String - Specifies, when checked (enabled), that the system can actually communicate with the server before establishing a client connection. To determine this, the system sends the server a SYN packet before responding to the client's SYN with a SYN-ACK. When unchecked, the system accepts the client connection before selecting a server to talk to. By default, this setting is
disabled
. - zerowindow
Timeout Number - Specifies the timeout in milliseconds for terminating a connection with an effective zero length TCP transmit window.
Import
ing
An existing tcp profile can be imported into this resource by supplying tcp profile Name in full path
as id
.
An example is below:
$ terraform import bigip_ltm_profile_tcp.tcp-lan-profile-import /Common/test-tcp-lan-profile
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.