You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
398 B
Plaintext
10 lines
398 B
Plaintext
# In a video server, we are often sending files to a client
|
|||
# which can't accept it as fast as our local network connection
|
|||
# could produce packets. To prevent packet loss and buffer bloat,
|
|||
# it's especially important to use a modern CoDel scheduler which
|
|||
# knows how to delay outgoing packets to match slower client links.
|
|||
|
|||
net.core.default_qdisc = fq_codel
|
|||
net.ipv4.tcp_congestion_control = bbr
|
|||
|