Jesús 6fa8369ce1 ssh doc minor fix | 2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
$ ssh-keygen -o -a 100 -t ed25519 -f ~/.ssh/id_ed25519 -C "john@example.com"
$ chmod 600 ~/.ssh/id_ed25519
To connect to a server, run:
$ ssh -p port user@server-address
port
for default is 22
$ doas pacman -S xclip
$ xclip -sel clip < ~/.ssh/id_ed25519.pub
The client can be configured to store common options and hosts. All options can be declared globally or restricted to specific hosts. For example:
$ nano -w ~/.ssh/config
# host-specific options
Host myserver
HostName ssh.heckyel.ga
IdentityFile ~/.ssh/id_ed25519
user Snowden
Port 22
ServerAliveInterval 5
With such a configuration, the following commands are equivalent
$ ssh -p port user@server-address
$ ssh myserver
The SSH daemon configuration file can be found and edited in /etc/ssh/sshd_config.
To allow access only for some users add this line:
AllowUsers user1 user2
To allow access only for some groups:
AllowGroups group1 group2
To add a nice welcome message (e.g. from the /etc/issue file), configure the Banner option:
Banner /etc/issue
$ ssh-copy-id -i ~/.ssh/mykey.pub user@host
For additional protection, you can prevent users from adding new public keys and connecting from them.
In the server, make the authorized_keys file read-only for the user and deny all other permissions:
$ chmod 400 ~/.ssh/authorized_keys