jupyter-forward
jupyter-forward copied to clipboard
respect .ssh/config
It'd be nice if jupyter-forward
respected the ~/.ssh/config
settings particularly ControlMaster
https://stackoverflow.com/questions/56441961/using-ssh-config-file-with-paramiko
It turns out that even if we could get the ssh_config
settings into jupyter-forward
(which I believe fabric/paramiko is automatically doing behind the scenes), paramiko
unfortunately doesn't support the multiplexing setting (ControlMaster
): https://github.com/paramiko/paramiko/issues/852
Relevant PRs:
- https://github.com/paramiko/paramiko/pull/1931