paramiko.Proxycommand fails to setup socket
问题 I am trying to connect via SSH to a computer tunneling through another computer using paramiko in Python, but I am having some strange issues. My config file in /.ssh/config looks like this: Host remoteA HostName 169.254.1.1 User root IdentityFile ~/.ssh/id_dss.openssh.remoteA ForwardX11 no StrictHostKeyChecking no ForwardAgent yes UserKnownHostsFile /dev/null Host remoteB User root IdentityFile ~/.ssh/id_dss.openssh.remoteB ForwardX11 no StrictHostKeyChecking no UserKnownHostsFile /dev/null