From e351847b7782594e6b879a6f5a5bc6ce3a901b36 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Mon, 26 Feb 2024 07:45:15 -0400 Subject: [PATCH] Add ssh config --- dot_ssh/config | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 dot_ssh/config diff --git a/dot_ssh/config b/dot_ssh/config new file mode 100644 index 0000000..88372f0 --- /dev/null +++ b/dot_ssh/config @@ -0,0 +1,40 @@ +Host fcslinux + Hostname fcslinux.cs.unb.ca + Port 22 + User ishoebot + IdentityFile ~/.ssh/unb.ed25519 + AddKeysToAgent yes + ForwardAgent yes + +Host remotelab35 + Hostname remotelabm35.cs.unb.ca + User ishoebot + Port 22 + ProxyCommand ssh -q -W %h:%p fcslinux + +Host cs3103 + Hostname cs3103.cs.unb.ca + User ishoebot + Port 22 + ProxyCommand ssh -q -W %h:%p fcslinux + +Host ubuntu + Hostname ssh.shoebottom.ca + User isaac + Port 2222 + IdentityFile ~/.ssh/ubuntu.ed25519 + AddKeysToAgent yes + +Host github + Hostname github.com + User git + IdentityFile ~/.ssh/git.ed25519 + AddKeysToAgent yes + ForwardAgent yes + +Host gitea + Hostname ssh.shoebottom.ca + User gitea + IdentityFile ~/.ssh/git.ed25519 + AddKeysToAgent yes + ForwardAgent yes \ No newline at end of file