How to enable SSH
To enable SSH on ESET PROTECT VA (or ESMC VA), see Enable/Disable remote access.
SSH troubleshooting
Open the terminal and run the following commands:
•sudo systemctl status sshd - verify that SSH is running. If SSH is not running, you can start it: sudo systemctl start sshd
•sudo iptables -S - if port 22 is open, you will see the following line: -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT. To add port 22 to iptables, run the command below:
sudo iptables -A INPUT -p tcp -m tcp --dport 22 -j ACCEPT