<?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: SFTP: How do I pick they key to use? in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089546#M56012</link>
    <description>I was playing with some "-D" 3 debugging and came up with this&lt;BR /&gt;debug: server offers auth methods 'publickey,password'.&lt;BR /&gt;debug: SshConfig/SSHCONFIG.C:3240: Unable to open ssh2/identification._pp&lt;BR /&gt;debug: Ssh2AuthClient/SSHAUTHC.C:377: Method 'publickey' disabled.&lt;BR /&gt;&lt;BR /&gt;It seems like it is unable to use my identification file which could very likely be the problem</description>
    <pubDate>Mon, 28 Jan 2008 15:21:16 GMT</pubDate>
    <dc:creator>Erik Harclerode</dc:creator>
    <dc:date>2008-01-28T15:21:16Z</dc:date>
    <item>
      <title>SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089536#M56002</link>
      <description>Hi,&lt;BR /&gt;I'm new to using SFTP and am having trouble getting the host/server computer to recognize my connection.  The host that I'm trying to SFTP to already has my public key so I believe the problem is that I'm not including it as part of my connection string so that it can authenticate me first with the key, and then with my account password.  Unfortunately the only way I've found to connect is using the "OPEN userid@hostinfo.com" string and don't know how to include a reference to the key in my connection string.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help!&lt;BR /&gt;Erik</description>
      <pubDate>Thu, 24 Jan 2008 16:20:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089536#M56002</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-24T16:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089537#M56003</link>
      <description>Erik,&lt;BR /&gt;&lt;BR /&gt;welcome to the OpenVMS ITRC forum.&lt;BR /&gt;&lt;BR /&gt;Here is a pointer to a similar topic from back in 2005, I hope it will answer your question:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums12.itrc.hp.com/service/forums/questionanswer.do?threadId=985928" target="_blank"&gt;http://forums12.itrc.hp.com/service/forums/questionanswer.do?threadId=985928&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Volker.</description>
      <pubDate>Thu, 24 Jan 2008 16:37:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089537#M56003</guid>
      <dc:creator>Volker Halle</dc:creator>
      <dc:date>2008-01-24T16:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089538#M56004</link>
      <description>Having just gone through part of this myself, here is what I got to work.&lt;BR /&gt;&lt;BR /&gt;First you need the user's private key on the SSH/SFTP client side.&lt;BR /&gt;&lt;BR /&gt;The client needs some sort of CONFIG file, see the product documentation for how it is named.  Everybody has a different convention on this but it is usually CONFIG_something or something_CONFIG.  Its location is some .SSH or .SSH2 folder in the path of your SSH/SFTP utility.&lt;BR /&gt;&lt;BR /&gt;Inside that CONFIG file, you identify the location of the key file via the "IdentifyFile" clause - if the SFTP client supports that clause.  The client CONFIG file can get very ugly if you have more than one user who logs in through that same client unless they have individual profiles a la' Windows user profiles and the client is installed per-user.&lt;BR /&gt;&lt;BR /&gt;Probably you'll need the host's public key also noted somewhere in that file if you already know it.  Otherwise the first time you connect, you will need to manually interact so that you can accept the host's public key.  After that, you can more easily automate the process since many clients allow you to point to a script once you have the completed connection.&lt;BR /&gt;&lt;BR /&gt;Of course, your HOST also has a CONFIG file where similar rules apply.  Except that for the OpenVMS host, each user has a private .SSH2 folder with the pointers you need in the individual SSHD2_CONFIG files.&lt;BR /&gt;&lt;BR /&gt;Note that if you go to ECO 7 of TCPIP services, you need to download the updated SSH manual, which you can find online by searching the HP site.  (Sorry, don't have the link at hand, I've set it aside somewhere and now can't find it at the moment.)&lt;BR /&gt;</description>
      <pubDate>Thu, 24 Jan 2008 17:39:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089538#M56004</guid>
      <dc:creator>Richard W Hunt</dc:creator>
      <dc:date>2008-01-24T17:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089539#M56005</link>
      <description>Hi,&lt;BR /&gt;Thank you for your help.  I'm confused as to what the "IdentifyFile" file should be set at. Currently it simply says "identification"&lt;BR /&gt;&lt;BR /&gt;thanks,&lt;BR /&gt;Erik</description>
      <pubDate>Thu, 24 Jan 2008 18:14:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089539#M56005</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-24T18:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089540#M56006</link>
      <description>&lt;!--!*#--&gt;Believe it or not, it might help to know&lt;BR /&gt;which sort of computers, running which sort&lt;BR /&gt;of software, you're using as the client and&lt;BR /&gt;server.  If either of them is running VMS,&lt;BR /&gt;then you may be asking your question in the&lt;BR /&gt;right place.&lt;BR /&gt;&lt;BR /&gt;One place to start might be:&lt;BR /&gt;&lt;BR /&gt;   sftp "-V"</description>
      <pubDate>Thu, 24 Jan 2008 19:33:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089540#M56006</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-24T19:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089541#M56007</link>
      <description>We, the client, are using an OpenVMS system to run SFTP.&lt;BR /&gt;&lt;BR /&gt;The results of sftp -V show the following, but I don't know what I'm supposed to be getting from this.&lt;BR /&gt;&lt;BR /&gt;Sftp2/SFTP2.C:4642: CRTL version (SYS$SHARE:DECC$SHARE ident) is: V7.3-2-03&lt;BR /&gt; &lt;BR /&gt;SshFileCopy/SSHFILECOPY.C:1080: Making local connection.&lt;BR /&gt;Ssh2SftpServer/SSHFILEXFERS.C:1758: Received SSH_FXP_INIT&lt;BR /&gt;Ssh2SftpServer/SSHFILEXFERS.C:1803: version is 3&lt;BR /&gt;SshFileCopy/SSHFILECOPY.C:1019: Connection to local, ready to serve requests.&lt;BR /&gt;Sftp2/SFTP2.C:798: Connection ready.&lt;BR /&gt;SshReadLine/SSHREADLINE.C:3670: Initializing ReadLine...</description>
      <pubDate>Fri, 25 Jan 2008 17:21:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089541#M56007</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-25T17:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089542#M56008</link>
      <description>&lt;!--!*#--&gt;&amp;gt; The results of sftp -V [...]&lt;BR /&gt;&lt;BR /&gt;Sadly, on VMS there's a difference between&lt;BR /&gt;what you did:&lt;BR /&gt;    sftp -V&lt;BR /&gt;and what I suggested:&lt;BR /&gt;    sftp "-V"&lt;BR /&gt;.&lt;BR /&gt;&lt;BR /&gt;Around here:&lt;BR /&gt;&lt;BR /&gt;alp $ sftp "-V"&lt;BR /&gt;alp$dka0:[sys0.syscommon.][sysexe]tcpip$ssh_sftp2.exe: SSH Secure Shell OpenVMS&lt;BR /&gt;(V5.5) 3.2.0 on COMPAQ Professional Workstation  - VMS V7.3-2&lt;BR /&gt;&lt;BR /&gt;And, according to "sftp -h", you can use:&lt;BR /&gt;    [-o option_to_ssh2]&lt;BR /&gt;and, according to "ssh -h", you can specify:&lt;BR /&gt;  -i file        Identity file for public key authentication&lt;BR /&gt;&lt;BR /&gt;So, I'd guess that something like this might&lt;BR /&gt;work:&lt;BR /&gt;&lt;BR /&gt;sftp -o "-i other_id_file" [...]&lt;BR /&gt;&lt;BR /&gt;where other_id_file contains text like:&lt;BR /&gt;      IdKey actual_key_file_name&lt;BR /&gt;the way [.ssh2]identification should be doing&lt;BR /&gt;now.&lt;BR /&gt;&lt;BR /&gt;Also, when playing with authentication&lt;BR /&gt;options and problems, it's often easier to&lt;BR /&gt;puzzle things out using SSH (with "-v"?) than&lt;BR /&gt;it is using the more complex SFTP.</description>
      <pubDate>Fri, 25 Jan 2008 17:44:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089542#M56008</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-25T17:44:20Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089543#M56009</link>
      <description>I'm still a bit unsure as to what I'm to do with the "-V", but here is the output:&lt;BR /&gt;&lt;BR /&gt;$ sftp "-V"&lt;BR /&gt;dsa1:[sys0.syscommon.][sysexe]tcpip$ssh_sftp2.exe: SSH Secure Shell OpenVMS (V5.&lt;BR /&gt;5) 3.2.0 on hp AlphaServer GS1280 7/1300 - VMS V7.3-2</description>
      <pubDate>Fri, 25 Jan 2008 20:07:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089543#M56009</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-25T20:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089544#M56010</link>
      <description>&lt;!--!*#--&gt;&amp;gt; I'm still a bit unsure as to what I'm to do&lt;BR /&gt;&amp;gt; with the "-V", but here is the output:&lt;BR /&gt;&lt;BR /&gt;That was it.  So now we all know with what&lt;BR /&gt;we're dealing, at least on the client side.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I'm confused as to what the "IdentifyFile"&lt;BR /&gt;&amp;gt; file should be set at. Currently it simply&lt;BR /&gt;&amp;gt; says "identification"&lt;BR /&gt;&lt;BR /&gt;That's fine.  It means that SSH and its&lt;BR /&gt;friends will look at "[.ssh2]identification"&lt;BR /&gt;to get the name of the key files to use.&lt;BR /&gt;&lt;BR /&gt;For example, on my system, I have two sets of&lt;BR /&gt;key files in [.ssh2] -- one with a passphrase&lt;BR /&gt;(SMS_ID_DSA_1024_A.*) and one without&lt;BR /&gt;(SMS_NPP_ID_DSA_1024_A.*).  By default, SSH&lt;BR /&gt;gets the identity from&lt;BR /&gt;[.ssh2]identification., which on my system&lt;BR /&gt;says "IdKey SMS_NPP_ID_DSA_1024_A", so it&lt;BR /&gt;normally uses the no-passphrase keys.&lt;BR /&gt;&lt;BR /&gt;alp $ ssh alp&lt;BR /&gt;Authentication successful.&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;If I want to use the with-passphrase keys, I&lt;BR /&gt;can specify an alternate identity file, say,&lt;BR /&gt;[.ssh2]identification._pp, which says "IdKey&lt;BR /&gt;SMS_ID_DSA_1024_A".&lt;BR /&gt;&lt;BR /&gt;alp $ ssh -i identification._pp alp&lt;BR /&gt;Passphrase for key "/ALP$DKA0/sms/ssh2/SMS_ID_DSA_1024_A" with comment "1024-bit&lt;BR /&gt; dsa, sms@alp.antinode.org, Fri Jun 27 2003 03:57:52": &lt;INSERT passphrase="" here.=""&gt;&lt;BR /&gt;&lt;BR /&gt;Authentication successful.&lt;BR /&gt;[...]&lt;BR /&gt;&lt;BR /&gt;Similarly, for SFTP:&lt;BR /&gt;&lt;BR /&gt;alp $ sftp alp&lt;BR /&gt;sftp&amp;gt; cd zx2000&lt;BR /&gt;ALP$DKA0:[SMS.ZX2000]&lt;BR /&gt;sftp&amp;gt; ls v*&lt;BR /&gt;VMS_INSTALL.TXT;3&lt;BR /&gt;VMS_INSTALL.TXT;2&lt;BR /&gt;VMS_INSTALL.TXT;1&lt;BR /&gt;sftp&amp;gt; quit&lt;BR /&gt;&lt;BR /&gt;Or, using the with-passphrase keys (and the&lt;BR /&gt;correct SFTP syntax to specify the alternate&lt;BR /&gt;identity, unlike my earlier&lt;BR /&gt;suggestion/guess):&lt;BR /&gt;&lt;BR /&gt;alp $ sftp -o "IdentityFile identification._pp" alp&lt;BR /&gt;Passphrase for key "/ALP$DKA0/sms/ssh2/SMS_ID_DSA_1024_A" with comment "1024-bit&lt;BR /&gt; dsa, sms@alp.antinode.org, Fri Jun 27 2003 03:57:52": &lt;INSERT passphrase="" here.=""&gt;&lt;BR /&gt;sftp&amp;gt; cd zx2000&lt;BR /&gt;ALP$DKA0:[SMS.ZX2000]&lt;BR /&gt;sftp&amp;gt; ls v*&lt;BR /&gt;VMS_INSTALL.TXT;3&lt;BR /&gt;VMS_INSTALL.TXT;2&lt;BR /&gt;VMS_INSTALL.TXT;1&lt;BR /&gt;sftp&amp;gt; quit&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Now, back to the original problem.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] am having trouble getting the&lt;BR /&gt;&amp;gt; host/server computer to recognize my&lt;BR /&gt;&amp;gt; connection.&lt;BR /&gt;&lt;BR /&gt;What, exactly, does that mean?  What command&lt;BR /&gt;did you use, and what, exactly, happened when&lt;BR /&gt;you tried it?&lt;BR /&gt;&lt;BR /&gt;Do you have proper key files in your [.ssh2]&lt;BR /&gt;directory?  Did you make them using&lt;BR /&gt;SSH_KEYGEN on the VMS system, or did you copy&lt;BR /&gt;them from some UNIX-like system somewhere&lt;BR /&gt;(where the key file formats are probably&lt;BR /&gt;different)?&lt;BR /&gt;&lt;BR /&gt;Does "ssh other_host" work?  If not, what is&lt;BR /&gt;the output you get from "ssh -v other_host"?&lt;BR /&gt;(Step one is to get a simple SSH command to&lt;BR /&gt;work.)&lt;/INSERT&gt;&lt;/INSERT&gt;</description>
      <pubDate>Fri, 25 Jan 2008 23:46:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089544#M56010</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-25T23:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089545#M56011</link>
      <description>Hi Steven, I really appreciate your continued support with this.  Here are some answers/clarifications to questions you had.&lt;BR /&gt;&lt;BR /&gt;First, problem #1 could've been the fact that the "identification." file did not exist on our system, so I created one that contained the "IdKey ID_DSA_2048_A" string.  Actually, I created a identification._pp file just to mimic what you were showing me in your post.&lt;BR /&gt;&lt;BR /&gt;Next, I tried multiple times to connect to the host system using the following commands and had no luck.  I've included the error message that it is giving me.&lt;BR /&gt;&lt;BR /&gt;$ SFTP -o "IdentityFile identification._pp" xyz@&lt;A href="http://www.somesite.org" target="_blank"&gt;www.somesite.org&lt;/A&gt;&lt;BR /&gt;This is a private system.&lt;BR /&gt;Unauthorized access is prohibited and will&lt;BR /&gt;xyz@&lt;A href="http://www.somesite.org's" target="_blank"&gt;www.somesite.org's&lt;/A&gt; password: &lt;BR /&gt; &lt;BR /&gt;warning: Authentication failed.&lt;BR /&gt;Disconnected; no more authentication methods available (No further authenticatio&lt;BR /&gt;n methods available.).&lt;BR /&gt;FATAL: ssh2 client failed to authenticate. (or you have too old ssh2 installed,&lt;BR /&gt;check with ssh2 "-V")&lt;BR /&gt; &lt;BR /&gt;%TCPIP-F-SSH_FATAL, non-specific fatal error condition&lt;BR /&gt;&lt;BR /&gt;~~~~~~~~~~~~~~~&lt;BR /&gt;&lt;BR /&gt;$ ssh -i identification._pp xyz@&lt;A href="http://www.somesite.org" target="_blank"&gt;www.somesite.org&lt;/A&gt;&lt;BR /&gt;This is a private system.&lt;BR /&gt;Unauthorized access is prohibited and will&lt;BR /&gt;xyz's password: &lt;BR /&gt; &lt;BR /&gt;warning: Authentication failed.&lt;BR /&gt;Disconnected; no more authentication methods available (No further authenticatio&lt;BR /&gt;n methods available.).&lt;BR /&gt;~~~~~~~~~~~~~~~~&lt;BR /&gt;The key was originally created using the SSH_KEYGEN on the VMS system.  &lt;BR /&gt;&lt;BR /&gt;The results of "ssh other_host" is:&lt;BR /&gt;debug: Ssh2/SSH2.C:1906: CRTL version (SYS$SHARE:DECC$SHR.EXE ident) is V7.3-2-0&lt;BR /&gt;3&lt;BR /&gt;debug: SshAppCommon/SSHAPPCOMMON.C:322: Allocating global SshRegex context.&lt;BR /&gt;debug: SshConfig/SSHCONFIG.C:3332: Metaconfig parsing stopped at line 4.&lt;BR /&gt;debug: SshConfig/SSHCONFIG.C:861: Setting variable 'VerboseMode' to 'FALSE'.&lt;BR /&gt;debug: SshConfig/SSHCONFIG.C:3240: Unable to open ssh2/ssh2_config&lt;BR /&gt;debug: Connecting to other_host, port 22... (SOCKS not used)&lt;BR /&gt;debug: Ssh2/SSH2.C:2872: Entering event loop.&lt;BR /&gt;warning: Connecting to other_host failed: No address associated to the name&lt;BR /&gt;%TCPIP-E-SSH_ERROR, non-specific error condition&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Jan 2008 14:55:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089545#M56011</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-28T14:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089546#M56012</link>
      <description>I was playing with some "-D" 3 debugging and came up with this&lt;BR /&gt;debug: server offers auth methods 'publickey,password'.&lt;BR /&gt;debug: SshConfig/SSHCONFIG.C:3240: Unable to open ssh2/identification._pp&lt;BR /&gt;debug: Ssh2AuthClient/SSHAUTHC.C:377: Method 'publickey' disabled.&lt;BR /&gt;&lt;BR /&gt;It seems like it is unable to use my identification file which could very likely be the problem</description>
      <pubDate>Mon, 28 Jan 2008 15:21:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089546#M56012</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-28T15:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089547#M56013</link>
      <description>&amp;gt; debug: SshConfig/SSHCONFIG.C:3240: Unable&lt;BR /&gt;&amp;gt; to open ssh2/identification._pp&lt;BR /&gt;&amp;gt; debug: Ssh2AuthClient/SSHAUTHC.C:377:&lt;BR /&gt;&amp;gt; Method 'publickey' disabled.&lt;BR /&gt;&lt;BR /&gt;That looks like a clue.  Where's your&lt;BR /&gt;"identification._pp" file?  (An actual&lt;BR /&gt;DIRECTORY listing would be most convincing.)&lt;BR /&gt;&lt;BR /&gt;Around here (where SYS$LOGIN is&lt;BR /&gt;"ALP$DKA0:[SMS]"):&lt;BR /&gt;&lt;BR /&gt;alp $ dire /date /prot /size [.ssh2]id*&lt;BR /&gt;&lt;BR /&gt;Directory ALP$DKA0:[SMS.SSH2]&lt;BR /&gt;&lt;BR /&gt;IDENTIFICATION.;3          1  23-JUL-2003 22:46:43.97  (RWED,RWED,,)&lt;BR /&gt;IDENTIFICATION._NPP;1&lt;BR /&gt;                           1  23-JUL-2003 22:46:43.97  (RWED,RWED,,)&lt;BR /&gt;IDENTIFICATION._PP;3&lt;BR /&gt;                           1  26-JUN-2003 23:43:35.79  (RWED,RWED,,)&lt;BR /&gt;&lt;BR /&gt;Total of 3 files, 3 blocks.&lt;BR /&gt;&lt;BR /&gt;You might throw in /OWNER, too, just in case.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] identification._pp file just to mimic&lt;BR /&gt;&amp;gt; [...]&lt;BR /&gt;&lt;BR /&gt;Wouldn't be my choice (for a NO-passphrase&lt;BR /&gt;key set), but it shouldn't matter.</description>
      <pubDate>Mon, 28 Jan 2008 16:02:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089547#M56013</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-28T16:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089548#M56014</link>
      <description>Hi Steve,&lt;BR /&gt;Great news!  I was able to get it working thanks to your advice.  After poking around for a while I found that for whatever reason SSH/SFTP was looking for the identification file and the secret and public keys in my personal VMS directory, so once I moved those files into that directory everything started to work as expected.  &lt;BR /&gt;&lt;BR /&gt;Thanks for all of your help with this.&lt;BR /&gt;&lt;BR /&gt;Erik</description>
      <pubDate>Mon, 28 Jan 2008 20:37:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089548#M56014</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-01-28T20:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089549#M56015</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] I was able to get it working [...]&lt;BR /&gt;&lt;BR /&gt;What could go wrong?&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] I found that for whatever reason [...]&lt;BR /&gt;&lt;BR /&gt;The SSH _client_ must use user-specific data,&lt;BR /&gt;so it looks for them under SYS$LOGIN.  The&lt;BR /&gt;documentation on this is somewhere between&lt;BR /&gt;confused and hopeless, I'll admit.&lt;BR /&gt;&lt;BR /&gt;Fir example:&lt;BR /&gt;&lt;A href="http://h71000.www7.hp.com/doc/83final/BA548_90007/ch03s02.html" target="_blank"&gt;http://h71000.www7.hp.com/doc/83final/BA548_90007/ch03s02.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;   [...]  If you want to specify user-specific&lt;BR /&gt;   parameters, you can create a client&lt;BR /&gt;   configuration file in the [username.SSH2]&lt;BR /&gt;   directory.  [...]&lt;BR /&gt;&lt;BR /&gt;Well, maybe, and maybe not.&lt;BR /&gt;&lt;BR /&gt;Not having a good way to say something like&lt;BR /&gt;"SYS$LOGIN:[.SSH2]" makes it hard for UNIX&lt;BR /&gt;people who expect to be able to say things&lt;BR /&gt;like "$HOME/ssh2" or "~/ssh2".</description>
      <pubDate>Mon, 28 Jan 2008 21:09:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089549#M56015</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-01-28T21:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP: How do I pick they key to use?</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089550#M56016</link>
      <description>Solution found.  Please see thread.</description>
      <pubDate>Tue, 12 Feb 2008 16:23:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sftp-how-do-i-pick-they-key-to-use/m-p/5089550#M56016</guid>
      <dc:creator>Erik Harclerode</dc:creator>
      <dc:date>2008-02-12T16:23:09Z</dc:date>
    </item>
  </channel>
</rss>

