<?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 Script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484723#M680469</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Then where do i post my query and get the answer.&lt;BR /&gt;&lt;BR /&gt;I am new in this forum.&lt;BR /&gt;please advice.</description>
    <pubDate>Tue, 25 Aug 2009 11:32:36 GMT</pubDate>
    <dc:creator>prabhaharan Rajkumar</dc:creator>
    <dc:date>2009-08-25T11:32:36Z</dc:date>
    <item>
      <title>SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484717#M680463</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I am going to sed a file through SFTP. I have no idea about SFTP. could anyone please send the sample script</description>
      <pubDate>Mon, 24 Aug 2009 12:09:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484717#M680463</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-24T12:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484718#M680464</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;You need to setup public keys on your servers to eliminate the need for passwords in scripts.  You can use Perl or a pure shell script.  In a shell:&lt;BR /&gt;&lt;BR /&gt;# cat .mysftp&lt;BR /&gt;HOST=$1&lt;BR /&gt;FILE=$2&lt;BR /&gt;sftp -b - &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;lcd /tmp&lt;BR /&gt;cd /tmp&lt;BR /&gt;put -P ${FILE} ${FILE}.backup&lt;BR /&gt;EOF&lt;BR /&gt;RC=$?&lt;BR /&gt;print -u2 "\nSFTP returned ${RC}"&lt;BR /&gt;exit ${RC}&lt;BR /&gt;&lt;BR /&gt;...run as;&lt;BR /&gt;&lt;BR /&gt;# ./mysftp somehost somefile&lt;BR /&gt;&lt;BR /&gt;As for the public key setup and more about the Secure Shell in general, see :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://sial.org/howto/openssh/publickey-auth/" target="_blank"&gt;http://sial.org/howto/openssh/publickey-auth/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254688" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1254688&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;These two links should provide you the information you need to easily do this. The 'known_hosts' file contains the public host keys for all known hosts. The per-user version is maintained automatically. Thus, whenever you connect from an unknown host, its key is added to the per-user file if you choose to acknowledge the fingerprint. If you don't, the connection can still be made, but you will be prompted the next time as if you had never connected.&lt;BR /&gt;&lt;BR /&gt;The manpages for 'sshd' and 'ssh' offer more information.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 24 Aug 2009 12:31:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484718#M680464</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-08-24T12:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484719#M680465</link>
      <description>Shalom,&lt;BR /&gt;&lt;BR /&gt;SFTP is part of a suite of tools that includes ssh, scp.&lt;BR /&gt;&lt;BR /&gt;You really don't need to write an sftp script.&lt;BR /&gt;&lt;BR /&gt;Exchange public keys and use a simple scp command. Works just like rcp.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.hpux.ws/?p=10" target="_blank"&gt;http://www.hpux.ws/?p=10&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;hpuxadmin in gtalk</description>
      <pubDate>Mon, 24 Aug 2009 13:09:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484719#M680465</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2009-08-24T13:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484720#M680466</link>
      <description>does this work between UNIX and window file transfer?</description>
      <pubDate>Mon, 24 Aug 2009 18:35:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484720#M680466</guid>
      <dc:creator>John Guster</dc:creator>
      <dc:date>2009-08-24T18:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484721#M680467</link>
      <description>Hi friends,&lt;BR /&gt; &lt;BR /&gt;Thanks for your reply.&lt;BR /&gt;but I have the following information.&lt;BR /&gt;1) I am going to send the file from AlphaVMS(development server) to other side.&lt;BR /&gt;2)In our VMS support(admin team) have configured Tectia SSH and provided Public key.&lt;BR /&gt;3) what my question is : &lt;BR /&gt;&lt;BR /&gt;Extracted files sent to receiver server thru NDM link, i already written.&lt;BR /&gt;&lt;BR /&gt;$!===========================================================================&lt;BR /&gt;$! Transfer file thru NDM&lt;BR /&gt;$!===========================================================================&lt;BR /&gt;$ type/output=copy_cmds.sql sys$input:&lt;BR /&gt;$ deck!======================================================================&lt;BR /&gt;drop table tmp_ndm_cmds1&lt;BR /&gt;\p\g&lt;BR /&gt;create table tmp_ndm_cmds1&lt;BR /&gt;as&lt;BR /&gt;select num = 1, &lt;BR /&gt;cmd = '$ copy/log ie_acctinfo.dat '+e1.value+e2.value+'ie_acctinfo.dat'&lt;BR /&gt;from environment e1, environment e2&lt;BR /&gt;where e1.name = 'dd_node' and e2.name = 'dd_dir'&lt;BR /&gt;\p\g&lt;BR /&gt;insert into tmp_ndm_cmds1&lt;BR /&gt;select num = 2,&lt;BR /&gt;cmd = '$ copy/log nl: '+e1.value+e2.value+'ie_acctinfo.dat_ack'&lt;BR /&gt;from environment e1, environment e2&lt;BR /&gt;where e1.name = 'dd_node' and e2.name = 'dd_dir'&lt;BR /&gt;\p\g&lt;BR /&gt;select cmd, num from tmp_ndm_cmds1&lt;BR /&gt;order by num&lt;BR /&gt;\p\g&lt;BR /&gt;drop table tmp_ndm_cmds1&lt;BR /&gt;\p\g\q&lt;BR /&gt;$ eod!=======================================================================&lt;BR /&gt;$   DELETE/log dbout.txt;&lt;BR /&gt;$   DELETE/log acctinfo_final.sql;&lt;BR /&gt;$   CLOSE outf&lt;BR /&gt;$   UNLOCK/LOG ie_acctinfo.dat&lt;BR /&gt;$   P = "Client-Account:"&lt;BR /&gt;$   SHOW SYMBOL P&lt;BR /&gt;$   SHOW SYMBOL COUNT&lt;BR /&gt;$!===========================================================================&lt;BR /&gt;$! Transfer file thru NDM&lt;BR /&gt;$!===========================================================================&lt;BR /&gt;$ type/output=copy_cmds.sql sys$input:&lt;BR /&gt;$ deck!======================================================================&lt;BR /&gt;drop table tmp_ndm_cmds1&lt;BR /&gt;\p\g&lt;BR /&gt;create table tmp_ndm_cmds1&lt;BR /&gt;as&lt;BR /&gt;select num = 1, &lt;BR /&gt;cmd = '$ copy/log ie_acctinfo.dat '+e1.value+e2.value+'ie_acctinfo.dat'&lt;BR /&gt;from environment e1, environment e2&lt;BR /&gt;where e1.name = 'dd_node' and e2.name = 'dd_dir'&lt;BR /&gt;\p\g&lt;BR /&gt;insert into tmp_ndm_cmds1&lt;BR /&gt;select num = 2,&lt;BR /&gt;cmd = '$ copy/log nl: '+e1.value+e2.value+'ie_acctinfo.dat_ack'&lt;BR /&gt;from environment e1, environment e2&lt;BR /&gt;where e1.name = 'dd_node' and e2.name = 'dd_dir'&lt;BR /&gt;\p\g&lt;BR /&gt;select cmd, num from tmp_ndm_cmds1&lt;BR /&gt;order by num&lt;BR /&gt;\p\g&lt;BR /&gt;drop table tmp_ndm_cmds1&lt;BR /&gt;\p\g\q&lt;BR /&gt;$ eod!=======================================================================&lt;BR /&gt;$ sql custody &lt;COPY_CMDS.SQL&gt;copy_cmds.txt&lt;BR /&gt;$ OPEN /WRITE outf1 copy_cmds.con&lt;BR /&gt;$ OPEN /READ  inf1  copy_cmds.txt&lt;BR /&gt;$ loop_cmd:&lt;BR /&gt;$   read /end_of_file=cmd_done inf1 line&lt;BR /&gt;$     IF (F$EXTRACT(0,2,line) .NES. "|$") then goto loop_cmd&lt;BR /&gt;$       second_bar = f$locate("|",F$EXTRACT(1,F$LEN(line)-1,line))&lt;BR /&gt;$       lin_out = F$EDIT(F$EXTRACT(1,second_bar,line),"TRIM")&lt;BR /&gt;$       WRITE/symbol outf1 lin_out&lt;BR /&gt;$       goto loop_cmd&lt;BR /&gt;$ cmd_done:&lt;BR /&gt;$   close inf1&lt;BR /&gt;$   close outf1&lt;BR /&gt;$!copy/log ie_acctinfo.dat MEDDEV::NDM_SEND:ie_acctinfo.dat&lt;BR /&gt;$!copy/log nl:                      MEDDEV::NDM_SEND:ie_acctinfo.dat_ack&lt;BR /&gt;$@copy_cmds.con&lt;BR /&gt;$delete/log copy_cmds.sql;&lt;BR /&gt;$delete/log copy_cmds.txt;&lt;BR /&gt;$delete/log copy_cmds.con;&lt;BR /&gt;$exit&lt;BR /&gt;&lt;BR /&gt;This one i tested from my side thr' NDM.&lt;BR /&gt;but now i should send the file thr' SFTP.&lt;BR /&gt;I think now you can understand clearly.&lt;BR /&gt;please advice and help me.&lt;BR /&gt;i really appriciate your help.&lt;/COPY_CMDS.SQL&gt;</description>
      <pubDate>Tue, 25 Aug 2009 11:15:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484721#M680467</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-25T11:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484722#M680468</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I am going to send the file from AlphaVMS(development server) to other side. &lt;BR /&gt;&lt;BR /&gt;Then why didn't you post this in the OpenVMS formum?!?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/familyhome.do?familyId=288" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/familyhome.do?familyId=288&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Since I don't know anything about VMS I can't comment further except to say you might want to consider a Perl SFTP solution.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 25 Aug 2009 11:21:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484722#M680468</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-08-25T11:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484723#M680469</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Then where do i post my query and get the answer.&lt;BR /&gt;&lt;BR /&gt;I am new in this forum.&lt;BR /&gt;please advice.</description>
      <pubDate>Tue, 25 Aug 2009 11:32:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484723#M680469</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-25T11:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484724#M680470</link>
      <description>&lt;!--!*#--&gt;&amp;gt; I am going to sed a file [...]&lt;BR /&gt;&lt;BR /&gt;So, "sed" was really "send"?  There is a&lt;BR /&gt;program named "sed", you know.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; Then where do i post my query and get the&lt;BR /&gt;&amp;gt; answer.&lt;BR /&gt;&lt;BR /&gt;How did you find the _wrong_ forum?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/home.do" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/home.do&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/service/forums/familyhome.do?familyId=288" target="_blank"&gt;http://forums.itrc.hp.com/service/forums/familyhome.do?familyId=288&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; This one i tested from my side thr' NDM.&lt;BR /&gt;&lt;BR /&gt;What is "NDM"?&lt;BR /&gt;&lt;BR /&gt;Someone may want to analyze your whole&lt;BR /&gt;command procedure, but I sure wouldn't.  If&lt;BR /&gt;your question is, "How do I transfer a file&lt;BR /&gt;using SFTP?", then ask that question.&lt;BR /&gt;&lt;BR /&gt;I'd start by trying to get it to work&lt;BR /&gt;manually.  _Then_ I'd move on to making it&lt;BR /&gt;work in a procedure.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] Tectia SSH [...]&lt;BR /&gt;&lt;BR /&gt;_Where_ is this installed?</description>
      <pubDate>Tue, 25 Aug 2009 14:16:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484724#M680470</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-08-25T14:16:11Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484725#M680471</link>
      <description>&lt;!--!*#--&gt;And one more thing, ...&lt;BR /&gt;&lt;BR /&gt;&amp;gt; [...] to other side.&lt;BR /&gt;&lt;BR /&gt;What is "other side"?</description>
      <pubDate>Tue, 25 Aug 2009 14:17:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484725#M680471</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-08-25T14:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484726#M680472</link>
      <description>steven,&lt;BR /&gt;&lt;BR /&gt;1) yes, you are right. " i am going to send the file"&lt;BR /&gt;&lt;BR /&gt;2) NDM -- this is also a file transfer protocol&lt;BR /&gt;&lt;BR /&gt;3) " to other side " means other application.&lt;BR /&gt;&lt;BR /&gt;I developed a new file(. com). Usually we trasfer the file through NDM setup.&lt;BR /&gt;&lt;BR /&gt;But this project i have to use SFTP to transfer the file.&lt;BR /&gt;They(receiver) have given the "HOST NAME and DIRECTORY/ FOLDER NAME"&lt;BR /&gt;&lt;BR /&gt;I know nothing about SFTP, how I use to transfer the file. &lt;BR /&gt;what commands use in file and how I transfer from Alpha server(development environment)&lt;BR /&gt;&lt;BR /&gt;axp&amp;gt;sftp&lt;BR /&gt;&lt;BR /&gt;.. like&lt;BR /&gt;&lt;BR /&gt;could you please guide me.</description>
      <pubDate>Tue, 25 Aug 2009 15:25:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484726#M680472</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-25T15:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484727#M680473</link>
      <description>&lt;!--!*#--&gt;&amp;gt;  2) NDM -- this is also a file transfer protocol &lt;BR /&gt;&lt;BR /&gt;If you say so.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  3) " to other side " means other application. &lt;BR /&gt;&lt;BR /&gt;SFTP doesn't copy a file to an application,&lt;BR /&gt;it uses an SFTP server on the other system.&lt;BR /&gt;I was hoping to get some information about&lt;BR /&gt;the other system and its SSH/SFTP software.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; I know nothing about SFTP, [...]&lt;BR /&gt;&lt;BR /&gt;Apparently.  And I know nothing about the&lt;BR /&gt;SSH/SFTP software on your VMS system.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; &amp;gt; [...] Tectia SSH [...]&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&amp;gt; _Where_ is this installed?&lt;BR /&gt;&lt;BR /&gt;Is that on the VMS system?&lt;BR /&gt;&lt;BR /&gt;Does&lt;BR /&gt;      sftp "-V"&lt;BR /&gt;tell you anything?&lt;BR /&gt;&lt;BR /&gt;"sftp -h"?&lt;BR /&gt;&lt;BR /&gt;With no information about the SSH/SFTP&lt;BR /&gt;software on your VMS system, and no&lt;BR /&gt;information of any kind about the other&lt;BR /&gt;system, I'd rather not guess.</description>
      <pubDate>Tue, 25 Aug 2009 19:01:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484727#M680473</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-08-25T19:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484728#M680474</link>
      <description>1) SFTP set up on both systems (my side and receiver side)&lt;BR /&gt;&lt;BR /&gt;2) Tectia SSH is in receiver side. i think it used for formatting.&lt;BR /&gt;&lt;BR /&gt;3)I checked in my system in the following command&lt;BR /&gt;&lt;BR /&gt;axp_pr$ sftp "-v"&lt;BR /&gt;&lt;BR /&gt; %SD-I-PRIVLOG - System Privilege activity being logged.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sftp2/SFTP2.C:5183: CRTL version (SYS$SHARE:DECC$SHARE ident) is: V8.3-01&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SshFileCopy/SSHFILECOPY.C:1354: Making local connection.&lt;BR /&gt;Ssh2SftpServer/SSHFILEXFERS.C:2120: Received SSH_FXP_INIT&lt;BR /&gt;Ssh2SftpServer/SSHFILEXFERS.C:2165: version is 999&lt;BR /&gt;Ssh2SftpServer/SSHFILEXFERS.C:2227: Sending SSH_FXP_VERSION with sftp-version@op&lt;BR /&gt;envms.hp.com as 3&lt;BR /&gt;SshFileXferClient/SSHFILEXFERC.C:1432: ssh_file_client_receive_proc: coming in w&lt;BR /&gt;ith extension data, OpenVMS host&lt;BR /&gt;SshFileXferClient/SSHFILEXFERC.C:1478: vms_plus_sftp_version = 3&lt;BR /&gt;SshFileCopy/SSHFILECOPY.C:1293: Connection to local, ready to serve requests.&lt;BR /&gt;Sftp2/SFTP2.C:822: Connection ready.&lt;BR /&gt;SshReadLine/SSHREADLINE.C:3662: Initializing ReadLine...&lt;BR /&gt;sftp&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Aug 2009 08:17:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484728#M680474</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-26T08:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484729#M680475</link>
      <description>&lt;!--!*#--&gt;&amp;gt; Does&lt;BR /&gt;&amp;gt;       sftp "-V"&lt;BR /&gt;&amp;gt; tell you anything?&lt;BR /&gt;&lt;BR /&gt;&amp;gt;  axp_pr$ sftp "-v"&lt;BR /&gt;&lt;BR /&gt;What's wrong with this picture?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; 1) SFTP set up on both systems (my side and&lt;BR /&gt;&amp;gt; receiver side) &lt;BR /&gt;&lt;BR /&gt;Have you (generated and) exchanged public key&lt;BR /&gt;data with the remote system?  Or did you plan&lt;BR /&gt;to script an interactive password?  (I'm not&lt;BR /&gt;sure that you can.  Public-key authentication&lt;BR /&gt;would be the usual thing to do.)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; %SD-I-PRIVLOG - System Privilege activity being logged.&lt;BR /&gt;&lt;BR /&gt;It's probably not important, but that doesn't&lt;BR /&gt;look like a standard VMS message.  Do you&lt;BR /&gt;have some extra (third-party?) security&lt;BR /&gt;package ("SD"?) installed, too?</description>
      <pubDate>Wed, 26 Aug 2009 11:49:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484729#M680475</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-08-26T11:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484730#M680476</link>
      <description>&lt;BR /&gt;axp_pr$ sftp&lt;BR /&gt;&lt;BR /&gt; %SD-I-PRIVLOG - System Privilege activity being logged.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;sftp&amp;gt; "-v"&lt;BR /&gt;Unrecognized command line: '"-v"'&lt;BR /&gt;sftp&amp;gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;yes, we generated public key and exchanged&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; %SD-I-PRIVLOG - System Privilege activity being logged.&lt;BR /&gt;&lt;BR /&gt;the above message comes usually. we doesn't care about this message.&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Aug 2009 12:39:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484730#M680476</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-26T12:39:17Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484731#M680477</link>
      <description>&lt;!--!*#--&gt;&amp;gt; sftp&amp;gt; "-v"&lt;BR /&gt;&amp;gt; Unrecognized command line: '"-v"'&lt;BR /&gt;&amp;gt; sftp&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Sigh.  Read it again.</description>
      <pubDate>Wed, 26 Aug 2009 16:18:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484731#M680477</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-08-26T16:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: SFTP Script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484732#M680478</link>
      <description>ok, what i have to do next.</description>
      <pubDate>Wed, 26 Aug 2009 17:35:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/sftp-script/m-p/4484732#M680478</guid>
      <dc:creator>prabhaharan Rajkumar</dc:creator>
      <dc:date>2009-08-26T17:35:41Z</dc:date>
    </item>
  </channel>
</rss>

