From 79c233daa4caee1a8af0c7a91e1d4aee96d410e9 Mon Sep 17 00:00:00 2001 From: Keith Wong Date: Thu, 12 Apr 2018 11:21:08 +0800 Subject: kernel: add kmod-tcp-bbr This adds support for BBR (Bottleneck Bandwidth and RTT) TCP congestion control. Applications (e.g. webservers, VPN client/server) which initiate connections from router side can benefit from this. This provide an easier way for users to use BBR by selecting / installing kmod-tcp-bbr instead of altering kernel config and compiling firmware by themselves. Signed-off-by: Keith Wong --- package/kernel/linux/files/sysctl-tcp-bbr-k4_9.conf | 5 +++++ package/kernel/linux/files/sysctl-tcp-bbr.conf | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 package/kernel/linux/files/sysctl-tcp-bbr-k4_9.conf create mode 100644 package/kernel/linux/files/sysctl-tcp-bbr.conf (limited to 'package/kernel/linux/files') diff --git a/package/kernel/linux/files/sysctl-tcp-bbr-k4_9.conf b/package/kernel/linux/files/sysctl-tcp-bbr-k4_9.conf new file mode 100644 index 0000000000..2f63b72888 --- /dev/null +++ b/package/kernel/linux/files/sysctl-tcp-bbr-k4_9.conf @@ -0,0 +1,5 @@ +# Do not edit, changes to this file will be lost on upgrades +# /etc/sysctl.conf can be used to customize sysctl settings + +net.ipv4.tcp_congestion_control=bbr +net.core.default_qdisc=fq diff --git a/package/kernel/linux/files/sysctl-tcp-bbr.conf b/package/kernel/linux/files/sysctl-tcp-bbr.conf new file mode 100644 index 0000000000..3a7dba2f0b --- /dev/null +++ b/package/kernel/linux/files/sysctl-tcp-bbr.conf @@ -0,0 +1,4 @@ +# Do not edit, changes to this file will be lost on upgrades +# /etc/sysctl.conf can be used to customize sysctl settings + +net.ipv4.tcp_congestion_control=bbr -- cgit v1.2.3