SFTP help


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting SFTP help
# 1  
Old 03-02-2012
SFTP help

Hi Guys,

I am able to create a file with all the sftp command required.

I was able to ftp the files in the similiar fashion using ftp command. The following i used for ftp.

Code:
ftp -n < $filename

But when i try the same for Sftp. i am getting error.

The file i am creating is in the following format.

Code:
open <Targetip>
user <USERID> <PASSWORD>
verbose on
cd <LOCATION>
lcd <SOURCE LOCATION>
mput *
close
bye

This will run in a loop changing the Targetip and Source Location.

Can somebody help me in running this SFTP file.

Cheers!!!!!!!!!!!!!
# 2  
Old 03-02-2012
Can you try sftp with -b switch ?

Code:
sftp -b batchfile

Batch mode reads a series of commands from an input batchfile instead of stdin Since it lacks user interaction it should be used in conjunction with non-interactive authentication. sftp will abort if any of the following commands fail: get , put , rename , ln rm , mkdir , chdir , lchdir and lmkdir
# 3  
Old 03-02-2012
@codemaniac,,,

Yeah i tried it,,,

But i am not able to pass the password.. as i have to pass it in the below format

Code:
sft -b batchfile [user@]host

But my question is how to pass the password?????
# 4  
Old 03-02-2012
Try putting your remotehost , username and password and every sftp command in the batch file .Then trigger sftp -b batchfile .
# 5  
Old 03-02-2012
@codemaniac,, yeah i tried that too...
It was giving me the same error.
# 6  
Old 03-02-2012
Kindly post the error you get as it would help forum members here to derive at an appropriate solution. If password prompt is your problem in SFTP then you would need to generate public/private keys in your unix box. It has been explained here
# 7  
Old 03-02-2012
I created a file as below.

Code:
 
remotehost=XX.XX.xxx.x
username=<USERID>
password=<PASSWORD>
cd /home/oraadf/Documents/
lcd /webmasters/report_repository/SGM
bye

I used the following command

Code:
sftp -b filename

I am getting the following error.
Code:
 
usage: sftp [-1Cv] [-B buffer_size] [-b batchfile] [-F ssh_config]
            [-o ssh_option] [-P sftp_server_path] [-R num_requests]
            [-S program] [-s subsystem | sftp_server] host
       sftp [[user@]host[:file [file]]]
       sftp [[user@]host[:dir[/]]]
       sftp -b batchfile [user@]host

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Needed SFTP script from windows to UNIX server and from UNIX to windows server(reverse SFTP)

hi guys, i need a script to sftp the file from windows to unix server ....(before that i have to check whether the file exists in the windows server or not and again i have to reverse sftp the files from unix to windows server..... regards, Vasa Saikumar. (13 Replies)
Discussion started by: hemanthsaikumar
13 Replies

2. Shell Programming and Scripting

Sftp : not able to print the echo statements after the sftp transfer

I had the below sftp script working perfectly but the problem is I am not able to send the echo statements . #!/bin/sh echo "Starting to sftp..." sftp admin@myip << END_SCRIPT cd /remotepath/ lcd /localpath/ mget myfiles*.csv bye END_SCRIPT echo "Sftp successfully." echo echo... (11 Replies)
Discussion started by: scriptscript
11 Replies

3. Red Hat

Chroot sftp users, remote sftp login shows wrong timestamp on files

Hello, I have a weird issue, I have RHEL 5.7 running with openssh5.2 where sftpgroup OS group is chroot. I see the difference difference in timestamp on files, when I login via ssh and SFTP, I see four hour difference, is something missing in my configuration. #pwd... (8 Replies)
Discussion started by: bobby320
8 Replies

4. Shell Programming and Scripting

SFTP-how to log individual sftp command error while executing shell script

Hi, I have situation where i need to automate transferring 10000+ files using sftp. while read line do if ; then echo "-mput /home/student/Desktop/folder/$line/* /cygdrive/e/folder/$line/">>sftpCommand.txt fi done< files.txt sftp -b sftpCommand.txt stu@192.168.2.1 The above... (1 Reply)
Discussion started by: noobrobot
1 Replies

5. Shell Programming and Scripting

SFTP

Please ignore this message (0 Replies)
Discussion started by: B. Bhanumurthy
0 Replies

6. UNIX for Dummies Questions & Answers

Need Help in sftp.

Hi, I am doing sftp from remote server1 to remote server2. This is done through a script. This script was working fine. But if i am tranfer files of 120 MB only some part of the file gets transferred (around 9 MB). Incase i put the same file manually it gets uploaded successfully. Can... (3 Replies)
Discussion started by: ashishb
3 Replies

7. AIX

SFTP Failed---Request for subsystem 'sftp' failed on channel 0

Hi, While I am trying SFTP my machine to another unix machine , it was working fine till 10 min back. But now i am getting the below error "Request for subsystem 'sftp' failed on channel 0" Could you please someone help me to solve or analyise the root cause... Cheers:b:, Mahiban (0 Replies)
Discussion started by: mahiban
0 Replies

8. Solaris

sftp

hi sftp is not working: -bash-3.00# sftp zeus Connecting to zeus... /etc/ssh/ssh_config: line 32: Bad configuration option: PermitRootLogin /etc/ssh/ssh_config: line 33: Bad configuration option: Subsystem /etc/ssh/ssh_config: terminating, 2 bad configuration options Connection closed ... (1 Reply)
Discussion started by: melanie_pfefer
1 Replies

9. Solaris

SFTP help

HI All, I am trying to figure out a thing in solaris . The basic requirement is as follows: I will need to login from my solaris server (which should be non interactive to a cleint server )which has only Sftp option. i have generated the required keys and able to do the same. I am using the... (1 Reply)
Discussion started by: bsandeep_80
1 Replies

10. AIX

Sftp

I have researched this with no joy and this is my last resort. I have restricted the ftp access to an LPAR running AIX 5.3 using /etc/ftpaccess such that the user is stuck in their home directory. Not ever having tried it imagine my surprise when I connected using SFTP and the user could move to... (1 Reply)
Discussion started by: johnf
1 Replies
Login or Register to Ask a Question