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
Fix ProxyJump to use correct username from SSH config
ET was using the destination username for ProxyJump connections instead
of the jumphost's username defined in SSH config.
With this SSH config:
Host telie
User corona
Host step
User anl
ProxyJump telie
Running 'et step' would incorrectly try 'anl@home.alelec.net' instead
of 'corona@home.alelec.net' for the jumphost connection.
Fix: Parse jumphost SSH config to extract its username, use that for
the -J flag. Fallback to local username if not specified.
0 commit comments