Displaying 1 result from an estimated 1 matches for "internal_example_org_key".
2011 May 02
12
[Bug 1898] New: possible unreasonable behaviour when using ProxyCommand with multiple IdentityFile(s)
...ReportedBy: calestyo at scientia.net
Hi.
Maybe the following is an issue.
Consider the following scenario and ~/.ssh/config snippet:
-------------------------
Host login.example.org
User loginUser
ProxyCommand none
Host *.example.org
User root
IdentityFile ~/.ssh/internal_example_org_key.id_rsa
ProxyCommand ssh login.example.org nc %h %p
-------------------------
The idea is that access to all nodes (but the login node) of
example.org is only possible via login.example.org.
The interesting part is, that different keys are used, namely the
default id_rsa to authenticate on...