Loading request...
User suggests adding a feature to automatically change TCP congestion control settings to improve VPN speed, as current settings can drastically reduce performance.
so if tcp_congestion_control is cubic, vpn speed reduces DRASTICALLY executing this fixes it sudo sysctl -w net.core.default_qdisc=fq sudo sysctl -w net.ipv4.tcp_congestion_control=bbr or to do it permanently: echo -e "net.core.default_qdisc=fq\nnet.ipv4.tcp_congestion_control=bbr" | sudo tee -a /etc/sysctl.conf && sudo sysctl -p