-
-
Notifications
You must be signed in to change notification settings - Fork 151
Advanced usage
The default config.ini
file contains common configurations.
The location of the config.ini
depends on the OS:
- On Unix systems, it's located inside
$XDG_CONFIG_HOME/ArduinoCreateAgent/config.ini
as specified here. If$XDG_CONFIG_HOME
is empty, the location will be in$HOME/.config/ArduinoCreateAgent/config.ini
. - On macOS, it's located in
$HOME/Library/Application Support/ArduinoCreateAgent/config.ini
. - On Windows, it's located in
%AppData%\ArduinoCreateAgent\config.ini
.
If you need to know the exact location of the config, or you need to modify it, you can use the "Open Configuration" menu in the tray icon menu.
The agent supports multiple configuration files.
The additional configurations will override the main one (config.ini
).
When multiple configurations are found by the agent, the tray icon menu is expanded to contain the different configurations:

To create multiple configuration files:
-
Click the Arduino Cloud Agent tray bar icon.
-
Select Quit Agent from the menu.
-
Find the
config.ini
file (see section above). -
Copy
config.ini
or create a new ini file (e.g.example.ini
) with content:name = your configuration name
Add in this file other configuration options (you can override inherited values from
config.ini
) -
Restart the agent.
-
Click the tray bar icon.
-
Select the new configuration.
Tip: you can also use the multiple configurations feature to create a new configuration with the proxy settings. This way you can have multiple proxies configured and disable proxy configuration with ease.
The agent supports working behind a proxy, but manual configuration is required (there is no support for automatic proxy discovery).
To add proxy configuration, create an additional configuration file (e.g. proxy.ini
) with content:
name = Proxy Enabled
[env]
httpProxy="your.proxy.here"
httpsProxy="your.https.proxyhere"
- Please note, spaces are not allowed before and after the string
httpProxy
Remember to restart the agent and to select the proper Proxy profile, as in the image.
Your agent will now work behind a proxy.

Important
Make sure you have the Arduino Cloud Agent version >= 1.7.0
The Arduino Cloud Agent verifies commands before executing them. This verification is based on public/private key pairs to ensure that only commands signed with the Arduino private key can be executed, preventing arbitrary commands from running.
The private key is securely managed by Arduino and is used to generate the signature for commands. The Cloud Agent then uses the corresponding public key to verify the signature.
If you want to use the Arduino Cloud Agent with your own public/private key pair, follow these steps:
-
Generate Public/Private Key Pairs. You can generate a key pair using OpenSSL:
# Create a private key openssl genrsa -out private.pem 2048 # Extract the public key from the private key openssl rsa -pubout -in private.pem -out public.pem
-
Find the
config.ini
file (refer to the configuration file location for details). -
Open
config.ini
and paste the contents ofpublic.pem
into thesignatureKey
field. Below is an example of a public key entry:signatureKey = `-----BEGIN PUBLIC KEY----- MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtHP52M8dCYDGaC4UaOvU cfLqhteGX75EnbXMr6iOg7r7Of+doFV+Ee233Ly/di15CXaju3EpgUka5QSu6z2m 4sne32aGw6T/eggY636CKcRHFPFjLmXX0CHq+Evg3E4g8W7Yslo2qu1SP3ySZCqe VpZHSeehlxFPpQKWXa1YiNF0gWh3cNQ0wneOsJ+ndShSuQ5C2YnSEoeoiEGVFOS0 evX4GEdadudGBjHQUKjhj+k3Ydaz014aIIC7CUVkQog9B7vpB+znHJH/gCl9DqYO 4mjPfHG4c5ppNu455hEe75R5q9bPc7TjBA3jpZsdrBY05lX2Q2nAQgSYIHpf78xl 7wIDAQAB -----END PUBLIC KEY-----`
Note
The public key must be copied into the config.ini
file inside backtick markers.
-
After updating the configuration file, restart the agent to apply the changes.
-
Use the
private.pem
key to generate the signature of your commands and send them where requested (e.g.,POST /upload
request)
Caution
Keep the private.pem
file secure and never share it publicly.