ESET Online Help

Search English
Select the category
Select the topic

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 service sshd status - verify that SSH is running. If SSH is not running, you can start it: service sshd start

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