I want to mask ssh so the ssh server is disabled till I need it myself. but still want to have ssh client capabilities.
I use openssh
and the service is ssh.service
and its alias sshd.service
I use ubuntu 22.04
is the correct steps:
systemctl stop sshd
systemctl disable sshd
systemctl mask sshd
systemctl mask ssh
Yes, and remember to use
sudo
:You don't need the 4th line, since
ssh
andsshd
are aliases.