-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ssh: config rejig, jump box setup for home+apartment
- Loading branch information
1 parent
db1b902
commit 9ee9e71
Showing
2 changed files
with
42 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
Include ~/.ssh/config.local | ||
|
||
IgnoreUnknown UseKeychain # MacOS; ignored elsewhere | ||
#IgnoreUnknown AddKeysToAgent # for very old SSH clients | ||
|
||
Host * | ||
UseKeychain yes # MacOS | ||
UseKeychain yes | ||
AddKeysToAgent yes | ||
IPQoS throughput # For the apartment...? | ||
|
||
Host * !*.aws | ||
IdentityFile ~/.ssh/id_ed25519 | ||
|
||
Host pi | ||
HostName lcars.rhoward.id.au | ||
Port 8097 | ||
User pi | ||
|
||
Include ~/.ssh/config.local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
### Home ### | ||
|
||
Host pi | ||
HostName lcars.rhoward.id.au | ||
Port 8097 | ||
User pi | ||
ForwardAgent yes | ||
|
||
Host clank | ||
ProxyJump pi | ||
User octoprint | ||
|
||
|
||
### Apartment ### | ||
|
||
Host stargate | ||
HostName jacqueline.id.au | ||
User buzzyrobin | ||
ForwardAgent yes | ||
|
||
Host abydos atlantis | ||
ProxyJump stargate | ||
User buzzyrobin | ||
|
||
Host abydos-screen | ||
ProxyJump stargate | ||
HostName abydos | ||
User buzzyrobin | ||
RequestTTY force | ||
RemoteCommand screen -dR | ||
|
||
Host replimat | ||
ProxyJump stargate | ||
User jacqueline | ||
|
||
# vim: set filetype=sshconfig: |