You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
❯ sshs -v
sshs version 1.3.1
❯ sshs
2022/02/04 14:36:43 config variable before Host variable
❯ echo $?
1
My ~/.ssh/config looks something like this:
# ~/.ssh/config
# Jump comes first.
Include ~/.ssh/jump.conf
# Then Group A.
Include ~/.ssh/group_a.conf
# Then Group B.
Include ~/.ssh/group_b.conf
# My own stuff goes here.
Include ~/.ssh/myhosts.conf
# Defaults MUST be LAST.
Include ~/.ssh/defaults.conf
# ~/.ssh/defaults.conf
# Default host * and !<other_host> for exceptions.
host * !github.com !gitlab.com
# My username
user redacted
# Use bastion by default
Proxycommand ssh redacted@jump -YW %h:%p
# Default identity
IdentityFile /Users/redacted/.ssh/id_jump
# Do not leak identities to the remote host
IdentitiesOnly yes
# Use pubkey, not password, by default
PubkeyAuthentication yes
PasswordAuthentication no
# Ask on first connection and remember
stricthostkeychecking ask
# Other defaults
port 22
TCPkeepalive yes
ServerAliveInterval 60
# Uncomment next line on MacOS.
UseKeychain no
The text was updated successfully, but these errors were encountered:
@quantumsheep
This looks pretty useful!
It fails for me on MacOS:
My
~/.ssh/config
looks something like this:The text was updated successfully, but these errors were encountered: