<?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: ssh2 login without password in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526681#M220765</link>
    <description>version of Secure Shell is A.03.10.007 on client and on server.&lt;BR /&gt;</description>
    <pubDate>Tue, 19 Apr 2005 01:29:09 GMT</pubDate>
    <dc:creator>Igor Sovin</dc:creator>
    <dc:date>2005-04-19T01:29:09Z</dc:date>
    <item>
      <title>ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526673#M220757</link>
      <description>Hi &lt;BR /&gt;I need to login from my client on HP-UX into server (also HP-UX) without providing password, using ssh2.&lt;BR /&gt;I've generated dsa and rsa keys using ssh-keygen on client, then I've created file authorized_keys in /.ssh/ on server, and have copied client's file id_dsa.pub to /.ssh/authorized_keys. As described in manual after that action I would be granted to server without promting password, but &lt;BR /&gt;I still get a promt to provide password.&lt;BR /&gt;What did I do wrong? &lt;BR /&gt;&lt;BR /&gt;thanx</description>
      <pubDate>Mon, 18 Apr 2005 03:29:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526673#M220757</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-18T03:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526674#M220758</link>
      <description>Hello Igor,&lt;BR /&gt;&lt;BR /&gt;Try connecting with "ssh -v host".  It may  give you information about the problem.  Also check the permissions on your .ssh directory and the files within.  I've seen ssh not trust  keys when the permissions are too loose.&lt;BR /&gt;&lt;BR /&gt;Good luck,&lt;BR /&gt;Tom</description>
      <pubDate>Mon, 18 Apr 2005 05:09:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526674#M220758</guid>
      <dc:creator>Tom Ward_1</dc:creator>
      <dc:date>2005-04-18T05:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526675#M220759</link>
      <description>Here are some good tutorials:&lt;BR /&gt;&lt;A href="http://www.cvrti.utah.edu/~dustman/no-more-pw-ssh/" target="_blank"&gt;http://www.cvrti.utah.edu/~dustman/no-more-pw-ssh/&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.ifi.uio.no/in228/scripting/doc/ssh-no-password.html" target="_blank"&gt;http://www.ifi.uio.no/in228/scripting/doc/ssh-no-password.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Be sure you didn't miss something. Also check ssh configuraion file, sometimes authorized keys file is configured to be "authorized_keys2". I had this problem once, took a while to find.</description>
      <pubDate>Mon, 18 Apr 2005 05:09:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526675#M220759</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-04-18T05:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526676#M220760</link>
      <description>(server)$ cd /home/&lt;LOGIN&gt;&lt;BR /&gt;(server)$ ssh-keygen -t dsa -f id_dsa&lt;BR /&gt;(server)$ cat id_dsa.pub &amp;gt;&amp;gt; .ssh/authorized_keys&lt;BR /&gt;(server)$ scp id_dsa &lt;LOGIN&gt;@&lt;SRC&gt;:&lt;BR /&gt;(server)$ chmod 750 /home/&lt;LOGIN&gt;&lt;BR /&gt;(server)$ chmod 700 /home/&lt;LOGIN&gt;/.ssh&lt;BR /&gt;(server)$ chmod 600 /home/&lt;LOGIN&gt;/.ssh/*&lt;BR /&gt;(client)$ cd /home/&lt;LOGIN&gt;&lt;BR /&gt;(client)$ mv id_dsa .ssh/&lt;BR /&gt;(client)$ chmod 750 /home/&lt;LOGIN&gt;&lt;BR /&gt;(client)$ chmod 700 /home/&lt;LOGIN&gt;/.ssh/&lt;BR /&gt;(client)$ chmod 600 /home/&lt;LOGIN&gt;/.ssh/*&lt;BR /&gt;(client)$ ssh &lt;LOGIN&gt;@&lt;SERVER&gt;&lt;BR /&gt;&lt;/SERVER&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;&lt;/SRC&gt;&lt;/LOGIN&gt;&lt;/LOGIN&gt;</description>
      <pubDate>Mon, 18 Apr 2005 10:19:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526676#M220760</guid>
      <dc:creator>Joe Harrison_1</dc:creator>
      <dc:date>2005-04-18T10:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526677#M220761</link>
      <description>(server)$ scp id_dsa &lt;LOGIN&gt;@&lt;CLIENT&gt;:&lt;/CLIENT&gt;&lt;/LOGIN&gt;</description>
      <pubDate>Mon, 18 Apr 2005 10:21:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526677#M220761</guid>
      <dc:creator>Joe Harrison_1</dc:creator>
      <dc:date>2005-04-18T10:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526678#M220762</link>
      <description>Permissions are okay&lt;BR /&gt;I've read the given links, I did exactly the same things as described in these documents.&lt;BR /&gt;&lt;BR /&gt;I did the same om another host with the same OS and same version of Secure Shell, everything worked perfect.&lt;BR /&gt;Dont know what to do...&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Apr 2005 23:59:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526678#M220762</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-18T23:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526679#M220763</link>
      <description>Did you check in ssh configuration file, that the file for quthorized keys is indeed "authorized_keys" and not "authorized_keys2"?</description>
      <pubDate>Tue, 19 Apr 2005 00:51:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526679#M220763</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-04-19T00:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526680#M220764</link>
      <description>What Version of SSH are you using ?What is the settings in /etc/sshd_cocnfig file.Do you have a centrlised user authentication software installed.It depends on this</description>
      <pubDate>Tue, 19 Apr 2005 01:13:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526680#M220764</guid>
      <dc:creator>wip</dc:creator>
      <dc:date>2005-04-19T01:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526681#M220765</link>
      <description>version of Secure Shell is A.03.10.007 on client and on server.&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Apr 2005 01:29:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526681#M220765</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-19T01:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526682#M220766</link>
      <description>What about settings in sshd config file?&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Apr 2005 01:31:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526682#M220766</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-04-19T01:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526683#M220767</link>
      <description>my sshd_config&lt;BR /&gt;&lt;BR /&gt;       $OpenBSD: sshd_config,v 1.48 2002/02/19 02:50:59 deraadt Exp $&lt;BR /&gt;&lt;BR /&gt;# This is the sshd server system-wide configuration file.  See sshd(8)&lt;BR /&gt;# for more information.&lt;BR /&gt;&lt;BR /&gt;# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin:/opt/ssh/bin&lt;BR /&gt;&lt;BR /&gt;# The strategy used for options in the default sshd_config shipped with&lt;BR /&gt;# HP-UX Secure Shell is to specify options with their default value where&lt;BR /&gt;# possible, but leave them commented.  Uncommented options change a&lt;BR /&gt;# default value.&lt;BR /&gt;&lt;BR /&gt;#Port 22&lt;BR /&gt;#&lt;BR /&gt;#   WARNING: enabling protocol 1 will cause HP-UX Secure Shell vulnerable&lt;BR /&gt;#   to security attacks.  It is strongly recommended NOT to enable protocol 1.&lt;BR /&gt;#   Use "2,1" to notify sshd to use version 2 and fall back to version 1 if&lt;BR /&gt;#   version 2 is not available.  The default is "2".&lt;BR /&gt;#&lt;BR /&gt;Protocol 2&lt;BR /&gt;#ListenAddress 0.0.0.0&lt;BR /&gt;#ListenAddress ::&lt;BR /&gt;&lt;BR /&gt;# HostKey for protocol version 1&lt;BR /&gt;#HostKey /opt/ssh/etc/ssh_host_key&lt;BR /&gt;# HostKeys for protocol version 2&lt;BR /&gt;#HostKey /opt/ssh/etc/ssh_host_rsa_key&lt;BR /&gt;#HostKey /opt/ssh/etc/ssh_host_dsa_key&lt;BR /&gt;&lt;BR /&gt;# Lifetime and size of ephemeral version 1 server key&lt;BR /&gt;#KeyRegenerationInterval 3600&lt;BR /&gt;#ServerKeyBits 768&lt;BR /&gt;&lt;BR /&gt;# Logging&lt;BR /&gt;#obsoletes QuietMode and FascistLogging&lt;BR /&gt;#SyslogFacility AUTH&lt;BR /&gt;#LogLevel INFO&lt;BR /&gt;&lt;BR /&gt;# Authentication:&lt;BR /&gt;&lt;BR /&gt;#LoginGraceTime 600&lt;BR /&gt;#PermitRootLogin yes&lt;BR /&gt;#StrictModes yes&lt;BR /&gt;&lt;BR /&gt;#RSAAuthentication yes&lt;BR /&gt;#PubkeyAuthentication yes&lt;BR /&gt;#AuthorizedKeysFile     .ssh/authorized_keys&lt;BR /&gt;&lt;BR /&gt;# rhosts authentication should not be used&lt;BR /&gt;#RhostsAuthentication no&lt;BR /&gt;# Don't read the user's ~/.rhosts and ~/.shosts files&lt;BR /&gt;#IgnoreRhosts yes&lt;BR /&gt;# For this to work you will also need host keys in /opt/ssh/etc/ssh_known_hosts&lt;BR /&gt;#RhostsRSAAuthentication no&lt;BR /&gt;# similar for protocol version 2&lt;BR /&gt;#HostbasedAuthentication no&lt;BR /&gt;# Change to yes if you don't trust ~/.ssh/known_hosts for&lt;BR /&gt;# RhostsRSAAuthentication and HostbasedAuthentication&lt;BR /&gt;#IgnoreUserKnownHosts no&lt;BR /&gt;&lt;BR /&gt;# To disable tunneled clear text passwords, change to no here!&lt;BR /&gt;#PasswordAuthentication yes&lt;BR /&gt;#PermitEmptyPasswords no&lt;BR /&gt;&lt;BR /&gt;# Change to no to disable s/key passwords&lt;BR /&gt;#ChallengeResponseAuthentication yes&lt;BR /&gt;&lt;BR /&gt;# Kerberos options&lt;BR /&gt;# KerberosAuthentication automatically enabled if keyfile exists&lt;BR /&gt;#KerberosAuthentication yes&lt;BR /&gt;#KerberosOrLocalPasswd yes&lt;BR /&gt;#KerberosTicketCleanup yes&lt;BR /&gt;&lt;BR /&gt;# AFSTokenPassing automatically enabled if k_hasafs() is true&lt;BR /&gt;#AFSTokenPassing yes&lt;BR /&gt;&lt;BR /&gt;# Kerberos TGT Passing only works with the AFS kaserver&lt;BR /&gt;#KerberosTgtPassing no&lt;BR /&gt;&lt;BR /&gt;# Set this to 'yes' to enable PAM keyboard-interactive authentication &lt;BR /&gt;# Warning: enabling this may bypass the setting of 'PasswordAuthentication'&lt;BR /&gt;#PAMAuthenticationViaKbdInt yes&lt;BR /&gt;&lt;BR /&gt;# From A.03.10.005 onwards&lt;BR /&gt;X11Forwarding yes&lt;BR /&gt;#X11DisplayOffset 10&lt;BR /&gt;X11UseLocalhost no&lt;BR /&gt;#PrintMotd yes&lt;BR /&gt;#PrintLastLog yes&lt;BR /&gt;#KeepAlive yes&lt;BR /&gt;#UseLogin no&lt;BR /&gt;&lt;BR /&gt;#MaxStartups 10&lt;BR /&gt;# no default banner path&lt;BR /&gt;#Banner /some/path&lt;BR /&gt;#VerifyReverseMapping no&lt;BR /&gt;&lt;BR /&gt;# override default of no subsystems&lt;BR /&gt;Subsystem       sftp    /opt/ssh/libexec/sftp-server</description>
      <pubDate>Tue, 19 Apr 2005 01:35:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526683#M220767</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-19T01:35:21Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526684#M220768</link>
      <description>AS I thought:&lt;BR /&gt;#RSAAuthentication yes&lt;BR /&gt;#PubkeyAuthentication yes&lt;BR /&gt;#AuthorizedKeysFile .ssh/authorized_keys&lt;BR /&gt;&lt;BR /&gt;This section is commented, so sshd ignore authorized_key file.&lt;BR /&gt;&lt;BR /&gt;Uncomment it and restart sshd.</description>
      <pubDate>Tue, 19 Apr 2005 01:58:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526684#M220768</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-04-19T01:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526685#M220769</link>
      <description>Check that both hosts know one another by the names that you think they do. Ssh into the target box and do a "whoami" and ensure that the hostname supplied is exactly the same as the one in "authorized_keys" because if it doesn't then SSH assumes you don't have a public key.&lt;BR /&gt;&lt;BR /&gt;The other major problem is when you inadvertantly put carriage returns into the "authorized_keys" file.</description>
      <pubDate>Tue, 19 Apr 2005 02:00:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526685#M220769</guid>
      <dc:creator>Andrew Cowan</dc:creator>
      <dc:date>2005-04-19T02:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526686#M220770</link>
      <description>To test if it's permission problem set StrictModes parameter in sshd_config to 'no' or run sshd as follows.&lt;BR /&gt;&lt;BR /&gt;&lt;SERVER&gt;# sshd -p 22222 -o'StrictModes no'&lt;BR /&gt;&lt;CLIENT&gt;# ssh -p 22222 &lt;SERVER&gt;&lt;BR /&gt;&lt;BR /&gt;If that works then you know that directory permissions are incorrect and you can troubleshoot further.&lt;/SERVER&gt;&lt;/CLIENT&gt;&lt;/SERVER&gt;</description>
      <pubDate>Tue, 19 Apr 2005 02:01:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526686#M220770</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2005-04-19T02:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526687#M220771</link>
      <description>You need to refer these links:&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;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=822731" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=822731&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;tienna</description>
      <pubDate>Tue, 19 Apr 2005 02:34:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526687#M220771</guid>
      <dc:creator>Nguyen Anh Tien</dc:creator>
      <dc:date>2005-04-19T02:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526688#M220772</link>
      <description>Uncommenting the sections adviced above didnt help&lt;BR /&gt;&lt;BR /&gt;Hosts know each other and file known_hosts is ok.&lt;BR /&gt;&lt;BR /&gt;the output of &lt;SERVER&gt;# sshd -p 22222 -o'StrictModes no' gave nothing&lt;BR /&gt;&lt;BR /&gt;my ssh passwordless connection seems to be big problem ... hm, so why on other hosts everything is ok, configurations of ssh, permissions, etc. are the same.&lt;BR /&gt;I wonder what the problem could be?&lt;/SERVER&gt;</description>
      <pubDate>Tue, 19 Apr 2005 04:47:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526688#M220772</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-19T04:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526689#M220773</link>
      <description>Did you restart sshd? (kill -1 &lt;PID&gt;)&lt;/PID&gt;</description>
      <pubDate>Tue, 19 Apr 2005 04:55:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526689#M220773</guid>
      <dc:creator>Alex Lavrov.</dc:creator>
      <dc:date>2005-04-19T04:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526690#M220774</link>
      <description>yes, I restarted sshd</description>
      <pubDate>Tue, 19 Apr 2005 05:00:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526690#M220774</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-19T05:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526691#M220775</link>
      <description>Does account you are trying to login to have a password assigned (i.e. can you telnet to it)? If it has '*' in encrypted password field you won't be able to do passwordless ssh login as it will consider account as locked.&lt;BR /&gt;&lt;BR /&gt;I suggest you check your permissions again. Not only on $HOME but also on all parent directories and /tmp. For example if $HOME is /home/&lt;USER&gt; you should make sure that&lt;BR /&gt;&lt;BR /&gt;/ and /home are owned by root and not group/world writable (e.g. 755)&lt;BR /&gt;/tmp should be 1777&lt;BR /&gt;/home/&lt;USER&gt; and /home/&lt;USER&gt;/.ssh are owned by &lt;USER&gt; and not group/world writable&lt;BR /&gt;None of the files in /home/&lt;USER&gt;/.ssh should be group/world writable.&lt;/USER&gt;&lt;/USER&gt;&lt;/USER&gt;&lt;/USER&gt;&lt;/USER&gt;</description>
      <pubDate>Tue, 19 Apr 2005 19:07:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526691#M220775</guid>
      <dc:creator>Ermin Borovac</dc:creator>
      <dc:date>2005-04-19T19:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: ssh2 login without password</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526692#M220776</link>
      <description>Thank you all for answers!&lt;BR /&gt;&lt;BR /&gt;The problem was so stupid, user account on server was deactivated due to 3 unsuccessful login attempts.&lt;BR /&gt;I reactivated it and everything gone wright.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 19 Apr 2005 21:41:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2-login-without-password/m-p/3526692#M220776</guid>
      <dc:creator>Igor Sovin</dc:creator>
      <dc:date>2005-04-19T21:41:11Z</dc:date>
    </item>
  </channel>
</rss>

