Skip to content

Commit

Permalink
ssh: config rejig, jump box setup for home+apartment
Browse files Browse the repository at this point in the history
  • Loading branch information
damncabbage committed Aug 29, 2023
1 parent db1b902 commit 9ee9e71
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .ssh/config
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
36 changes: 36 additions & 0 deletions .ssh/config.home
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:

0 comments on commit 9ee9e71

Please sign in to comment.