Network Adapters#
The Network Adapters call returns an array of the network adapters on the target controller. Each adapter includes the following properties:
Attribute |
Value Type |
Description |
Value Example |
|---|---|---|---|
|
boolean |
Whether the adapter is currently executing a network capture |
|
|
boolean |
Whether the adapter is currently connected. |
|
|
IP address |
The IP address of the default gateway - 0.0.0.0 if none is assigned. |
|
|
IP address |
The current IP address of the adapter. |
|
|
IP address |
The subnet mask of the adapter in dotted-decimal format. |
|
|
string |
The system name of the adapter. |
|
For example:
"adapters": [
{
"capturing": false,
"connected": true,
"defaultGateway": "192.168.0.1",
"ipAddress": "192.168.0.21",
"name": "mgmt",
"subnetMask": "255.255.255.0"
}
]