<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: How To Fix &#8220;Server Refused Our Key&#8221; Error That Caused By Putty Generated RSA Public Key?</title>
	<atom:link href="http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/</link>
	<description>A capsule of walker's experience in life...</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:09:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: dudus</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15966</link>
		<dc:creator>dudus</dc:creator>
		<pubDate>Mon, 23 Jan 2012 22:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15966</guid>
		<description>I use Ubuntu as a server, I had a problem with “Server refused our key” too, finally I found that by default owner of &#039;.ssh&#039; directory was &#039;root&#039;, so because I login as &#039;dudus&#039; I set my login as an owner:

sudo chown dudus:dudus .ssh

and it started to work :)

thanks for all clues</description>
		<content:encoded><![CDATA[<p>I use Ubuntu as a server, I had a problem with “Server refused our key” too, finally I found that by default owner of &#8216;.ssh&#8217; directory was &#8216;root&#8217;, so because I login as &#8216;dudus&#8217; I set my login as an owner:</p>
<p>sudo chown dudus:dudus .ssh</p>
<p>and it started to work :)</p>
<p>thanks for all clues</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tie</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15957</link>
		<dc:creator>tie</dc:creator>
		<pubDate>Wed, 18 Jan 2012 14:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15957</guid>
		<description>What happened to the good old &#039;ssh-keyagent -i -f putty_formatted_key.pub&#039; ? No need for manual edits really...</description>
		<content:encoded><![CDATA[<p>What happened to the good old &#8216;ssh-keyagent -i -f putty_formatted_key.pub&#8217; ? No need for manual edits really&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AL</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15918</link>
		<dc:creator>AL</dc:creator>
		<pubDate>Mon, 02 Jan 2012 11:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15918</guid>
		<description>Thank you - that was starting to get annoying but now fixed !</description>
		<content:encoded><![CDATA[<p>Thank you &#8211; that was starting to get annoying but now fixed !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CSH</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15888</link>
		<dc:creator>CSH</dc:creator>
		<pubDate>Fri, 16 Dec 2011 10:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15888</guid>
		<description>I have spent so much time to figure out to solve this stupid issue. Finally, your information helped me to solve the annoying problem. Thank you!</description>
		<content:encoded><![CDATA[<p>I have spent so much time to figure out to solve this stupid issue. Finally, your information helped me to solve the annoying problem. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jh</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15882</link>
		<dc:creator>jh</dc:creator>
		<pubDate>Thu, 15 Dec 2011 19:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15882</guid>
		<description>This was a big help thanks.  Also note, depending on the flavor of OpenSSH, it may be sensitive to certain formatting.  For example, I had a Comment in the key, which PuTTygen had appended to the end of the OpenSSH key, like below- 
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIB/TOjXtqAas035vnMO+V1lgLEznAUeQRgQY0Cs2XXQUfvr1BptbsQE/DKYGHPrG6+tsUZKWTM6PncVuHB8K7LjXy8qoUb1A0BNgNCh5fDFfHO6faPlykdDJmMF1IanGbMb14acYIykIjCAfDzEOk7g2Xu8aGAPaB36+7cvAH+edQ== This is my comment here

that key with comment worked fine in Ubuntu Server.  Using the same key on RedHat 6 gave me an error. SO,,,,

My fix was to edit the key, remove the comment and trailing space, add a carriage return, AND set the permission to 600. 

Good luck!</description>
		<content:encoded><![CDATA[<p>This was a big help thanks.  Also note, depending on the flavor of OpenSSH, it may be sensitive to certain formatting.  For example, I had a Comment in the key, which PuTTygen had appended to the end of the OpenSSH key, like below-<br />
ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIB/TOjXtqAas035vnMO+V1lgLEznAUeQRgQY0Cs2XXQUfvr1BptbsQE/DKYGHPrG6+tsUZKWTM6PncVuHB8K7LjXy8qoUb1A0BNgNCh5fDFfHO6faPlykdDJmMF1IanGbMb14acYIykIjCAfDzEOk7g2Xu8aGAPaB36+7cvAH+edQ== This is my comment here</p>
<p>that key with comment worked fine in Ubuntu Server.  Using the same key on RedHat 6 gave me an error. SO,,,,</p>
<p>My fix was to edit the key, remove the comment and trailing space, add a carriage return, AND set the permission to 600. </p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: justpressload</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15866</link>
		<dc:creator>justpressload</dc:creator>
		<pubDate>Sun, 11 Dec 2011 16:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15866</guid>
		<description>There&#039;s an easier way. Just click &quot;Load&quot; in puttygen, and import your id_rsa. You can then save the key in a format putty can use.</description>
		<content:encoded><![CDATA[<p>There&#8217;s an easier way. Just click &#8220;Load&#8221; in puttygen, and import your id_rsa. You can then save the key in a format putty can use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: upandacross</title>
		<link>http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/#comment-15854</link>
		<dc:creator>upandacross</dc:creator>
		<pubDate>Mon, 05 Dec 2011 16:37:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.walkernews.net/?p=2222#comment-15854</guid>
		<description>FWIW - I found puttygen will allow me to run putty on my XP and ssh to a unix box without being asked for name, password, or passphrase if:

1. type of key generated is SSH-2 RSA
2. Key comment is user@host as appropriate for you
3. you save the public key to a file on the XP box
4. putty configuration includes setting Category-&gt;Connection-&gt;SSH-&gt;Auth correctly:
a)Attempt authentication using Pageant is checked
b) Attempt &quot;keyboard interactive&quot; auth (SSH2) is checked
c) nothing else is checked
5. Pageant is running and you have added the private key file produced in step 4
6. you copy the public key information at the top of the puttygen screen on you XP machine and put that into ~/.ssh/authorized_keys on the Unix machine (puttygen&#039;s exported public key file doesn&#039;t produce a working authorized_keys file)
7. permissions are correct on the Unix platform for ~/.ssh (700) and ~/.ssh/authorized_keys (600)</description>
		<content:encoded><![CDATA[<p>FWIW &#8211; I found puttygen will allow me to run putty on my XP and ssh to a unix box without being asked for name, password, or passphrase if:</p>
<p>1. type of key generated is SSH-2 RSA<br />
2. Key comment is user@host as appropriate for you<br />
3. you save the public key to a file on the XP box<br />
4. putty configuration includes setting Category-&gt;Connection-&gt;SSH-&gt;Auth correctly:<br />
a)Attempt authentication using Pageant is checked<br />
b) Attempt &#8220;keyboard interactive&#8221; auth (SSH2) is checked<br />
c) nothing else is checked<br />
5. Pageant is running and you have added the private key file produced in step 4<br />
6. you copy the public key information at the top of the puttygen screen on you XP machine and put that into ~/.ssh/authorized_keys on the Unix machine (puttygen&#8217;s exported public key file doesn&#8217;t produce a working authorized_keys file)<br />
7. permissions are correct on the Unix platform for ~/.ssh (700) and ~/.ssh/authorized_keys (600)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

