Uploading Files as Responses
After you have submitted the responses for your end users, you will also have to upload the corresponding documents that you have responded with.
How to upload files via SFTP server
SFTP stands for Secure File Transfer Protocol. It is a network protocol that allows the transfer of files over a secure data stream.
MacOS or Linux
Create a pair of SSH public/private keys
Secure Shell (SSH) keys are used for authentication to grant access to sFOX's SFTP server.
Open your terminal
Type
ssh-keygen -t rsa
into your terminalEnter file
id_rsa
Enter passphrase (optional)
Retrieve and view your private and public key by typing in:
Private key:
cat ~/id_rsa
Public key:
cat ~/id_rsa.pub
Create a Directory
Once you have retrieved your public key, please copy the entire string and send it over to your sFOX representative.
sFOX will create a directory for you in our database before you can start uploading onto the SFTP server.
sFOX will notify you once your directory has been created in our database.
Uploading Files
Once you have your directory set up with your public key, you are now ready to upload the files you have responded in the EDDQ.
Connect to sFOX's SFTP server by running this command in your Terminal:
sftp -i id_rsa sftp.sfox.com
If this is your first time connecting, you will be ask if you want to continue connecting. Select
Yes
You should see a message Connected to sftp.sfox.com
on your Terminal
Upload a file by running this command:
put <file_path>
You should see a message Uploading <file_path> to <file_path>
Once you see this message, your file has been uploaded to sFOX's SFTP server!
Removing Files
If, for any reason, you would like to remove a file that was previously uploaded to the SFTP server, you can run this command: rm <new_file_path>
Windows
For Microsoft Windows, you should use an sFTP capable client application such as:
Detailed instructions can be found below:
Last updated