3.11 Network
Získání aktuálního nastavení
Získá aktuální nastavení sítě.
URL: | https://{{ip_addr}}/api/v1/network |
HTTP Metoda: | GET |
Response code: | Standardní HTTP response code, ošetřuje syntaktické chyby. |
Response data: | { "data": { "dns": "8.8.8.8", "gateway": "192.168.1.1", "ipAddress": "192.168.1.173", "isDhcpEnabled": true, "isEthernetEnabled": true, "mask": "255.255.255.0" } } |
Nastavení sekce
URL: | https://{{ip_addr}}/api/v1/network |
HTTP Metoda: | PUT |
Response code: | Standardní HTTP response code, ošetřuje syntaktické chyby. |
Request body: | { "isDhcpEnabled": "<boolean>", "isEthernetEnabled": "<boolean>", "ipAddress": "<string>", "dns": "<string>", "gateway": "<string>", "mask": "<string>" } |
Response data: | { "data": { "dns": "8.8.8.8", "gateway": "192.168.1.1", "ipAddress": "192.168.1.173", "isDhcpEnabled": true, "isEthernetEnabled": true, "mask": "255.255.255.0" } } |