• ssh

    Published: February 9, 2026 | Updated: February 9, 2026

    Client Config

    in the users directory in subfolder “.ssh” edit/create file “config”

    Host *
        ServerAliveInterval 30
        ServerAliveCountMax 3 
        TCPKeepAlive no
        
    Host NAME_USED_FOR_OPENING_CONNECTION
      HostName IP
      Port PORT
      User USERNAME
    
    ...
    

    to enable passwordless login

    ssh-keygen # if not done before
    
    ssh-copy-id -p 2222 USER@IP