On Mon, Jun 9, 2008 at 2:58 PM, Derek Broughton <<a href="mailto:news@pointerstop.ca">news@pointerstop.ca</a>> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">Robert Dailey wrote:<br>
<br>
> I'm very new to Ubuntu Server and I'm just wondering what the key named<br>
> "ssh_host_dsa_key" is for?<br>
<br>
</div>You have host key pairs for your users and for your hosts.  This is the<br>
_private_ dsa key for your machine.  ssh_host_dsa_key.pub is the one that<br>
other machines use to verify that they're still connecting to the same<br>
machine with repeated uses.<br>
<div class="Ih2E3d"><br>
> This is located in /etc/ssh. Also another<br>
> confusing concept is ssh-keygen. What's the point of creating<br>
> public/private keys?<br>
<br>
</div>You have host key pairs for your users and for your hosts... :-)<br>
<div class="Ih2E3d"><br>
> Is this so I never need to specify an explicit<br>
> password when logging into my ubuntu server via PuTTY on windows?<br>
<br>
</div>When you're logging into _any_ ssh server with any ssh client, not just<br>
PuTTY.  And this is not just a convenience for you - it's actually more<br>
secure to not send passwords over the network.  I run ssh_keygen once, then<br>
login (with a password) to a server and append the public key to<br>
~/.ssh/authorized_keys, and I never have to use a password again (this,<br>
though, causes havoc with the machine I only occasionally administer, as I<br>
then need to remember the "login password", that I never use to login, for<br>
sudo).<br>
<div class="Ih2E3d"><br>
> I'm<br>
> trying to understand how SSH works in Ubuntu so I can debug an issue I'm<br>
> having with svn over ssh.<br>
<br>
</div>Try telling us what the issue is...</blockquote></div><br>I didn't mention it before because it seemed OT, but since you ask, I'll let you know. I brought up the issue on the Subversion Users mailing list here:<br>
<a href="http://svn.haxx.se/users/archive-2008-06/0214.shtml">http://svn.haxx.se/users/archive-2008-06/0214.shtml</a><br><br>A summary of the issue is below:<br><br>I downloaded a tarball for SVN 1.5RC9 and built it. The binaries are located in /usr/local/bin.<br>
<br>I can connect to my repository via a linux machine, but using Subversion command line or TortoiseSVN on windows results in a hang after trying to do a checkout (co) or list (ls). It doesn't even prompt me for my password. I've not been able to figure out why this is happening.<br>