check UDP / TCP max mem size
https://git.fairkom.net/hosting/fairmeeting/-/wikis/videobridge-VM-installation
- jvb-hetzner-0
- jvb-hetzner-1
- jvb-internex-0
- jvb-argoit-0
increase the TCP and UDP receive buffer size
check default settings first with sysctl -a | grep mem
append in /etc/sysctl.conf
# increase Linux TCP buffer limits
net.core.rmem_max = 10485760
net.core.wmem_max = 10485760
# increase Linux autotuning TCP buffer limits
# min, default, and max number of bytes to use
net.ipv4.tcp_mem = 3001413 4001884 6002826
net.ipv4.tcp_rmem = 4096 87380 4194304
net.ipv4.tcp_wmem = 4096 16384 4194304
# increase Linux autotuning UDP buffer limits
net.ipv4.udp_mem = 764178 1018904 1528356
load with sysctl -p