2018-08-30 17:25:33 +03:00
|
|
|
swagger: '2.0'
|
|
|
|
info:
|
2018-10-14 17:49:07 +03:00
|
|
|
title: 'AdGuard Home'
|
2018-11-25 20:09:52 +03:00
|
|
|
description: 'AdGuard Home REST API. Admin web interface is built on top of this REST API.'
|
2019-08-22 15:42:43 +03:00
|
|
|
version: 0.98.1
|
2018-08-30 17:25:33 +03:00
|
|
|
schemes:
|
|
|
|
- http
|
2018-11-26 13:22:14 +03:00
|
|
|
basePath: /control
|
2018-08-30 17:25:33 +03:00
|
|
|
produces:
|
|
|
|
- application/json
|
|
|
|
tags:
|
|
|
|
-
|
|
|
|
name: global
|
2018-11-25 22:30:08 +03:00
|
|
|
description: 'AdGuard Home server general settings and controls'
|
2019-02-21 17:33:46 +03:00
|
|
|
-
|
|
|
|
name: tls
|
|
|
|
description: 'AdGuard Home HTTPS/DOH/DOT settings'
|
2018-11-26 12:48:17 +03:00
|
|
|
-
|
|
|
|
name: log
|
|
|
|
description: 'AdGuard Home query log'
|
2018-11-25 22:30:08 +03:00
|
|
|
-
|
|
|
|
name: stats
|
|
|
|
description: 'AdGuard Home statistics'
|
2018-11-25 20:09:52 +03:00
|
|
|
-
|
|
|
|
name: i18n
|
|
|
|
description: 'Application localization'
|
2018-08-30 17:25:33 +03:00
|
|
|
-
|
|
|
|
name: filtering
|
|
|
|
description: 'Rule-based filtering'
|
|
|
|
-
|
|
|
|
name: safebrowsing
|
2018-11-25 20:09:52 +03:00
|
|
|
description: 'Blocking malware/phishing sites'
|
2018-08-30 17:25:33 +03:00
|
|
|
-
|
|
|
|
name: parental
|
2018-11-25 20:09:52 +03:00
|
|
|
description: 'Blocking adult and explicit materials'
|
2018-08-30 17:25:33 +03:00
|
|
|
-
|
|
|
|
name: safesearch
|
|
|
|
description: 'Enforce family-friendly results in search engines'
|
2018-11-06 12:22:44 +03:00
|
|
|
-
|
|
|
|
name: dhcp
|
2018-11-25 20:09:52 +03:00
|
|
|
description: 'Built-in DHCP server controls'
|
2019-03-19 18:47:22 +03:00
|
|
|
-
|
|
|
|
name: clients
|
|
|
|
description: 'Clients list operations'
|
2019-02-22 17:59:42 +03:00
|
|
|
-
|
|
|
|
name: install
|
|
|
|
description: 'First-time install configuration handlers'
|
2018-08-30 17:25:33 +03:00
|
|
|
paths:
|
2018-11-26 12:48:17 +03:00
|
|
|
|
|
|
|
# API TO-DO LIST
|
|
|
|
# TODO: Use JSON where it is possible
|
|
|
|
# TODO: Use lower_case for all objects' properties
|
|
|
|
# TODO: Move to definitions what's missing from there
|
|
|
|
|
|
|
|
# --------------------------------------------------
|
|
|
|
# General settings and controls
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- global
|
|
|
|
operationId: status
|
2018-11-25 20:09:52 +03:00
|
|
|
summary: 'Get DNS server current status and general settings'
|
2018-11-25 22:30:08 +03:00
|
|
|
produces:
|
|
|
|
- application/json
|
2018-08-30 17:25:33 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-25 22:30:08 +03:00
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/ServerStatus"
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-10-10 20:13:03 +03:00
|
|
|
/enable_protection:
|
|
|
|
post:
|
|
|
|
tags:
|
2018-11-25 20:09:52 +03:00
|
|
|
- global
|
2018-10-10 20:13:03 +03:00
|
|
|
operationId: enableProtection
|
|
|
|
summary: "Enable protection (turns on dnsfilter module in coredns)"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-10-10 20:13:03 +03:00
|
|
|
/disable_protection:
|
|
|
|
post:
|
|
|
|
tags:
|
2018-11-25 20:09:52 +03:00
|
|
|
- global
|
2018-10-10 20:13:03 +03:00
|
|
|
operationId: disableProtection
|
|
|
|
summary: "Disable protection (turns off filtering, sb, parental, safesearch temporarily by disabling dnsfilter module in coredns)"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2019-02-28 11:10:43 +03:00
|
|
|
/set_upstreams_config:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- global
|
|
|
|
operationId: setUpstreamsConfig
|
|
|
|
summary: "Updates the current upstreams configuration"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
description: "Upstreams configuration JSON"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/UpstreamsConfig"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
2018-11-25 22:30:08 +03:00
|
|
|
/test_upstream_dns:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- global
|
|
|
|
operationId: testUpstreamDNS
|
2019-03-06 16:17:15 +03:00
|
|
|
summary: "Test upstream configuration"
|
2018-11-25 22:30:08 +03:00
|
|
|
consumes:
|
2019-03-05 12:29:52 +03:00
|
|
|
- application/json
|
2018-11-25 22:30:08 +03:00
|
|
|
parameters:
|
2019-03-05 12:29:52 +03:00
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
2019-03-06 16:17:15 +03:00
|
|
|
description: "Upstream configuration to be tested"
|
2018-11-25 22:30:08 +03:00
|
|
|
schema:
|
2019-03-06 16:17:15 +03:00
|
|
|
$ref: "#/definitions/UpstreamsConfig"
|
2018-11-25 22:30:08 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: 'Status of testing each requested server, with "OK" meaning that server works, any other text means an error.'
|
|
|
|
examples:
|
|
|
|
application/json:
|
|
|
|
1.1.1.1: OK
|
|
|
|
1.0.0.1: OK
|
|
|
|
8.8.8.8: OK
|
|
|
|
8.8.4.4: OK
|
|
|
|
"192.168.1.104:53535": "Couldn't communicate with DNS server"
|
|
|
|
|
2018-11-26 13:22:14 +03:00
|
|
|
/version.json:
|
2019-06-27 10:52:45 +03:00
|
|
|
post:
|
2018-11-26 13:22:14 +03:00
|
|
|
tags:
|
|
|
|
- global
|
|
|
|
operationId: getVersionJson
|
|
|
|
summary: 'Gets information about the latest available version of AdGuard'
|
2019-06-27 10:52:45 +03:00
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/GetVersionRequest"
|
2018-11-26 13:22:14 +03:00
|
|
|
produces:
|
|
|
|
- 'application/json'
|
|
|
|
responses:
|
|
|
|
200:
|
2019-06-03 11:21:57 +03:00
|
|
|
description: 'Version info. If response message is empty, UI does not show a version update message.'
|
2018-11-26 13:22:14 +03:00
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/VersionInfo"
|
|
|
|
500:
|
|
|
|
description: 'Cannot write answer'
|
|
|
|
502:
|
|
|
|
description: 'Cannot retrieve the version.json file contents'
|
2019-05-20 10:57:07 +03:00
|
|
|
/update:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- global
|
|
|
|
operationId: beginUpdate
|
|
|
|
summary: 'Begin auto-upgrade procedure'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
500:
|
|
|
|
description: Failed
|
2018-11-26 13:22:14 +03:00
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Query log methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/querylog:
|
|
|
|
get:
|
|
|
|
tags:
|
2018-11-26 12:48:17 +03:00
|
|
|
- log
|
2018-08-30 17:25:33 +03:00
|
|
|
operationId: queryLog
|
|
|
|
summary: 'Get DNS server query log'
|
|
|
|
parameters:
|
|
|
|
- in: query
|
|
|
|
name: download
|
|
|
|
type: boolean
|
|
|
|
description: 'If any value is set, make the browser download the query instead of displaying it by setting Content-Disposition header'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 00:08:47 +03:00
|
|
|
schema:
|
|
|
|
$ref: '#/definitions/QueryLog'
|
2019-07-29 18:51:55 +03:00
|
|
|
|
|
|
|
/querylog_info:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- log
|
|
|
|
operationId: queryLogInfo
|
|
|
|
summary: 'Get query log parameters'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/QueryLogConfig"
|
|
|
|
|
|
|
|
/querylog_config:
|
2018-08-30 17:25:33 +03:00
|
|
|
post:
|
|
|
|
tags:
|
2018-11-26 12:48:17 +03:00
|
|
|
- log
|
2019-07-29 18:51:55 +03:00
|
|
|
operationId: queryLogConfig
|
|
|
|
summary: "Set query log parameters"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/QueryLogConfig"
|
2018-08-30 17:25:33 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2019-07-29 18:51:55 +03:00
|
|
|
|
|
|
|
/querylog_clear:
|
2018-08-30 17:25:33 +03:00
|
|
|
post:
|
|
|
|
tags:
|
2018-11-26 12:48:17 +03:00
|
|
|
- log
|
2019-07-29 18:51:55 +03:00
|
|
|
operationId: querylogClear
|
|
|
|
summary: 'Clear query log'
|
2018-08-30 17:25:33 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# General statistics methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/stats:
|
|
|
|
get:
|
|
|
|
tags:
|
2018-11-25 22:30:08 +03:00
|
|
|
- stats
|
2018-08-30 17:25:33 +03:00
|
|
|
operationId: stats
|
|
|
|
summary: 'Get DNS server statistics'
|
|
|
|
responses:
|
|
|
|
200:
|
2019-08-27 12:56:16 +03:00
|
|
|
description: 'Returns statistics data'
|
2018-11-26 00:08:47 +03:00
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/Stats"
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-10-10 20:13:03 +03:00
|
|
|
/stats_reset:
|
|
|
|
post:
|
|
|
|
tags:
|
2018-11-25 22:30:08 +03:00
|
|
|
- stats
|
2018-10-10 20:13:03 +03:00
|
|
|
operationId: statsReset
|
|
|
|
summary: "Reset all statistics to zeroes"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2019-08-27 12:56:32 +03:00
|
|
|
/stats_info:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- stats
|
|
|
|
operationId: statsInfo
|
|
|
|
summary: 'Get statistics parameters'
|
|
|
|
responses:
|
|
|
|
200:
|
2019-07-29 18:51:55 +03:00
|
|
|
description: OK
|
2019-08-27 12:56:32 +03:00
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/StatsConfig"
|
2019-09-12 15:00:41 +03:00
|
|
|
description: OK
|
2019-08-27 12:56:32 +03:00
|
|
|
|
|
|
|
/stats_config:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- stats
|
|
|
|
operationId: statsConfig
|
|
|
|
summary: "Set statistics parameters"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/StatsConfig"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
2019-02-21 17:33:46 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# TLS server methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
|
|
|
/tls/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- tls
|
|
|
|
operationId: tlsStatus
|
|
|
|
summary: "Returns TLS configuration and its status"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/TlsConfig"
|
|
|
|
|
|
|
|
/tls/configure:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- tls
|
|
|
|
operationId: tlsConfigure
|
|
|
|
summary: "Updates current TLS configuration"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
description: "TLS configuration JSON"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/TlsConfig"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: "TLS configuration and its status"
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/TlsConfig"
|
|
|
|
400:
|
|
|
|
description: "Invalid configuration or unavailable port"
|
|
|
|
500:
|
|
|
|
description: "Error occurred while applying configuration"
|
|
|
|
|
|
|
|
/tls/validate:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- tls
|
|
|
|
operationId: tlsValidate
|
|
|
|
summary: "Checks if the current TLS configuration is valid"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
description: "TLS configuration JSON"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/TlsConfig"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: "TLS configuration and its status"
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/TlsConfig"
|
|
|
|
400:
|
|
|
|
description: "Invalid configuration or unavailable port"
|
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# DHCP server methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-11-06 12:22:44 +03:00
|
|
|
/dhcp/status:
|
2018-11-25 22:30:08 +03:00
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- dhcp
|
|
|
|
operationId: dhcpStatus
|
|
|
|
summary: "Gets the current DHCP settings and status"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/DhcpStatus"
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-11-06 12:22:44 +03:00
|
|
|
/dhcp/set_config:
|
2018-11-25 22:30:08 +03:00
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- dhcp
|
|
|
|
operationId: dhcpSetConfig
|
|
|
|
summary: "Updates the current DHCP server configuration"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
description: "DHCP configuration JSON"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/DhcpConfig"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
|
|
|
/dhcp/find_active_dhcp:
|
2018-12-13 14:39:59 +03:00
|
|
|
post:
|
2018-11-06 12:22:44 +03:00
|
|
|
tags:
|
2018-11-25 20:09:52 +03:00
|
|
|
- dhcp
|
2018-11-06 12:22:44 +03:00
|
|
|
operationId: checkActiveDhcp
|
2018-11-26 12:48:17 +03:00
|
|
|
summary: "Searches for an active DHCP server on the network"
|
2018-11-06 12:22:44 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/DhcpSearchResult"
|
|
|
|
|
2019-05-28 18:42:42 +03:00
|
|
|
/dhcp/add_static_lease:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- dhcp
|
|
|
|
operationId: dhcpAddStaticLease
|
|
|
|
summary: "Adds a static lease"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/DhcpStaticLease"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
|
|
|
/dhcp/remove_static_lease:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- dhcp
|
|
|
|
operationId: dhcpRemoveStaticLease
|
|
|
|
summary: "Removes a static lease"
|
|
|
|
consumes:
|
|
|
|
- application/json
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/DhcpStaticLease"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Filtering status methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
|
|
|
/filtering/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringStatus
|
|
|
|
summary: 'Get status of rules-based filter'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/FilteringStatus"
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/enable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringEnable
|
|
|
|
summary: 'Enable filtering'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/disable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringDisable
|
|
|
|
summary: 'Disable filtering'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/add_url:
|
2019-05-07 10:46:02 +03:00
|
|
|
post:
|
2018-08-30 17:25:33 +03:00
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringAddURL
|
|
|
|
summary: 'Add filter URL'
|
|
|
|
consumes:
|
2019-06-03 11:52:39 +03:00
|
|
|
- application/json
|
2018-08-30 17:25:33 +03:00
|
|
|
parameters:
|
2019-06-03 11:52:39 +03:00
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/AddUrlRequest"
|
2018-08-30 17:25:33 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/remove_url:
|
2019-05-07 10:46:02 +03:00
|
|
|
post:
|
2018-08-30 17:25:33 +03:00
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringRemoveURL
|
|
|
|
summary: 'Remove filter URL'
|
|
|
|
consumes:
|
2019-06-03 12:03:45 +03:00
|
|
|
- application/json
|
2018-08-30 17:25:33 +03:00
|
|
|
parameters:
|
2019-06-03 12:03:45 +03:00
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/RemoveUrlRequest"
|
2018-08-30 17:25:33 +03:00
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/enable_url:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringEnableURL
|
|
|
|
summary: 'Enable filter URL'
|
|
|
|
consumes:
|
|
|
|
- text/plain
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
name: url
|
|
|
|
description: 'Previously added URL containing filtering rules'
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: 'url=https://filters.adtidy.org/windows/filters/15.txt'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/disable_url:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringDisableURL
|
|
|
|
summary: 'Disable filter URL'
|
|
|
|
consumes:
|
|
|
|
- text/plain
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
name: url
|
|
|
|
description: 'Previously added URL containing filtering rules'
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
example: 'url=https://filters.adtidy.org/windows/filters/15.txt'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/refresh:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringRefresh
|
|
|
|
summary: |
|
|
|
|
Reload filtering rules from URLs
|
|
|
|
|
|
|
|
This might be needed if new URL was just added and you dont want to wait for automatic refresh to kick in.
|
|
|
|
|
|
|
|
This API request is ratelimited, so you can call it freely as often as you like, it wont create unneccessary burden on servers that host the URL.
|
|
|
|
|
|
|
|
This should work as intended, a `force` parameter is offered as last-resort attempt to make filter lists fresh.
|
|
|
|
|
|
|
|
If you ever find yourself using `force` to make something work that otherwise wont, this is a bug and report it accordingly.
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
-
|
|
|
|
name: force
|
|
|
|
in: query
|
|
|
|
type: boolean
|
|
|
|
description: 'If any value is set, ignore cache and force re-download of all filters'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK with how many filters were actually updated
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/filtering/set_rules:
|
2019-05-07 10:46:02 +03:00
|
|
|
post:
|
2018-08-30 17:25:33 +03:00
|
|
|
tags:
|
|
|
|
- filtering
|
|
|
|
operationId: filteringSetRules
|
|
|
|
summary: 'Set user-defined filter rules'
|
|
|
|
consumes:
|
|
|
|
- text/plain
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
name: rules
|
|
|
|
description: 'All filtering rules, one line per rule'
|
|
|
|
schema:
|
2018-11-25 22:30:08 +03:00
|
|
|
# TODO: move to definitions
|
2018-08-30 17:25:33 +03:00
|
|
|
type: string
|
|
|
|
example: '@@||yandex.ru^|'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Safebrowsing methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/safebrowsing/enable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- safebrowsing
|
|
|
|
operationId: safebrowsingEnable
|
|
|
|
summary: 'Enable safebrowsing'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/safebrowsing/disable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- safebrowsing
|
|
|
|
operationId: safebrowsingDisable
|
|
|
|
summary: 'Disable safebrowsing'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/safebrowsing/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- safebrowsing
|
|
|
|
operationId: safebrowsingStatus
|
|
|
|
summary: 'Get safebrowsing status'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
examples:
|
|
|
|
application/json:
|
|
|
|
enabled: false
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Parental control methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/parental/enable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- parental
|
|
|
|
operationId: parentalEnable
|
|
|
|
summary: 'Enable parental filtering'
|
|
|
|
consumes:
|
|
|
|
- text/plain
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
name: sensitivity
|
|
|
|
description: |
|
|
|
|
Age sensitivity for parental filtering,
|
|
|
|
EARLY_CHILDHOOD is 3
|
|
|
|
YOUNG is 10
|
|
|
|
TEEN is 13
|
|
|
|
MATURE is 17
|
|
|
|
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- EARLY_CHILDHOOD
|
|
|
|
- YOUNG
|
|
|
|
- TEEN
|
|
|
|
- MATURE
|
|
|
|
example: 'sensitivity=TEEN'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/parental/disable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- parental
|
|
|
|
operationId: parentalDisable
|
|
|
|
summary: 'Disable parental filtering'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/parental/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- parental
|
|
|
|
operationId: parentalStatus
|
|
|
|
summary: 'Get parental filtering status'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
examples:
|
|
|
|
application/json:
|
|
|
|
enabled: true
|
|
|
|
sensitivity: 13
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Safe search methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/safesearch/enable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- safesearch
|
|
|
|
operationId: safesearchEnable
|
|
|
|
summary: 'Enable safesearch'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/safesearch/disable:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- safesearch
|
|
|
|
operationId: safesearchDisable
|
|
|
|
summary: 'Disable safesearch'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
/safesearch/status:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- safesearch
|
|
|
|
operationId: safesearchStatus
|
|
|
|
summary: 'Get safesearch status'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
examples:
|
|
|
|
application/json:
|
|
|
|
enabled: false
|
2018-11-25 22:30:08 +03:00
|
|
|
|
2019-03-19 18:47:22 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Clients list methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
|
|
|
/clients:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- clients
|
|
|
|
operationId: clientsStatus
|
|
|
|
summary: 'Get information about configured clients'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/Clients"
|
|
|
|
|
2019-05-07 10:45:18 +03:00
|
|
|
/clients/add:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- clients
|
|
|
|
operationId: clientsAdd
|
|
|
|
summary: 'Add a new client'
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/Client"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
|
|
|
/clients/delete:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- clients
|
|
|
|
operationId: clientsDelete
|
|
|
|
summary: 'Remove a client'
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/ClientDelete"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
|
|
|
/clients/update:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- clients
|
|
|
|
operationId: clientsUpdate
|
|
|
|
summary: 'Update client information'
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/ClientUpdate"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
2019-07-29 19:14:17 +03:00
|
|
|
|
|
|
|
/blocked_services/list:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- blocked_services
|
|
|
|
operationId: blockedServicesList
|
|
|
|
summary: 'Get blocked services list'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/BlockedServicesArray"
|
|
|
|
|
|
|
|
/blocked_services/set:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- blocked_services
|
|
|
|
operationId: blockedServicesSet
|
|
|
|
summary: 'Set blocked services list'
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
name: "body"
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/BlockedServicesArray"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
|
|
|
|
2019-07-26 17:09:46 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# Rewrite methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
|
|
|
/rewrite/list:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- rewrite
|
|
|
|
operationId: rewriteList
|
|
|
|
summary: 'Get list of Rewrite rules'
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/RewriteList"
|
|
|
|
|
|
|
|
/rewrite/add:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- rewrite
|
|
|
|
operationId: rewriteAdd
|
|
|
|
summary: 'Add a new Rewrite rule'
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/RewriteEntry"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
|
|
|
/rewrite/delete:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- rewrite
|
|
|
|
operationId: rewriteDelete
|
|
|
|
summary: 'Remove a Rewrite rule'
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/RewriteEntry"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
|
2018-11-26 12:48:17 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# I18N methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
2018-11-25 22:30:08 +03:00
|
|
|
/i18n/change_language:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- i18n
|
|
|
|
operationId: changeLanguage
|
|
|
|
summary: "Change current language. Argument must be an ISO 639-1 two-letter code"
|
|
|
|
consumes:
|
|
|
|
- text/plain
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
name: language
|
|
|
|
description: "New language. It must be known to the server and must be an ISO 639-1 two-letter code"
|
|
|
|
schema:
|
|
|
|
# TODO: use JSON?
|
|
|
|
type: string
|
|
|
|
example: en
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
2018-11-26 12:48:17 +03:00
|
|
|
|
2018-11-25 22:30:08 +03:00
|
|
|
/i18n/current_language:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- i18n
|
|
|
|
operationId: currentLanguage
|
|
|
|
summary: "Get currently set language. Result is ISO 639-1 two-letter code. Empty result means default language."
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
examples:
|
|
|
|
text/plain:
|
|
|
|
en
|
|
|
|
|
2019-02-22 17:59:42 +03:00
|
|
|
# --------------------------------------------------
|
|
|
|
# First-time install configuration methods
|
|
|
|
# --------------------------------------------------
|
|
|
|
|
|
|
|
/install/get_addresses:
|
|
|
|
get:
|
|
|
|
tags:
|
|
|
|
- install
|
|
|
|
operationId: installGetAddresses
|
|
|
|
summary: "Gets the network interfaces information."
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/AddressesInfo"
|
2019-04-22 12:45:50 +03:00
|
|
|
/install/check_config:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- install
|
|
|
|
operationId: installCheckConfig
|
|
|
|
summary: "Checks configuration"
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
description: "Configuration to be checked"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/CheckConfigRequest"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/CheckConfigResponse"
|
|
|
|
400:
|
|
|
|
description: "Failed to parse JSON or cannot listen on the specified address"
|
2019-02-22 17:59:42 +03:00
|
|
|
/install/configure:
|
|
|
|
post:
|
|
|
|
tags:
|
|
|
|
- install
|
|
|
|
operationId: installConfigure
|
|
|
|
summary: "Applies the initial configuration."
|
|
|
|
parameters:
|
|
|
|
- in: "body"
|
|
|
|
name: "body"
|
|
|
|
description: "Initial configuration JSON"
|
|
|
|
required: true
|
|
|
|
schema:
|
|
|
|
$ref: "#/definitions/InitialConfiguration"
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
description: OK
|
|
|
|
400:
|
|
|
|
description: "Failed to parse initial configuration or cannot listen to the specified addresses"
|
|
|
|
500:
|
|
|
|
description: "Cannot start the DNS server"
|
|
|
|
|
2018-08-30 17:25:33 +03:00
|
|
|
definitions:
|
2018-11-25 22:30:08 +03:00
|
|
|
ServerStatus:
|
|
|
|
type: "object"
|
|
|
|
description: "AdGuard Home server status and configuration"
|
|
|
|
required:
|
|
|
|
- "dns_address"
|
|
|
|
- "dns_port"
|
|
|
|
- "protection_enabled"
|
|
|
|
- "querylog_enabled"
|
|
|
|
- "running"
|
|
|
|
- "bootstrap_dns"
|
|
|
|
- "upstream_dns"
|
|
|
|
- "version"
|
|
|
|
- "language"
|
|
|
|
properties:
|
|
|
|
dns_address:
|
|
|
|
type: "string"
|
|
|
|
example: "127.0.0.1"
|
|
|
|
dns_port:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 53
|
|
|
|
minimum: 1
|
|
|
|
maximum: 65535
|
|
|
|
protection_enabled:
|
|
|
|
type: "boolean"
|
|
|
|
querylog_enabled:
|
|
|
|
type: "boolean"
|
|
|
|
running:
|
|
|
|
type: "boolean"
|
|
|
|
bootstrap_dns:
|
|
|
|
type: "string"
|
|
|
|
example: "8.8.8.8:53"
|
|
|
|
upstream_dns:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
example:
|
|
|
|
- "tls://1.1.1.1"
|
|
|
|
- "tls://1.0.0.1"
|
|
|
|
version:
|
|
|
|
type: "string"
|
|
|
|
example: "0.1"
|
|
|
|
language:
|
|
|
|
type: "string"
|
|
|
|
example: "en"
|
2019-02-28 11:10:43 +03:00
|
|
|
UpstreamsConfig:
|
|
|
|
type: "object"
|
|
|
|
description: "Upstreams configuration"
|
|
|
|
required:
|
|
|
|
- "bootstrap_dns"
|
|
|
|
- "upstream_dns"
|
2019-02-28 13:01:41 +03:00
|
|
|
- "all_servers"
|
2019-02-28 11:10:43 +03:00
|
|
|
properties:
|
|
|
|
bootstrap_dns:
|
2019-02-28 13:01:41 +03:00
|
|
|
type: "array"
|
|
|
|
description: 'Bootstrap servers, port is optional after colon. Empty value will reset it to default values'
|
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
example:
|
|
|
|
- "8.8.8.8:53"
|
|
|
|
- "1.1.1.1:53"
|
2019-02-28 11:10:43 +03:00
|
|
|
upstream_dns:
|
|
|
|
type: "array"
|
2019-02-28 13:01:41 +03:00
|
|
|
description: 'Upstream servers, port is optional after colon. Empty value will reset it to default values'
|
2019-02-28 11:10:43 +03:00
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
example:
|
|
|
|
- "tls://1.1.1.1"
|
|
|
|
- "tls://1.0.0.1"
|
|
|
|
all_servers:
|
|
|
|
type: "boolean"
|
2019-02-28 13:01:41 +03:00
|
|
|
description: "If true, parallel queries to all configured upstream servers are enabled"
|
2018-11-26 12:48:17 +03:00
|
|
|
Filter:
|
|
|
|
type: "object"
|
|
|
|
description: "Filter subscription info"
|
|
|
|
required:
|
|
|
|
- "enabled"
|
|
|
|
- "id"
|
|
|
|
- "lastUpdated"
|
|
|
|
- "name"
|
|
|
|
- "rulesCount"
|
|
|
|
- "url"
|
|
|
|
properties:
|
|
|
|
enabled:
|
|
|
|
type: "boolean"
|
|
|
|
id:
|
|
|
|
type: "integer"
|
|
|
|
example: 1234
|
|
|
|
lastUpdated:
|
|
|
|
type: "string"
|
|
|
|
format: "date-time"
|
|
|
|
example: "2018-10-30T12:18:57.223101822+03:00"
|
|
|
|
name:
|
|
|
|
type: "string"
|
|
|
|
example: "AdGuard Simplified Domain Names filter"
|
|
|
|
rulesCount:
|
|
|
|
type: "integer"
|
|
|
|
example: 5912
|
|
|
|
url:
|
|
|
|
type: "string"
|
|
|
|
example: "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt"
|
|
|
|
FilteringStatus:
|
|
|
|
type: "object"
|
|
|
|
description: "Filtering settings"
|
|
|
|
required:
|
|
|
|
- "enabled"
|
|
|
|
- "filters"
|
|
|
|
- "user_rules"
|
|
|
|
properties:
|
|
|
|
enabled:
|
|
|
|
type: "boolean"
|
|
|
|
filters:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/Filter"
|
|
|
|
user_rules:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
example:
|
|
|
|
- '||example.org^'
|
|
|
|
- '||example.com^'
|
2019-06-27 10:52:45 +03:00
|
|
|
GetVersionRequest:
|
|
|
|
type: "object"
|
|
|
|
description: "/version.json request data"
|
|
|
|
properties:
|
|
|
|
recheck_now:
|
|
|
|
description: "If false, server will check for a new version data only once in several hours"
|
|
|
|
type: "boolean"
|
2018-11-26 13:22:14 +03:00
|
|
|
VersionInfo:
|
|
|
|
type: "object"
|
|
|
|
description: "Information about the latest available version of AdGuard Home"
|
|
|
|
properties:
|
2019-05-20 10:57:07 +03:00
|
|
|
new_version:
|
2018-11-26 13:22:14 +03:00
|
|
|
type: "string"
|
|
|
|
example: "v0.9"
|
|
|
|
announcement:
|
|
|
|
type: "string"
|
|
|
|
example: "AdGuard Home v0.9 is now available!"
|
|
|
|
announcement_url:
|
|
|
|
type: "string"
|
|
|
|
example: "https://github.com/AdguardTeam/AdGuardHome/releases/tag/v0.9"
|
2019-05-20 10:57:07 +03:00
|
|
|
can_autoupdate:
|
|
|
|
type: "boolean"
|
2018-11-25 22:30:08 +03:00
|
|
|
Stats:
|
|
|
|
type: "object"
|
2019-08-27 12:56:16 +03:00
|
|
|
description: "Server statistics data"
|
2018-11-25 22:30:08 +03:00
|
|
|
properties:
|
2019-08-27 12:56:16 +03:00
|
|
|
time_units:
|
|
|
|
type: "string"
|
|
|
|
description: "Time units (hours | days)"
|
|
|
|
example: "hours"
|
|
|
|
num_dns_queries:
|
2018-11-25 22:30:08 +03:00
|
|
|
type: "integer"
|
|
|
|
description: "Total number of DNS queries"
|
|
|
|
example: 123
|
2019-08-27 12:56:16 +03:00
|
|
|
num_blocked_filtering:
|
2018-11-25 22:30:08 +03:00
|
|
|
type: "integer"
|
|
|
|
description: "Number of requests blocked by filtering rules"
|
|
|
|
example: 50
|
2019-08-27 12:56:16 +03:00
|
|
|
num_replaced_safebrowsing:
|
2018-11-25 22:30:08 +03:00
|
|
|
type: "integer"
|
2019-08-27 12:56:16 +03:00
|
|
|
description: "Number of requests blocked by safebrowsing module"
|
2018-11-25 22:30:08 +03:00
|
|
|
example: 5
|
2019-08-27 12:56:16 +03:00
|
|
|
num_replaced_safesearch:
|
|
|
|
type: "integer"
|
|
|
|
description: "Number of requests blocked by safesearch module"
|
|
|
|
example: 5
|
|
|
|
num_replaced_parental:
|
2018-11-25 22:30:08 +03:00
|
|
|
type: "integer"
|
|
|
|
description: "Number of blocked adult websites"
|
|
|
|
example: 15
|
|
|
|
avg_processing_time:
|
|
|
|
type: "number"
|
|
|
|
format: "float"
|
2018-11-26 00:08:47 +03:00
|
|
|
description: "Average time in milliseconds on processing a DNS"
|
2018-11-25 22:30:08 +03:00
|
|
|
example: 0.34
|
|
|
|
top_queried_domains:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "object"
|
|
|
|
top_clients:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "object"
|
|
|
|
top_blocked_domains:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "object"
|
2018-11-26 00:08:47 +03:00
|
|
|
dns_queries:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "integer"
|
|
|
|
blocked_filtering:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "integer"
|
|
|
|
replaced_safebrowsing:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "integer"
|
|
|
|
replaced_parental:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "integer"
|
2019-08-27 12:56:16 +03:00
|
|
|
|
2019-08-27 12:56:32 +03:00
|
|
|
StatsConfig:
|
|
|
|
type: "object"
|
|
|
|
description: "Statistics configuration"
|
|
|
|
properties:
|
|
|
|
interval:
|
|
|
|
type: "integer"
|
|
|
|
description: "Time period to keep data (1 | 7 | 30 | 90)"
|
|
|
|
|
2018-11-25 22:30:08 +03:00
|
|
|
DhcpConfig:
|
|
|
|
type: "object"
|
|
|
|
description: "Built-in DHCP server configuration"
|
|
|
|
required:
|
|
|
|
- "enabled"
|
|
|
|
- "gateway_ip"
|
|
|
|
- "subnet_mask"
|
|
|
|
- "range_start"
|
|
|
|
- "range_end"
|
|
|
|
- "lease_duration"
|
|
|
|
properties:
|
|
|
|
enabled:
|
|
|
|
type: "boolean"
|
|
|
|
gateway_ip:
|
|
|
|
type: "string"
|
|
|
|
example: "192.168.1.1"
|
|
|
|
subnet_mask:
|
|
|
|
type: "string"
|
|
|
|
example: "255.255.255.0"
|
|
|
|
range_start:
|
|
|
|
type: "string"
|
|
|
|
example: "192.168.1.2"
|
|
|
|
range_end:
|
|
|
|
type: "string"
|
|
|
|
example: "192.168.10.50"
|
|
|
|
lease_duration:
|
|
|
|
type: "string"
|
|
|
|
example: "12h"
|
|
|
|
DhcpLease:
|
|
|
|
type: "object"
|
|
|
|
description: "DHCP lease information"
|
|
|
|
required:
|
|
|
|
- "mac"
|
|
|
|
- "ip"
|
|
|
|
- "hostname"
|
|
|
|
- "expires"
|
|
|
|
properties:
|
|
|
|
mac:
|
|
|
|
type: "string"
|
2019-05-28 18:42:42 +03:00
|
|
|
example: "00:11:09:b3:b3:b8"
|
2018-11-25 22:30:08 +03:00
|
|
|
ip:
|
|
|
|
type: "string"
|
|
|
|
example: "192.168.1.22"
|
|
|
|
hostname:
|
|
|
|
type: "string"
|
|
|
|
example: "dell"
|
|
|
|
expires:
|
|
|
|
type: "string"
|
|
|
|
format: "date-time"
|
|
|
|
example: "2017-07-21T17:32:28Z"
|
2019-05-28 18:42:42 +03:00
|
|
|
DhcpStaticLease:
|
|
|
|
type: "object"
|
|
|
|
description: "DHCP static lease information"
|
|
|
|
required:
|
|
|
|
- "mac"
|
|
|
|
- "ip"
|
|
|
|
- "hostname"
|
|
|
|
- "expires"
|
|
|
|
properties:
|
|
|
|
mac:
|
|
|
|
type: "string"
|
|
|
|
example: "00:11:09:b3:b3:b8"
|
|
|
|
ip:
|
|
|
|
type: "string"
|
|
|
|
example: "192.168.1.22"
|
|
|
|
hostname:
|
|
|
|
type: "string"
|
|
|
|
example: "dell"
|
2018-11-25 22:30:08 +03:00
|
|
|
DhcpStatus:
|
|
|
|
type: "object"
|
2018-11-26 00:08:47 +03:00
|
|
|
description: "Built-in DHCP server configuration and status"
|
2018-11-25 22:30:08 +03:00
|
|
|
required:
|
|
|
|
- "config"
|
|
|
|
- "leases"
|
|
|
|
properties:
|
|
|
|
config:
|
|
|
|
$ref: "#/definitions/DhcpConfig"
|
|
|
|
leases:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/DhcpLease"
|
2019-05-28 18:42:42 +03:00
|
|
|
static_leases :
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/DhcpStaticLease"
|
2018-11-26 12:48:17 +03:00
|
|
|
DhcpSearchResult:
|
|
|
|
type: "object"
|
|
|
|
description: "Information about a DHCP server discovered in the current network"
|
2019-04-22 18:01:04 +03:00
|
|
|
properties:
|
|
|
|
other_server:
|
|
|
|
$ref: "#/definitions/DhcpSearchResultOtherServer"
|
|
|
|
static_ip:
|
|
|
|
$ref: "#/definitions/DhcpSearchResultStaticIP"
|
|
|
|
DhcpSearchResultOtherServer:
|
|
|
|
type: "object"
|
2018-11-26 12:48:17 +03:00
|
|
|
properties:
|
|
|
|
found:
|
|
|
|
type: "string"
|
2019-04-22 18:01:04 +03:00
|
|
|
description: "yes|no|error"
|
|
|
|
example: "no"
|
|
|
|
error:
|
|
|
|
type: "string"
|
|
|
|
description: "Set if found=error"
|
|
|
|
example: ""
|
|
|
|
DhcpSearchResultStaticIP:
|
|
|
|
type: "object"
|
|
|
|
properties:
|
|
|
|
static:
|
|
|
|
type: "string"
|
|
|
|
description: "yes|no|error"
|
|
|
|
example: "yes"
|
|
|
|
ip:
|
|
|
|
type: "string"
|
|
|
|
description: "Set if static=no"
|
|
|
|
example: ""
|
2018-11-26 00:08:47 +03:00
|
|
|
DnsAnswer:
|
|
|
|
type: "object"
|
|
|
|
description: "DNS answer section"
|
|
|
|
properties:
|
|
|
|
ttl:
|
|
|
|
type: "integer"
|
|
|
|
example: 55
|
|
|
|
type:
|
|
|
|
type: "string"
|
|
|
|
example: "A"
|
|
|
|
value:
|
|
|
|
type: "string"
|
|
|
|
example: "217.69.139.201"
|
|
|
|
DnsQuestion:
|
|
|
|
type: "object"
|
|
|
|
description: "DNS question section"
|
|
|
|
properties:
|
|
|
|
class:
|
|
|
|
type: "string"
|
|
|
|
example: "IN"
|
|
|
|
host:
|
|
|
|
type: "string"
|
|
|
|
example: "example.org"
|
|
|
|
type:
|
|
|
|
type: "string"
|
|
|
|
example: "A"
|
2019-06-03 11:52:39 +03:00
|
|
|
AddUrlRequest:
|
|
|
|
type: "object"
|
|
|
|
description: "/add_url request data"
|
|
|
|
properties:
|
|
|
|
name:
|
|
|
|
type: "string"
|
|
|
|
url:
|
|
|
|
description: "URL containing filtering rules"
|
|
|
|
type: "string"
|
|
|
|
example: "https://filters.adtidy.org/windows/filters/15.txt"
|
2019-06-03 12:03:45 +03:00
|
|
|
RemoveUrlRequest:
|
|
|
|
type: "object"
|
|
|
|
description: "/remove_url request data"
|
|
|
|
properties:
|
|
|
|
url:
|
|
|
|
description: "Previously added URL containing filtering rules"
|
|
|
|
type: "string"
|
|
|
|
example: "https://filters.adtidy.org/windows/filters/15.txt"
|
2018-11-26 00:08:47 +03:00
|
|
|
QueryLogItem:
|
|
|
|
type: "object"
|
|
|
|
description: "Query log item"
|
|
|
|
properties:
|
|
|
|
answer:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/DnsAnswer"
|
|
|
|
client:
|
|
|
|
type: "string"
|
|
|
|
example: "192.168.0.1"
|
|
|
|
elapsedMs:
|
|
|
|
type: "string"
|
|
|
|
example: "54.023928"
|
|
|
|
question:
|
|
|
|
$ref: "#/definitions/DnsQuestion"
|
|
|
|
filterId:
|
|
|
|
type: "integer"
|
|
|
|
example: 123123
|
|
|
|
description: "In case if there's a rule applied to this DNS request, this is ID of the filter that rule belongs to."
|
|
|
|
rule:
|
|
|
|
type: "string"
|
|
|
|
example: "||example.org^"
|
|
|
|
description: "Filtering rule applied to the request (if any)"
|
|
|
|
reason:
|
|
|
|
type: "string"
|
|
|
|
description: "DNS filter status"
|
|
|
|
enum:
|
|
|
|
- "NotFilteredNotFound"
|
|
|
|
- "NotFilteredWhiteList"
|
|
|
|
- "NotFilteredError"
|
|
|
|
- "FilteredBlackList"
|
|
|
|
- "FilteredSafeBrowsing"
|
|
|
|
- "FilteredParental"
|
|
|
|
- "FilteredInvalid"
|
|
|
|
- "FilteredSafeSearch"
|
|
|
|
status:
|
|
|
|
type: "string"
|
|
|
|
description: "DNS response status"
|
|
|
|
example: "NOERROR"
|
|
|
|
time:
|
|
|
|
type: "string"
|
|
|
|
description: "DNS request processing start time"
|
|
|
|
example: "2018-11-26T00:02:41+03:00"
|
|
|
|
QueryLog:
|
|
|
|
type: "array"
|
|
|
|
description: "Query log"
|
|
|
|
items:
|
2019-02-21 17:33:46 +03:00
|
|
|
$ref: "#/definitions/QueryLogItem"
|
2019-07-29 18:51:55 +03:00
|
|
|
|
|
|
|
QueryLogConfig:
|
|
|
|
type: "object"
|
|
|
|
description: "Query log configuration"
|
|
|
|
properties:
|
|
|
|
enabled:
|
|
|
|
type: "boolean"
|
|
|
|
description: "Is query log enabled"
|
|
|
|
interval:
|
|
|
|
type: "integer"
|
|
|
|
description: "Time period to keep data (1 | 7 | 30 | 90)"
|
|
|
|
|
2019-02-21 17:33:46 +03:00
|
|
|
TlsConfig:
|
|
|
|
type: "object"
|
|
|
|
description: "TLS configuration settings and status"
|
|
|
|
properties:
|
|
|
|
# TLS configuration
|
|
|
|
enabled:
|
|
|
|
type: "boolean"
|
|
|
|
example: "true"
|
|
|
|
description: "enabled is the encryption (DOT/DOH/HTTPS) status"
|
|
|
|
server_name:
|
|
|
|
type: "string"
|
|
|
|
example: "example.org"
|
|
|
|
description: "server_name is the hostname of your HTTPS/TLS server"
|
|
|
|
force_https:
|
|
|
|
type: "boolean"
|
|
|
|
example: "true"
|
|
|
|
description: "if true, forces HTTP->HTTPS redirect"
|
|
|
|
port_https:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 443
|
|
|
|
description: "HTTPS port. If 0, HTTPS will be disabled."
|
|
|
|
port_dns_over_tls:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 853
|
|
|
|
description: "DNS-over-TLS port. If 0, DOT will be disabled."
|
|
|
|
certificate_chain:
|
|
|
|
type: "string"
|
|
|
|
description: "Base64 string with PEM-encoded certificates chain"
|
|
|
|
private_key:
|
|
|
|
type: "string"
|
|
|
|
description: "Base64 string with PEM-encoded private key"
|
2019-08-27 11:59:05 +03:00
|
|
|
certificate_path:
|
|
|
|
type: "string"
|
|
|
|
description: "Path to certificate file"
|
|
|
|
private_key_path:
|
|
|
|
type: "string"
|
|
|
|
description: "Path to private key file"
|
2019-02-21 17:33:46 +03:00
|
|
|
# Below goes validation fields
|
|
|
|
valid_cert:
|
|
|
|
type: "boolean"
|
|
|
|
example: "true"
|
|
|
|
description: "valid_cert is true if the specified certificates chain is a valid chain of X509 certificates"
|
|
|
|
valid_chain:
|
|
|
|
type: "boolean"
|
|
|
|
example: "true"
|
|
|
|
description: "valid_chain is true if the specified certificates chain is verified and issued by a known CA"
|
|
|
|
subject:
|
|
|
|
type: "string"
|
|
|
|
example: "CN=example.org"
|
|
|
|
description: "subject is the subject of the first certificate in the chain"
|
|
|
|
issuer:
|
|
|
|
type: "string"
|
|
|
|
example: "CN=Let's Encrypt Authority X3,O=Let's Encrypt,C=US"
|
|
|
|
description: "issuer is the issuer of the first certificate in the chain"
|
|
|
|
not_before:
|
|
|
|
type: "string"
|
|
|
|
example: "2019-01-31T10:47:32Z"
|
|
|
|
description: "not_before is the NotBefore field of the first certificate in the chain"
|
|
|
|
not_after:
|
|
|
|
type: "string"
|
|
|
|
example: "2019-05-01T10:47:32Z"
|
|
|
|
description: "not_after is the NotAfter field of the first certificate in the chain"
|
|
|
|
dns_names:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
description: "dns_names is the value of SubjectAltNames field of the first certificate in the chain"
|
|
|
|
example:
|
|
|
|
- "*.example.org"
|
|
|
|
valid_key:
|
|
|
|
type: "boolean"
|
|
|
|
example: "true"
|
|
|
|
description: "valid_key is true if the key is a valid private key"
|
|
|
|
key_type:
|
|
|
|
type: "string"
|
|
|
|
example: "RSA"
|
|
|
|
description: "key_type is either RSA or ECDSA"
|
|
|
|
warning_validation:
|
|
|
|
type: "string"
|
|
|
|
example: "You have specified an empty certificate"
|
2019-02-22 17:59:42 +03:00
|
|
|
description: "warning_validation is a validation warning message with the issue description"
|
2019-02-27 17:36:02 +03:00
|
|
|
valid_pair:
|
|
|
|
type: "boolean"
|
|
|
|
example: "true"
|
|
|
|
description: "valid_pair is true if both certificate and private key are correct"
|
2019-02-22 17:59:42 +03:00
|
|
|
NetInterface:
|
|
|
|
type: "object"
|
|
|
|
description: "Network interface info"
|
|
|
|
properties:
|
|
|
|
flags:
|
|
|
|
type: "string"
|
|
|
|
example: "up|broadcast|multicast"
|
|
|
|
hardware_address:
|
|
|
|
type: "string"
|
|
|
|
example: "52:54:00:11:09:ba"
|
|
|
|
mtu:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 1500
|
|
|
|
name:
|
|
|
|
type: "string"
|
|
|
|
example: "eth0"
|
|
|
|
ip_addresses:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
example:
|
|
|
|
- "127.0.0.1"
|
|
|
|
AddressInfo:
|
|
|
|
type: "object"
|
|
|
|
description: "Port information"
|
|
|
|
properties:
|
|
|
|
ip:
|
|
|
|
type: "string"
|
2019-03-20 13:54:23 +03:00
|
|
|
example: "127.0.0.1"
|
2019-02-22 17:59:42 +03:00
|
|
|
port:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 53
|
|
|
|
AddressesInfo:
|
|
|
|
type: "object"
|
|
|
|
description: "AdGuard Home addresses configuration"
|
|
|
|
properties:
|
2019-04-22 12:45:50 +03:00
|
|
|
dns_port:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 53
|
|
|
|
web_port:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 80
|
2019-02-22 17:59:42 +03:00
|
|
|
interfaces:
|
|
|
|
type: "object"
|
|
|
|
description: "Network interfaces dictionary (key is the interface name)"
|
|
|
|
additionalProperties:
|
|
|
|
$ref: "#/definitions/NetInterface"
|
2019-03-19 18:47:22 +03:00
|
|
|
Client:
|
|
|
|
type: "object"
|
|
|
|
description: "Client information"
|
|
|
|
properties:
|
|
|
|
ip:
|
|
|
|
type: "string"
|
|
|
|
description: "IP address"
|
|
|
|
example: "127.0.0.1"
|
|
|
|
name:
|
|
|
|
type: "string"
|
|
|
|
description: "Name"
|
|
|
|
example: "localhost"
|
2019-05-07 10:45:18 +03:00
|
|
|
mac:
|
|
|
|
type: "string"
|
|
|
|
use_global_settings:
|
|
|
|
type: "boolean"
|
|
|
|
filtering_enabled:
|
|
|
|
type: "boolean"
|
|
|
|
parental_enabled:
|
|
|
|
type: "boolean"
|
|
|
|
safebrowsing_enabled:
|
|
|
|
type: "boolean"
|
|
|
|
safesearch_enabled:
|
|
|
|
type: "boolean"
|
2019-07-29 19:04:11 +03:00
|
|
|
use_global_blocked_services:
|
|
|
|
type: "boolean"
|
|
|
|
blocked_services:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "string"
|
2019-05-07 10:45:18 +03:00
|
|
|
ClientAuto:
|
|
|
|
type: "object"
|
|
|
|
description: "Auto-Client information"
|
|
|
|
properties:
|
|
|
|
ip:
|
|
|
|
type: "string"
|
|
|
|
description: "IP address"
|
|
|
|
example: "127.0.0.1"
|
|
|
|
name:
|
|
|
|
type: "string"
|
|
|
|
description: "Name"
|
|
|
|
example: "localhost"
|
|
|
|
source:
|
|
|
|
type: "string"
|
|
|
|
description: "The source of this information"
|
|
|
|
example: "etc/hosts"
|
|
|
|
ClientUpdate:
|
|
|
|
type: "object"
|
|
|
|
description: "Client update request"
|
|
|
|
properties:
|
|
|
|
name:
|
|
|
|
type: "string"
|
|
|
|
data:
|
|
|
|
$ref: "#/definitions/Client"
|
|
|
|
ClientDelete:
|
|
|
|
type: "object"
|
|
|
|
description: "Client delete request"
|
|
|
|
properties:
|
|
|
|
name:
|
|
|
|
type: "string"
|
2019-03-19 18:47:22 +03:00
|
|
|
Clients:
|
2019-05-07 10:45:18 +03:00
|
|
|
type: "object"
|
|
|
|
properties:
|
|
|
|
clients:
|
|
|
|
$ref: "#/definitions/ClientsArray"
|
|
|
|
auto_clients:
|
|
|
|
$ref: "#/definitions/ClientsAutoArray"
|
|
|
|
ClientsArray:
|
2019-03-19 18:47:22 +03:00
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/Client"
|
|
|
|
description: "Clients array"
|
2019-05-07 10:45:18 +03:00
|
|
|
ClientsAutoArray:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/ClientAuto"
|
|
|
|
description: "Auto-Clients array"
|
2019-07-26 17:09:46 +03:00
|
|
|
|
|
|
|
RewriteList:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
$ref: "#/definitions/RewriteEntry"
|
|
|
|
description: "Rewrite rules array"
|
|
|
|
RewriteEntry:
|
|
|
|
type: "object"
|
|
|
|
description: "Rewrite rule"
|
|
|
|
properties:
|
|
|
|
domain:
|
|
|
|
type: "string"
|
|
|
|
description: "Domain name"
|
|
|
|
example: "example.org"
|
|
|
|
answer:
|
|
|
|
type: "string"
|
|
|
|
description: "value of A, AAAA or CNAME DNS record"
|
|
|
|
example: "127.0.0.1"
|
|
|
|
|
2019-07-29 19:14:17 +03:00
|
|
|
BlockedServicesArray:
|
|
|
|
type: "array"
|
|
|
|
items:
|
|
|
|
type: "string"
|
|
|
|
|
2019-04-22 12:45:50 +03:00
|
|
|
CheckConfigRequest:
|
|
|
|
type: "object"
|
|
|
|
description: "Configuration to be checked"
|
|
|
|
properties:
|
|
|
|
dns:
|
|
|
|
$ref: "#/definitions/CheckConfigRequestInfo"
|
|
|
|
web:
|
|
|
|
$ref: "#/definitions/CheckConfigRequestInfo"
|
|
|
|
CheckConfigRequestInfo:
|
|
|
|
type: "object"
|
|
|
|
properties:
|
|
|
|
ip:
|
|
|
|
type: "string"
|
|
|
|
example: "127.0.0.1"
|
|
|
|
port:
|
|
|
|
type: "integer"
|
|
|
|
format: "int32"
|
|
|
|
example: 53
|
|
|
|
autofix:
|
|
|
|
type: "boolean"
|
|
|
|
example: false
|
|
|
|
CheckConfigResponse:
|
|
|
|
type: "object"
|
|
|
|
properties:
|
|
|
|
dns:
|
|
|
|
$ref: "#/definitions/CheckConfigResponseInfo"
|
|
|
|
web:
|
|
|
|
$ref: "#/definitions/CheckConfigResponseInfo"
|
|
|
|
CheckConfigResponseInfo:
|
|
|
|
type: "object"
|
|
|
|
properties:
|
|
|
|
status:
|
|
|
|
type: "string"
|
|
|
|
example: ""
|
|
|
|
can_autofix:
|
|
|
|
type: "boolean"
|
|
|
|
example: false
|
2019-02-22 17:59:42 +03:00
|
|
|
InitialConfiguration:
|
|
|
|
type: "object"
|
|
|
|
description: "AdGuard Home initial configuration (for the first-install wizard)"
|
|
|
|
properties:
|
|
|
|
dns:
|
|
|
|
$ref: "#/definitions/AddressInfo"
|
|
|
|
web:
|
|
|
|
$ref: "#/definitions/AddressInfo"
|
|
|
|
username:
|
|
|
|
type: "string"
|
|
|
|
description: "Basic auth username"
|
|
|
|
example: "admin"
|
|
|
|
password:
|
|
|
|
type: "string"
|
|
|
|
description: "Basic auth password"
|
|
|
|
example: "password"
|