Files
principal-backup-script/ssh_config_backup_targets

84 lines
2.1 KiB
Plaintext

# NOTE: this file should be included via the `Include` directive in ~/.ssh/config
#
# NOTE: For the hosts where BatchMode is enabled:
# Because BatchMode is enabled, ssh will refuse to ask about new host-keys.
# If you copy paste one of these to point at a new Hostname, make sure to
# either disable BatchMode and SSH once to register the host in `known_hosts`,
# or ssh with -oStrictHostKeyChecking=accept-new once.
Host ameno ameno.pvv.ntnu.no
User root
IdentityFile ~/.ssh/id_rsa
Host homepvv microbel microbel.pvv.ntnu.no
User root
IdentityFile ~/.ssh/id_rsa
Host innovation innovation.pvv.ntnu.no
User root
IdentityFile ~/.ssh/id_rsa
Host sleipner sleipner.pvv.ntnu.no
User root
IdentityFile ~/.ssh/id_rsa
Host tom tom.pvv.ntnu.no
User root
IdentityFile ~/.ssh/id_rsa
Host balduzius-backup
User root
Hostname balduzius.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_balduzius_rsync_backup
BatchMode yes
Host isvegg-backup
User root
Hostname isvegg.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_isvegg_rsync_backup
BatchMode yes
Host matrix-media-store-backup
User root
Hostname matrix.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_matrix_media_store_rsync_backup
BatchMode yes
Host gitea-backup
User root
Hostname git.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_gitea_rsync_backup
BatchMode yes
Host mediawiki-backup
User root
Hostname wiki.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_mediawiki_rsync_backup
BatchMode yes
Host postgresql-backup
User root
Hostname postgres.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_postgresql_rsync_backup
BatchMode yes
Host mysql-backup
User root
Hostname mysql.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_mysql_rsync_backup
BatchMode yes
Host vaultwarden-backup
User root
Hostname pw.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_vaultwarden_rsync_backup
BatchMode yes
Host snappymail-backup
User root
Hostname snappymail.pvv.ntnu.no
IdentityFile /backupz/ssh_extra_keys/id_ed25519_snappymail_rsync_backup
BatchMode yes
# vim: set ft=sshconfig: