Get the details of the disguise server’s network configuration
GET /api/networkadapters
[
{
"name": "d3net",
"ip": "xxx.xxx.xxx.xxx",
"mac": "hh-hh-hh-hh-hh",
"netmask": "xxx.xxx.xxx.xxx"
}
]
Update the details of the disguise server’s network configuration
POST /api/networkadapters
[
{
"name": "d3net",
"ip": "xxx.xxx.xxx.xxx",
"mac": "hh-hh-hh-hh-hh",
"netmask": "xxx.xxx.xxx.xxx"
}
]
Response Body
{
"message": "ok"
}
Get the details of the disguise server’s network interface by mac address
GET /api/networkadapters/{mac}
{
"name": "d3net",
"ip": "xxx.xxx.xxx.xxx",
"mac": "hh-hh-hh-hh-hh",
"netmask": "xxx.xxx.xxx.xxx"
}
Update the details of the disguise server’s network interface by mac address
POST /api/networkadapters/{mac}
{
"name": "d3net",
"ip": "xxx.xxx.xxx.xxx",
"mac": "hh-hh-hh-hh-hh",
"netmask": "xxx.xxx.xxx.xxx"
}
Response Body
{
"message": "ok"
}