SFTP - Secure File Transfer Protocol
More information about Real Time's products & services is available on our sales web site. Direct links for each item are listed below:
|
sftp is an secure alternative to traditional ftp. It can be used to transfer files to or from any
computer running an ssh server.
Table of Contents:
Overview
To transfer files via sftp:
% sftp <host>
(you will then be prompted for your login password)
* To upload files: put <filename>
* To download files: get <filename>
* To get a list of commands available: help
Upload Content (example commands shown)
-
Change directories (cd) to where the files are located on your local pc
% cd mywebsite/
-
Initiate sftp and enter in your password when prompted
% sftp www.companyname.com
Connecting to www.companyname.com...
username@www.companyname.com's password:
-
Use the put command to upload content
sftp> put index.html
Download Content (example commands shown)
-
Change directory (cd) to the directory on your local pc that you want the files stored in
% cd mywebsite/foo/
-
Initiate sftp and enter in your password when prompted
% sftp www.companyname.com
Connecting to www.companyname.com...
username@www.companyname.com's password:
-
Use the get command to download content
sftp> get index.html
The instructions and screen shots contained within this website are specific to services offered by Real Time Enterprises only.
If you have any problems connecting to Real Time after carefully following these directions, please call (952) 943-8700 and we will
be happy to help you.
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.1 or any later version published by the Free Software
Foundation; with no Invariant Sections, no Front-Cover Texts and
no Back-Cover Texts. A copy of the license is included in the
section entitled "GNU Free Documentation License".
|