From 2fbc2e0f4e3e52a10f90a421a779650aeb2a35a7 Mon Sep 17 00:00:00 2001 From: Masahiro Kubota <42679530+masahiro-kubota@users.noreply.github.com> Date: Fri, 18 Oct 2024 13:17:08 +0900 Subject: [PATCH] feat: add network setting script (#154) * fix: add network setting Signed-off-by: Masahiro Kubota * fix:add execute permission * fix: change the buffer size accroding to awf document. Signed-off-by: Masahiro Kubota --------- Signed-off-by: Masahiro Kubota --- remote/network_setting.bash | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 remote/network_setting.bash diff --git a/remote/network_setting.bash b/remote/network_setting.bash new file mode 100755 index 00000000..f0145b89 --- /dev/null +++ b/remote/network_setting.bash @@ -0,0 +1,4 @@ +#!/bin/bash + +sudo sysctl -w net.core.rmem_max==2147483647 +sudo ip link set lo multicast on \ No newline at end of file