- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ftps client. Note: NOT sftp
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 11:48 AM
09-29-2008 11:48 AM
I need an ftps client. No, I'm not talking about an sftp (ssh) client. It's two different things. I bring this up, because in looking over past postings on the topic, lots of replies are advising getting ssh to get sftp. ftps is really ftp over ssl, not ssh.
I've also seen posted replies on how to get an ftps server (ftpsd) going from one of HPUX Web Application Server type things. I just want a client tool that I can programmatically hit an ftps server with. I don't want an interactive tool, unless of course its an interactive tool with an nice non-interactive mode.
I see that I can do this with curl from Linux, would the curl from the HPUX porting archives do this for me? Do any HPUX standard distribution(s) have curl?
Any better suggestions on how to get this done? To be clear what I'm after - I want to have a batch program from a database app drop a file somewhere, then spawn a ksh to ftps the file over to the other company. Of course, I'd like it to be handled via shell scripting, and have some error control over the process, that is, I'd rather not use something like "expect" to fake out an application.
Thanks for any help!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 11:57 AM
09-29-2008 11:57 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 12:00 PM
09-29-2008 12:00 PM
Re: ftps client. Note: NOT sftp
list a file:
curl --ftp-ssl --list-only -u ${login}:${password} ftp://${server}/* > ${tmp_file1} 2>> ${log_file}
put a file:
curl --ftp-ssl --upload-file ${upload_name} -u ${login}:${password} ftp://${server}/${dest}/${upload_name} >> ${log_file} 2>&1
ret_cod=$?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 12:05 PM
09-29-2008 12:05 PM
Re: ftps client. Note: NOT sftp
I'd look to 'cURL' as it supports FTPS.
You can fetch a binary distribution here:
http://hpux.connect.org.uk/hppd/hpux/Networking/WWW/curl-7.19.0/
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 12:17 PM
09-29-2008 12:17 PM
Re: ftps client. Note: NOT sftp
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 12:20 PM
09-29-2008 12:20 PM
Re: ftps client. Note: NOT sftp
I think the better will be sftpPlus - http://www.sftpplus.com/
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-29-2008 02:57 PM
09-29-2008 02:57 PM
Re: ftps client. Note: NOT sftp
Kermit has a built-in scripting capability,
too, so it can be as interactive or
non-interactive as you'd like.