<?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 ssh without asking for the password in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310314#M746403</link>
    <description>I have 10 unix machines and many users on each machine. And they need to be able to log from one host to another without password.&lt;BR /&gt;Is the a simple way to allow password-less logins via ssh2 for multiple users on multiple machines?&lt;BR /&gt;&lt;BR /&gt;Sergejs&lt;BR /&gt;P.S. &lt;BR /&gt;1. I already have "Using H/P's Secure Shell &amp;amp; Secure Copy" doc.&lt;BR /&gt;2. I understand that password-less logins is a security risk.</description>
    <pubDate>Mon, 21 Jun 2004 03:40:49 GMT</pubDate>
    <dc:creator>Sergejs Svitnevs</dc:creator>
    <dc:date>2004-06-21T03:40:49Z</dc:date>
    <item>
      <title>ssh without asking for the password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310314#M746403</link>
      <description>I have 10 unix machines and many users on each machine. And they need to be able to log from one host to another without password.&lt;BR /&gt;Is the a simple way to allow password-less logins via ssh2 for multiple users on multiple machines?&lt;BR /&gt;&lt;BR /&gt;Sergejs&lt;BR /&gt;P.S. &lt;BR /&gt;1. I already have "Using H/P's Secure Shell &amp;amp; Secure Copy" doc.&lt;BR /&gt;2. I understand that password-less logins is a security risk.</description>
      <pubDate>Mon, 21 Jun 2004 03:40:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310314#M746403</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2004-06-21T03:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: ssh without asking for the password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310315#M746404</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;you may like to read this post:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=244540" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=244540&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;glad that you acknowledged the security risk involve without password authentication.&lt;BR /&gt;&lt;BR /&gt;regards.</description>
      <pubDate>Mon, 21 Jun 2004 03:53:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310315#M746404</guid>
      <dc:creator>Joseph Loo</dc:creator>
      <dc:date>2004-06-21T03:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: ssh without asking for the password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310316#M746405</link>
      <description>1) Setup the client to try host based authentication if the&lt;BR /&gt;   server offers it:&lt;BR /&gt;&lt;BR /&gt;   Edit /opt/ssh/etc/ssh_config (or $HOME/.ssh/config) by adding a new&lt;BR /&gt;   line:&lt;BR /&gt;&lt;BR /&gt;   HostbasedAuthentication yes&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2) Copy the clients public DSA host key to the server:&lt;BR /&gt;&lt;BR /&gt;   scp /opt/ssh/etc/ssh_host_dsa_key.pub server:/opt/ssh/etc/client.key&lt;BR /&gt;&lt;BR /&gt;   NOTE: Be careful to not accidentally overwrite the server host key!&lt;BR /&gt;&lt;BR /&gt;3) On the server add the client host key copied over in step 2 to&lt;BR /&gt;   the servers file /opt/ssh/etc/ssh_known_hosts. If the file does&lt;BR /&gt;   not exist, you can create it with owner root and mode 600. When&lt;BR /&gt;   adding the client's public key, it must be preceded with the clients&lt;BR /&gt;   hostname as:&lt;BR /&gt;&lt;BR /&gt;   client.mydomain.com ssh-dss AAAAB3NzaC1kc3M.....&lt;BR /&gt;&lt;BR /&gt;   ^^^^^^^^^^^^^^^^^^^ The clients (canonical) hostname needs to be added&lt;BR /&gt;                       manually !&lt;BR /&gt;&lt;BR /&gt;4) On the server, add the clients hostname (and optionally a user name)&lt;BR /&gt;   to one of:&lt;BR /&gt;&lt;BR /&gt;   /opt/ssh/etc/shosts.equiv*&lt;BR /&gt;   /etc/hosts.equiv*&lt;BR /&gt;   $HOME/.rhosts**&lt;BR /&gt;   $HOME/.shosts**&lt;BR /&gt;&lt;BR /&gt;   * For the "root" user SSH cannot grant access to the "root" account&lt;BR /&gt;     via /etc/hosts.equiv or /opt/ssh/etc/shosts.equiv; you must use&lt;BR /&gt;     ~root/.[rs]hosts.  Remember to set "IgnoreRhosts no".&lt;BR /&gt;&lt;BR /&gt;   ** These files may be used only if the server has been configured&lt;BR /&gt;      to allow them via the sshd option "IgnoreRhosts no". By default,&lt;BR /&gt;      they will be ignored.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;   Using the file "/opt/ssh/etc/shosts.equiv" is generally the best option as&lt;BR /&gt;   it enables ssh host based authentication without potentially also enabling&lt;BR /&gt;   automatic login for remote shell and rlogin.&lt;BR /&gt;&lt;BR /&gt;   Example:&lt;BR /&gt;   $ cat /opt/ssh/etc/shosts.equiv&lt;BR /&gt;   client.mydomain.com wilford&lt;BR /&gt;   $&lt;BR /&gt;&lt;BR /&gt;5) On the server, enable host based authentication by editing&lt;BR /&gt;   /opt/ssh/etc/sshd_config:&lt;BR /&gt;&lt;BR /&gt;  Change:&lt;BR /&gt;    #HostbasedAuthentication no&lt;BR /&gt;  To:&lt;BR /&gt;    HostbasedAuthentication yes&lt;BR /&gt;&lt;BR /&gt;6) On the server, force the ssh daemon to re-read the configuration file&lt;BR /&gt;&lt;BR /&gt;   $ kill -HUP `cat /var/run/sshd.pid`&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Jun 2004 21:22:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-without-asking-for-the-password/m-p/3310316#M746405</guid>
      <dc:creator>Sundar_7</dc:creator>
      <dc:date>2004-06-21T21:22:22Z</dc:date>
    </item>
  </channel>
</rss>

