<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Passwordless Logon With SSH... in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959957#M46739</link>
    <description>Hi, I'm trying to setup passwordless logon with SSH (sorry, if thats not the correct term, it probably isn't). I've done this in the past but can't remember how I did it now. I seem to remember generating an SSH key pair, and then adding the public key to the authorized keys file on the servers I wish to be able to logon to.&lt;BR /&gt;&lt;BR /&gt;So basically, there is a central server where I have an ID. I want to be able to ssh to other servers on which I have an account from this point, and be connected without having to give my password...can anyone tell me how to do this?&lt;BR /&gt;&lt;BR /&gt;Cheers - Lee</description>
    <pubDate>Wed, 15 Feb 2006 04:20:11 GMT</pubDate>
    <dc:creator>Lee Harris_5</dc:creator>
    <dc:date>2006-02-15T04:20:11Z</dc:date>
    <item>
      <title>Passwordless Logon With SSH...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959957#M46739</link>
      <description>Hi, I'm trying to setup passwordless logon with SSH (sorry, if thats not the correct term, it probably isn't). I've done this in the past but can't remember how I did it now. I seem to remember generating an SSH key pair, and then adding the public key to the authorized keys file on the servers I wish to be able to logon to.&lt;BR /&gt;&lt;BR /&gt;So basically, there is a central server where I have an ID. I want to be able to ssh to other servers on which I have an account from this point, and be connected without having to give my password...can anyone tell me how to do this?&lt;BR /&gt;&lt;BR /&gt;Cheers - Lee</description>
      <pubDate>Wed, 15 Feb 2006 04:20:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959957#M46739</guid>
      <dc:creator>Lee Harris_5</dc:creator>
      <dc:date>2006-02-15T04:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Passwordless Logon With SSH...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959958#M46740</link>
      <description>Hi,&lt;BR /&gt;you can configure a publickey authentication with a null passphrase:&lt;BR /&gt;&lt;BR /&gt;login IDA@SERVER1&lt;BR /&gt;&lt;BR /&gt;SERVER1# ssh-keygen -t rsa -C "ssh_for_`whoami`@`hostname`" -f ~/.ssh/id_rsa&lt;BR /&gt;empty for no passphrase&lt;BR /&gt;&lt;RET&gt;&lt;BR /&gt;&lt;RET&gt;&lt;BR /&gt;&lt;BR /&gt;SERVER1# cp -p id_rsa.pub authorized_keys.SERVER1&lt;BR /&gt;SERVER1# chmod 600 auth*&lt;BR /&gt;SERVER1# scp -p authorized_keys.SERVER1 SERVER2:/$PWD&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;login IDB@SERVER2&lt;BR /&gt;&lt;BR /&gt;SERVER2# cat authorized_keys.SERVER1 &amp;gt;&amp;gt; authorized_keys&lt;BR /&gt;SERVER2# chmod 600 authorized_keys&lt;BR /&gt;&lt;BR /&gt;IDA@SERVER1&lt;BR /&gt;&lt;BR /&gt;SERVER1# ssh IDB@SERVER2&lt;BR /&gt;yes&lt;BR /&gt;&lt;BR /&gt;(and viceversa)&lt;BR /&gt;&lt;BR /&gt;Pablo&lt;/RET&gt;&lt;/RET&gt;</description>
      <pubDate>Wed, 15 Feb 2006 04:30:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959958#M46740</guid>
      <dc:creator>paolo barila</dc:creator>
      <dc:date>2006-02-15T04:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Passwordless Logon With SSH...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959959#M46741</link>
      <description>Hi Harris,&lt;BR /&gt;&lt;BR /&gt;This link will help you.&lt;BR /&gt;&lt;A href="http://gentoo-wiki.com/SECURITY_SSH_without_a_password#Client_setup" target="_blank"&gt;http://gentoo-wiki.com/SECURITY_SSH_without_a_password#Client_setup&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Asif Sharif</description>
      <pubDate>Wed, 15 Feb 2006 04:36:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959959#M46741</guid>
      <dc:creator>Asif Sharif</dc:creator>
      <dc:date>2006-02-15T04:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Passwordless Logon With SSH...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959960#M46742</link>
      <description>Hi&lt;BR /&gt;Following is the best solution I have ever seen:&lt;BR /&gt;&lt;A href="http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch17_:_Secure_Remote_Logins_and_File_Copying#Using_SSH_and_SCP_without_a_password" target="_blank"&gt;http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch17_:_Secure_Remote_Logins_and_File_Copying#Using_SSH_and_SCP_without_a_password&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers&lt;BR /&gt;Vipul</description>
      <pubDate>Wed, 15 Feb 2006 04:54:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959960#M46742</guid>
      <dc:creator>Vipulinux</dc:creator>
      <dc:date>2006-02-15T04:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Passwordless Logon With SSH...</title>
      <link>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959961#M46743</link>
      <description>Thanks. Now sorted.</description>
      <pubDate>Wed, 15 Feb 2006 04:56:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/passwordless-logon-with-ssh/m-p/4959961#M46743</guid>
      <dc:creator>Lee Harris_5</dc:creator>
      <dc:date>2006-02-15T04:56:14Z</dc:date>
    </item>
  </channel>
</rss>

