This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Update system packages | |
| sudo apt update | |
| # Install autossh for persistent SSH tunnels | |
| sudo apt install autossh | |
| # Generate SSH key (ed25519) | |
| ssh-keygen -t ed25519 | |
| # Copy SSH key to remote server (port 9011) |