@@ -712,6 +712,21 @@ tcp_syncookies - INTEGER
network connections you can set this knob to 2 to enable
unconditionally generation of syncookies.
+tcp_migrate_req - INTEGER
+ By default, when a listening socket is closed, child sockets are also
+ closed. If it has SO_REUSEPORT enabled, the dropped connections should
+ have been accepted by other listeners on the same port. This option
+ makes it possible to migrate child sockets to another listener when
+ calling close() or shutdown().
+
+ Default: 0
+
+ Note that the source and destination listeners _must_ have the same
+ settings at the socket API level. If there are different kinds of
+ sockets on the port, disable this option or use
+ BPF_PROG_TYPE_SK_REUSEPORT program to select the correct socket by
+ bpf_sk_select_reuseport() or to cancel migration by returning SK_DROP.
+
tcp_fastopen - INTEGER
Enable TCP Fast Open (RFC7413) to send and accept data in the opening
SYN packet.
@@ -132,6 +132,7 @@ struct netns_ipv4 {
int sysctl_tcp_syn_retries;
int sysctl_tcp_synack_retries;
int sysctl_tcp_syncookies;
+ int sysctl_tcp_migrate_req;
int sysctl_tcp_reordering;
int sysctl_tcp_retries1;
int sysctl_tcp_retries2;
@@ -933,6 +933,15 @@ static struct ctl_table ipv4_net_table[] = {
.proc_handler = proc_dointvec
},
#endif
+ {
+ .procname = "tcp_migrate_req",
+ .data = &init_net.ipv4.sysctl_tcp_migrate_req,
+ .maxlen = sizeof(int),
+ .mode = 0644,
+ .proc_handler = proc_dointvec_minmax,
+ .extra1 = SYSCTL_ZERO,
+ .extra2 = SYSCTL_ONE
+ },
{
.procname = "tcp_reordering",
.data = &init_net.ipv4.sysctl_tcp_reordering,