RE: Using Key Pairs on OpenSSH on Win2k3
"Welsh, Armand" <[email protected]> Thu, 29 May 2008 11:18:45 -0700
| Newsgroups | gmane.network.ssh.windows |
|---|---|
| Message-ID | <078F02AD7EC1DF4FA30DC587C548679A01426DFA@INE000PB.IMSWEST.SSCIMS.com> |
This is a multi-part message in MIME format. ------_=_NextPart_001_01C8C1B8.6EDB19E8 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable command not found is a path issue. I am not familliar with Subversion, we user PVCS in our shop, but if you suspect the patch, use the set command from the shell to see what the current path is set to.. just type in "set" and all the variables will be returned. locate the path, to confirm it is set correctly. As a side note, I don't believe you need to escape the space in program files, try: =20 export PATH=3D"/cygdrive/c/Profile files/Subversion/bin:$PATH" =20 or =20 export PATH=3D"$PATH:/cygdrive/c/Profile files/Subversion/bin" =20 =20 ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Robert Denton Sent: Thursday, May 29, 2008 9:26 AM To: [email protected] Subject: RE: Using Key Pairs on OpenSSH on Win2k3 Hi there. This continues to baffle. I have edited the profile file as you have recommended, as well as issued the more correct: PATH=3D"$PATH:/cygdrive/c/Program\ Files/Subversion/Subversion/bin" but I still get: admin@development ~ $ svn -bash: svn: command not found I even added a shortcut to svn.exe in windows/system32. All to no avail. If this is not a path issue what else could it be? If it were a permissions problem I do not think I'd be getting the command not found error. Robert=20 ________________________________ From: Welsh, Armand [mailto:[email protected]] To: [email protected] Sent: Wed, 28 May 2008 16:42:11 -0700 Subject: RE: Using Key Pairs on OpenSSH on Win2k3 =09 =09 okay, so once you SSH into devserver, then you from within devserver you are running the svnclient. =20 =20 Assuming you are using the default configuration of copSSH, then your bash path comes from: =20 /etc/profile =20 you can edit this file to modify the EXPORT command if you wish to change the PATH. My default /etc/profile looks like this: =20 $ cat /etc/profile =09 # If you wish to change the path for all users, it is recommended you edit # /etc/bash.bashrc =20 syspath=3D`/bin/cygpath -S` winpath=3D`/bin/cygpath -W` export PATH=3D"/bin:$syspath:$winpath" umask 027 =20 # Set a default prompt of: user@host and current_directory PS1=3D'\[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ ' =09 Since you're probably running the default install, it should be the same. Just ignore the recomendation of editing /etc/bash.bashrc since the file doesn't exist on a default copSSH install, and editing the export here works just as well for such a simple installation. =20 See if that resolve your path issue. I recommend you change it as follows: =20 $ vi /etc/profile =09 # If you wish to change the path for all users, it is recommended you edit # /etc/bash.bashrc =20 syspath=3D`/bin/cygpath -S` winpath=3D`/bin/cygpath -W` export PATH=3D"/bin:$syspath:$winpath:cygdrive/c/Program\ Files/Subversion/bin" umask 027 =20 # Set a default prompt of: user@host and current_directory PS1=3D'\[\033]0;\w\007 \033[32m\]\u@\h \[\033[33m\w\033[0m\] $ ' Also, I am not a bash pro, but I believe the proper form of the bash command for setting the path is: PATH=3D"$PATH:/cygdrive/c/Program\ Files/Subversion/Subversion/bin" =20 By specifying the $PATH=3D you are actually causing the shell to think you want to execute the contents of $PATH, which is why you are receiving a No such file or directory upon the set command (it's a syntax error issue). =20 Regards, Armand =20 =20 ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Robert Denton Sent: Wednesday, May 28, 2008 4:25 PM To: [email protected] Subject: RE: Using Key Pairs on OpenSSH on Win2k3 =09 =09 Trying to append to the path seems to not work, also: =09 admin@development ~ $ $PATH =3D $PATH:/cygdrive/c/Program\ Files/Subversion/bin/ -bash: /bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS: No such file or directory =09 This might be a key element in solving this problem. I say this since if I could actually issue the svn co command from a ssh session, then I should (in theory) be able to select 'p' for permanent, and make this problem go away. =09 Robert=20 =09 ________________________________ From: Robert Denton [mailto:[email protected]] To: [email protected] Sent: Wed, 28 May 2008 15:56:32 -0700 Subject: RE: Using Key Pairs on OpenSSH on Win2k3 =09 Okay, let me see if I can explain my set up a little bit. And you might be right about there being no connection between openssh and the ssl used to connect to the https server, but here goes: =09 user@svnserver ---(ssh)---> admin@devserver ---(https)---> svnserver =09 Seems weird to do it that way, but in order to maintain a mirror of our code on the dev server we need to issue an 'update' command to the svn client on the dev server where we want the mirror, and this is triggered by a process on the svn server itself. The first part seems to be working with one weird exception: =09 If I log onto the devserver and launch a command prompt, the command 'svn' is known by virtue of path. Oddly, if I ssh to that server as the same user, the command 'ssh' is not known. Does Cygwin (or OpenSSH) maintain it's own path variable? If so, where is it kept? =09 Robert=20 =09 ________________________________ From: Welsh, Armand [mailto:[email protected]] To: [email protected] Sent: Wed, 28 May 2008 14:33:24 -0700 Subject: RE: Using Key Pairs on OpenSSH on Win2k3 =09 =09 I don't think the copSSH and the https based activities are related. Regarding the connection to the other server (via https), how is this connection established? I need more information to understand the issue. Are you connecting (via ssh) to the server, and then on the server using wget or other command line util to get something from a web server? If you are using an SSH tunnel to connect to the https server using the ssh server as a middle point then I would need to know what client libraries on your client computer are used to establish the https session. =20 Armand ________________________________ From: [email protected] [mailto:[email protected]] On Behalf Of Robert Denton Sent: Wednesday, May 28, 2008 12:49 PM To: [email protected] Subject: Re: Using Key Pairs on OpenSSH on Win2k3 =09 =09 So I took your advice and installed CopSSH instead and it is working as desired, with one minor snag. First, the application I am using this for is to connect to the copssh server and run some commands. One of the commands involves connection to a different server via https. When I do this I get prompted to accept the certificate. Choosing 'p' for permanent has no effect. =09 Advice I have gotten from other forums is that I need to download Comodo's Trusted Root Certificate and append it to the end of the ca-bundle.crt that is used by OpenSSH. Unfortunately a search of the system yields no such file. Where does CopSSH place this file? And do you agree that this is the recommended course of action? =09 Robert =09 ________________________________ From: Welsh, Armand [mailto:[email protected]] To: [email protected] Sent: Thu, 22 May 2008 09:17:19 -0700 Subject: Re: Using Key Pairs on OpenSSH on Win2k3 =09 Robert, =09 Before I look into potential causes, the first I would like to know is: are you using copSSH, the Cygwin installation with the openSSH package installed, or the "openSSH for Windows" project from source forge? =09 Why do I ask? Al three are openSSH from the cygwin project the following conditions: Cygwin is the thick install proding the option to turn you windows box into a GNU Linux like operating system (via the bash or other shell and some special mappers built into cygwin). The cygwin project installs a basic configuration of openSSH which works well on older windows systems, but requires specific things be done to get the SSH server to work 100% on windows 2003 and Vista. =09 CopSSH is a pre-packaged minimal installation of Cygwin with a couple minor enhancement patches that installs Cygwin, openSSH, configures you computer (even vista and win2k3) so that openSSH works without any tweaking at all. =09 "OpenSSH for Windows" is a dead sourceforge project that is almost identical to copSSH, except that development on the project has stopped a long time ago, and this package requires more tweaking of the ssh settings and the server that the other options, and is running very old ssh code that should not be used anymore in my opinion. =09 If you want the easy solution, install copSSH and everything will work. If you want to get what you have working and you did not install copSSH then we can offer assistance with making all the appropriate changes, but it will take more time to get SSH services up and running with public keys, but you will have the option of using any piece of the cygwin project easily. =09 Armand =09 =09 ------_=_NextPart_001_01C8C1B8.6EDB19E8 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=3DContent-Type content=3D"text/html; = charset=3Dus-ascii"> <STYLE>BODY { FONT: 10pt Tahoma, Verdana, sans-serif } </STYLE> <META content=3D"MSHTML 6.00.6000.16640" name=3DGENERATOR></HEAD> <BODY> <DIV dir=3Dltr align=3Dleft><SPAN class=3D842181418-29052008>command not = found is a=20 path issue. I am not familliar with Subversion, we user PVCS in = our shop,=20 but if you suspect the patch, use the set command from the shell to see = what the=20 current path is set to.. just type in "set" and all the variables will = be=20 returned. locate the path, to confirm it is set correctly. = As a side=20 note, I don't believe you need to escape the space in program files,=20 try:</SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN = class=3D842181418-29052008></SPAN> </DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D842181418-29052008>export=20 PATH=3D"/cygdrive/c/Profile files/Subversion/bin:$PATH"</SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN = class=3D842181418-29052008></SPAN> </DIV> <DIV dir=3Dltr align=3Dleft><SPAN = class=3D842181418-29052008>or</SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D842181418-29052008> <DIV dir=3Dltr align=3Dleft><SPAN = class=3D842181418-29052008></SPAN> </DIV> <DIV dir=3Dltr align=3Dleft><SPAN class=3D842181418-29052008>export=20 PATH=3D"$PATH:/cygdrive/c/Profile = files/Subversion/bin"</SPAN></DIV></SPAN></DIV> <DIV dir=3Dltr align=3Dleft><SPAN = class=3D842181418-29052008></SPAN> </DIV> <DIV dir=3Dltr align=3Dleft><SPAN = class=3D842181418-29052008></SPAN> </DIV><BR> <DIV class=3DOutlookMessageHeader lang=3Den-us dir=3Dltr align=3Dleft> <HR tabIndex=3D-1> <B>From:</B> [email protected] [mailto:[email protected]] <B>On Behalf = Of=20 </B>Robert Denton<BR><B>Sent:</B> Thursday, May 29, 2008 9:26 = AM<BR><B>To:</B>=20 [email protected]<BR><B>Subject:</B> RE: Using Key Pairs on OpenSSH on=20 Win2k3<BR><BR></DIV> <DIV></DIV>Hi there. This continues to baffle. I have edited = the=20 profile file as you have recommended, as well as issued the more=20 correct:<BR><BR><SPAN = class=3D614182923-28052008>PATH=3D"$PATH:/cygdrive/c/Program\=20 Files/Subversion/Subversion/bin"<BR><BR>but I still=20 get:<BR><BR>admin@development ~<BR>$ svn<BR>-bash: svn: command not=20 found<BR><BR>I even added a shortcut to svn.exe in = windows/system32. All=20 to no avail. If this is not a path issue what else could it = be? If=20 it were a permissions problem I do not think I'd be getting the command = not=20 found error.<BR><BR></SPAN><BR>Robert <BR> <BLOCKQUOTE=20 style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: rgb(0,0,255) = 2px solid; MARGIN-RIGHT: 0px"> <HR> <B>From:</B> Welsh, Armand = [mailto:[email protected]]<BR><B>To:</B>=20 [email protected]<BR><B>Sent:</B> Wed, 28 May 2008 16:42:11=20 -0700<BR><B>Subject:</B> RE: Using Key Pairs on OpenSSH on = Win2k3<BR><BR> <DIV align=3Dleft><SPAN class=3D614182923-28052008>okay, so once you = SSH into=20 devserver, then you from within devserver you are running the = svnclient. =20 </SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008>Assuming you are = using the=20 default configuration of copSSH, then your bash path comes = from:</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN = class=3D614182923-28052008>/etc/profile</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008>you can edit this = file to=20 modify the EXPORT command if you wish to change the PATH. = My =20 default /etc/profile looks like this:</SPAN></DIV> <BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px"> <DIV align=3Dleft><SPAN=20 class=3D614182923-28052008></SPAN> </DIV></BLOCKQUOTE> <DIV align=3Dleft><SPAN class=3D614182923-28052008>$ cat = /etc/profile</SPAN></DIV> <BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px"><SPAN = class=3D614182923-28052008> <DIV align=3Dleft># If you wish to change the path for all users, it = is=20 recommended you edit<BR># /etc/bash.bashrc</DIV> <DIV> </DIV> <DIV align=3Dleft><SPAN = class=3D614182923-28052008>syspath=3D`/bin/cygpath=20 -S`<BR>winpath=3D`/bin/cygpath -W`<BR>export=20 PATH=3D"/bin:$syspath:$winpath"<BR>umask 027</SPAN></DIV> <DIV> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008># Set a default = prompt of: <A=20 href=3D"mailto:user@host">user@host</A> and=20 current_directory<BR>PS1=3D'\[\033]0;\w\007<BR>\033[32m\]\u@\h=20 \[\033[33m\w\033[0m\]<BR>$ '<BR></SPAN></DIV></SPAN></BLOCKQUOTE> <DIV align=3Dleft><SPAN class=3D614182923-28052008>Since you're = probably running=20 the default install, it should be the same. Just ignore the=20 recomendation of editing /etc/bash.bashrc since the file doesn't exist = on a=20 default copSSH install, and editing the export here works just as well = for=20 such a simple installation.</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008>See if that resolve = your path=20 issue. I recommend you change it as follows:</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008>$ vi=20 /etc/profile</SPAN></DIV> <BLOCKQUOTE style=3D"MARGIN-RIGHT: 0px"><SPAN = class=3D614182923-28052008> <DIV align=3Dleft># If you wish to change the path for all users, it = is=20 recommended you edit<BR># /etc/bash.bashrc</DIV> <DIV> </DIV> <DIV align=3Dleft><SPAN = class=3D614182923-28052008>syspath=3D`/bin/cygpath=20 -S`<BR>winpath=3D`/bin/cygpath -W`<BR>export=20 PATH=3D"/bin:$syspath:$winpath:cygdrive/c/Program\=20 Files/Subversion/bin"<BR>umask 027</SPAN></DIV> <DIV> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008># Set a default = prompt of: <A=20 href=3D"mailto:user@host">user@host</A> and=20 current_directory<BR>PS1=3D'\[\033]0;\w\007<BR>\033[32m\]\u@\h=20 \[\033[33m\w\033[0m\]<BR>$ '</SPAN><SPAN=20 class=3D614182923-28052008></SPAN></DIV></SPAN></BLOCKQUOTE> <DIV align=3Dleft><SPAN class=3D614182923-28052008>Also, I am not a = bash pro, but=20 I believe the proper form of the bash command for setting the path=20 is:</SPAN></DIV> <DIV align=3Dleft><SPAN=20 class=3D614182923-28052008>PATH=3D"$PATH:/cygdrive/c/Program\=20 Files/Subversion/Subversion/bin"</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008>By specifying the = $PATH=3D you=20 are actually causing the shell to think you want to execute the = contents of=20 $PATH, which is why you are receiving a No such file or directory upon = the set=20 command (it's a syntax error issue).</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN = class=3D614182923-28052008>Regards,</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008>Armand</SPAN></DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN class=3D614182923-28052008></SPAN> </DIV> <DIV class=3DOutlookMessageHeader align=3Dleft> <HR> <B>From:</B> <A = href=3D"mailto:[email protected]">[email protected]</A>=20 [mailto:<A href=3D"mailto:[email protected]">[email protected]</A>] = <B>On Behalf=20 Of </B>Robert Denton<BR><B>Sent:</B> Wednesday, May 28, 2008 4:25=20 PM<BR><B>To:</B> <A=20 = href=3D"mailto:[email protected]">[email protected]</A><BR><B>Subject:</B= > RE:=20 Using Key Pairs on OpenSSH on Win2k3<BR><BR></DIV> <DIV></DIV>Trying to append to the path seems to not work, = also:<BR><BR><A=20 href=3D"mailto:admin@development">admin@development</A> ~<BR>$ $PATH = =3D=20 $PATH:/cygdrive/c/Program\ Files/Subversion/bin/<BR>-bash:=20 /bin:/cygdrive/c/WINDOWS/system32:/cygdrive/c/WINDOWS: No such file or = directory<BR><BR>This might be a key element in solving this problem. = I say=20 this since if I could actually issue the svn co command from a ssh = session,=20 then I should (in theory) be able to select 'p' for permanent, and = make this=20 problem go away.<BR><BR>Robert <BR> <BLOCKQUOTE=20 style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: = rgb(0,0,255) 2px solid; MARGIN-RIGHT: 0px"> <HR> <B>From:</B> Robert Denton [mailto:<A=20 = href=3D"mailto:[email protected]">[email protected]</A>]<BR><B>To= :</B>=20 <A = href=3D"mailto:[email protected]">[email protected]</A><BR><B>Sent:</B>=20 Wed, 28 May 2008 15:56:32 -0700<BR><B>Subject:</B> RE: Using Key = Pairs on=20 OpenSSH on Win2k3<BR><BR>Okay, let me see if I can explain my set up = a=20 little bit. And you might be right about there being no = connection=20 between openssh and the ssl used to connect to the https server, but = here=20 goes:<BR><BR><A href=3D"mailto:user@svnserver">user@svnserver</A>=20 ---(ssh)---> <A = href=3D"mailto:admin@devserver">admin@devserver</A>=20 ---(https)---> svnserver<BR><BR>Seems weird to do it that way, = but in=20 order to maintain a mirror of our code on the dev server we = need to=20 issue an 'update' command to the svn client on the dev server where = we want=20 the mirror, and this is triggered by a process on the svn server=20 itself. The first part seems to be working with one weird=20 exception:<BR><BR>If I log onto the devserver and launch a command = prompt,=20 the command 'svn' is known by virtue of path. Oddly, if I ssh to = that server=20 as the same user, the command 'ssh' is not known. Does Cygwin (or = OpenSSH)=20 maintain it's own path variable? If so, where is it=20 kept?<BR><BR>Robert <BR> <BLOCKQUOTE=20 style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: = rgb(0,0,255) 2px solid; MARGIN-RIGHT: 0px"> <HR> <B>From:</B> Welsh, Armand [mailto:<A=20 = href=3D"mailto:[email protected]">[email protected]</A>]<BR><= B>To:</B>=20 <A = href=3D"mailto:[email protected]">[email protected]</A><BR><B>Sent:</B>=20 Wed, 28 May 2008 14:33:24 -0700<BR><B>Subject:</B> RE: Using Key = Pairs on=20 OpenSSH on Win2k3<BR><BR> <DIV align=3Dleft><SPAN class=3D758572821-28052008>I don't think = the copSSH=20 and the https based activities are related. Regarding the = connection=20 to the other server (via https), how is this connection = established? =20 I need more information to understand the issue. Are you = connecting=20 (via ssh) to the server, and then on the server using wget or = other=20 command line util to get something from a web server? If you = are=20 using an SSH tunnel to connect to the https server using the ssh = server as=20 a middle point then I would need to know what client libraries on = your=20 client computer are used to establish the https = session.</SPAN></DIV> <DIV align=3Dleft><SPAN = class=3D758572821-28052008></SPAN> </DIV> <DIV align=3Dleft><SPAN = class=3D758572821-28052008>Armand</SPAN></DIV><BR> <DIV class=3DOutlookMessageHeader align=3Dleft> <HR> <B>From:</B> <A = href=3D"mailto:[email protected]">[email protected]</A>=20 [mailto:<A = href=3D"mailto:[email protected]">[email protected]</A>] <B>On=20 Behalf Of </B>Robert Denton<BR><B>Sent:</B> Wednesday, May 28, = 2008 12:49=20 PM<BR><B>To:</B> <A=20 = href=3D"mailto:[email protected]">[email protected]</A><BR><B>Subject:</B= >=20 Re: Using Key Pairs on OpenSSH on Win2k3<BR><BR></DIV> <DIV></DIV>So I took your advice and installed CopSSH instead and = it is=20 working as desired, with one minor snag. First, the = application I am=20 using this for is to connect to the copssh server and run some=20 commands. One of the commands involves connection to a = different=20 server via https. When I do this I get prompted to accept = the=20 certificate. Choosing 'p' for permanent has no = effect.<BR><BR>Advice=20 I have gotten from other forums is that I need to download = Comodo's <SPAN=20 style=3D"MARGIN-TOP: 0px; FONT: 90% monospace; font-size-adjust: = none; font-stretch: normal">Trusted=20 Root Certificate and append it to the end of the ca-bundle.crt = that is=20 used by OpenSSH. Unfortunately a search of the system yields = no such=20 file. Where does CopSSH place this file? And do you = agree that=20 this is the recommended course of action?</SPAN><BR><BR>Robert<BR> <BLOCKQUOTE=20 style=3D"PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: = rgb(0,0,255) 2px solid; MARGIN-RIGHT: 0px"> <HR> <B>From:</B> Welsh, Armand [mailto:<A=20 = href=3D"mailto:[email protected]">[email protected]</A>]<BR><= B>To:</B>=20 <A = href=3D"mailto:[email protected]">[email protected]</A><BR><B>Sent:</B>=20 Thu, 22 May 2008 09:17:19 -0700<BR><B>Subject:</B> Re: Using Key = Pairs=20 on OpenSSH on Win2k3<BR><BR>Robert,<BR><BR>Before I look into = potential=20 causes, the first I would like to know is: are you using copSSH, = the=20 Cygwin installation with the openSSH package installed, or the = "openSSH=20 for Windows" project from source forge?<BR><BR>Why do I ask? Al = three=20 are openSSH from the cygwin project the following = conditions:<BR>Cygwin=20 is the thick install proding the option to turn you windows box = into a=20 GNU Linux like operating system (via the bash or other shell and = some=20 special mappers built into cygwin). The cygwin project installs = a basic=20 configuration of openSSH which works well on older windows = systems, but=20 requires specific things be done to get the SSH server to work = 100% on=20 windows 2003 and Vista.<BR><BR>CopSSH is a pre-packaged minimal=20 installation of Cygwin with a couple minor enhancement patches = that=20 installs Cygwin, openSSH, configures you computer (even vista = and=20 win2k3) so that openSSH works without any tweaking at=20 all.<BR><BR>"OpenSSH for Windows" is a dead sourceforge project = that is=20 almost identical to copSSH, except that development on the = project has=20 stopped a long time ago, and this package requires more tweaking = of the=20 ssh settings and the server that the other options, and is = running very=20 old ssh code that should not be used anymore in my = opinion.<BR><BR>If=20 you want the easy solution, install copSSH and everything will = work. If=20 you want to get what you have working and you did not install = copSSH=20 then we can offer assistance with making all the appropriate = changes,=20 but it will take more time to get SSH services up and running = with=20 public keys, but you will have the option of using any piece of = the=20 cygwin project=20 = easily.<BR><BR>Armand<BR><BR></BLOCKQUOTE></BLOCKQUOTE></BLOCKQUOTE></BLO= CKQUOTE> <STYLE> BODY {FONT:10pt Tahoma,Verdana,sans-serif} </STYLE> </BODY></HTML> ------_=_NextPart_001_01C8C1B8.6EDB19E8-- -- List Info: http://erdelynet.com/ssh-l/ List Archives: http://erdelynet.com/archive/ssh-l/ To Unsubscribe: Mail mailto:[email protected] If you are having trouble unsubscribing, visit the List Info page for help.