Add Transporter
Product version: 10.10.1
Last modified: 14 November 2023
Adds an installed Transporter to your NAKIVO Backup & Replication configuration.
Endpoint
https://<Director_IP_address>:4443/c/router
Request Example
curl --request POST \
--url https://<Director_IP_address>:4443/c/router \
--header "content-type: application/json" \
--cookie @cookies.txt \
--data {
"action": "TransporterManagement",
"method": "add",
"data": [{
"name": "10.30.30.1",
"host": "10.30.30.1",
"port": 9446,
"loadFactor": 6,
"loggingLevel": "AUTO",
"dataPortRangeStart": 9448,
"dataPortRangeEnd": 10000,
"description": "",
"additionalLoadFactor": 0}],
"type": "rpc",
"tid": 3756 }
Request Fields
Field
|
Type
|
Value(s)
|
Description |
---|---|---|---|
action
|
string |
|
The action that is invoked |
method
|
string |
|
The method that is invoked |
data
|
array |
|
Data of a Transporter to be added |
type
|
string | rpc
|
Type of communication protocol |
tid
|
integer | 1 | Transaction ID. Used to identify the request by both the client and the server |
Data
Field
|
Type
|
Description
|
---|---|---|
|
string | Display name of the Transporter |
|
string | IP address or host name of the machine where the Transporter is installed |
|
integer | Port number that will be used to connect to the Transporter |
|
integer | Maximum number of tasks that the Transporter should process simultaneously |
additionalLoadFactor
|
integer | Additional maximum number of simultaneous tasks that the Transporter should process |
|
string | Logging level to be enabled for this Transporter |
|
integer | Start number of the port range to be used for transferring data |
|
integer | End number of the port range to be used for transferring data |
|
string | Description of the Transporter |
Response Sample
{
"action": "TransporterManagement",
"method": "add",
"tid": "1",
"type": "rpc",
"message": null,
"where": null,
"cause": null,
"data": 1
}
Response Fields
Field
|
Value
|
Description
|
---|---|---|
message
|
string | Message if the request failed |
where
|
string | Reference to the method where the problem occurred |
cause
|
string | Cause of failure |
|
integer | ID of the added Transporter |