Modified ssh-config, added a secondary config for wireguard-connected devices.
This commit is contained in:
parent
295449c44a
commit
f4d1642097
2 changed files with 76 additions and 19 deletions
|
@ -1,3 +1,9 @@
|
|||
# Linode VPS
|
||||
Host linode-vps
|
||||
HostName 50.116.26.217
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# SSH Config for local network
|
||||
|
||||
# ASUS
|
||||
|
@ -30,22 +36,3 @@ Host shadow8t4-raspi4-beta
|
|||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# NUC - Remote
|
||||
Host werefox-nuc
|
||||
HostName werefox.dev
|
||||
Port 20202
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Optiplex Remote
|
||||
Host werefox-nas
|
||||
HostName werefox.dev
|
||||
Port 22222
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Linode VPS
|
||||
Host linode-vps
|
||||
HostName 50.116.26.217
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
|
70
ssh/wg-ssh-config
Normal file
70
ssh/wg-ssh-config
Normal file
|
@ -0,0 +1,70 @@
|
|||
# Linode VPS
|
||||
Host linode-vps
|
||||
HostName 50.116.26.217
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# SSH Config for Wireguard network
|
||||
|
||||
# ASUS
|
||||
Host shadow8t4-asus
|
||||
HostName 192.168.4.8
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# NUC
|
||||
Host shadow8t4-nuc
|
||||
HostName 192.168.4.2
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Optiplex
|
||||
Host shadow8t4-nas
|
||||
HostName 192.168.4.10
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Raspi 4 alpha
|
||||
Host shadow8t4-raspi4-alpha
|
||||
HostName 192.168.4.6
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Raspi 4 beta
|
||||
Host shadow8t4-raspi4-beta
|
||||
HostName 192.168.4.7
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# SSH Config for local network
|
||||
|
||||
# ASUS
|
||||
Host local-shadow8t4-asus
|
||||
HostName 192.168.1.207
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# NUC
|
||||
Host local-shadow8t4-nuc
|
||||
HostName 192.168.1.201
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Optiplex
|
||||
Host local-shadow8t4-nas
|
||||
HostName 192.168.1.202
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Raspi 4 alpha
|
||||
Host local-shadow8t4-raspi4-alpha
|
||||
HostName 192.168.1.208
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
||||
# Raspi 4 beta
|
||||
Host local-shadow8t4-raspi4-beta
|
||||
HostName 192.168.1.209
|
||||
User shadow8t4
|
||||
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
||||
|
Reference in a new issue