42 lines
781 B
Plaintext
42 lines
781 B
Plaintext
# For UNB host tab completion
|
|
Include unb_hosts
|
|
|
|
# Personal webserver
|
|
Host ssh.shoebottom.ca
|
|
User isaac
|
|
Port 2222
|
|
IdentityFile ~/.ssh/ubuntu.ed25519
|
|
AddKeysToAgent yes
|
|
|
|
# Bastion host for the CS department
|
|
Host fcslinux.cs.unb.ca
|
|
User ishoebot
|
|
IdentityFile ~/.ssh/unb.ed25519
|
|
AddKeysToAgent yes
|
|
ForwardAgent yes
|
|
|
|
# Individual hosts for the CS department
|
|
Host *m??.cs.unb.ca
|
|
User ishoebot
|
|
ProxyJump fcslinux.cs.unb.ca
|
|
|
|
# GitHub ssh commits
|
|
Host github.com
|
|
User git
|
|
IdentityFile ~/.ssh/git.ed25519
|
|
AddKeysToAgent yes
|
|
|
|
# Gitea ssh commits
|
|
Host git.shoebottom.ca
|
|
Hostname ssh.shoebottom.ca
|
|
User gitea
|
|
Port 2221
|
|
IdentityFile ~/.ssh/git.ed25519
|
|
AddKeysToAgent yes
|
|
|
|
# AUR ssh commits
|
|
Host aur.archlinux.org
|
|
User aur
|
|
IdentityFile ~/.ssh/aur.ed25519
|
|
AddKeysToAgent yes
|