-
Notifications
You must be signed in to change notification settings - Fork 426
/
tcp-window.sh
52 lines (42 loc) · 1.34 KB
/
tcp-window.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
##!/bin/sh
# Issues https://1024.day
if [[ $EUID -ne 0 ]]; then
clear
echo "Error: This script must be run as root!"
exit 1
fi
cat >/etc/security/limits.conf<<EOF
* soft nproc 655360
* hard nproc 655360
* soft nofile 655360
* hard nofile 655360
root soft nproc 655360
root hard nproc 655360
root soft nofile 655360
root hard nofile 655360
bro soft nproc 655360
bro hard nproc 655360
bro soft nofile 655360
bro hard nofile 655360
EOF
echo "session required pam_limits.so" >> /etc/pam.d/common-session
echo "session required pam_limits.so" >> /etc/pam.d/common-session-noninteractive
echo "DefaultLimitNOFILE=655360" >> /etc/systemd/system.conf
cat >/etc/sysctl.conf<<EOF
fs.file-max = 655360
net.ipv4.tcp_congestion_control = bbr
net.core.default_qdisc = fq
net.ipv4.tcp_slow_start_after_idle = 0
net.ipv4.tcp_mtu_probing = 1
net.ipv4.tcp_rmem = 8192 262144 96468992
net.ipv4.tcp_wmem = 4096 16384 48234496
#net.ipv4.udp_rmem_min = 8192
#net.ipv4.udp_wmem_min = 8192
net.ipv4.tcp_adv_win_scale = -2
net.ipv4.tcp_notsent_lowat = 131072
#net.ipv6.conf.all.disable_ipv6 = 1
#net.ipv6.conf.default.disable_ipv6 = 1
#net.ipv6.conf.lo.disable_ipv6 = 1
EOF
rm tcp-window.sh
sleep 3 && reboot >/dev/null 2>&1