From 2db98225cb1dd5c97b89c2dc4571c7c80cd3dac0 Mon Sep 17 00:00:00 2001 From: EarthlingDavey <15802017+EarthlingDavey@users.noreply.github.com> Date: Tue, 3 Jan 2023 18:21:55 +0000 Subject: [PATCH] Update altnetworking.sh Update protocol `http` to `https` for downloading iptables --- altnetworking/altnetworking.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altnetworking/altnetworking.sh b/altnetworking/altnetworking.sh index db10a67..197ecf9 100755 --- a/altnetworking/altnetworking.sh +++ b/altnetworking/altnetworking.sh @@ -200,13 +200,13 @@ then if dpkg --compare-versions `iptables --version | grep -oP "iptables v\K.*$" | cut -d\ -f1 ` "lt" "1.6"; then echo -e "\e[31mYou need iptables 1.6.0+. Please install manually. Aborting.\e[0m" >&2 - echo "Find latest iptables at http://www.netfilter.org/projects/iptables/downloads.html" >&2 + echo "Find latest iptables at https://www.netfilter.org/projects/iptables/downloads.html" >&2 echo "Commands to install iptables 1.6.0:" >&2 echo "apt-get install iptables/unstable libxtables11/unstable" >&2 echo "... or compile from source as shown below:" >&2 echo -e "\e[34mapt-get install dh-autoreconf bison flex cd /tmp -curl http://www.netfilter.org/projects/iptables/files/iptables-1.6.0.tar.bz2 | tar xj +curl https://www.netfilter.org/projects/iptables/files/iptables-1.6.0.tar.bz2 | tar xj cd iptables-1.6.0 ./configure --prefix=/usr \\ --sbindir=/sbin \\