Getting Started with SFTP for Authenticx
Connecting to your SFTP server
Through the onboarding process you will be given the credentials to access your SFTP server. To begin performing file transfers, you can use two methods, a SFTP client or the SFTP CLI. Using a SFTP client is the most straight forward way to transfer files and we will go over it using FileZilla.
Using FileZilla
- Make sure you have the FileZilla Client installed.
- Download provided key file
- Navigate to
File > Site Manager > New site
- Give the site a name
- Configure Site
- Set
Protocol
toSFTP - SSH File Transfer Protocol
- Set
Host
toacxsftp.authenticx.pro
- Change
Logon Type
toKey File
- Set
User
to provided user name - Upload your key file by clicking
Browse
and navigate to the file
- Set
- Click Connect
SFTP CLI
Connecting with the SFTP CLI is a simple process, you can do so with the command below.
\> sftp -i /path/to/key/file user@host
Ex. \> sftp -i ./key.pem [email protected]
WARNING: UNPROTECTED PRIVATE KEY FILE!
If you are getting this message when attempting to use SFTP CLI you need to change the permissions on your key file. You can do so with the following command:
\> chmod 400 /path/to/key/file
Updated about 1 month ago