Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions modules/nodes-safe-sysctls-list.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,22 @@ a| This restricts `ICMP_PROTO` datagram sockets to users in the group range. The

| `net.ipv4.ip_unprivileged_port_start`
| This defines the first unprivileged port in the network namespace. To disable all privileged ports, set this to `0`. Privileged ports must not overlap with the `ip_local_port_range`. For more information, see link:https://docs.kernel.org/networking/ip-sysctl.html?highlight=ip_unprivileged_port_start#ip-variables#ip-variables[ip_unprivileged_port_start].

|`net.ipv4.ip_local_reserved_ports`
| Specify a range of comma-separated local ports that you want to reserve for applications or services.

| `net.ipv4.tcp_keepalive_time`
| Specify the interval in seconds before the first `keepalive` probe should be sent after a connection has become idle.

| `net.ipv4.tcp_fin_timeout`
| Specify the time in seconds that a connection remains in the `FIN-WAIT-2` state before it is aborted.

| `net.ipv4.tcp_keepalive_intvl`
| Specify the interval in seconds between the `keepalive` probes. This value is multiplied by the `tcp_keepalive_probes` value to determine the total time required before it is decided that the connection is broken.

| `net.ipv4.tcp_keepalive_probes`
| Specify how many `keepalive` probes to send until it is determined that the connection is broken.

|===


Expand Down