Adds a one candidate-node for further connection.
## Request Structure
`JSON object:`
```JSON
{
"method": "node",
"subcommand": ["link","add |del"],
"arguments": {
"net": "network_name",
"addr | alias": "node address | node alias",
"link": "link_addr"
},
"id": "1"
}
```
`Parameters:`
**`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]]
**`addr | alias`** - node address | node alias
**`link`** - address of the candidate-node for connection
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "node",
"subcommand": ["link","add"],
"arguments": {
"net": "mileena",
"addr": "DDDD::0000::0000::0001",
"link": "8BD8::FCD7::29A4::7149"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 0,
"result": "link added",
"id": 1
}
```