In networks where internet access is only allowed behind a proxy server some additional manual configuration is needed.
Steps:
1. Install and run the agent
2. Set the token
3. Stop the agent and then add the proxy configuration manually.
You will need to locate the Movebot configuration file, normally its located in the directory, C:\Users\%username%\AppData\Local\CouchdropCloudConnector.
Open the file with Notepad, or something similar, and you will find a JSON with a base config.
4. Edit the "proxies" section, adding a HTTP and HTTPS proxy with the syntax below:
{
...
"proxies": {
"http": "http://127.0.0.1:8080",
"https": "http://127.0.0.1:8080"
},
...
}
5. Save the file, and start the agent again.
Proxy URL syntax examples:
Simple, no username and password | http://<ip>:<port> | http://127.0.0.1:8080 |
With username and password | http://username:password@<ip>:<port> | http://proxyuser:password@127.0.0.1:8080 |
Socks | socks://<ip>:<port> | socks://127.0.0.1:8080 |
To debug connection issues, check the log files located in the same directory as the configuration files and feel free to contact support.