<?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_config format in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487053#M744733</link>
    <description>Hi Denver,&lt;BR /&gt;&lt;BR /&gt;your turn around is ok, putting config file in home dir make my connection ok.&lt;BR /&gt;But i'm afraid the solution couldn't been applyed. i have script to create user on multiplaform and only on hpux i have this problem. So i don't want to make a particular case for hp boxes, to preserv equality between different OS.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your help&lt;BR /&gt;Regards&lt;BR /&gt;Francois</description>
    <pubDate>Mon, 21 Feb 2005 03:38:36 GMT</pubDate>
    <dc:creator>Francois LAURENT</dc:creator>
    <dc:date>2005-02-21T03:38:36Z</dc:date>
    <item>
      <title>ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487047#M744727</link>
      <description>I all,&lt;BR /&gt;&lt;BR /&gt;I try to configure ssh a.03.81.002 on 11.11 box, but i have a format problem in ssh_config file.&lt;BR /&gt;&lt;BR /&gt;Keys are "user" and "user.pub" stored in /home/user/.ssh/ dir.&lt;BR /&gt;&lt;BR /&gt;I want to use user dependent key name. So i tried to setup in ssh_config file in client's file :&lt;BR /&gt;&lt;BR /&gt;IdentityFile $HOME/.ssh/$LOGNAME --&amp;gt; don't work&lt;BR /&gt;IdentityFile %h/.ssh/%u --&amp;gt; don't work&lt;BR /&gt;&lt;BR /&gt;And then hard path for one test user :&lt;BR /&gt;IdentityFile /home/xxx/.ssh/xxx&lt;BR /&gt;with xxx a real user with keys --&amp;gt; IT'S WORKING !&lt;BR /&gt;&lt;BR /&gt;Could you help me in telling me what is the format of "IdentityFile" for user dependent name ?&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for help&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;&lt;BR /&gt;Francois&lt;BR /&gt;</description>
      <pubDate>Wed, 16 Feb 2005 07:43:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487047#M744727</guid>
      <dc:creator>Francois LAURENT</dc:creator>
      <dc:date>2005-02-16T07:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487048#M744728</link>
      <description>Your syntax looks good, except for the env variables being used... don't use the varables. :)&lt;BR /&gt;&lt;BR /&gt;It sounds to me that you're making the user changes to the system wide ssh_config /opt/ssh/etc/ssh_config rather than the user's ssh_config.&lt;BR /&gt;&lt;BR /&gt;create $HOME/.ssh/ssh_config for that user. This file will only affect this user and not everyone on the box. Change the global ssh_config back to the default.&lt;BR /&gt;&lt;BR /&gt;Also make sure that te user owns the $HOME/.ssh/ssh_config file and group/other aren't allowed write access.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;-denver</description>
      <pubDate>Wed, 16 Feb 2005 08:24:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487048#M744728</guid>
      <dc:creator>Denver Osborn</dc:creator>
      <dc:date>2005-02-16T08:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487049#M744729</link>
      <description>Thanks Denver for your purpose,&lt;BR /&gt;&lt;BR /&gt;the env variables aren't read (they're seted of course, it's ok in shell) but why ?&lt;BR /&gt;&lt;BR /&gt;Putting ssh_config in user's home don't work too.&lt;BR /&gt;&lt;BR /&gt;Thanks for any suggestions.&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;&lt;BR /&gt;Francois</description>
      <pubDate>Wed, 16 Feb 2005 09:53:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487049#M744729</guid>
      <dc:creator>Francois LAURENT</dc:creator>
      <dc:date>2005-02-16T09:53:36Z</dc:date>
    </item>
    <item>
      <title>Re: ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487050#M744730</link>
      <description>last try :&lt;BR /&gt;&lt;BR /&gt;ssh -i $HOME/.ssh/$LOGNAME server --&amp;gt; IS WORKING&lt;BR /&gt;&lt;BR /&gt;with tusc -e trace :&lt;BR /&gt;grep -e HOME -e LOGNAME /tmp/tusc_ssh-i&lt;BR /&gt;                               env[5] @ 0x77ff043e: "LOGNAME=x051104"&lt;BR /&gt;                               env[13] @ 0x77ff04c8: "HOME=/home/system/x051104"&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME", O_RDONLY|O_LARGEFILE, 0) ............... ERR#2 ENOENT&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME", O_RDONLY|O_LARGEFILE, 0666) ............ ERR#2 ENOENT&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME", O_RDONLY|O_LARGEFILE, 0666) ............ ERR#2 ENOENT&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME.pub", O_RDONLY|O_LARGEFILE, 0666) ........ ERR#2 ENOENT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ssh server --&amp;gt; NOT working&lt;BR /&gt;&lt;BR /&gt;with tusc -e trace :&lt;BR /&gt;grep -e HOME -e LOGNAME /tmp/tusc_ssh &lt;BR /&gt;                               env[5] @ 0x77ff0419: "LOGNAME=x051104"&lt;BR /&gt;                               env[13] @ 0x77ff04a3: "HOME=/home/system/x051104"&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME", O_RDONLY|O_LARGEFILE, 0) ............... ERR#2 ENOENT&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME", O_RDONLY|O_LARGEFILE, 0666) ............ ERR#2 ENOENT&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME", O_RDONLY|O_LARGEFILE, 0666) ............ ERR#2 ENOENT&lt;BR /&gt;open("$HOME/.ssh/$LOGNAME.pub", O_RDONLY|O_LARGEFILE, 0666) ........ ERR#2 ENOENT&lt;BR /&gt;stat64("$HOME/.ssh/$LOGNAME", 0x77ff0d18) .......................... ERR#2 ENOENT&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In the 2 case : $HOME and $LOGNAME look OK ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;thanks for help.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Francois</description>
      <pubDate>Wed, 16 Feb 2005 11:29:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487050#M744730</guid>
      <dc:creator>Francois LAURENT</dc:creator>
      <dc:date>2005-02-16T11:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487051#M744731</link>
      <description>oops, sorry about the bad info before. rename $HOME/.ssh/ssh_config to $HOME/.ssh/config&lt;BR /&gt;&lt;BR /&gt;Also use "ssh -vvv" for detailed output. If it's using the specified identity from your user's config, you'll see it.&lt;BR /&gt;&lt;BR /&gt;-denver</description>
      <pubDate>Wed, 16 Feb 2005 12:15:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487051#M744731</guid>
      <dc:creator>Denver Osborn</dc:creator>
      <dc:date>2005-02-16T12:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487052#M744732</link>
      <description>also remember it won't work (or atleast it didn't work for me) if you put "IdentityFile=$HOME/.ssh/$LOGNAME" in the users $HOME/.ssh/config file. It has to be "IdentityFile=/home/user/.ssh/user". You'll see what I mean when you use the "-vvv" option with ssh for detailed info.&lt;BR /&gt;&lt;BR /&gt;Hope this helps,&lt;BR /&gt;-denver</description>
      <pubDate>Wed, 16 Feb 2005 12:21:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487052#M744732</guid>
      <dc:creator>Denver Osborn</dc:creator>
      <dc:date>2005-02-16T12:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: ssh_config format</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487053#M744733</link>
      <description>Hi Denver,&lt;BR /&gt;&lt;BR /&gt;your turn around is ok, putting config file in home dir make my connection ok.&lt;BR /&gt;But i'm afraid the solution couldn't been applyed. i have script to create user on multiplaform and only on hpux i have this problem. So i don't want to make a particular case for hp boxes, to preserv equality between different OS.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot for your help&lt;BR /&gt;Regards&lt;BR /&gt;Francois</description>
      <pubDate>Mon, 21 Feb 2005 03:38:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-config-format/m-p/3487053#M744733</guid>
      <dc:creator>Francois LAURENT</dc:creator>
      <dc:date>2005-02-21T03:38:36Z</dc:date>
    </item>
  </channel>
</rss>

