Automating ftp job using implicit ssl?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Automating ftp job using implicit ssl?
# 1  
Old 05-24-2010
Automating ftp job using implicit ssl?

Can this be done? Or do you need some other program installed on the AIX box?
# 2  
Old 08-26-2010
I am bumping this because I now need to set this up in production. Can someone help me? I've tried searching, but somewhat not fully understanding, Do I need to work with remote host support to allow our box to connect to them?


*MOD* maybe move this to AIX forum? Thanks
# 3  
Old 08-26-2010
You'll need an FTP server that supports SSL, of course. But why not use sftp instead so you can automate logins with keys?
# 4  
Old 08-26-2010
Well I know we can connect from our windows machine to their machine, which is most likely also windows, using FTPS not SFTP.

From our WS_FTP Pro client we are using FTPS/Implicit SSL to connect to their site with no issues or keys I believe. Is there a way to do the same from Unix?
# 5  
Old 08-26-2010
Ah, you want to connect to an ftp server from AIX, with implicit SSL. You don't need an SSL-supporting FTP server then. Commandline ftp might directly support what you want:
Code:
# run interactively
ftp -z ssl hostname
# run noninteractively
ftp -z ssl hostname <<< "commands to feed into ftp client"

# 6  
Old 08-27-2010
ftp -z ssl hostname didnt work for me, i got the following error:
Code:
ftp: z: unknown option

I dont see the -z flag when I man ftp either. I'm on AIX by the way. I beleive there is a way to commadnline ftp to this ftp server but I cant find it.

Last edited by Yogesh Sawant; 08-27-2010 at 10:46 AM.. Reason: added code tags
# 7  
Old 08-27-2010
If your commandline FTP doesn't support SSL, you'll either need to install or compile a version that does.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

FTP over implicit TLS

Here are the essentials: un: myuser pw: mypasswd site: sftp.somesite.com port: 990 type: FTPS enc: FTP over implicit TLS program used: Curl 7.1.x on Hpux 11.31 I would like to "put" 1 file on there server. Here is my syntax, what am I doing wrong? curl -3 -v --cacert... (4 Replies)
Discussion started by: olyanderson
4 Replies

2. UNIX for Dummies Questions & Answers

FTP over implicit TSL - for dummies

Here are the essentials: un: myuser pw: mypasswd site: sftp.somesite.com port: 990 type: FTPS enc: FTP over implicit TLS program used: Curl 7.1.x on Hpux 11.31 I would like to "put" 1 file on there server. Here is my syntax, what am I doing wrong? curl -3 -v --cacert... (5 Replies)
Discussion started by: olyanderson
5 Replies

3. UNIX for Dummies Questions & Answers

Automating the FTP get

Hi , I want to pull files from ftp monthly once . The files in ftp has a something like 292_fileto_pull and next month it will be 293_fileto_pull for each month the number keeps increasing. i thought in my script if i can use date and increment the number by it mget *_292_fileto_pull i... (2 Replies)
Discussion started by: vikatakavi
2 Replies

4. Shell Programming and Scripting

Automating ftp without .netrc

I'm writing a script which needs to run under an 'automation' account and there is already a .netrc machine definition for the server I need to connect to. If I create a new machine entry in the .netrc with a different account this will, of course, be ignored and the ftp session will connect to... (3 Replies)
Discussion started by: DeepakS
3 Replies

5. Shell Programming and Scripting

FTP/implicit SSL

Hi, I want to FTP can some one help me how do I do this manually from unix command line Thanks, (2 Replies)
Discussion started by: sridatos
2 Replies

6. UNIX for Advanced & Expert Users

displaying error while automating ftp

#!/bin/sh HOST=HOST_IP USER=$USER PASSWD=$PASSWD FILE="*.htm" ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD get $FILE quit END_SCRIPT exit 0 Is there any way to display appropriate error message if the file is not found on the server...... (2 Replies)
Discussion started by: bishweshwar
2 Replies

7. Shell Programming and Scripting

Automating telnet and ftp

Hi, I want to automate FTP. I have a fair idea that this can be done using expect scripting. But I dont how to do it. Please, can anyone give me an example of how to do it in Unix. Thanks in advance (2 Replies)
Discussion started by: sendhilmani123
2 Replies

8. UNIX for Advanced & Expert Users

SSL ftp from Unix

I need to make an SSL FTP connection from my Unix machine to an SSL FTP server. I've found lots of SSL-capable FTP clients for windows machines, but can't seem to find any for Unix (HP-UX 11i, to be specific). I found, and have tried a package called tlswrap, but that is not working. Anybody... (2 Replies)
Discussion started by: denverd0n
2 Replies

9. UNIX for Advanced & Expert Users

implicit ssl vs explicit ssl

Can someone explain the difference between the two. Thanks (1 Reply)
Discussion started by: jerardfjay
1 Replies
Login or Register to Ask a Question