118 KiB
Technitium DNS Server API Documentation
Technitium DNS Server provides a HTTP API which is used by the web console to perform all actions. Thus any action that the web console does can be performed using this API from your own applications.
The URL in the documentation uses localhost and port 5380. You should use the hostname/IP address and port that is specific to your DNS server instance.
API Response Format
The HTTP API returns a JSON formatted response for all requests. The JSON object returned contains status property which indicate if the request was successful.
The status property can have following values:
ok: This indicates that the call was successful.error: This response tells the call failed and provides additional properties that provide details about the error.invalid-token: When a session has expired or an invalid token was provided this response is received.
A successful response will look as shown below. Note that there will be other properties in the response which are specific to the request that was made.
{
"status": "ok"
}
In case of errors, the response will look as shown below. The errorMessage property can be shown in the UI to the user while the other two properties are useful for debugging.
{
"status": "error",
"errorMessage": "error message",
"stackTrace": "application stack trace",
"innerErrorMessage": "inner exception message"
}
Name Server Address Format
The DNS server uses a specific text format to define the name server address to allow specifying multiple parameters like the domain name, IP address, port or URL. This format is used in the web console as well as in this API. It is used to specify forwarder address in DNS settings, conditional forwarder zone's FWD record, or the server address in DNS Client resolve query API calls.
- A name server address with just an IP address is specified just as its string literal with optional port number is as shown:
1.1.1.1or8.8.8.8:53. When port is not specified, the default port number for the selected DNS transport protocol is used. - A name server address with just a domain name is specified similarly as its string literal with optional port number is as shown:
dns.quad9.net:853orcloudflare-dns.com. When port is not specified, the default port number for the selected DNS transport protocol is used. - A combination of domain name and IP address together with optional port number is as shown:
cloudflare-dns.com (1.1.1.1),dns.quad9.net (9.9.9.9:853)ordns.quad9.net:853 (9.9.9.9). Here, the domain name (with optional port number) is specified and the IP address (with optional port number) is specified in a round bracket. When port is not specified, the default port number for the selected DNS transport protocol is used. This allows the DNS server to use the specified IP address instead of trying to resolve it separately. - A name server address that specifies a DNS-over-HTTPS URL is specified just as its string literal is as shown:
https://cloudflare-dns.com/dns-query - A combination of DNS-over-HTTPS URL and IP address together is as shown:
https://cloudflare-dns.com/dns-query (1.1.1.1). Here, the IP address of the domain name in the URL is specified in the round brackets. This allows the DNS server to use the specified IP address instead of trying to resolve it separately. - IPv6 addresses must always be enclosed in square brackets as shown:
cloudflare-dns.com ([2606:4700:4700::1111]:853)or[2606:4700:4700::1111]
Authentication API Calls
These API calls allow to login or logout using credentials. Once logged in, a session token is returned which MUST be used with all other API calls.
Login
This call authenticates with the server and generates a session token to be used for subsequent API calls. The session token expires in 30 minutes from the last API call.
URL:
http://localhost:5380/api/login?user=admin&pass=admin
WHERE:
user: The username. The built-in administrator username on the DNS server isadmin.pass: The password for the user. The default password foradminuser isadmin.
WARNING: It is highly recommended to change the password on first use to avoid security related issues.
RESPONSE:
{
"status": "ok",
"token": "932b2a3495852c15af01598f62563ae534460388b6a370bfbbb8bb6094b698e9"
}
WHERE:
token: Is the session token generated that MUST be used with all subsequent API calls.
Logout
This call ends the session generated by the login call. The token generated by the login call would no longer be valid after calling logout.
URL:
http://localhost:5380/api/logout?token=932b2a3495852c15af01598f62563ae534460388b6a370bfbbb8bb6094b698e9
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"status": "ok"
}
Change Password
This call allows changing the password for the current logged in user.
NOTE: It is highly recommended to change the admin user password on first use to avoid security related issues.
URL:
http://localhost:5380/api/changePassword?token=x&pass=password
WHERE:
token: The session token generated by thelogincall.pass: The new password for the currently logged in user.
RESPONSE:
{
"status": "ok"
}
General DNS API Calls
Check For Update
This call requests the server to check for software update.
URL:
http://localhost:5380/api/checkForUpdate?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"updateAvailable": true,
"updateVersion": "7.0",
"currentVersion": "7.0",
"updateTitle": "New Update Available!",
"updateMessage": "Follow the instructions from the link below to update the DNS server to the latest version. Read the change logs before installing the update to know if there are any breaking changes.",
"downloadLink": "https://download.technitium.com/dns/DnsServerSetup.zip",
"instructionsLink": "https://blog.technitium.com/2017/11/running-dns-server-on-ubuntu-linux.html",
"changeLogLink": "https://github.com/TechnitiumSoftware/DnsServer/blob/master/CHANGELOG.md"
},
"status": "ok"
}
Get DNS Settings
This call returns all the DNS server settings.
URL:
http://localhost:5380/api/getDnsSettings?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"version": "8.0",
"dnsServerDomain": "server1",
"dnsServerLocalEndPoints": [
"0.0.0.0:53",
"[::]:53"
],
"webServiceLocalAddresses": [
"0.0.0.0",
"[::]"
],
"webServiceHttpPort": 5380,
"webServiceEnableTls": false,
"webServiceHttpToTlsRedirect": false,
"webServiceTlsPort": 53443,
"webServiceUseSelfSignedTlsCertificate": false,
"webServiceTlsCertificatePath": null,
"webServiceTlsCertificatePassword": "************",
"enableDnsOverHttp": false,
"enableDnsOverTls": false,
"enableDnsOverHttps": false,
"dnsTlsCertificatePath": null,
"dnsTlsCertificatePassword": "************",
"tsigKeys": [
{
"keyName": "key.example.com",
"sharedSecret": "AQ==",
"algorithmName": "hmac-sha256"
}
],
"defaultRecordTtl": 3600,
"preferIPv6": false,
"udpPayloadSize": 1232,
"dnssecValidation": false,
"enableLogging": true,
"logQueries": true,
"useLocalTime": false,
"logFolder": "logs",
"maxLogFileDays": 365,
"maxStatFileDays": 365,
"recursion": "AllowOnlyForPrivateNetworks",
"recursionDeniedNetworks": [],
"recursionAllowedNetworks": [
"192.168.1.0/24"
],
"randomizeName": true,
"qnameMinimization": true,
"nsRevalidation": true,
"qpmLimitRequests", 0,
"qpmLimitErrors", 0,
"qpmLimitSampleMinutes": 5,
"qpmLimitIPv4PrefixLength": 24,
"qpmLimitIPv6PrefixLength": 56,
"serveStale": true,
"serveStaleTtl": 259200,
"temporaryDisableBlockingTill": "2021-10-10T01:14:27.1106773Z",
"cacheMinimumRecordTtl": 10,
"cacheMaximumRecordTtl": 86400,
"cacheNegativeRecordTtl": 300,
"cacheFailureRecordTtl": 60,
"cachePrefetchEligibility": 2,
"cachePrefetchTrigger": 9,
"cachePrefetchSampleIntervalInMinutes": 5,
"cachePrefetchSampleEligibilityHitsPerHour": 30,
"proxy": {
"type": "Socks5",
"address": "192.168.10.2",
"port": 9050,
"username": "username",
"password": "password",
"bypass": [
"127.0.0.0/8",
"169.254.0.0/16",
"fe80::/10",
"::1",
"localhost"
]
},
"forwarders": [
"https://cloudflare-dns.com/dns-query (1.1.1.1)",
"https://cloudflare-dns.com/dns-query (1.0.0.1)"
],
"forwarderProtocol": "Https",
"enableBlocking": true,
"allowTxtBlockingReport": true,
"blockingType": "AnyAddress",
"customBlockingAddresses": [],
"blockListUrls": [
"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
],
"blockListUpdateIntervalHours": 24,
"blockListNextUpdatedOn": "2021-09-11T12:09:22.244Z"
},
"status": "ok"
}
Set DNS Settings
This call allows to change the DNS server settings.
URL:
http://localhost:5380/api/setDnsSettings?token=x&dnsServerDomain=server1&dnsServerLocalEndPoints=0.0.0.0:53,[::]:53&webServiceLocalAddresses=0.0.0.0,[::]&webServiceHttpPort=5380&webServiceEnableTls=false&webServiceTlsPort=53443&webServiceTlsCertificatePath=&webServiceTlsCertificatePassword=&enableDnsOverHttp=false&enableDnsOverTls=false&enableDnsOverHttps=false&dnsTlsCertificatePath=&dnsTlsCertificatePassword=&preferIPv6=false&logQueries=true&allowRecursion=true&allowRecursionOnlyForPrivateNetworks=true&randomizeName=true&cachePrefetchEligibility=2&cachePrefetchTrigger=9&cachePrefetchSampleIntervalInMinutes=5&cachePrefetchSampleEligibilityHitsPerHour=30&proxyType=socks5&proxyAddress=192.168.10.2&proxyPort=9050&proxyUsername=username&proxyPassword=password&proxyBypass=127.0.0.0/8,169.254.0.0/16,fe80::/10,::1,localhost&forwarders=192.168.10.2&forwarderProtocol=Udp&useNxDomainForBlocking=false&blockListUrls=https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts,https://mirror1.malwaredomains.com/files/justdomains,https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt,https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt
WHERE:
token: The session token generated by thelogincall.dnsServerDomain(optional): The primary domain name used by this DNS Server to identify itself.dnsServerLocalEndPoints(optional): Local end points are the network interface IP addresses and ports you want the DNS Server to listen for requests.webServiceLocalAddresses(optional): Local addresses are the network interface IP addresses you want the web service to listen for requests.webServiceHttpPort(optional): Specify the TCP port number for the web console and this API web service. Default value is5380.webServiceEnableTls(optional): Set this totrueto start the HTTPS service to acccess web service.webServiceTlsPort(optional): Specified the TCP port number for the web console for HTTPS access.webServiceUseSelfSignedTlsCertificate(optional): Settruefor the web service to use an automatically generated self signed certificate when TLS certificate path is not specified.webServiceTlsCertificatePath(optional): Specify a PKCS #12 certificate (.pfx) file path on the server. The certificate must contain private key. This certificate is used by the web console for HTTPS access.webServiceTlsCertificatePassword(optional): Enter the certificate (.pfx) password, if any.enableDnsOverHttp(optional): Enable this option to accept DNS-over-HTTP requests for both wire and json response formats. It must be used with a TLS terminating reverse proxy like nginx and will work only on private networks.enableDnsOverTls(optional): Enable this option to accept DNS-over-TLS requests.enableDnsOverHttps(optional): Enable this option to accept DNS-over-HTTPS requests for both wire and json response formats.dnsTlsCertificatePath(optional): Specify a PKCS #12 certificate (.pfx) file path on the server. The certificate must contain private key. This certificate is used by the DNS-over-TLS and DNS-over-HTTPS optional protocols.dnsTlsCertificatePassword(optional): Enter the certificate (.pfx) password, if any.tsigKeys(optional): A pipe|separated multi row list of TSIG key name, shared secret, and algorithm. Set this parameter tofalseto remove all existing keys. Supported algorithms are [hmac-md5.sig-alg.reg.int,hmac-sha1,hmac-sha256,hmac-sha256-128,hmac-sha384,hmac-sha384-192,hmac-sha512,hmac-sha512-256].defaultRecordTtl(optional): The default TTL value to use if not specified when adding or updating records in a Zone.preferIPv6(optional): DNS Server will use IPv6 for querying whenever possible with this option enabled. Default value isfalse.udpPayloadSize(optional): The maximum EDNS UDP payload size that can be used to avoid IP fragmentation. Valid range is 512-4096 bytes. Default value is1232.dnssecValidation(optional): Set this totrueto enable DNSSEC validation. DNS Server will validate all responses from name servers or forwarders when this option is enabled.enableLogging(optional): Enable this option to log error and audit logs into the log file. Default value istrue.logQueries(optional): Enable this option to log every query received by this DNS Server and the corresponding response answers into the log file. Default value isfalse.useLocalTime(optional): Enable this option to use local time instead of UTC for logging. Default value isfalse.logFolder(optional): The folder path on the server where the log files should be saved. The path can be relative to the DNS server config folder. Default value islogs.maxLogFileDays(optional): Max number of days to keep the log files. Log files older than the specified number of days will be deleted automatically. Recommended value is365. Set0to disable auto delete.maxStatFileDays(optional): Max number of days to keep the dashboard stats. Stat files older than the specified number of days will be deleted automatically. Recommended value is365. Set0to disable auto delete.recursion(optional): Sets the recursion policy for the DNS server. Valid values are [Deny,Allow,AllowOnlyForPrivateNetworks,UseSpecifiedNetworks].recursionDeniedNetworks(optional): A comma separated list of network addresses in CIDR format that must be denied recursion. Set this parameter tofalseto remove existing values. These values are only used whenrecursionis set toUseSpecifiedNetworks.recursionAllowedNetworks(optional): A comma separated list of network addresses in CIDR format that must be allowed recursion. Set this parameter tofalseto remove existing values. These values are only used whenrecursionis set toUseSpecifiedNetworks.randomizeName(optional): Enables QNAME randomization draft-vixie-dnsext-dns0x20-00 when using UDP as the transport protocol. Default value istrue.qnameMinimization(optional): Enables QNAME minimization draft-ietf-dnsop-rfc7816bis-04 when doing recursive resolution. Default value istrue.nsRevalidation(optional): Enables draft-ietf-dnsop-ns-revalidation for recursive resolution. Default value istrue.qpmLimitRequests(optional): Sets the Queries Per Minute (QPM) limit on total number of requests that is enforces per client subnet. Set value to0to disable the feature.qpmLimitErrors(optional): Sets the Queries Per Minute (QPM) limit on total number of requests which generates an error response that is enforces per client subnet. Set value to0to disable the feature. Response with an RCODE of FormatError, ServerFailure, or Refused is considered as an error response.qpmLimitSampleMinutes(optional): Sets the client query stats sample size in minutes for QPM limit feature. Default value is5.qpmLimitIPv4PrefixLength(optional): Sets the client subnet IPv4 prefix length used to define the subnet. Default value is24.qpmLimitIPv6PrefixLength(optional): Sets the client subnet IPv6 prefix length used to define the subnet. Default value is56.serveStale(optional): Enable the serve stale feature to improve resiliency by using expired or stale records in cache when the DNS server is unable to reach the upstream or authoritative name servers. Default value istrue.serveStaleTtl(optional): The TTL value in seconds which should be used for cached records that are expired. When the serve stale TTL too expires for a stale record, it gets removed from the cache. Recommended value is between 1-3 days and maximum supported value is 7 days. Default value is259200.temporaryDisableBlockingTill(read only): An ISO 8601 String with the Date and Time when the Temporary Blocking will end.cacheMinimumRecordTtl(optional): The minimum TTL value that a record can have in cache. Set a value to make sure that the records with TTL value than it stays in cache for a minimum duration. Default value is10.cacheMaximumRecordTtl(optional): The maximum TTL value that a record can have in cache. Set a lower value to allow the records to expire early. Default value is86400.cacheNegativeRecordTtl(optional): The negative TTL value to use when there is no SOA MINIMUM value available. Default value is300.cacheFailureRecordTtl(optional): The failure TTL value to used for caching failure responses. This allows storing failure record in cache and prevent frequent recursive resolution to name servers that are responding withServerFailure. Default value is60.cachePrefetchEligibility(optional): The minimum initial TTL value of a record needed to be eligible for prefetching.cachePrefetchTrigger(optional): A record with TTL value less than trigger value will initiate prefetch operation immediately for itself. Set0to disable prefetching & auto prefetching.cachePrefetchSampleIntervalInMinutes(optional): The interval to sample eligible domain names from last hour stats for auto prefetch.cachePrefetchSampleEligibilityHitsPerHour(optional): Minimum required hits per hour for a domain name to be eligible for auto prefetch.proxyType(optional): The type of proxy protocol to be used. Valid values are [None,Http,Socks5].proxyAddress(optional): The proxy server hostname or IP address.proxyPort(optional): The proxy server port.proxyUsername(optional): The proxy server username.proxyPassword(optional): The proxy server password.proxyBypass(optional): A comma separated bypass list consisting of IP addresses, network addresses in CIDR format, or host/domain names to never use proxy for.forwarders(optional): A comma separated list of forwarders to be used by this DNS server. Set this parameter tofalsestring to remove existing forwarders so that the DNS server does recursive resolution by itself.forwarderProtocol(optional): The forwarder DNS transport protocol to be used. Valid values are [Udp,Tcp,Tls,Https].enableBlocking(optional): Sets the DNS server to block domain names using Blocked Zone and Block List Zone.allowTxtBlockingReport(optional): Specifies if the DNS Server should respond with TXT records containing a blocked domain report for TXT type requests.blockingType(optional): Sets how the DNS server should respond to a blocked domain request. Valid values are [AnyAddress,NxDomain,CustomAddress] whereAnyAddressis default which response with0.0.0.0and::IP addresses for blocked domains. UsingNxDomainwill respond withNX Domainresponse.CustomAddresswill return the specified custom blocking addresses.blockListNextUpdatedOn(read only): An ISO 8601 String with the Date and Time when the blocklist will next be updated.customBlockingAddresses(optional): Set the custom blocking addresses to be used for blocked domain response. These addresses are returned only whenblockingTypeis set toCustomAddress.blockListUrls(optional): A comma separated list of block list URLs that this server must automatically download and use with the block lists zone. DNS Server will use the data returned by the block list URLs to update the block list zone automatically every 24 hours. The expected file format is standard hosts file format or plain text file containing list of domains to block. Set this parameter tofalseto remove existing values.blockListUpdateIntervalHours(optional): The interval in hours to automatically download and update the block lists. Default value is24.
RESPONSE:
This call returns the newly updated settings in the same format as that of the getDnsSettings call.
Force Update Block Lists
This call allows to reset the next update schedule and force download and update of the block lists.
URL:
http://localhost:5380/api/forceUpdateBlockLists?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"status": "ok"
}
Temporarily Disable Block Lists
This call temporarily disables the block lists and block list zones.
URL:
http://localhost:5380/api/temporaryDisableBlocking?token=x&minutes=5
WHERE:
token: The session token generated by thelogincall.minutes: The time in minutes to disable the blocklist for.
RESPONSE:
{
"status": "ok",
"response": {
"temporaryDisableBlockingTill": "2021-10-10T01:14:27.1106773Z"
}
}
Backup Settings
This call returns a zip file containing copies of all the items that were requested to be backed up.
URL:
http://localhost:5380/api/backupSettings?token=x&blockLists=true&logs=true&scopes=true&stats=true&zones=true&allowedZones=true&blockedZones=true&dnsSettings=true&logSettings=true
WHERE:
token: The session token generated by thelogincall.blockLists(optional): Set totrueto backup block lists cache files. Default value isfalse.logs(optional): Set totrueto backup log files. Default value isfalse.scopes(optional): Set totrueto backup DHCP scope files. Default value isfalse.apps(optional): Set totrueto backup the installed DNS apps. Default value isfalse.stats(optional): Set totrueto backup dashboard stats files. Default value isfalse.zones(optional): Set totrueto backup DNS zone files. Default value isfalse.allowedZones(optional): Set totrueto backup allowed zones file. Default value isfalse.blockedZones(optional): Set totrueto backup blocked zones file. Default value isfalse.dnsSettings(optional): Set totrueto backup DNS settings file. Default value isfalse.logSettings(optional): Set totrueto backup log settings file. Default value isfalse.
RESPONSE:
A zip file with content type application/zip and content disposition set to attachment.
Restore Settings
This call restores selected items from a given backup zip file.
URL:
http://localhost:5380/api/restoreSettings?token=x&blockLists=true&logs=true&scopes=true&stats=true&zones=true&allowedZones=true&blockedZones=true&dnsSettings=true&logSettings=true&deleteExistingFiles=true
WHERE:
token: The session token generated by thelogincall.blockLists(optional): Set totrueto restore block lists cache files. Default value isfalse.logs(optional): Set totrueto restore log files. Default value isfalse.scopes(optional): Set totrueto restore DHCP scope files. Default value isfalse.apps(optional): Set totrueto restore the DNS apps. Default value isfalse.stats(optional): Set totrueto restore dashboard stats files. Default value isfalse.zones(optional): Set totrueto restore DNS zone files. Default value isfalse.allowedZones(optional): Set totrueto restore allowed zones file. Default value isfalse.blockedZones(optional): Set totrueto restore blocked zones file. Default value isfalse.dnsSettings(optional): Set totrueto restore DNS settings file. Default value isfalse.logSettings(optional): Set totrueto restore log settings file. Default value isfalse.deleteExistingFiles(optional). Set totrueto delete existing files for selected items. Default value isfalse.
REQUEST:
This is a POST request call where the request must be multi-part form data with the backup zip file data in binary format.
RESPONSE:
This call returns the newly updated settings in the same format as that of the getDnsSettings call.
Get Stats
This call returns the stats that are shown on the web console's dashboard.
URL:
http://localhost:5380/api/getStats?token=x&type=lastHour
WHERE:
token: The session token generated by thelogincall.type: The duration type for which valid values are: [lastHour,lastDay,lastWeek,lastMonth,lastYear,custom]start(optional): The start date in UTC. Applies only tocustomtype.end(optional): The end date in UTC. Applies only tocustomtype.
RESPONSE:
{
"response": {
"stats": {
"totalQueries": 1857,
"totalNoError": 1820,
"totalServerFailure": 0,
"totalNxDomain": 37,
"totalRefused": 0,
"totalAuthoritative": 1358,
"totalRecursive": 160,
"totalCached": 228,
"totalBlocked": 111,
"totalClients": 831,
"allowedZones": 6,
"blockedZones": 1136182
},
"mainChartData": {
"labels": [
"15:55",
"15:56",
"15:57",
"15:58",
"15:59",
"16:00",
"16:01",
"16:02",
"16:03",
"16:04",
"16:05",
"16:06",
"16:07",
"16:08",
"16:09",
"16:10",
"16:11",
"16:12",
"16:13",
"16:14",
"16:15",
"16:16",
"16:17",
"16:18",
"16:19",
"16:20",
"16:21",
"16:22",
"16:23",
"16:24",
"16:25",
"16:26",
"16:27",
"16:28",
"16:29",
"16:30",
"16:31",
"16:32",
"16:33",
"16:34",
"16:35",
"16:36",
"16:37",
"16:38",
"16:39",
"16:40",
"16:41",
"16:42",
"16:43",
"16:44",
"16:45",
"16:46",
"16:47",
"16:48",
"16:49",
"16:50",
"16:51",
"16:52",
"16:53",
"16:54"
],
"datasets": [
{
"label": "Total",
"backgroundColor": "rgba(102, 153, 255, 0.1)",
"borderColor": "rgb(102, 153, 255)",
"borderWidth": 2,
"fill": true,
"data": [
38,
55,
26,
54,
38,
19,
31,
19,
36,
40,
18,
37,
23,
30,
31,
23,
17,
9,
34,
55,
18,
6,
13,
38,
30,
47,
31,
33,
52,
44,
22,
30,
23,
19,
37,
23,
27,
24,
33,
34,
21,
29,
39,
36,
15,
63,
49,
22,
27,
25,
38,
34,
32,
29,
30,
39,
22,
38,
24,
28
]
},
{
"label": "No Error",
"backgroundColor": "rgba(92, 184, 92, 0.1)",
"borderColor": "rgb(92, 184, 92)",
"borderWidth": 2,
"fill": true,
"data": [
37,
53,
24,
52,
37,
19,
31,
19,
36,
38,
15,
35,
23,
29,
31,
23,
17,
9,
34,
53,
17,
6,
13,
37,
30,
47,
31,
33,
52,
42,
21,
30,
23,
19,
37,
23,
27,
24,
33,
32,
20,
29,
39,
35,
15,
58,
49,
22,
27,
23,
37,
34,
32,
29,
30,
39,
22,
38,
24,
26
]
},
{
"label": "Server Failure",
"backgroundColor": "rgba(217, 83, 79, 0.1)",
"borderColor": "rgb(217, 83, 79)",
"borderWidth": 2,
"fill": true,
"data": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
},
{
"label": "NX Domain",
"backgroundColor": "rgba(7, 7, 7, 0.1)",
"borderColor": "rgb(7, 7, 7)",
"borderWidth": 2,
"fill": true,
"data": [
1,
2,
2,
2,
1,
0,
0,
0,
0,
2,
3,
2,
0,
1,
0,
0,
0,
0,
0,
2,
1,
0,
0,
1,
0,
0,
0,
0,
0,
2,
1,
0,
0,
0,
0,
0,
0,
0,
0,
2,
1,
0,
0,
1,
0,
5,
0,
0,
0,
2,
1,
0,
0,
0,
0,
0,
0,
0,
0,
2
]
},
{
"label": "Refused",
"backgroundColor": "rgba(91, 192, 222, 0.1)",
"borderColor": "rgb(91, 192, 222)",
"borderWidth": 2,
"fill": true,
"data": [
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
]
},
{
"label": "Authoritative",
"backgroundColor": "rgba(150, 150, 0, 0.1)",
"borderColor": "rgb(150, 150, 0)",
"borderWidth": 2,
"fill": true,
"data": [
23,
27,
20,
29,
28,
17,
19,
16,
32,
35,
15,
32,
17,
14,
23,
20,
7,
6,
17,
34,
11,
3,
11,
28,
12,
38,
23,
29,
35,
41,
18,
20,
16,
10,
21,
21,
22,
20,
20,
24,
17,
26,
28,
22,
10,
46,
44,
22,
15,
21,
33,
28,
26,
19,
24,
32,
18,
34,
18,
21
]
},
{
"label": "Recursive",
"backgroundColor": "rgba(23, 162, 184, 0.1)",
"borderColor": "rgb(23, 162, 184)",
"borderWidth": 2,
"fill": true,
"data": [
6,
8,
2,
7,
2,
1,
2,
1,
1,
2,
0,
3,
2,
6,
2,
0,
3,
2,
9,
3,
2,
1,
0,
3,
6,
2,
4,
1,
7,
0,
0,
7,
1,
5,
6,
0,
2,
1,
3,
3,
0,
1,
2,
3,
1,
7,
2,
0,
6,
2,
2,
3,
0,
4,
2,
1,
1,
3,
0,
4
]
},
{
"label": "Cached",
"backgroundColor": "rgba(111, 84, 153, 0.1)",
"borderColor": "rgb(111, 84, 153)",
"borderWidth": 2,
"fill": true,
"data": [
6,
14,
3,
12,
6,
0,
6,
1,
3,
0,
2,
1,
3,
6,
3,
2,
6,
1,
6,
6,
2,
1,
0,
5,
10,
5,
3,
2,
6,
1,
2,
2,
4,
3,
8,
2,
2,
2,
4,
5,
2,
1,
7,
8,
3,
10,
2,
0,
6,
1,
1,
2,
5,
6,
3,
5,
2,
1,
5,
2
]
},
{
"label": "Blocked",
"backgroundColor": "rgba(255, 165, 0, 0.1)",
"borderColor": "rgb(255, 165, 0)",
"borderWidth": 2,
"fill": true,
"data": [
3,
6,
1,
6,
2,
1,
4,
1,
0,
3,
1,
1,
1,
4,
3,
1,
1,
0,
2,
12,
3,
1,
2,
2,
2,
2,
1,
1,
4,
2,
2,
1,
2,
1,
2,
0,
1,
1,
6,
2,
2,
1,
2,
3,
1,
0,
1,
0,
0,
1,
2,
1,
1,
0,
1,
1,
1,
0,
1,
1
]
},
{
"label": "Clients",
"backgroundColor": "rgba(51, 122, 183, 0.1)",
"borderColor": "rgb(51, 122, 183)",
"borderWidth": 2,
"fill": true,
"data": [
15,
21,
13,
21,
17,
15,
14,
15,
22,
29,
13,
21,
17,
12,
18,
12,
9,
6,
16,
29,
11,
5,
10,
26,
13,
28,
20,
24,
24,
31,
14,
15,
12,
13,
18,
15,
14,
18,
15,
22,
13,
18,
21,
14,
11,
28,
32,
18,
14,
13,
22,
18,
16,
15,
18,
20,
13,
26,
15,
17
]
}
]
},
"queryResponseChartData": {
"labels": [
"Authoritative",
"Recursive",
"Cached",
"Blocked"
],
"datasets": [
{
"data": [
1358,
160,
228,
111
],
"backgroundColor": [
"rgba(150, 150, 0, 0.5)",
"rgba(23, 162, 184, 0.5)",
"rgba(111, 84, 153, 0.5)",
"rgba(255, 165, 0, 0.5)"
]
}
]
},
"queryTypeChartData": {
"labels": [
"A",
"AAAA",
"NS",
"MX",
"Others"
],
"datasets": [
{
"data": [
1430,
410,
12,
2,
2
],
"backgroundColor": [
"rgba(102, 153, 255, 0.5)",
"rgba(92, 184, 92, 0.5)",
"rgba(91, 192, 222, 0.5)",
"rgba(255, 165, 0, 0.5)",
"rgba(51, 122, 183, 0.5)"
]
}
]
},
"topClients": [
{
"name": "192.168.10.5",
"domain": "server1.local",
"hits": 236
},
{
"name": "192.168.10.4",
"domain": "nas1.local",
"hits": 16
},
{
"name": "192.168.10.6",
"domain": "server2.local",
"hits": 14
},
{
"name": "192.168.10.3",
"domain": "nas2.local",
"hits": 12
},
{
"name": "217.31.193.175",
"domain": "condor175.knot-resolver.cz",
"hits": 10
},
{
"name": "162.158.180.45",
"hits": 9
},
{
"name": "217.31.193.163",
"domain": "gondor-resolver.labs.nic.cz",
"hits": 9
},
{
"name": "210.245.24.68",
"hits": 8
},
{
"name": "101.91.16.140",
"hits": 8
}
],
"topDomains": [
{
"name": "ns1.technitium.net",
"hits": 823
},
{
"name": "download.technitium.com",
"hits": 179
},
{
"name": "go.technitium.com",
"hits": 171
},
{
"name": "technitium.com",
"hits": 95
},
{
"name": "www.google.com",
"hits": 58
},
{
"name": "www.wd2go.com",
"hits": 28
},
{
"name": "graph.facebook.com",
"hits": 20
},
{
"name": "dnsclient.net",
"hits": 17
},
{
"name": "blog.technitium.com",
"hits": 16
},
{
"name": "profile.accounts.firefox.com",
"hits": 13
}
],
"topBlockedDomains": [
{
"name": "ssl.google-analytics.com",
"hits": 27
},
{
"name": "www.googleadservices.com",
"hits": 20
},
{
"name": "incoming.telemetry.mozilla.org",
"hits": 9
},
{
"name": "s.youtube.com",
"hits": 7
},
{
"name": "mobile.pipe.aria.microsoft.com",
"hits": 6
},
{
"name": "in.api.glance.inmobi.com",
"hits": 6
},
{
"name": "app-measurement.com",
"hits": 5
},
{
"name": "dc.services.visualstudio.com",
"hits": 3
},
{
"name": "settings.crashlytics.com",
"hits": 3
},
{
"name": "register.appsflyer.com",
"hits": 2
}
]
},
"status": "ok"
}
Get Top Stats
This call returns the top stats data for specified stats type.
URL:
http://localhost:5380/api/getStats?token=x&type=lastHour&statsType=TopClients&limit=1000
WHERE:
token: The session token generated by thelogincall.type(optional): The duration type for which valid values are: [lastHour,lastDay,lastWeek,lastMonth,lastYear]. Default value islastHour.statsType: The stats type for which valid values are : [TopClients,TopDomains,TopBlockedDomains]limit(optional): The limit of records to return. Default value is1000.
RESPONSE:
The response json will include the object with definition same in the getStats response depending on the statsType. For example below is the response for TopClients:
{
"response": {
"topClients": [
{
"name": "192.168.10.5",
"domain": "server1.local",
"hits": 236
},
{
"name": "192.168.10.4",
"domain": "nas1.local",
"hits": 16
},
{
"name": "192.168.10.6",
"domain": "server2.local",
"hits": 14
},
{
"name": "192.168.10.3",
"domain": "nas2.local",
"hits": 12
},
{
"name": "217.31.193.175",
"domain": "condor175.knot-resolver.cz",
"hits": 10
},
{
"name": "162.158.180.45",
"hits": 9
},
{
"name": "217.31.193.163",
"domain": "gondor-resolver.labs.nic.cz",
"hits": 9
},
{
"name": "210.245.24.68",
"hits": 8
},
{
"name": "101.91.16.140",
"hits": 8
}
],
},
"status": "ok"
}
DNS Cache API Calls
Flush DNS Cache
This call clears all the DNS cache from the server forcing the DNS server to make recursive queries again to populate the cache.
URL:
http://localhost:5380/api/flushDnsCache?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"status": "ok"
}
List Cached Zones
List all cached zones.
URL:
http://localhost:5380/api/listCachedZones?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain(Optional): The domain name to list records. If not passed, the domain is set to empty string which corresponds to the zone root.direction(Optional): Allows specifying the direction of browsing the zone. Valid values are [up,down] and the default value isdownwhen parameter is missing. This option allows the server to skip empty labels in the domain name when browsing up or down.
RESPONSE:
{
"response": {
"domain": "google.com",
"zones": [],
"records": [
{
"name": "google.com",
"type": "A",
"ttl": "283 (4 mins 43 sec)",
"rData": {
"value": "216.58.199.174"
}
}
]
},
"status": "ok"
}
Delete Cached Zone
Deletes a specific zone from the DNS cache.
URL:
http://localhost:5380/api/deleteCachedZone?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name to delete cached records from.
RESPONSE:
{
"status": "ok"
}
Allowed Zones API Calls
List Allowed Zones
List all allowed zones.
URL:
http://localhost:5380/api/listAllowedZones?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain(Optional): The domain name to list records. If not passed, the domain is set to empty string which corresponds to the zone root.direction(Optional): Allows specifying the direction of browsing the zone. Valid values are [up,down] and the default value isdownwhen parameter is missing. This option allows the server to skip empty labels in the domain name when browsing up or down.
RESPONSE:
{
"response": {
"domain": "google.com",
"zones": [],
"records": [
{
"name": "google.com",
"type": "NS",
"ttl": "14400 (4 hours)",
"rData": {
"value": "server1"
}
},
{
"name": "google.com",
"type": "SOA",
"ttl": "14400 (4 hours)",
"rData": {
"primaryNameServer": "server1",
"responsiblePerson": "hostadmin.server1",
"serial": 1,
"refresh": 14400,
"retry": 3600,
"expire": 604800,
"minimum": 900
}
}
]
},
"status": "ok"
}
Import Allowed Zones
Imports domain names into the Allowed Zones.
URL:
http://localhost:5380/api/importAllowedZones?token=x
WHERE:
token: The session token generated by thelogincall.
REQUEST:
This is a POST request call where the content type of the request must be application/x-www-form-urlencoded and the content must be as shown below:
allowedZones=google.com,twitter.com
WHERE:
allowedZones: A list of comma separated domain names that are to be imported.
RESPONSE:
{
"status": "ok"
}
Export Allowed Zones
Allows exporting all the zones from the Allowed Zones as a text file.
URL:
http://localhost:5380/api/exportAllowedZones?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
Response is a downloadable text file with Content-Type: text/plain and Content-Disposition: attachment.
Delete Allowed Zone
Allows deleting a zone from the Allowed Zones.
URL:
http://localhost:5380/api/deleteAllowedZone?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name for the zone to be deleted.
RESPONSE:
{
"status": "ok"
}
Flush Allowed Zone
Flushes the Allowed zone to clear all records.
URL:
http://localhost:5380/api/flushAllowedZone?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"status": "ok"
}
Allow Zone
Adds a domain name into the Allowed Zones.
URL:
http://localhost:5380/api/allowZone?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name for the zone to be added.
RESPONSE:
{
"status": "ok"
}
Blocked Zones API Calls
List Blocked Zones
List all blocked zones.
URL:
http://localhost:5380/api/listBlockedZones?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain(Optional): The domain name to list records. If not passed, the domain is set to empty string which corresponds to the zone root.direction(Optional): Allows specifying the direction of browsing the zone. Valid values are [up,down] and the default value isdownwhen parameter is missing. This option allows the server to skip empty labels in the domain name when browsing up or down.
RESPONSE:
{
"response": {
"domain": "google.com",
"zones": [],
"records": [
{
"name": "google.com",
"type": "NS",
"ttl": "14400 (4 hours)",
"rData": {
"value": "server1"
}
},
{
"name": "google.com",
"type": "SOA",
"ttl": "14400 (4 hours)",
"rData": {
"primaryNameServer": "server1",
"responsiblePerson": "hostadmin.server1",
"serial": 1,
"refresh": 14400,
"retry": 3600,
"expire": 604800,
"minimum": 900
}
}
]
},
"status": "ok"
}
Import Blocked Zones
Imports domain names into Blocked Zones.
URL:
http://localhost:5380/api/importBlockedZones?token=x
WHERE:
token: The session token generated by thelogincall.
REQUEST:
This is a POST request call where the content type of the request must be application/x-www-form-urlencoded and the content must be as shown below:
blockedZones=google.com,twitter.com
WHERE:
blockedZones: A list of comma separated domain names that are to be imported.
RESPONSE:
{
"status": "ok"
}
Export Blocked Zones
Allows exporting all the zones from the Blocked Zones as a text file.
URL:
http://localhost:5380/api/exportBlockedZones?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
Response is a downloadable text file with Content-Type: text/plain and Content-Disposition: attachment.
Delete Blocked Zone
Allows deleting a zone from the Blocked Zones.
URL:
http://localhost:5380/api/deleteBlockedZone?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name for the zone to be deleted.
RESPONSE:
{
"status": "ok"
}
Flush Blocked Zone
Flushes the Blocked zone to clear all records.
URL:
http://localhost:5380/api/flushBlockedZone?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"status": "ok"
}
Block Zone
Adds a domain name into the Blocked Zones.
URL:
http://localhost:5380/api/blockZone?token=x&domain=google.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name for the zone to be added.
RESPONSE:
{
"status": "ok"
}
Authoritative Zone API Calls
List Zones
List all authoritative zones hosted on this DNS server.
URL:
http://localhost:5380/api/zone/list?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"zones": [
{
"name": "",
"type": "Secondary",
"dnssecStatus": "SignedWithNSEC",
"expiry": "2022-02-26T07:57:08.1842183Z",
"isExpired": false,
"syncFailed": false,
"disabled": false
},
{
"name": "0.in-addr.arpa",
"type": "Primary",
"internal": true,
"dnssecStatus": "Unsigned",
"disabled": false
},
{
"name": "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa",
"type": "Primary",
"internal": true,
"dnssecStatus": "Unsigned",
"disabled": false
},
{
"name": "127.in-addr.arpa",
"type": "Primary",
"internal": true,
"dnssecStatus": "Unsigned",
"disabled": false
},
{
"name": "255.in-addr.arpa",
"type": "Primary",
"internal": true,
"dnssecStatus": "Unsigned",
"disabled": false
},
{
"name": "example.com",
"type": "Primary",
"internal": false,
"dnssecStatus": "SignedWithNSEC",
"notifyFailed": false,
"disabled": false
},
{
"name": "localhost",
"type": "Primary",
"internal": true,
"dnssecStatus": "Unsigned",
"disabled": false
}
]
},
"status": "ok"
}
Create Zone
Creates a new authoritative zone.
URL:
http://localhost:5380/api/zone/create?token=x&zone=example.com&type=Primary
WHERE:
token: The session token generated by thelogincall.zone: The domain name for creating the new zone. The value can be valid domain name, an IP address, or an network address in CIDR format. When value is IP address or network address, a reverse zone is created.type: The type of zone to be created. Valid values are [primary,secondary,stub,forwarder].primaryNameServerAddresses(optional): List of comma separated IP addresses of the primary name server. This optional parameter is used only with Secondary and Stub zones. If this parameter is not used, the DNS server will try to recursively resolve the primary name server addresses automatically.zoneTransferProtocol(optional): The zone transfer protocol to be used by secondary zones. Valid values are [tcp,tls].tsigKeyName(optional): The TSIG key name to be used by secondary zones.protocol(optional): The DNS transport protocol to be used by the conditional forwarder zone. This optional parameter is used with Conditional Forwarder zones. Valid values are [Udp,Tcp,Tls,Https]. DefaultUdpprotocol is used when this parameter is missing.forwarder(optional): The address of the DNS server to be used as a forwarder. This optional parameter is required to be used with Conditional Forwarder zones. A special valuethis-servercan be used as a forwarder which when used will forward all the requests internally to this DNS server such that you can override the zone with records and rest of the zone gets resolved via This Server.dnssecValidation(optional): Set this boolean value to indicate if DNSSEC validation must be done. This optional parameter is required to be used with Conditional Forwarder zones.proxyType(optional): The type of proxy that must be used for conditional forwarding. This optional parameter is required to be used with Conditional Forwarder zones. Valid values are [None,Http,Socks5]. Default valueNoneis used when this parameter is missing.proxyAddress(optional): The proxy server address to use whenproxyTypeis configured. This optional parameter is required to be used with Conditional Forwarder zones.proxyPort(optional): The proxy server port to use whenproxyTypeis configured. This optional parameter is required to be used with Conditional Forwarder zones.proxyUsername(optional): The proxy server username to use whenproxyTypeis configured. This optional parameter is required to be used with Conditional Forwarder zones.proxyPassword(optional): The proxy server password to use whenproxyTypeis configured. This optional parameter is required to be used with Conditional Forwarder zones.
RESPONSE:
{
"response": {
"domain": "example.com"
},
"status": "ok"
}
WHERE:
domain: Will contain the zone that was created. This is specifically useful to know the reverse zone that was created.
Sign Zone
Signs the primary zone (DNSSEC).
URL:
http://localhost:5380/api/zone/dnssec/sign?token=x&zone=example.com&algorithm=ECDSA&dnsKeyTtl=86400&zskRolloverDays=90&nxProof=NSEC3&iterations=0&saltLength=0&curve=P256
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone to sign.algorithm: The algorithm to be used for signing. Valid values are [RSA,ECDSA].hashAlgorithm(optional): The hash algorithm to be used when usingRSAalgorithm. Valid values are [MD5,SHA1,SHA256,SHA512]. This optional parameter is required when usingRSA` algorithm.kskKeySize(optional): The size of the Key Signing Key (KSK) in bits to be used when usingRSAalgorithm. This optional parameter is required when usingRSAalgorithm.zskKeySize(optional): The size of the Zone Signing Key (ZSK) in bits to be used when usingRSAalgorithm. This optional parameter is required when usingRSAalgorithm.curve(optional): The name of the curve to be used when usingECDSAalgorithm. Valid values are [P256,P384]. This optional parameter is required when usingECDSAalgorithm.dnsKeyTtl(optional): The TTL value to be used for DNSKEY records. Default value is86400when not specified.zskRolloverDays(optional): The frequency in days that the DNS server must automatically rollover the Zone Signing Keys (ZSK) in the zone. Valid range is 0-365 days where 0 disables rollover. Default value is90days.nxProof(optional): The type of proof of non-existence that must be used for signing the zone. Valid values are [NSEC,NSEC3]. Default value isNSECwhen not specified.iterations(optional): The number of iterations to use for hashing in NSEC3. This optional parameter is only applicable when usingNSEC3as thenxProof. Default value is0when not specified.saltLength(optional): The length of salt in bytes to use for hashing in NSEC3. This optional parameter is only applicable when usingNSEC3as thenxProof. Default value is0when not specified.
RESPONSE:
{
"status": "ok"
}
Unsign Zone
Unsigns the primary zone (DNSSEC).
URL: `http://localhost:5380/api/zone/dnssec/unsign?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone to unsign.
RESPONSE:
{
"status": "ok"
}
Get DNSSEC Properties
Get the DNSSEC properties for the primary zone.
URL:
http://localhost:5380/api/zone/dnssec/getProperties?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.
RESPONSE:
{
"response": {
"name": "example.com",
"type": "Primary",
"internal": false,
"disabled": false,
"dnssecStatus": "SignedWithNSEC",
"dnsKeyTtl": 86400,
"dnssecPrivateKeys": [
{
"keyTag": 19198,
"keyType": "KeySigningKey",
"algorithm": "ECDSAP256SHA256",
"state": "Ready",
"stateChangedOn": "2022-02-19T06:53:21Z",
"isRetiring": false,
"rolloverDays": 0
},
{
"keyTag": 50617,
"keyType": "ZoneSigningKey",
"algorithm": "ECDSAP256SHA256",
"state": "Active",
"stateChangedOn": "2022-02-19T06:53:21Z",
"isRetiring": false,
"rolloverDays": 90
}
]
},
"status": "ok"
}
Convert To NSEC
Converts a primary zone from NSEC3 to NSEC for proof of non-existence.
URL:
http://localhost:5380/api/zone/dnssec/convertToNSEC?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.
RESPONSE:
{
"status": "ok"
}
Convert To NSEC3
Converts a primary zone from NSEC to NSEC3 for proof of non-existence.
URL:
http://localhost:5380/api/zone/dnssec/convertToNSEC3?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.
RESPONSE:
{
"status": "ok"
}
Update NSEC3 Parameters
Updates the iteration and salt length parameters for NSEC3.
URL:
http://localhost:5380/api/zone/dnssec/updateNSEC3Params?token=x&zone=example.com&iterations=0&saltLength=0
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.iterations(optional): The number of iterations to use for hashing. Default value is0when not specified.saltLength(optional): The length of salt in bytes to use for hashing. Default value is0when not specified.
RESPONSE:
{
"status": "ok"
}
Update DNSKEY TTL
Updates the TTL value for DNSKEY resource record set. The value can be updated only when all the DNSKEYs are in ready or active state.
URL:
http://localhost:5380/api/zone/dnssec/updateDnsKeyTtl?token=x&zone=example.com&ttl=86400
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.ttl: The TTL value for the DNSKEY resource record set.
RESPONSE:
{
"status": "ok"
}
Generate Private Key
Generates a private key to be used for signing the zone with DNSSEC.
URL:
http://localhost:5380/api/zone/dnssec/generatePrivateKey?token=x&zone=example.com&keyType=KeySigningKey&algorithm=ECDSA&curve=P256
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.keyType: The type of key for which the private key is to be generated. Valid values are [KeySigningKey,ZoneSigningKey].rolloverDays(optional): The frequency in days that the DNS server must automatically rollover the private key in the zone. Valid range is 0-365 days where 0 disables rollover. Default value is 90 days for Zone Signing Key (ZSK) and 0 days for Key Signing Key (KSK).algorithm: The algorithm to be used for signing. Valid values are [RSA,ECDSA].hashAlgorithm(optional): The hash algorithm to be used when usingRSAalgorithm. Valid values are [MD5,SHA1,SHA256,SHA512]. This optional parameter is required when usingRSA` algorithm.keySize(optional): The size of the generated private key in bits to be used when usingRSAalgorithm. This optional parameter is required when usingRSAalgorithm.curve(optional): The name of the curve to be used when usingECDSAalgorithm. Valid values are [P256,P384]. This optional parameter is required when usingECDSAalgorithm.
RESPONSE:
{
"status": "ok"
}
Update Private Key
Updates the DNSSEC private key properties.
URL:
http://localhost:5380/api/zone/dnssec/updatePrivateKey?token=x&zone=example.com&keyTag=1234&rolloverDays=90
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.keyTag: The key tag of the private key to be updated.rolloverDays: The frequency in days that the DNS server must automatically rollover the private key in the zone. Valid range is 0-365 days where 0 disables rollover.
RESPONSE:
{
"status": "ok"
}
Delete Private Key
Deletes a private key that has state set as Generated. Private keys with any other state cannot be delete.
URL:
http://localhost:5380/api/zone/dnssec/deletePrivateKey?token=x&zone=example.com&keyTag=12345
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.keyTag: The key tag of the private key to be deleted.
RESPONSE:
{
"status": "ok"
}
Publish All Private Keys
Publishes all private keys that have state set as Generated by adding associated DNSKEY records for them. Once published, the keys will be automatically activated. For Key Signing Keys (KSK), once the state is set to Ready you can then safely replace the old DS record from the parent zone with a new DS key record for the KSK associated DNSKEY record. Once the new DS record is published at the parent zone, the DNS server will automatically detect and set the KSK state to Active.
URL:
http://localhost:5380/api/zone/dnssec/publishAllPrivateKeys?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.
RESPONSE:
{
"status": "ok"
}
Rollover DNSKEY
Generates and publishes a new private key for the given key that has to be rolled over. The old private key and its associated DNSKEY record will be automatically retired and removed safely once the new key is active.
URL:
http://localhost:5380/api/zone/dnssec/rolloverDnsKey?token=x&zone=example.com&keyTag=12345
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.keyTag: The key tag of the private key to rollover.
RESPONSE:
{
"status": "ok"
}
Retire DNSKEY
Retires the specified private key and its associated DNSKEY record and removes it safely. To retire an existing DNSKEY, there must be at least one active key available.
URL:
http://localhost:5380/api/zone/dnssec/retireDnsKey?token=x&zone=example.com&keyTag=12345
WHERE:
token: The session token generated by thelogincall.zone: The name of the primary zone.keyTag: The key tag of the private key to retire.
RESPONSE:
{
"status": "ok"
}
Delete Zone
Deletes an authoritative zone.
URL:
http://localhost:5380/api/zone/delete?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The domain name of the zone to be deleted.
RESPONSE:
{
"status": "ok"
}
Enable Zone
Enables an authoritative zone.
URL:
http://localhost:5380/api/zone/enable?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The domain name of the zone to be enabled.
RESPONSE:
{
"status": "ok"
}
Disable Zone
Disables an authoritative zone. This will prevent the DNS server from responding for queries to this zone.
URL:
http://localhost:5380/api/zone/disable?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The domain name of the zone to be disabled.
RESPONSE:
{
"status": "ok"
}
Get Zone Options
Gets the zone specific options.
URL:
http://localhost:5380/api/zone/options/get?token=x&zone=example.com
WHERE:
token: The session token generated by thelogincall.zone: The domain name of the zone to get options.
RESPONSE:
{
"response": {
"name": "example.com",
"type": "Primary",
"internal": false,
"disabled": false,
"zoneTransfer": "AllowOnlyZoneNameServers",
"zoneTransferNameServers": [],
"notify": "ZoneNameServers",
"notifyNameServers": [],
"zoneTransferTsigKeyNames": [
"key.example.com"
],
"availableTsigKeyNames": [
"key.example.com"
]
},
"status": "ok"
}
Set Zone Options
Sets the zone specific options.
URL:
http://localhost:5380/api/zone/options/set?token=x&zone=example.com&disabled=false&zoneTransfer=Allow&zoneTransferNameServers=¬ify=ZoneNameServers¬ifyNameServers=
WHERE:
token: The session token generated by thelogincall.zone: The domain name of the zone to set options.disabled(optional): Sets if the zone is enabled or disabled.zoneTransfer(optional): Sets if the zone allows zone transfer. Valid options are [Deny,Allow,AllowOnlyZoneNameServers,AllowOnlySpecifiedNameServers].zoneTransferNameServers(optional): A list of comma separated IP addresses which should be allowed to perform zone transfer. This list is enabled only whenzoneTransferoption is set toAllowOnlySpecifiedNameServers.notify(optional): Sets if the DNS server should notify other DNS servers for zone updates. Valid options are [None,ZoneNameServers,SpecifiedNameServers].notifyNameServers(optional): A list of comma separated IP addresses which should be notified by the DNS server for zone updates. This list is used only whennotifyoption is set toSpecifiedNameServers.zoneTransferTsigKeyNames(optional): A list of comma separated TSIG keys names that are authorized to perform a zone transfer. Set this option tofalseto remove all keys.
RESPONSE:
{
"status": "ok"
}
Add Record
Adds an resource record for an authoritative zone.
URL:
http://localhost:5380/api/zone/addRecord?token=x&domain=example.com&zone=example.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name of the zone to add record.zone(optional): The name of the authoritative zone into which thedomainexists. When unspecified, the closest authoritative zone will be used.type: The DNS resource record type. Supported record types are [A,AAAA,MX,TXT,NS,PTR,CNAME,SRV,CAA] and proprietory types [ANAME,FWD,APP].ttl: The DNS resource record TTL value. This is the value in seconds that the DNS resolvers can cache the record for.overwrite(optional): This option when set totruewill overwrite existing resource record set for the selectedtypewith the new record. Default value offalsewill add the new record into existing resource record set.ipAddress(optional): The IP address for addingAorAAAArecord. A special value ofrequest-ip-addresscan be used to set the record with the IP address of the API HTTP request to help with dynamic DNS update applications. This option is required and used only forAandAAAArecords.ptr(optional): Add a reverse PTR record for the IP address in theAorAAAArecord. This option is used only forAandAAAArecords.createPtrZone(optional): Create a reverse zone for PTR record. This option is used forAandAAAArecords.nameServer(optional): The name server domain name. This option is required for addingNSrecord.glue(optional): This is the glue address for the name server in theNSrecord. This optional parameter is used for addingNSrecord.cname(optional): The CNAME domain name. This option is required for addingCNAMErecord.ptrName(optional): The PTR domain name. This option is required for addingPTRrecord.exchange(optional): The exchange domain name. This option is required for addingMXrecord.preference(optional): This is the preference value forMXrecord type. This option is required for addingMXrecord.text(optional): The text data forTXTrecord. This option is required for addingTXTrecord.priority(optional): This parameter is required for adding theSRVrecord.weight(optional): This parameter is required for adding theSRVrecord.port(optional): This parameter is required for adding theSRVrecord.target(optional): This parameter is required for adding theSRVrecord.dname(optional): The DNAME domain name. This option is required for addingDNAMErecord.keyTag(optional): This parameter is required for addingDSrecord.algorithm(optional): This parameter is required for addingDSrecord.digestType(optional): This parameter is required for addingDSrecord.digest(optional): This parameter is required for addingDSrecord.flags(optional): This parameter is required for adding theCAArecord.tag(optional): This parameter is required for adding theCAArecord.value(optional): This parameter is required for adding theCAArecord.aname(optional): The ANAME domain name. This option is required for addingANAMErecord.protocol(optional): This parameter is required for adding theFWDrecord. Valid values are [Udp,Tcp,Tls,Https,HttpsJson].forwarder(optional): The forwarder address. A special value ofthis-servercan be used to directly forward requests internally to the DNS server. This parameter is required for adding theFWDrecord.dnssecValidation(optional): Set this boolean value to indicate if DNSSEC validation must be done. This optional parameter is to be used with FWD records. Default value isfalse.proxyType(optional): The type of proxy that must be used for conditional forwarding. This optional parameter is to be used with FWD records. Valid values are [None,Http,Socks5]. Default valueNoneis used when this parameter is missing.proxyAddress(optional): The proxy server address to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.proxyPort(optional): The proxy server port to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.proxyUsername(optional): The proxy server username to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.proxyPassword(optional): The proxy server password to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.appName(optional): The name of the DNS app. This parameter is required for adding theAPPrecord.classPath(optional): This parameter is required for adding theAPPrecord.recordData(optional): This parameter is used for adding theAPPrecord as per the DNS app requirements.
RESPONSE:
{
"response": {
"zone": {
"name": "example.com",
"type": "Primary",
"internal": false,
"dnssecStatus": "SignedWithNSEC",
"disabled": false
},
"addedRecord": {
"disabled": false,
"name": "example.com",
"type": "A",
"ttl": 3600,
"rData": {
"ipAddress": "3.3.3.3"
},
"dnssecStatus": "Unknown",
"lastUsedOn": "0001-01-01T00:00:00"
}
},
"status": "ok"
}
Get Records
Gets all records for a given authoritative zone.
URL:
http://localhost:5380/api/zone/getRecords?token=x&domain=example.com&zone=example.com
WHERE:
token: The session token generated by thelogincall.domain: The domain name of the zone to get records.zone(optional): The name of the authoritative zone into which thedomainexists. When unspecified, the closest authoritative zone will be used.
RESPONSE:
{
"response": {
"zone": {
"name": "example.com",
"type": "Primary",
"internal": false,
"dnssecStatus": "SignedWithNSEC3",
"disabled": false
},
"records": [
{
"disabled": false,
"name": "example.com",
"type": "A",
"ttl": 3600,
"rData": {
"ipAddress": "1.1.1.1"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "NS",
"ttl": 3600,
"rData": {
"nameServer": "server1"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "SOA",
"ttl": 900,
"rData": {
"primaryNameServer": "server1",
"responsiblePerson": "hostadmin.example.com",
"serial": 35,
"refresh": 900,
"retry": 300,
"expire": 604800,
"minimum": 900
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "RRSIG",
"ttl": 900,
"rData": {
"typeCovered": "NSEC3PARAM",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 900,
"signatureExpiration": "2022-03-15T11:45:31Z",
"signatureInception": "2022-03-05T10:45:31Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "vJ/fXkGKsapdvWjDhcfHsBxpZhSzMRLZv3/bEGJ4N3/K7jiM92Ik336W680SI7g+NyPCQ3gqE7ta/JEL4bht4Q=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "RRSIG",
"ttl": 900,
"rData": {
"typeCovered": "SOA",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 900,
"signatureExpiration": "2022-03-15T12:53:39Z",
"signatureInception": "2022-03-05T11:53:39Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "9PQHH3ZGCuFRYkn28SoilS8y8zszgeOpCfJpIOAaE5ao+iBPCXudHacr/EpgB2wLzXpRjR+WgiYjmJH17+6bKg=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "RRSIG",
"ttl": 3600,
"rData": {
"typeCovered": "A",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 3600,
"signatureExpiration": "2022-03-15T11:25:35Z",
"signatureInception": "2022-03-05T10:25:35Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "dWjn5hTWuEq57ncwGdVq+kdbMuFtuxLuZhYCcQMdsTxYkM/64RrPY6eYwfYQ7+fY1+QBSX2WudAM4dzbmL/s2A=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "RRSIG",
"ttl": 3600,
"rData": {
"typeCovered": "NS",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 3600,
"signatureExpiration": "2022-03-15T11:25:35Z",
"signatureInception": "2022-03-05T10:25:35Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "Yx+leBcYNFf0gUfN6rECWrUZwCDhJbAGk1BNOJN01nPakS5meSbDApUHJZeAzfSBcPzodK3ddmEuhho1MABaZw=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "RRSIG",
"ttl": 86400,
"rData": {
"typeCovered": "DNSKEY",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 86400,
"signatureExpiration": "2022-03-15T12:27:09Z",
"signatureInception": "2022-03-05T11:27:09Z",
"keyTag": 65078,
"signersName": "example.com",
"signature": "KWAK7o+FjJ2/6ZvX4C1wB41yRzlmec5pR2TTeNWlY/weg0MNKCLRs3uTopSjoTih+uq3IRR7Zx0iOcy7evOitA=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "RRSIG",
"ttl": 86400,
"rData": {
"typeCovered": "DNSKEY",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 86400,
"signatureExpiration": "2022-03-15T12:27:09Z",
"signatureInception": "2022-03-05T11:27:09Z",
"keyTag": 52896,
"signersName": "example.com",
"signature": "oHtt1gUmDXxI5GMfS+LJ6uxKUcuUu+5EELXdhLrbk5V/yganP6sMgA4hGkzokYM22LDowjSdO5qwzCW6IDgKxg=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "DNSKEY",
"ttl": 86400,
"rData": {
"flags": "SecureEntryPoint, ZoneKey",
"protocol": 3,
"algorithm": "ECDSAP256SHA256",
"publicKey": "dMRyc/Pji31mF3iHNrybPzbgvtb2NKtmXhjQq433BHI= ZveDa1z00VxDnugV1x7EDvpt+42TDh8OQwp1kOrpX0E=",
"computedKeyTag": 65078,
"dnsKeyState": "Ready",
"computedDigests": [
{
"digestType": "SHA1",
"digest": "3C2B05EBC20B77D8BC56EB9FFB36A6A1F07983F9"
},
{
"digestType": "SHA256",
"digest": "BBE017B17E5CB5FFFF1EC2C7815367DF80D8E7EAEE4832D3ED192159D79B1EEB"
},
{
"digestType": "SHA384",
"digest": "0B0C9F1019BD3FE62C8B71F8C80E7A833BA468A7E303ABC819C0CB9BEDE8E26BB50CB1729547BFCCE2AE22390E44CDA3"
}
]
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "DNSKEY",
"ttl": 86400,
"rData": {
"flags": "ZoneKey",
"protocol": 3,
"algorithm": "ECDSAP256SHA256",
"publicKey": "IUvzTkf4JPg+7k57cQw7n7SR6/1dH7FaKxu9Cf+kcvo= UU+uoKRWnYAFHDNF0X3U8ZYetUyDF7fcNAwEaSQnIUM=",
"computedKeyTag": 61009,
"dnsKeyState": "Active"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "DNSKEY",
"ttl": 86400,
"rData": {
"flags": "SecureEntryPoint, ZoneKey",
"protocol": 3,
"algorithm": "ECDSAP256SHA256",
"publicKey": "KtXitZeC9ijbghCwQ5kjBfgLxCa0pBOOBGftudxGv/I= hlRGy7/Plea39T8n78xiHPaspYrTcdyidbKz6Z+ZSGw=",
"computedKeyTag": 52896,
"dnsKeyState": "Published",
"computedDigests": [
{
"digestType": "SHA1",
"digest": "767EA31AD77C6AC2ACEB22B3FADB033679A6FB79"
},
{
"digestType": "SHA256",
"digest": "BDBDB532C5809F890F8092DC9702D763D51A7318887B195CB52E888882FBE373"
},
{
"digestType": "SHA384",
"digest": "A7EA4C7816ED5F011FDF90015D4A37BC7D1C773C22C3440B57D6717FA4ED71C5B95D09592AF48BD3ED59028D214A367E"
}
]
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "DNSKEY",
"ttl": 86400,
"rData": {
"flags": "ZoneKey",
"protocol": 3,
"algorithm": "ECDSAP256SHA256",
"publicKey": "337uQ11fdKbr6sKYq9mwwBC2xdnu0geuIkfHcIauKNI= rKk7pfVKlLfcGBOIn5hEVeod2aIRIyUiivdTPzrmpIo=",
"computedKeyTag": 4811,
"dnsKeyState": "Published"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "example.com",
"type": "NSEC3PARAM",
"ttl": 900,
"rData": {
"hashAlgorithm": "SHA1",
"flags": "None",
"iterations": 0,
"salt": ""
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "*.example.com",
"type": "A",
"ttl": 3600,
"rData": {
"ipAddress": "7.7.7.7"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "*.example.com",
"type": "RRSIG",
"ttl": 3600,
"rData": {
"typeCovered": "A",
"algorithm": "ECDSAP256SHA256",
"labels": 2,
"originalTtl": 3600,
"signatureExpiration": "2022-03-15T11:25:35Z",
"signatureInception": "2022-03-05T10:25:35Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "ZoUNNEdb8XWqHHi5o4BcUe7deRVlJZLhQtc3sjRtuJ68DNPDmQ0GfCrNTigJcomspr7CYqWcXfoSOqu6f2AyyQ=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "4F3CNT8CU22TNGEC382JJ4GDE4RB47UB.example.com",
"type": "RRSIG",
"ttl": 900,
"rData": {
"typeCovered": "NSEC3",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 900,
"signatureExpiration": "2022-03-15T11:45:31Z",
"signatureInception": "2022-03-05T10:45:31Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "piZeLYa6WpHyiJerPlXq2s+JKBjHznNALXHJCOfiQ4o/iTqWILoqYHfKB5AWrLwLmkxXcbKf63CnEMGlinRidg=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "4F3CNT8CU22TNGEC382JJ4GDE4RB47UB.example.com",
"type": "NSEC3",
"ttl": 900,
"rData": {
"hashAlgorithm": "SHA1",
"flags": "None",
"iterations": 0,
"salt": "",
"nextHashedOwnerName": "KG19N32806C832KIJDNGLQ8P9M2R5MDJ",
"types": [
"A"
]
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "KG19N32806C832KIJDNGLQ8P9M2R5MDJ.example.com",
"type": "RRSIG",
"ttl": 900,
"rData": {
"typeCovered": "NSEC3",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 900,
"signatureExpiration": "2022-03-15T11:45:31Z",
"signatureInception": "2022-03-05T10:45:31Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "i/PMxc1LFA9a8jLxju7SSpoY7y8aZYkAILcCRIxE3lTundPJmzFG0U9kve04kqT7+Klmzj3OzXnCvjTA54+DZA=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "KG19N32806C832KIJDNGLQ8P9M2R5MDJ.example.com",
"type": "NSEC3",
"ttl": 900,
"rData": {
"hashAlgorithm": "SHA1",
"flags": "None",
"iterations": 0,
"salt": "",
"nextHashedOwnerName": "MIFDNDT3NFF3OD53O7TLA1HRFF95JKUK",
"types": [
"NS",
"DS"
]
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "MIFDNDT3NFF3OD53O7TLA1HRFF95JKUK.example.com",
"type": "RRSIG",
"ttl": 900,
"rData": {
"typeCovered": "NSEC3",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 900,
"signatureExpiration": "2022-03-15T11:45:31Z",
"signatureInception": "2022-03-05T10:45:31Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "mr37TDMmWJ3YLNtpYy++S9eAeHIXKajX6jB8zLscJyC1uI0OFnSTuesfhIlLDbj0SDgrzRQWsLmvMKzfq89TJA=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "MIFDNDT3NFF3OD53O7TLA1HRFF95JKUK.example.com",
"type": "NSEC3",
"ttl": 900,
"rData": {
"hashAlgorithm": "SHA1",
"flags": "None",
"iterations": 0,
"salt": "",
"nextHashedOwnerName": "ONIB9MGUB9H0RML3CDF5BGRJ59DKJHVK",
"types": [
"CNAME"
]
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "ONIB9MGUB9H0RML3CDF5BGRJ59DKJHVK.example.com",
"type": "RRSIG",
"ttl": 900,
"rData": {
"typeCovered": "NSEC3",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 900,
"signatureExpiration": "2022-03-15T11:45:31Z",
"signatureInception": "2022-03-05T10:45:31Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "GGh/KkB6C2D55xRJa0zFbZ8As3DZK9btUamryZVmyo7FaLPyltkeRZor9OExgQ6HC1SLXNGJIfCO9cM4K6P8iw=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "ONIB9MGUB9H0RML3CDF5BGRJ59DKJHVK.example.com",
"type": "NSEC3",
"ttl": 900,
"rData": {
"hashAlgorithm": "SHA1",
"flags": "None",
"iterations": 0,
"salt": "",
"nextHashedOwnerName": "4F3CNT8CU22TNGEC382JJ4GDE4RB47UB",
"types": [
"A",
"NS",
"SOA",
"DNSKEY",
"NSEC3PARAM"
]
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "sub.example.com",
"type": "NS",
"ttl": 3600,
"rData": {
"nameServer": "server1"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "sub.example.com",
"type": "DS",
"ttl": 3600,
"rData": {
"keyTag": 46125,
"algorithm": "ECDSAP384SHA384",
"digestType": "SHA1",
"digest": "5590E425472785A16DC0F853000557DB5543C39E"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "sub.example.com",
"type": "RRSIG",
"ttl": 3600,
"rData": {
"typeCovered": "NS",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 3600,
"signatureExpiration": "2022-03-15T11:25:35Z",
"signatureInception": "2022-03-05T10:25:35Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "hFzYTL9V0/0UQZlvZpRWCOvu/2udvhswKoxpe4+quNuC6K59W7uCJLuDm/z0aFK5nW8Of4oTk2YjSBZo0nBSlg=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "sub.example.com",
"type": "RRSIG",
"ttl": 3600,
"rData": {
"typeCovered": "DS",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 3600,
"signatureExpiration": "2022-03-15T12:53:39Z",
"signatureInception": "2022-03-05T11:53:39Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "UYpUKV5Uq7DM3rltg3sPFOwYgRa2yBzT/j9U8xCh5oyXt27fIn3eemvqqe9qV4xeQaAN0QfQPkj9vmOZSAYafg=="
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "www.example.com",
"type": "CNAME",
"ttl": 3600,
"rData": {
"cname": "example.com"
},
"dnssecStatus": "Unknown"
},
{
"disabled": false,
"name": "www.example.com",
"type": "RRSIG",
"ttl": 3600,
"rData": {
"typeCovered": "CNAME",
"algorithm": "ECDSAP256SHA256",
"labels": 3,
"originalTtl": 3600,
"signatureExpiration": "2022-03-15T11:25:35Z",
"signatureInception": "2022-03-05T10:25:35Z",
"keyTag": 61009,
"signersName": "example.com",
"signature": "cAbYvDJhZGLS/uI5I4mSrh7S5gEUy6bmX2sY7zEd1XVFPqrUOZHbVZuwXPjA6r9/m0rCaww9RiG90JhNNDLEtA=="
},
"dnssecStatus": "Unknown"
}
]
},
"status": "ok"
}
Delete Record
Deletes a record from an authoritative zone.
URL:
http://localhost:5380/api/zone/deleteRecord?token=x&domain=example.com&zone=example.com&type=A&value=127.0.0.1
WHERE:
token: The session token generated by thelogincall.domain: The domain name of the zone to delete the record.zone(optional): The name of the authoritative zone into which thedomainexists. When unspecified, the closest authoritative zone will be used.type: The type of the resource record to delete.ipAddress(optional): This parameter is required when deletingAorAAAArecord.nameServer(optional): This parameter is required when deletingNSrecord.ptrName(optional): This parameter is required when deletingPTRrecord.exchange(optional): This parameter is required when deletingMXrecord.text(optional): This parameter is required when deletingTXTrecord.port(optional): This is the port parameter in the SRV record. This parameter is required when deleting theSRVrecord.target(optional): This parameter is required when deleting theSRVrecord.keyTag(optional): This parameter is required when deletingDSrecord.algorithm(optional): This parameter is required when deletingDSrecord.digestType(optional): This parameter is required when deletingDSrecord.digest(optional): This parameter is required when deletingDSrecord.flags(optional): This is the flags parameter in the CAA record. This parameter is required when deleting theCAArecord.tag(optional): This is the tag parameter in the CAA record. This parameter is required when deleting theCAArecord.value(optional): This parameter is required when deleting theCAArecord.aname(optional): This parameter is required when deleting theANAMErecord.protocol(optional): This is the protocol parameter in the FWD record. Valid values are [Udp,Tcp,Tls,Https,HttpsJson]. This parameter is optional and default valueUdpwill be used when deleting theFWDrecord.forwarder(optional): This parameter is required when deleting theFWDrecord.
RESPONSE:
{
"response": {},
"status": "ok"
}
Update Record
Updates an existing record in an authoritative zone.
URL:
http://localhost:5380/api/zone/updateRecord?token=x&domain=mail.example.com&zone=example.com&type=A&value=127.0.0.1&newValue=127.0.0.2&ptr=false
WHERE:
token: The session token generated by thelogincall.domain: The domain name of the zone to update the record.zone(optional): The name of the authoritative zone into which thedomainexists. When unspecified, the closest authoritative zone will be used.type: The type of the resource record to update.newDomain(optional): The new domain name to be set for the record. To be used to rename sub domain name of the record.ttl(optional): The TTL value of the resource record. Default value of3600is used when parameter is missing.disable(optional): Specifies if the record should be disabled. The default value isfalsewhen this parameter is missing.ipAddress(optional): The current IP address in theAorAAAArecord. This parameter is required when updatingAorAAAArecord.newIpAddress(optional): The new IP address in theAorAAAArecord. This parameter when missing will use the current value in the record.ptr(optional): Specifies if the PTR record associated with theAorAAAArecord must also be updated. This option is used only forAandAAAArecords.createPtrZone(optional): Create a reverse zone for PTR record. This option is used only forAandAAAArecords.nameServer(optional): The current name server domain name. This option is required for updatingNSrecord.newNameServer(optional): The new server domain name. This option is used for updatingNSrecord.glue(optional): The comma separated list of IP addresses set as glue for the NS record. This parameter is used only when updatingNSrecord.cname(optional): The CNAME domain name to update in the existingCNAMErecord.primaryNameServer(optional): This is the primary name server parameter in the SOA record. This parameter is required when updating the SOA record.responsiblePerson(optional): This is the responsible person parameter in the SOA record. This parameter is required when updating the SOA record.serial(optional): This is the serial parameter in the SOA record. This parameter is required when updating the SOA record.refresh(optional): This is the refresh parameter in the SOA record. This parameter is required when updating the SOA record.retry(optional): This is the retry parameter in the SOA record. This parameter is required when updating the SOA record.expire(optional): This is the expire parameter in the SOA record. This parameter is required when updating the SOA record.minimum(optional): This is the minimum parameter in the SOA record. This parameter is required when updating the SOA record.primaryAddresses(optional): This is a comma separated list of IP addresses of the primary name server. This parameter is to be used with secondary and stub zones where the primary name server address is not directly resolveable.zoneTransferProtocol(optional): The zone transfer protocol to be used by the secondary zone. Valid values are [tcp,tls]. This parameter is used withSOArecord.tsigKeyName(optional): The TSIG key name to be used by the secondary zone. This parameter is used withSOArecord.ptrName(optional): The current PTR domain name. This option is required for updatingPTRrecord.newPtrName(optional): The new PTR domain name. This option is required for updatingPTRrecord.preference(optional): The preference value in an MX record. This parameter when missing will default to1value. This parameter is used only when updatingMXrecord.exchange(optional): The current exchange domain name. This option is required for updatingMXrecord.newExchange(optional): The new exchange domain name. This option is required for updatingMXrecord.text(optional): The current text value. This option is required for updatingTXTrecord.newText(optional): The new text value. This option is required for updatingTXTrecord.priority(optional): This is the priority parameter in the SRV record. This parameter is required when updating theSRVrecord.weight(optional): This is the weight parameter in the SRV record. This parameter is required when updating theSRVrecord.port(optional): This is the port parameter in the SRV record. This parameter is required when updating theSRVrecord.newPort(optional): This is the new value of the port parameter in the SRV record. This parameter is used to update the port parameter in theSRVrecord.target(optional): The current target value. This parameter is required when updating theSRVrecord.newTarget(optional): The new target value. This parameter is required when updating theSRVrecord.dname(optional): The DNAME domain name. This parameter is required when updating theDNAMErecord.keyTag(optional): This parameter is required when updatingDSrecord.newKeyTag(optional): This parameter is required when updatingDSrecord.algorithm(optional): This parameter is required when updatingDSrecord.newAlgorithm(optional): This parameter is required when updatingDSrecord.digestType(optional): This parameter is required when updatingDSrecord.newDigestType(optional): This parameter is required when updatingDSrecord.digest(optional): This parameter is required when updatingDSrecord.newDigest(optional): This parameter is required when updatingDSrecord.flags(optional): This is the flags parameter in the CAA record. This parameter is required when updating theCAArecord.newFlags(optional): This is the new value of the flags parameter in the CAA record. This parameter is used to update the flags parameter in theCAArecord.tag(optional): This is the tag parameter in the CAA record. This parameter is required when updating theCAArecord.newTag(optional): This is the new value of the tag parameter in the CAA record. This parameter is used to update the tag parameter in theCAArecord.value(optional): The current value in CAA record. This parameter is required when updating theCAArecord.newValue(optional): The new value in CAA record. This parameter is required when updating theCAArecord.aname(optional): The current ANAME domain name. This parameter is required when updating theANAMErecord.newAName(optional): The new ANAME domain name. This parameter is required when updating theANAMErecord.protocol(optional): This is the current protocol value in the FWD record. Valid values are [Udp,Tcp,Tls,Https,HttpsJson]. This parameter is optional and default valueUdpwill be used when updating theFWDrecord.newProtocol(optional): This is the new protocol value in the FWD record. Valid values are [Udp,Tcp,Tls,Https,HttpsJson]. This parameter is optional and default valueUdpwill be used when updating theFWDrecord.forwarder(optional): The current forwarder address. This parameter is required when updating theFWDrecord.newForwarder(optional): The new forwarder address. This parameter is required when updating theFWDrecord.dnssecValidation(optional): Set this boolean value to indicate if DNSSEC validation must be done. This optional parameter is to be used with FWD records. Default value isfalse.proxyType(optional): The type of proxy that must be used for conditional forwarding. This optional parameter is to be used with FWD records. Valid values are [None,Http,Socks5]. Default valueNoneis used when this parameter is missing.proxyAddress(optional): The proxy server address to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.proxyPort(optional): The proxy server port to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.proxyUsername(optional): The proxy server username to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.proxyPassword(optional): The proxy server password to use whenproxyTypeis configured. This optional parameter is to be used with FWD records.appName(optional): This parameter is required for updating theAPPrecord.classPath(optional): This parameter is required for updating theAPPrecord.recordData(optional): This parameter is used for updating theAPPrecord as per the DNS app requirements.
RESPONSE:
{
"response": {
"zone": {
"name": "example.com",
"type": "Primary",
"internal": false,
"dnssecStatus": "SignedWithNSEC",
"disabled": false
},
"updatedRecord": {
"disabled": false,
"name": "example.com",
"type": "SOA",
"ttl": 900,
"rData": {
"primaryNameServer": "server1.home",
"responsiblePerson": "hostadmin.example.com",
"serial": 75,
"refresh": 900,
"retry": 300,
"expire": 604800,
"minimum": 900
},
"dnssecStatus": "Unknown",
"lastUsedOn": "0001-01-01T00:00:00"
}
},
"status": "ok"
}
DNS Apps API Calls
List Apps
Lists all installed apps on the DNS server. If the DNS server has Internet access and is able to retrieve data from DNS App Store, the API call will also return if a store App has updates available.
URL:
http://localhost:5380/api/apps/list?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"apps": [
{
"name": "Block Page",
"version": "1.0",
"dnsApps": [
{
"classPath": "BlockPageWebServer.App",
"description": "Serves a block page from a built-in web server that can be displayed to the end user when a website is blocked by the DNS server.\n\nNote: You need to manually configure the custom IP addresses of this built-in web server in the blocking settings for the block page to be served.",
"isAppRecordRequestHandler": false,
"isRequestController": false,
"isAuthoritativeRequestHandler": false,
"isQueryLogger": false
}
]
},
{
"name": "What Is My DNS",
"version": "2.0",
"dnsApps": [
{
"classPath": "WhatIsMyDns.App",
"description": "Returns the IP address of the user's DNS Server for A, AAAA, and TXT queries.",
"isAppRecordRequestHandler": true,
"recordDataTemplate": null,
"isRequestController": false,
"isAuthoritativeRequestHandler": false,
"isQueryLogger": false
}
]
}
]
},
"status": "ok"
}
List Store Apps
Lists all available apps on the DNS App Store.
URL:
http://localhost:5380/api/apps/listStoreApps?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"storeApps": [
{
"name": "Geo Continent",
"version": "1.1",
"description": "Returns A or AAAA records, or CNAME record based on the continent the client queries from using MaxMind GeoIP2 Country database. This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. To update the MaxMind GeoIP2 database for your app, download the GeoIP2-Country.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option.",
"url": "https://download.technitium.com/dns/apps/GeoContinentApp.zip",
"size": "2.01 MB",
"installed": false
},
{
"name": "Geo Country",
"version": "1.1",
"description": "Returns A or AAAA records, or CNAME record based on the country the client queries from using MaxMind GeoIP2 Country database. This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. To update the MaxMind GeoIP2 database for your app, download the GeoIP2-Country.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option.",
"url": "https://download.technitium.com/dns/apps/GeoCountryApp.zip",
"size": "2.01 MB",
"installed": false
},
{
"name": "Geo Distance",
"version": "1.1",
"description": "Returns A or AAAA records, or CNAME record of the server located geographically closest to the client using MaxMind GeoIP2 City database. This app requires MaxMind GeoIP2 database and includes the GeoLite2 version for trial. To update the MaxMind GeoIP2 database for your app, download the GeoIP2-City.mmdb file from MaxMind and zip it. Use the zip file with the manual Update option.",
"url": "https://download.technitium.com/dns/apps/GeoDistanceApp.zip",
"size": "28.6 MB",
"installed": false
},
{
"name": "Split Horizon",
"version": "1.1",
"description": "Returns different set of A or AAAA records, or CNAME record for clients querying over public and private networks.",
"url": "https://download.technitium.com/dns/apps/SplitHorizonApp.zip",
"size": "11.1 KB",
"installed": true,
"installedVersion": "1.1",
"updateAvailable": false
},
{
"name": "What Is My Dns",
"version": "1.1",
"description": "Returns the IP address of the user's DNS Server for A, AAAA, and TXT queries.",
"url": "https://download.technitium.com/dns/apps/WhatIsMyDnsApp.zip",
"size": "8.79 KB",
"installed": true,
"installedVersion": "1.1",
"updateAvailable": false
}
]
},
"status": "ok"
}
Download And Install App
Download an app zip file from given URL and installs it on the DNS Server.
URL:
http://localhost:5380/api/apps/downloadAndInstall?token=x&name=app-name&url=https://example.com/app.zip
WHERE:
token: The session token generated by thelogincall.name: The name of the app to install.url: The URL of the app zip file. URL must start withhttps://.
RESPONSE:
{
"response": {},
"status": "ok"
}
Download And Update App
Download an app zip file from given URL and updates an existing app installed on the DNS Server.
URL:
http://localhost:5380/api/apps/downloadAndUpdate?token=x&name=app-name&url=https://example.com/app.zip
WHERE:
token: The session token generated by thelogincall.name: The name of the app to install.url: The URL of the app zip file. URL must start withhttps://.
RESPONSE:
{
"response": {},
"status": "ok"
}
Install App
Installs a DNS application on the DNS server.
URL:
http://localhost:5380/api/apps/install?token=x&name=app-name
WHERE:
token: The session token generated by thelogincall.name: The name of the app to install.
REQUEST: This is a POST request call where the request must be multi-part form data with the DNS application zip file data in binary format.
RESPONSE:
{
"response": {},
"status": "ok"
}
Update App
Allows to manually update an installed app using a provided app zip file.
URL:
http://localhost:5380/api/apps/update?token=x&name=app-name
WHERE:
token: The session token generated by thelogincall.name: The name of the app to update.
REQUEST: This is a POST request call where the request must be multi-part form data with the DNS application zip file data in binary format.
RESPONSE:
{
"response": {},
"status": "ok"
}
Uninstall App
Uninstall an app from the DNS server. This does not remove any APP records that were using this DNS application.
URL:
http://localhost:5380/api/apps/uninstall?token=x&name=app-name
WHERE:
token: The session token generated by thelogincall.name: The name of the app to uninstall.
RESPONSE:
{
"response": {},
"status": "ok"
}
Get App Config
Retrieve the DNS application config from the dnsApp.config file in the application folder.
URL:
http://localhost:5380/api/apps/getConfig?token=x&name=app-name
WHERE:
token: The session token generated by thelogincall.name: The name of the app to retrieve the config.
RESPONSE:
{
"response": {
"config": "config data or `null`"
},
"status": "ok"
}
Set App Config
Saves the provided DNS application config into the dnsApp.config file in the application folder.
URL:
http://localhost:5380/api/apps/setConfig?token=x&name=app-name
WHERE:
token: The session token generated by thelogincall.name: The name of the app to retrieve the config.
REQUEST: This is a POST request call where the content type of the request must be application/x-www-form-urlencoded and the content must be as shown below:
config=query-string-encoded-config-data
RESPONSE:
{
"response": {},
"status": "ok"
}
DNS Client API Calls
Resolve Query
URL:
http://localhost:5380/api/resolveQuery?token=x&server=this-server&domain=example.com&type=A&protocol=UDP
WHERE:
token: The session token generated by thelogincall.server: The name server to query using the DNS client.domain: The domain name to query.type: The type of the query.protocol(optional): The DNS transport protocol to be used to query. Valid values are [Udp,Tcp,Tls,Https]. The default value ofUdpis used when the parameter is missing.dnssec(optional): Set totrueto enable DNSSEC validation.import(optional): This parameter when set totrueindicates that the response of the DNS query should be imported in the an authoritative zone on this DNS server. Default value isfalsewhen this parameter is missing. If a zone does not exists, a primary zone for thedomainname is created and the records from the response are set into the zone. Import can be done only for primary and forwarder type of zones. Whentypeis set to AXFR, then the import feature will work as if a zone transfer was requested and the complete zone will be updated as per the zone transfer response. Note that any existing record type for the giventypewill be overwritten when syncing the records. It is recommended to userecursive-resolveror the actual name server address for theserverparameter when importing records.
RESPONSE:
{
"response": {
"result": {
"Metadata": {
"NameServer": "server1:53 (127.0.0.1:53)",
"Protocol": "Udp",
"DatagramSize": "45 bytes",
"RoundTripTime": "1.42 ms"
},
"Identifier": 60127,
"IsResponse": true,
"OPCODE": "StandardQuery",
"AuthoritativeAnswer": true,
"Truncation": false,
"RecursionDesired": true,
"RecursionAvailable": true,
"Z": 0,
"AuthenticData": false,
"CheckingDisabled": false,
"RCODE": "NoError",
"QDCOUNT": 1,
"ANCOUNT": 1,
"NSCOUNT": 0,
"ARCOUNT": 0,
"Question": [
{
"Name": "example.com",
"Type": "A",
"Class": "IN"
}
],
"Answer": [
{
"Name": "example.com",
"Type": "A",
"Class": "IN",
"TTL": "86400 (1 day)",
"RDLENGTH": "4 bytes",
"RDATA": {
"IPAddress": "127.0.0.1"
}
}
],
"Authority": [],
"Additional": []
}
},
"status": "ok"
}
Log API Calls
List Logs
Lists all logs files available on the DNS server.
URL:
http://localhost:5380/api/listLogs?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"logFiles": [
{
"fileName": "2020-09-19",
"size": "8.14 KB"
},
{
"fileName": "2020-09-15",
"size": "5.6 KB"
},
{
"fileName": "2020-09-12",
"size": "18.4 KB"
},
{
"fileName": "2020-09-11",
"size": "1.78 KB"
},
{
"fileName": "2020-09-10",
"size": "2.03 KB"
}
]
},
"status": "ok"
}
Download Log
Downloads the log file.
URL:
http://localhost:5380/log/{fileName}?token=x&limit=2
WHERE:
{fileName}: ThefileNamereturned by the List Logs API call.token: The session token generated by thelogincall.limit(optional): The limit of number of mega bytes to download the log file. Default value is0when parameter is missing which indicates there is no limit.
RESPONSE:
Response is a downloadable file with Content-Type: text/plain and Content-Disposition: attachment;filename=name
Delete Log
Permanantly deletes a log file from the disk.
URL:
http://localhost:5380/api/deleteLog?token=x&log=2020-09-19
WHERE:
token: The session token generated by thelogincall.log: ThefileNamereturned by the List Logs API call.
RESPONSE:
{
"response": {},
"status": "ok"
}
Delete All Logs
Permanantly delete all log files from the disk.
URL:
http://localhost:5380/api/deleteAllLogs?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {},
"status": "ok"
}
Delete All Stats
Permanantly delete all hourly and daily stats files from the disk and clears all stats stored in memory. This call will clear all stats from the Dashboard.
URL:
http://localhost:5380/api/deleteAllStats?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {},
"status": "ok"
}
Query Logs
Queries for logs to a specified DNS app.
URL:
http://localhost:5380/api/queryLogs?token=x&name=AppName&classPath=AppClassPath&=pageNumber=1&entriesPerPage=10&descendingOrder=true&start=yyyy-MM-dd HH:mm:ss&end=yyyy-MM-dd HH:mm:ss&clientIpAddress=&protocol=&responseType=&rcode=&qname=&qtype=&qclass=
WHERE:
token: The session token generated by thelogincall.name: The name of the installed DNS app.classPath: The class path of the DNS app.pageNumber(optional): The page number of the data set to retrieve.entriesPerPage(optional): The number of entries per page.descendingOrder(optional): Orders the selected data set in descending order.start(optional): The start date time inyyyy-MM-dd HH:mm:ssformat to filter the logs.end(optional): The end date time inyyyy-MM-dd HH:mm:ssformat to filter the logs.clientIpAddress(optional): The client IP address to filter the logs.protocol(optional): The DNS transport protocol to filter the logs. Valid values are [Udp,Tcp,Tls,Https,HttpsJson].responseType(optional): The DNS server response type to filter the logs. Valid values are [Authoritative,Recursive,Cached,Blocked].rcode(optional): The DNS response code to filter the logs.qname(optional): The query name (QNAME) in the request question section to filter the logs.qtype(optional): The DNS resource record type (QTYPE) in the request question section to filter the logs.qclass(optional): The DNS class (QCLASS) in the request question section to filter the logs.
RESPONSE:
{
"response": {
"pageNumber": 1,
"totalPages": 2,
"totalEntries": 13,
"entries": [
{
"rowNumber": 1,
"timestamp": "2021-09-10T12:22:52Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Recursive",
"rcode": "NoError",
"qname": "google.com",
"qtype": "A",
"qclass": "IN",
"answer": "172.217.166.46"
},
{
"rowNumber": 2,
"timestamp": "2021-09-10T12:37:02Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Blocked",
"rcode": "NxDomain",
"qname": "example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 3,
"timestamp": "2021-09-11T09:13:31Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Authoritative",
"rcode": "ServerFailure",
"qname": "example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 4,
"timestamp": "2021-09-11T09:14:48Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Authoritative",
"rcode": "ServerFailure",
"qname": "example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 5,
"timestamp": "2021-09-11T09:27:25Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Blocked",
"rcode": "NxDomain",
"qname": "example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 6,
"timestamp": "2021-09-11T09:27:29Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Blocked",
"rcode": "NxDomain",
"qname": "www.example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 7,
"timestamp": "2021-09-11T09:28:36Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Blocked",
"rcode": "NxDomain",
"qname": "www.example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 8,
"timestamp": "2021-09-11T09:28:41Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Blocked",
"rcode": "NxDomain",
"qname": "example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 9,
"timestamp": "2021-09-11T09:28:44Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Blocked",
"rcode": "NxDomain",
"qname": "sdfsdf.example.com",
"qtype": "A",
"qclass": "IN",
"answer": ""
},
{
"rowNumber": 10,
"timestamp": "2021-09-11T09:42:02Z",
"clientIpAddress": "127.0.0.1",
"protocol": "Udp",
"responseType": "Recursive",
"rcode": "NoError",
"qname": "technitium.com",
"qtype": "A",
"qclass": "IN",
"answer": "139.59.3.235"
}
]
},
"status": "ok"
}
DHCP API Calls
List DHCP Scopes
Lists all the DHCP scopes available on the server.
URL:
http://localhost:5380/api/listDhcpScopes?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"scopes": [
{
"name": "Default",
"enabled": false,
"startingAddress": "192.168.1.1",
"endingAddress": "192.168.1.254",
"subnetMask": "255.255.255.0",
"networkAddress": "192.168.1.0",
"broadcastAddress": "192.168.1.255"
}
]
},
"status": "ok"
}
List DHCP Leases
Lists all the DHCP leases.
URL:
http://localhost:5380/api/listDhcpLeases?token=x
WHERE:
token: The session token generated by thelogincall.
RESPONSE:
{
"response": {
"leases": [
{
"scope": "Default",
"type": "Reserved",
"hardwareAddress": "00-00-00-00-00-00",
"clientIdentifier": "1-000000000000",
"address": "192.168.1.5",
"hostName": "server1.local",
"leaseObtained": "08/25/2020 17:52:51",
"leaseExpires": "09/26/2020 14:27:12"
},
{
"scope": "Default",
"type": "Dynamic",
"hardwareAddress": "00-00-00-00-00-00",
"clientIdentifier": "1-000000000000",
"address": "192.168.1.13",
"hostName": null,
"leaseObtained": "06/15/2020 16:41:46",
"leaseExpires": "09/25/2020 12:39:54"
},
{
"scope": "Default",
"type": "Dynamic",
"hardwareAddress": "00-00-00-00-00-00",
"clientIdentifier": "1-000000000000",
"address": "192.168.1.15",
"hostName": "desktop-ea2miaf.local",
"leaseObtained": "06/18/2020 12:19:03",
"leaseExpires": "09/25/2020 12:17:11"
},
]
},
"status": "ok"
}
Get DHCP Scope
Gets the complete details of the scope configuration.
URL:
http://localhost:5380/api/getDhcpScope?token=x&name=Default
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.
RESPONSE:
{
"response": {
"name": "Default",
"startingAddress": "192.168.1.1",
"endingAddress": "192.168.1.254",
"subnetMask": "255.255.255.0",
"leaseTimeDays": 7,
"leaseTimeHours": 0,
"leaseTimeMinutes": 0,
"offerDelayTime": 0,
"pingCheckEnabled": false,
"pingCheckTimeout": 1000,
"pingCheckRetries": 2,
"domainName": "local",
"dnsTtl": 900,
"serverAddress": "192.168.1.1",
"serverHostName": "tftp-server-1",
"bootFileName": "boot.bin",
"routerAddress": "192.168.1.1",
"useThisDnsServer": false,
"dnsServers": [
"192.168.1.5"
],
"winsServers": [
"192.168.1.5"
],
"ntpServers": [
"192.168.1.5"
],
"staticRoutes": [
{
"destination": "172.16.0.0",
"subnetMask": "255.255.255.0",
"router": "192.168.1.2"
}
],
"vendorInfo": [
{
"identifier": "substring(vendor-class-identifier,0,9)==\"PXEClient\"",
"information": "06:01:03:0A:04:00:50:58:45:09:14:00:00:11:52:61:73:70:62:65:72:72:79:20:50:69:20:42:6F:6F:74:FF"
}
],
"exclusions": [
{
"startingAddress": "192.168.1.1",
"endingAddress": "192.168.1.10"
}
],
"reservedLeases": [
{
"hostName": null,
"hardwareAddress": "00-00-00-00-00-00",
"address": "192.168.1.10",
"comments": "comments"
}
],
"allowOnlyReservedLeases": false
},
"status": "ok"
}
Set DHCP Scope
Sets the DHCP scope configuration.
URL:
http://localhost:5380/api/setDhcpScope?token=x&name=Default&startingAddress=192.168.1.1&endingAddress=192.168.1.254&subnetMask=255.255.255.0&leaseTimeDays=7&leaseTimeHours=0&leaseTimeMinutes=0&offerDelayTime=0&domainName=local&dnsTtl=900&serverAddress=&serverHostName=&bootFileName=&routerAddress=192.168.1.1&useThisDnsServer=false&dnsServers=192.168.1.5&winsServers=192.168.1.5&ntpServers=192.168.1.5&staticRoutes=172.16.0.0;255.255.255.0;192.168.1.2&exclusions=192.168.1.1;192.168.1.10&reservedLeases=00-00-00-00-00-00;192.168.1.10;comments&allowOnlyReservedLeases=false
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.newName(optional): The new name of the DHCP scope to rename an existing scope.startingAddress(optional): The starting IP address of the DHCP scope. This parameter is required when creating a new scope.endingAddress(optional): The ending IP address of the DHCP scope. This parameter is required when creating a new scope.subnetMask(optional): The subnet mask of the network. This parameter is required when creating a new scope.leaseTimeDays(optional): The lease time in number of days.leaseTimeHours(optional): The lease time in number of hours.leaseTimeMinutes(optional): The lease time in number of minutes.offerDelayTime(optional): The time duration in milli seconds that the DHCP server delays sending an DHCPOFFER message.pingCheckEnabled(optional): Set this option totrueto allow the DHCP server to find out if an IP address is already in use to prevent IP address conflict when some of the devices on the network have manually configured IP addresses.pingCheckTimeout(optional): The timeout interval to wait for an ping reply.pingCheckRetries(optional): The maximum number of ping requests to try.domainName(optional): The domain name to be used by this network. The DHCP server automatically adds forward and reverse DNS entries for each IP address allocations when domain name is configured.dnsTtl(optional): The TTL value used for forward and reverse DNS records.serverAddress(optional): The bootstrap TFTP server IP address to be used by the clients. If not specified, the DHCP server's IP address is used.serverHostName(optional): The optional bootstrap TFTP server host name to be used by the clients to identify the TFTP server.bootFileName(optional): The boot file name stored on the bootstrap TFTP server to be used by the clients.routerAddress(optional): The default gateway or router IP address to be used by the clients.useThisDnsServer(optional): Tells the DHCP server to use this DNS server's IP address to configure the DNS Servers DHCP option for clients.dnsServers(optional): A comma separated list of DNS server IP addresses to be used by the clients. This parameter is ignored whenuseThisDnsServeris set totrue.winsServers(optional): A comma separated list of NBNS/WINS server IP addresses to be used by the clients.ntpServers(optional): A comma separated list of Network Time Protocol (NTP) server IP addresses to be used by the clients.staticRoutes(optional): A|separated list of static routes in format{destination network address}|{subnet mask}|{router/gateway address}to be used by the clients for accessing specified destination networks.vendorInfo(optional): A|separated list of vendor information in format{vendor class identifier}|{vendor specific information}where{vendor specific information}is a colon separated hex string.exclusions(optional): A|separated list of IP address range in format{starting address}|{ending address}that must be excluded or not assigned dynamically to any client by the DHCP server.reservedLeases(optional): A|separated list of reserved IP addresses in format{host name}|{MAC address}|{reserved IP address}|{comments}to be assigned to specific clients based on their MAC address.allowOnlyReservedLeases(optional): Set this parameter totrueto stop dynamic IP address allocation and allocate only reserved IP addresses.
RESPONSE:
{
"response": {},
"status": "ok"
}
Enable DHCP Scope
Enables the DHCP scope allowing the server to allocate leases.
URL:
http://localhost:5380/api/enableDhcpScope?token=x&name=Default
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.
RESPONSE:
{
"response": {},
"status": "ok"
}
Disable DHCP Scope
Disables the DHCP scope and stops any further lease allocations.
URL:
http://localhost:5380/api/disableDhcpScope?token=x&name=Default
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.
RESPONSE:
{
"response": {},
"status": "ok"
}
Delete DHCP Scope
Permanently deletes the DHCP scope from the disk.
URL:
http://localhost:5380/api/deleteDhcpScope?token=x&name=Default
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.
RESPONSE:
{
"response": {},
"status": "ok"
}
Remove DHCP Lease
Removes a dynamic or reserved lease allocation. This API must be used carefully to make sure that there is no IP address conflict caused by removing a lease.
URL:
http://localhost:5380/api/removeDhcpLease?token=x&name=Default&hardwareAddress=00:00:00:00:00:00
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.clientIdentifier(optional): The client identifier for the lease. EitherhardwareAddressorclientIdentifiermust be specified.hardwareAddress(optional): The MAC address of the device bearing the dynamic/reserved lease. EitherhardwareAddressorclientIdentifiermust be specified.
RESPONSE:
{
"response": {},
"status": "ok"
}
Convert To Reserved Lease
Converts a dynamic lease to reserved lease.
URL:
http://localhost:5380/api/convertToReservedLease?token=x&name=Default&hardwareAddress=00:00:00:00:00:00
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.clientIdentifier(optional): The client identifier for the lease. EitherhardwareAddressorclientIdentifiermust be specified.hardwareAddress(optional): The MAC address of the device bearing the dynamic lease. EitherhardwareAddressorclientIdentifiermust be specified.
RESPONSE:
{
"response": {},
"status": "ok"
}
Convert To Dynamic Lease
Converts a reserved lease to dynamic lease.
URL:
http://localhost:5380/api/convertToDynamicLease?token=x&name=Default&hardwareAddress=00:00:00:00:00:00
WHERE:
token: The session token generated by thelogincall.name: The name of the DHCP scope.clientIdentifier(optional): The client identifier for the lease. EitherhardwareAddressorclientIdentifiermust be specified.hardwareAddress(optional): The MAC address of the device bearing the reserved lease. EitherhardwareAddressorclientIdentifiermust be specified.
RESPONSE:
{
"response": {},
"status": "ok"
}