GET /system/network/adapters
This resource shows the network adapters available on the device.
ul
Used when you are operating a browser without access to the header parameter. This allows you to choose which encoding you want to use for the response:
All these resources can be used according what the resource allows.
If this parameter is not in the request, the Application/Json will be chosen by default.
There are multiple possible values (according the resource):
The first two are the most often used.
Object Name: Adapters
Property Name | Type | Description | Method |
---|---|---|---|
Ethernet | Object | This object is for any wired IP connections that are made through either one of the controller’s Ethernet Switch Pri(mary) connector or Ethernet Switch Sec(ondary) connector. | GET |
Wireless | Array<WirelessAdapter> | This object is an array of WirelessAdapter objects. | GET |
URL Example: https://0.0.0.0/api/rest/v1/system/network/adapters
[
{
"href": "/api/rest/v1/system/network/adapters/ethernet",
"name": "ethernet"
},
{
"href": "/api/rest/v1/system/network/adapters/wireless",
"name": "wireless"
}
]
URL Example: https://0.0.0.0/api/rest/v1/system/network/adapters
<?xml version="1.0" encoding="utf-8"?>
<Adapters>
<Ethernet>
<Href>/api/rest/v1/system/network/adapters/ethernet</Href>
<Name>ethernet</Name>
</Ethernet>
<Wireless>
<Href>/api/rest/v1/system/network/adapters/wireless</Href>
<Name>wireless</Name>
</Wireless>
</Adapters>