http://owlzyj4to3l5daq6edgsgp5z4lh4tzlnms4z6jv6xdtkily77j4b3byd.onion/advanced-guides/ssh.html
To proceed, edit the following file: sudo nano /etc/ssh/sshd_config Change: #ListenAddress 0.0.0.0 To: ListenAddress 127.0.0.1 Restart the SSH service: sudo systemctl restart ssh.service Set up key-based authentication This will deny anyone access to your server via SSH, even if they have your password. First, generate an ed25519 key on the host: ssh-keygen -t ed25519 A key password is optional, but advised. First, create an SSH directory on the server: mkdir .ssh From the...