From d8641787adb3f52288ea47086483fe91fd0f0134 Mon Sep 17 00:00:00 2001 From: Sravan Balaji Date: Sun, 23 Jul 2023 20:52:55 -0400 Subject: [PATCH] Add proxmox server and pihole/wireguard VM to ssh config --- .ssh/config | 25 ++++++++++++++++--------- README.org | 19 +++++++++++++------ 2 files changed, 29 insertions(+), 15 deletions(-) diff --git a/.ssh/config b/.ssh/config index 0d40aeb..4f0436d 100644 --- a/.ssh/config +++ b/.ssh/config @@ -4,16 +4,23 @@ Host aur.archlinux.org User aur # Home Server -Host casaos - HostName casaos.home - User casaos - IdentityFile ~/.ssh/id_ed25519 - ForwardAgent yes - ForwardX11 yes - -Host casaos-root - HostName casaos.home +Host proxmox + HostName proxmox.sbalaji.home User root IdentityFile ~/.ssh/id_ed25519 ForwardAgent yes ForwardX11 yes + +Host pihole + HostName pihole.sbalaji.home + User sravan + IdentityFile ~/.ssh/id_ed25519 + ForwardAgent yes + ForwardX11 yes + +Host wireguard + HostName wireguard.sbalaji.home + User sravan + IdentityFile ~/.ssh/id_ed25519 + ForwardAgent yes + ForwardX11 yes diff --git a/README.org b/README.org index 1d2ae41..dabdb7a 100644 --- a/README.org +++ b/README.org @@ -8075,16 +8075,23 @@ Host aur.archlinux.org User aur # Home Server -Host casaos - HostName casaos.home - User casaos +Host proxmox + HostName proxmox.sbalaji.home + User root IdentityFile ~/.ssh/id_ed25519 ForwardAgent yes ForwardX11 yes -Host casaos-root - HostName casaos.home - User root +Host pihole + HostName pihole.sbalaji.home + User sravan + IdentityFile ~/.ssh/id_ed25519 + ForwardAgent yes + ForwardX11 yes + +Host wireguard + HostName wireguard.sbalaji.home + User sravan IdentityFile ~/.ssh/id_ed25519 ForwardAgent yes ForwardX11 yes