From 39f1a94d1b27dcae338ace4aacc169a146b739ea Mon Sep 17 00:00:00 2001 From: ghost Date: Sat, 25 Dec 2021 18:36:40 +0200 Subject: [PATCH] add tcp/udp 29333 port into the firewall rules --- twister-cli-installer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/twister-cli-installer.sh b/twister-cli-installer.sh index 11fbea1..941de45 100644 --- a/twister-cli-installer.sh +++ b/twister-cli-installer.sh @@ -90,11 +90,12 @@ function install() { sudo ufw status until [[ $REMOTE =~ (y|n) ]]; do - read -rp "Is this remote node (28332, 28333 and 22 ports will be allowed in the iptables rules)? [y/n]: " -e REMOTE + read -rp "Is this remote node (28332, 28333, 29333 and 22 ports will be allowed in the iptables rules)? [y/n]: " -e REMOTE done if [[ $REMOTE == "y" ]]; then sudo ufw allow 28332 sudo ufw allow 28333 + sudo ufw allow 29333 sudo ufw allow 22 fi