User Tools

Site Tools


ssh

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
ssh [2026/04/29 04:57] nebulassh [2026/04/30 08:53] (current) – ssh config example sylvie
Line 6: Line 6:
 ssh -p 2020 user@tilix.art ssh -p 2020 user@tilix.art
 </code> </code>
 +
 +If connecting with another ssh or sftp software, look for an option to set your port to **2020**
  
 You will be prompted for your password. You can add your public key to **~/.ssh/authorized_keys** to automate login. You will be prompted for your password. You can add your public key to **~/.ssh/authorized_keys** to automate login.
 +
 +You can make login more convenient by adding an entry for tilix to your **~/.ssh/config**.
 +For example:
 +
 +<code>
 +# log in with just `ssh tilix`
 +Host tilix
 +    IdentityFile ~/.ssh/private_key
 +    # requires the corresponding public key to be in your authorized_keys on tilix
 +    User user
 +    Hostname tilix.art
 +    Port 2020
 +
 +# log in with `ssh tilix.art`
 +Host tilix.art
 +    IdentityFile ~/.ssh/private_key
 +    User user
 +    Port 2020
 +
 +# see `man ssh_config` for more details
 +</code>
ssh.1777438663.txt.gz · Last modified: by nebula

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki