Differences between SVN and SVN+SSH on a Windows SVN server? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T07:45:01Zhttp://stackoverflow.com/feeds/question/312370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/312370/differences-between-svn-and-svnssh-on-a-windows-svn-server2Differences between SVN and SVN+SSH on a Windows SVN server?smartins2008-11-23T10:34:55Z2009-01-24T16:19:06Z
<p>I'm trying to understand the differences in terms of subversion repository security between a regular svn:// and svn+ssh:// access.</p>
<p>I've setup my subversion repository in a custom port and ip address and opened that same port on the firewall, and configured the repository with access only to authenticated users.</p>
<p>From what I could understand, subversion svn:// access connects through the subversion port while svn+ssh:// connects to the ssh port to create a tunnel to the server (much like using PuTTY).</p>
<p>I assume that the use for svn+ssh is the extra added security of not having the svn port open to the world or am I missing something else?</p>
<p><b>EDIT:</b>
How is the svn+ssh:// command different than opening a PuTTY tunnel to my server and using svn://localhost/repository instead? I've read several articles on how to get subversion to get svn+ssh to work in windows but I can't make much sense of all. Opening a tunnel with PuTTY works just fine but I do have to remember to first open it before calling svn://localhost/repository.</p>
http://stackoverflow.com/questions/312370/differences-between-svn-and-svnssh-on-a-windows-svn-server/312373#3123737Answer by Gustavo Rubio for Differences between SVN and SVN+SSH on a Windows SVN server?Gustavo Rubio2008-11-23T10:40:05Z2009-01-24T16:19:06Z<p>That is right, according to the <a href="http://svnbook.red-bean.com/en/1.0/ch06s03.html" rel="nofollow">documentation</a> what the SSH version does is to create a tunnel so instead of using the svn "socket" you would be using a more secured version using the SSH protocol to comunicate between ends.</p>
<p>The difference between svn+ssh:// and creating your own tunnel with PuTTY iss the convenience of the first.</p>
http://stackoverflow.com/questions/312370/differences-between-svn-and-svnssh-on-a-windows-svn-server/312376#3123764Answer by gimel for Differences between SVN and SVN+SSH on a Windows SVN server?gimel2008-11-23T10:44:03Z2008-11-23T10:44:03Z<p>Using SSH ensures encrypted traffic so that no one can intercept your messages en route.
The encryption used by SSH provides confidentiality and integrity of data over an insecure network.</p>
http://stackoverflow.com/questions/312370/differences-between-svn-and-svnssh-on-a-windows-svn-server/312382#3123821Answer by flolo for Differences between SVN and SVN+SSH on a Windows SVN server?flolo2008-11-23T10:55:14Z2008-11-23T10:55:14Z<p>If I remember right svn: demands that you have a svn server running (which hangs at a socket and could be hacked). With svn+ssh: you dont need a server runninng. The client connects via normal secured and krypted ssh to the target machine and starts remote the necessary commands.</p>
http://stackoverflow.com/questions/312370/differences-between-svn-and-svnssh-on-a-windows-svn-server/314047#3140471Answer by Bert Huijben for Differences between SVN and SVN+SSH on a Windows SVN server?Bert Huijben2008-11-24T12:34:39Z2008-11-24T12:34:39Z<p>[Subversion 1.5+] If you configure your svn:// correctly you force svnserve to use encryption. This requires sasl support on the server and client side.</p>