<?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 Re: SSH in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296253#M537271</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Create public keys.  Matti gives a simple summary of how to do this here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254688" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254688&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 29 Oct 2008 12:02:52 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2008-10-29T12:02:52Z</dc:date>
    <item>
      <title>SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296252#M537270</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have two servers and from the server1 I want to connect via ssh into server2 using the user webmst, but I don't want type the password I want create a trusted relationship among them.&lt;BR /&gt;&lt;BR /&gt;How Can I do it??</description>
      <pubDate>Wed, 29 Oct 2008 11:57:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296252#M537270</guid>
      <dc:creator>Gustavo Souza Lima</dc:creator>
      <dc:date>2008-10-29T11:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296253#M537271</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;Create public keys.  Matti gives a simple summary of how to do this here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254688" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254688&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 29 Oct 2008 12:02:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296253#M537271</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-10-29T12:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296254#M537272</link>
      <description>Hi,&lt;BR /&gt;To configure ssh with passwd&lt;BR /&gt;&lt;BR /&gt;Client&lt;BR /&gt;Steps: For SSH Without a Password&lt;BR /&gt;&lt;BR /&gt;On the client run the following commands:&lt;BR /&gt;$ mkdir -p $HOME/.ssh&lt;BR /&gt;$ chmod 0700 $HOME/.ssh&lt;BR /&gt;$ ssh-keygen -t dsa -f $HOME/.ssh/id_d sa -P ''&lt;BR /&gt;&lt;BR /&gt;This should result in two files, &lt;BR /&gt;$HOME/.ssh/id_dsa (private key) &amp;amp; $HOME/.ssh/id_dsa.pub (public key). &lt;BR /&gt;Copy $HOME/.ssh/id_dsa.pub to the server.&lt;BR /&gt;&lt;BR /&gt;Server:&lt;BR /&gt;On the server run the following commands:&lt;BR /&gt;$ mkdir -p $HOME/.ssh&lt;BR /&gt;$ cat id_dsa.pub &amp;gt;&amp;gt; $HOME/.ssh/authorized_keys2&lt;BR /&gt;$ chmod 0600 $HOME/.ssh/authorized_keys2&lt;BR /&gt;&lt;BR /&gt;Depending on the version of OpenSSH the following commands may also be required: &lt;BR /&gt;$ cat id_dsa.pub &amp;gt;&amp;gt; $HOME/.ssh/authorized_keys&lt;BR /&gt;$ chmod 0600 $HOME/.ssh/authorized_keys&lt;BR /&gt;&lt;BR /&gt;An alternative is to create a link from authorized_keys2 to authorized_keys: &lt;BR /&gt;$ cd $HOME/.ssh &amp;amp;&amp;amp; ln -s authorized_keys2 authorized_keys&lt;BR /&gt;&lt;BR /&gt;On the client test the results by ssh'ing to the server:&lt;BR /&gt;$ ssh -i $HOME/.ssh/id_dsa server&lt;BR /&gt;&lt;BR /&gt;(Optional) Add the following $HOME/.ssh/config on the client:&lt;BR /&gt;Host server&lt;BR /&gt;   IdentityFile ~/.ssh/id_dsa&lt;BR /&gt;This allows ssh access to the server without having to specify the path to the id_dsa file as an argument to ssh each time. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Suraj</description>
      <pubDate>Wed, 29 Oct 2008 12:50:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296254#M537272</guid>
      <dc:creator>Suraj K Sankari</dc:creator>
      <dc:date>2008-10-29T12:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296255#M537273</link>
      <description>Thank you for the help.&lt;BR /&gt;&lt;BR /&gt;The trick work well..</description>
      <pubDate>Wed, 29 Oct 2008 12:52:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/4296255#M537273</guid>
      <dc:creator>Gustavo Souza Lima</dc:creator>
      <dc:date>2008-10-29T12:52:21Z</dc:date>
    </item>
  </channel>
</rss>

