22 lines
655 B
Text
22 lines
655 B
Text
## ssh_config
|
|
## This configuration file is intended to be supplied to the ssh client on the
|
|
## developer's *local* console system (using the -F option) when using ssh
|
|
## to connect to a CryptoNAS Live "devel build" system.
|
|
|
|
Host cryptonas
|
|
|
|
# change this part according to your needs
|
|
HostName 192.168.0.23
|
|
Port 22
|
|
|
|
# maybe you want to use rsa authentication?
|
|
# see configure-examples.d/README for examples
|
|
IdentityFile local.conf.d/id_rsa
|
|
|
|
# this should be valid for everyone
|
|
User root
|
|
CheckHostIP no
|
|
StrictHostKeyChecking no
|
|
|
|
# nice for frequently changing server key due to a rebuild of the base system
|
|
UserKnownHostsFile /tmp/cryptobox-ssh-known_hosts
|