-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathssh-config-template
More file actions
46 lines (39 loc) · 975 Bytes
/
ssh-config-template
File metadata and controls
46 lines (39 loc) · 975 Bytes
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
# SSH Config Template
# This file shows the format used by the setup scripts
# Location: ~/.ssh/config (Linux/macOS) or %USERPROFILE%\.ssh\config (Windows)
Host pizero
HostName pizero.local
User pi
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
Host pi1
HostName pi1.local
User pi
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
Host pi2
HostName pi2.local
User pi
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
Host pi4
HostName pi4.local
User pi
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
Host pi5
HostName pi5.local
User pi
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
Host cubexx
HostName cubexx.local
User pi
IdentityFile ~/.ssh/id_ed25519
IdentitiesOnly yes
# Additional common SSH options you might want to add:
# ServerAliveInterval 60
# ServerAliveCountMax 3
# StrictHostKeyChecking ask
# UserKnownHostsFile ~/.ssh/known_hosts
# LogLevel INFO