<?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: using sftp in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929918#M409822</link>
    <description>Hola Marco,&lt;BR /&gt;&lt;BR /&gt;take these links:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=690015" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=690015&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=878554" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=878554&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=694462" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=694462&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Alex</description>
    <pubDate>Wed, 28 Sep 2005 11:41:44 GMT</pubDate>
    <dc:creator>Alessandro Pilati</dc:creator>
    <dc:date>2005-09-28T11:41:44Z</dc:date>
    <item>
      <title>using sftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929917#M409821</link>
      <description>Hi folks!&lt;BR /&gt;I need to transfer some files using sftp protocol in automated way, can anybody share a little script to do that?&lt;BR /&gt;I´ll appreciate your help.&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Sep 2005 11:17:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929917#M409821</guid>
      <dc:creator>Marco Camacho_1</dc:creator>
      <dc:date>2005-09-28T11:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: using sftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929918#M409822</link>
      <description>Hola Marco,&lt;BR /&gt;&lt;BR /&gt;take these links:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=690015" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=690015&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=878554" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=878554&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=694462" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=694462&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Alex</description>
      <pubDate>Wed, 28 Sep 2005 11:41:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929918#M409822</guid>
      <dc:creator>Alessandro Pilati</dc:creator>
      <dc:date>2005-09-28T11:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: using sftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929919#M409823</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can scp instead of sftp. scp copies files between hosts on a network.  It uses ssh for data transfer, and uses the same authentication and provides the same security as ssh. Unlike rcp, scp will ask for passwords or passphrases if they are needed for authentication.&lt;BR /&gt;&lt;BR /&gt;Usage:&lt;BR /&gt;scp file username@hostname:file&lt;BR /&gt;scp username@hostname:file file&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Sep 2005 12:23:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929919#M409823</guid>
      <dc:creator>Hakan Aribas</dc:creator>
      <dc:date>2005-09-28T12:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: using sftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929920#M409824</link>
      <description>Marco,&lt;BR /&gt;&lt;BR /&gt;best way to implement this is the follwoing.&lt;BR /&gt;&lt;BR /&gt;server a:&lt;BR /&gt;say you are user pusher&lt;BR /&gt;1) ssh-keygen -t rsa&lt;BR /&gt;&lt;BR /&gt;# accept all defaults fro the prompts that follow&lt;BR /&gt;&lt;BR /&gt;2) cat .ssh/id_rsa.pub | ssh serverb "( cat - &amp;gt;&amp;gt; .ssh/authorized_keys2 )"&lt;BR /&gt;enter yourpassword for the id on serverb&lt;BR /&gt;&lt;BR /&gt;3) ssh serverb "uname -a"&lt;BR /&gt;your shoudl see the remote server name without entering a password.&lt;BR /&gt;&lt;BR /&gt;viola:&lt;BR /&gt;&lt;BR /&gt;4) scp ~/*.bkp serverb:/mybackupdir/.&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;4) rsync --rsh=ssh ~/*.bkp serverb:/mybackupdir/&lt;BR /&gt;&lt;BR /&gt;peace, and enjoy the power of ssh&lt;BR /&gt;</description>
      <pubDate>Wed, 28 Sep 2005 14:22:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929920#M409824</guid>
      <dc:creator>Donny Jekels</dc:creator>
      <dc:date>2005-09-28T14:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: using sftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929921#M409825</link>
      <description>thanks everybody for your help, i have many options to probe.! Regards.</description>
      <pubDate>Thu, 29 Sep 2005 18:41:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929921#M409825</guid>
      <dc:creator>Marco Camacho_1</dc:creator>
      <dc:date>2005-09-29T18:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: using sftp</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929922#M409826</link>
      <description>thanks for your time and help!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 29 Sep 2005 18:41:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/using-sftp/m-p/4929922#M409826</guid>
      <dc:creator>Marco Camacho_1</dc:creator>
      <dc:date>2005-09-29T18:41:56Z</dc:date>
    </item>
  </channel>
</rss>

