From c8f3dfccbe6dda099e7873ffef02fce84d61f08c Mon Sep 17 00:00:00 2001 From: ghost Date: Thu, 23 Dec 2021 23:38:40 +0200 Subject: [PATCH] add 28333 port to the 'remote node' option to support the twister network --- 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 ea81e61..9715b57 100644 --- a/twister-cli-installer.sh +++ b/twister-cli-installer.sh @@ -135,10 +135,11 @@ function install() { sudo ufw status until [[ $REMOTE =~ (y|n) ]]; do - read -rp "Is this remote node (28332 and 22 ports will be allowed in the iptables rules)? [y/n]: " -e REMOTE + read -rp "Is this remote node (28332, 28333 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 22 fi