From ccc774509972ba99f74d4df7a54a480caa6468ac Mon Sep 17 00:00:00 2001 From: Samuel Lorch Date: Mon, 24 Apr 2023 20:07:08 +0200 Subject: [PATCH] Enable Routing in install script --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install.sh b/install.sh index fab0ab9..eaa077f 100644 --- a/install.sh +++ b/install.sh @@ -9,6 +9,10 @@ echo "Disable SE Linux" setenforce 0 sed -i s/^SELINUX=.*$/SELINUX=permissive/ /etc/selinux/config +echo "Allow Routing" +echo 'net.ipv4.ip_forward=1' >> /etc/sysctl.conf +sysctl -p + echo "Setup Repos" dnf install epel-release /usr/bin/crb enable