Created
October 30, 2018 20:13
-
-
Save andrei-dascalu/9de6536051ea779f8661bf25cc3a1cac to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
sysctl -w net.core.netdev_max_backlog="150000" | |
sysctl -w net.core.rmem_max="16777216" | |
sysctl -w net.core.somaxconn="65535" | |
sysctl -w net.core.wmem_max="16777216" | |
sysctl -w net.ipv4.ip_local_port_range="1025 65535" | |
sysctl -w net.ipv4.tcp_fin_timeout="20" | |
sysctl -w net.ipv4.tcp_keepalive_time="30" | |
sysctl -w net.ipv4.tcp_max_syn_backlog="20480" | |
sysctl -w net.ipv4.tcp_max_tw_buckets="400000" | |
sysctl -w net.ipv4.tcp_no_metrics_save="1" | |
sysctl -w net.ipv4.tcp_syn_retries="2" | |
sysctl -w net.ipv4.tcp_synack_retries="2" | |
sysctl -w net.ipv4.tcp_tw_reuse="1" | |
sysctl -w net.ipv4.tcp_timestamps="0" | |
sysctl -w vm.min_free_kbytes="65536" | |
sysctl -w vm.overcommit_memory="1" | |
sysctl -w vm.max_map_count="2621440" | |
sysctl -w vm.swappiness="10" | |
sysctl -w vm.dirty_ratio="40" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment