これらのコマンドは、システムの物理ネットワークデバイスを一覧表示します。物理ネットワークデバイスに変更可能なプロパティーはありません。
|
|
このコマンドは、すべてのネットワークデバイスを一覧表示します。
リクエストの例:
GET /api/network/v1/devices HTTP/1.1 Authorization: Basic Tm8gcGVla2luZyE= Host: zfs-storage.example.com:215 Accept: application/json
結果例:
HTTP/1.1 200 OK Content-Type: application/json Content-Length: 412 X-Zfssa-Gns-Api: 1.0 { "devices": [{ "href": "/api/network/v1/devices/ixgbe0", .... }, { "href": "/api/network/v1/devices/ixgbe1", ... }, { "href": "/api/network/v1/devices/ixgbe2", ... }, { "href": "/api/network/v1/devices/ixgbe3", ... }] }
このコマンドは、1 つのネットワークデバイスからプロパティーを取得します。
リクエストの例:
GET /api/network/v1/devices/ixgbe0 HTTP/1.1 Authorization: Basic Tm8gcGVla2luZyE= Host: zfs-storage.example.com:215 Accept: application/json
結果例:
HTTP/1.1 200 OK Content-Type: application/json Content-Length: 178 X-Zfssa-Gns-Api: 1.0 { "devices": { "active": false, "device": "ixgbe0", "duplex": "full-duplex", "factory_mac": "0:21:28:a1:d9:68", "href": "/api/network/v1/devices/ixgbe0", "media": "Ethernet", "speed": "1000 Mbit/s", "up": true } }