An FTP location has been created for your board to transfer files (Raet export services and/or Exact). You received the account name in a separate email and the password in a text message.
There are two ways to transfer files:
$stappen$
- Using the browser (easy and user friendly)
- Using FTP software (more technical, but can be automated)
$/stappen$
Using the browser
Follow these steps to upload files:
$stappen$
- Enter the following web address in your browser:
https://ftp.anago.io:44343/ - Log in with the information you received in the email and text message.
- Click on your folder to open it.
- Click on Upload and select the file you want to upload.
- A progress window will display in the top right of your screen until the upload has finished.
$/stappen$
Using FTP software
FTP location
Below is the information you need to access this location:
FTP address: ftp.anago.io
Port: 21 (FTPS)
Port: 22 (SFTP)
Passive FTP ports: 2048-2050
Make sure that only encrypted (SFTP / FTPS) FTP traffic is permitted.
Account
The FTP account is secured by your user name and password. You received this information in a separate email.
IP address
The FTP account has additional security that only allows FTP traffic from specific locations. To give you access to this location, we need the IP address of the machine you will be using to establish the connection.
You can access this address by entering the following address in your browser: https://whatismyipaddress.com/. You can copy the IP address that is displayed in the grey bar (see image below) and send it to us. We will then enable access.
FTP software
The easiest way to transfer files is to use open-source software such as WinSCP. This software can also be used in automated scripts. You can download the software from https://winscp.net/eng/download.php.
Example script
An example script to automatically upload files from a specified folder can be found here.
The example below assumes a folder on the D: drive called D:\Data with subfolders '\Script' for the script, '\Log' for the log files and '\Upload' for the .csv files that need to be uploaded.
Create a batch file 'D:\Data\Script\Anago-upload.txt' with the following content:
option batch abort option confirm off open sftp://<gebruikersnaam>:<wachtwoord>@ftp.anago.io/ -hostkey="ssh-rsa 2048 59:a4:52:d2:33:fb:f5:0f:99:50:5b:af:fb:08:37:86" -rawsettings KEX=ecdh,dh-gex-sha1,dh-group14-sha1,rsa,dh-group1-sha1 put "D:\Data\upload\*.csv" / close exit
Create a text file 'D:\Data\Anago-upload.bat' with the following content:
REM @echo off set WinSCP=C:\Program Files (x86)\WinSCP\winscp.exe set ProcesNaam=Anago-upload set BronMap=D:\Data set LogMap=%BronMap%\Log set LogFile=%LogMap%\%ProcesNaam%.log set ScriptMap=%BronMap%\Batch set ScriptFile=%ScriptMap%\%ProcesNaam%.txt "%WinSCP%" /console /log="%LogFile%" /script="%ScriptFile%" pause
<username> and <password> must be replaced with the user name and password combination you received.