-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssh-config.example
More file actions
46 lines (40 loc) · 1.56 KB
/
Copy pathssh-config.example
File metadata and controls
46 lines (40 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Example ~/.ssh/config entries for the registered machines.
# Copy into your actual ~/.ssh/config on each machine you want to reach them from,
# and point IdentityFile at whichever key is actually authorized on the target
# (see AGENTS.md for which key comments are currently trusted there).
#
# Each machine gets two aliases: the plain name for LAN access, and a `-ts`
# suffixed one using its Tailscale IP for when you're off-LAN. Same host, same
# host key fingerprints — just pick whichever is reachable.
Host ananords-dev
HostName 192.168.68.149
User ananords
IdentityFile ~/.ssh/id_ed25519_ananords_outlook
# Pin the host key so a changed/spoofed key fails loudly instead of silently
# prompting "yes/no" — fingerprints are listed in AGENTS.md.
StrictHostKeyChecking accept-new
Host ananords-dev-ts
HostName 100.79.130.64
User ananords
IdentityFile ~/.ssh/id_ed25519_ananords_outlook
StrictHostKeyChecking accept-new
Host bazzite-dotx-dev
HostName 192.168.68.223
User ananords
IdentityFile ~/.ssh/id_ed25519_ananords_outlook
StrictHostKeyChecking accept-new
Host bazzite-dotx-dev-ts
HostName 100.121.136.79
User ananords
IdentityFile ~/.ssh/id_ed25519_ananords_outlook
StrictHostKeyChecking accept-new
Host windows-dev
HostName 192.168.68.115
User ananords
IdentityFile ~/.ssh/id_ed25519_ananords_outlook
StrictHostKeyChecking accept-new
Host windows-dev-ts
HostName 100.107.236.91
User ananords
IdentityFile ~/.ssh/id_ed25519_ananords_outlook
StrictHostKeyChecking accept-new