Jason Roscoe wrote on Friday, November 12, 2004 4:20 PM: > Yes, I have a cygwin2.dll in my OpenSSH\bin folder. > > Yes, when I run ssh-agent from my windows command prompt, it says: > > C:\>ssh-agent > SSH_AUTH_SOCK=/tmp/ssh-VQPkPCF688/agent.688; export SSH_AUTH_SOCK; > SSH_AGENT_PID=2292; export SSH_AGENT_PID; > echo Agent pid 2292;
So you have to take this output and generate environment variables! set SSH_AUTH_SOCK=/tmp/ssh-VQPkPCF688/agent.688 set SSH_AGENT_PID=2292 > Then, I run ssh-add, and get this: > > C:\>ssh-add > Could not open a connection to your authentication agent. Now ssh-add knows the PID and the SOCKET for the communication. - J�rg --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
