<?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 fsecure ssh2 and openssh in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246699#M174649</link>
    <description>Group,&lt;BR /&gt;&lt;BR /&gt;Hi - I'm having an issue with an fsecure client (HP 11.00) trying to connect without being prompted for a password to a linux host running openssh.&lt;BR /&gt;&lt;BR /&gt;The linux host is not in my control, but I do have ssh access to it (with a passphrase).&lt;BR /&gt;&lt;BR /&gt;It seems that no matter what I do on either side, I get prompted for a passphrase.&lt;BR /&gt;&lt;BR /&gt;What I've done so far:&lt;BR /&gt;&lt;BR /&gt;On the client&lt;BR /&gt;1) generated the public key on the HP (fsecure ssh2 box).&lt;BR /&gt;2) created the identification file on the fsecure box in the .ssh2 dir&lt;BR /&gt;&lt;BR /&gt;On the server (running openssh)&lt;BR /&gt;1) put the contents of my pub file in the .ssh/authorized_keys file.&lt;BR /&gt;2) put the contents of my pub file in the .ssh/authorized_keys2 file.&lt;BR /&gt;3) copied my .pub file from the client to the .ssh dir&lt;BR /&gt;4) put the following in the .ssh/authorization file   &lt;BR /&gt;Key authorized_keys2&lt;BR /&gt;&lt;BR /&gt;Don't know if all of the steps on the server were necessary or not and I've played around with the authoriztion file some.&lt;BR /&gt;&lt;BR /&gt;Nothing gets me past the prompt for the passphrase.&lt;BR /&gt;&lt;BR /&gt;Any ideas will be appreciated.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 13 Apr 2004 10:35:16 GMT</pubDate>
    <dc:creator>Charles McCary</dc:creator>
    <dc:date>2004-04-13T10:35:16Z</dc:date>
    <item>
      <title>fsecure ssh2 and openssh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246699#M174649</link>
      <description>Group,&lt;BR /&gt;&lt;BR /&gt;Hi - I'm having an issue with an fsecure client (HP 11.00) trying to connect without being prompted for a password to a linux host running openssh.&lt;BR /&gt;&lt;BR /&gt;The linux host is not in my control, but I do have ssh access to it (with a passphrase).&lt;BR /&gt;&lt;BR /&gt;It seems that no matter what I do on either side, I get prompted for a passphrase.&lt;BR /&gt;&lt;BR /&gt;What I've done so far:&lt;BR /&gt;&lt;BR /&gt;On the client&lt;BR /&gt;1) generated the public key on the HP (fsecure ssh2 box).&lt;BR /&gt;2) created the identification file on the fsecure box in the .ssh2 dir&lt;BR /&gt;&lt;BR /&gt;On the server (running openssh)&lt;BR /&gt;1) put the contents of my pub file in the .ssh/authorized_keys file.&lt;BR /&gt;2) put the contents of my pub file in the .ssh/authorized_keys2 file.&lt;BR /&gt;3) copied my .pub file from the client to the .ssh dir&lt;BR /&gt;4) put the following in the .ssh/authorization file   &lt;BR /&gt;Key authorized_keys2&lt;BR /&gt;&lt;BR /&gt;Don't know if all of the steps on the server were necessary or not and I've played around with the authoriztion file some.&lt;BR /&gt;&lt;BR /&gt;Nothing gets me past the prompt for the passphrase.&lt;BR /&gt;&lt;BR /&gt;Any ideas will be appreciated.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Apr 2004 10:35:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246699#M174649</guid>
      <dc:creator>Charles McCary</dc:creator>
      <dc:date>2004-04-13T10:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: fsecure ssh2 and openssh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246700#M174650</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Was the public key generated with a ssh-keygen -P option. &lt;BR /&gt;&lt;BR /&gt;This is the process that i use,&lt;BR /&gt;&lt;BR /&gt;-------------&lt;BR /&gt;&lt;BR /&gt;-Log in as user account that will be SCPing files&lt;BR /&gt;-run this command:&lt;BR /&gt;/usr/local/bin/ssh-keygen2 -P&lt;BR /&gt;-cd ~/.ssh2&lt;BR /&gt;-run this command:&lt;BR /&gt;echo "IDKey id_dsa_1024_a" &amp;gt; identification&lt;BR /&gt;&lt;BR /&gt;On remote machines(these next steps are done for each machine that the files will be SCPed to):&lt;BR /&gt;-Log in as user account that will be receiving the SCP files&lt;BR /&gt;-if ~/.ssh2 doesn't exist, run this command:&lt;BR /&gt;mkdir ~/.ssh2&lt;BR /&gt;-cd ~/.ssh2&lt;BR /&gt;-mkdir keys&lt;BR /&gt;-cd keys&lt;BR /&gt;-Get(ftp, scp, etc) the file ~/.ssh2/id_dsa_1024_a.pub from local machine and &lt;BR /&gt; put it in the remote ~/.ssh2/keys  directory.  Name it something unique.  Something like ~/.ssh2/keys/userid.localmachinename.pub&lt;BR /&gt;-cd ~/.ssh2&lt;BR /&gt;-Run the command:&lt;BR /&gt;echo "Key keys/userid.localmachinename.pub" &amp;gt;&amp;gt; authorization&lt;BR /&gt;(replace userid.localmachinename.pub with whatever the file was named).&lt;BR /&gt;&lt;BR /&gt;That's it.  You can test it out by running the following from the local machine: &lt;BR /&gt;ssh remotemachine hostname&lt;BR /&gt;&lt;BR /&gt;It should return the remote machine's hostname without prompting for a password.&lt;BR /&gt;&lt;BR /&gt;---------------&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Tue, 13 Apr 2004 10:58:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246700#M174650</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2004-04-13T10:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: fsecure ssh2 and openssh</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246701#M174651</link>
      <description>Also make sure the ownership is correct on the remote .ssh(2) directory and the permissions are set to 0600 on this directory and all files held within.  &lt;BR /&gt;Sshd is fussy!&lt;BR /&gt;</description>
      <pubDate>Thu, 15 Apr 2004 08:38:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fsecure-ssh2-and-openssh/m-p/3246701#M174651</guid>
      <dc:creator>John Kelly_3</dc:creator>
      <dc:date>2004-04-15T08:38:57Z</dc:date>
    </item>
  </channel>
</rss>

