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
Currently proxy support is done through paramiko which uses ProxyCommand as read from ~/.ssh/config and runs the proxy command in a shell.
Normally the proxy command is another ssh command to a bastion host, which means proxying needs
openssh installed
shell command per host connection to do the proxying, meaning a shell process for each host. This is inefficient and can lead to high system load for large host lists
As an enhancement change proxying so that:
done in native python, no external utilities or shell comands used
add a proxy module to fake_server
add tests using the above
The text was updated successfully, but these errors were encountered:
Currently proxy support is done through paramiko which uses ProxyCommand as read from ~/.ssh/config and runs the proxy command in a shell.
Normally the proxy command is another ssh command to a bastion host, which means proxying needs
As an enhancement change proxying so that:
The text was updated successfully, but these errors were encountered: