34 lines
698 B
Text
34 lines
698 B
Text
# SSH Config for local network
|
|
|
|
# NUC
|
|
Host shadow8t4-nuc
|
|
HostName 192.168.1.201
|
|
User shadow8t4
|
|
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|
|
|
|
# Optiplex
|
|
Host shadow8t4-nas
|
|
HostName 192.168.1.202
|
|
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
|
|
|
|
# Vultr VPS
|
|
Host werefox-vps
|
|
HostName werefox.dev
|
|
Port 22
|
|
User shadow8t4
|
|
IdentityFile /home/shadow8t4/.ssh/id_ed25519
|