Creates alias for the node.
## Request Structure
`JSON object:`
```JSON
{
"method": "node",
"subcommand": ["alias"],
"arguments": {
"net": "network_name",
"addr": "node_addr",
"alias": "node_alias"
},
"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`** - node address (for example, `E0A6::4F46::5A58::53A0`)
**`alias`** - alias of the node
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "node",
"subcommand": ["alias"],
"arguments": {
"net": "mileena",
"addr": "C003::2611::8D50::7A07",
"alias": "personalnode2"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 0,
"result": "alias mapped successfully",
"id": 1
}
```