HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: converting ftp to sftp
Operating System - HP-UX
1831928
Members
3732
Online
110031
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
10-07-2008 08:30 AM
10-07-2008 08:30 AM
converting ftp to sftp
Our network security folks, have decided that it is time to switch from ftp to sftp. I have a number of scripts with automated ftp's using .netrc files. I was hoping someone could shed some light on what I need to do to convert these to sftp.
Thanks
In Advance
Thanks
In Advance
- Tags:
- sftp
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 08:34 AM
10-07-2008 08:34 AM
Re: converting ftp to sftp
Take a look here how to use sftp scripts - http://forums11.itrc.hp.com/service/forums/questionanswer.do?threadId=690015
regards,
ivan
regards,
ivan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2008 08:42 AM
10-07-2008 08:42 AM
Re: converting ftp to sftp
Hi Chris:
If you are using Perl (or if you aren't) this is easy.
In lieu of FTP and a 'netrc' file (and Perl module), you could easily deploy SFTP using Perl's Net::SFTP::Foreign module. Fetch it and read its documentation here:
http://search.cpan.org/~salva/Net-SFTP-Foreign-1.43/lib/Net/SFTP/Foreign.pm
Note the use of the 'Net::SFTP::Foreign' module and not the pure 'Net::SFTP' module. The latter can be very difficult to successfully install.
If you prefer a pure shwll approach, something like this works:
# cat .mysftp
set -u
typeset HOST=$1
typeset FILE=$2
typeset RC
sftp -b - < lcd /tmp
cd /tmp
get -P ${FILE} ${FILE}.local
EOF
RC=$?
print -u2 "\nSFTP returned ${RC}"
In either case (Perl or shell) setup your 'ssh' environment for unattended file transfers using an empty pass-phrase.
Regards!
...JRF...
If you are using Perl (or if you aren't) this is easy.
In lieu of FTP and a 'netrc' file (and Perl module), you could easily deploy SFTP using Perl's Net::SFTP::Foreign module. Fetch it and read its documentation here:
http://search.cpan.org/~salva/Net-SFTP-Foreign-1.43/lib/Net/SFTP/Foreign.pm
Note the use of the 'Net::SFTP::Foreign' module and not the pure 'Net::SFTP' module. The latter can be very difficult to successfully install.
If you prefer a pure shwll approach, something like this works:
# cat .mysftp
set -u
typeset HOST=$1
typeset FILE=$2
typeset RC
sftp -b - <
cd /tmp
get -P ${FILE} ${FILE}.local
EOF
RC=$?
print -u2 "\nSFTP returned ${RC}"
In either case (Perl or shell) setup your 'ssh' environment for unattended file transfers using an empty pass-phrase.
Regards!
...JRF...
- Tags:
- Perl
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP