Browse Source

add 28333 port to the 'remote node' option to support the twister network

main
ghost 2 years ago
parent
commit
c8f3dfccbe
  1. 3
      twister-cli-installer.sh

3
twister-cli-installer.sh

@ -135,10 +135,11 @@ function install() { @@ -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

Loading…
Cancel
Save