This commit is contained in:
Shreyas Zare
2024-03-16 18:19:11 +05:30
4 changed files with 4 additions and 4 deletions

View File

@@ -4767,7 +4767,7 @@ WHERE:
- `zones` (optional): Set to `true` to backup DNS zone files. Default value is `false`. - `zones` (optional): Set to `true` to backup DNS zone files. Default value is `false`.
- `allowedZones` (optional): Set to `true` to backup allowed zones file. Default value is `false`. - `allowedZones` (optional): Set to `true` to backup allowed zones file. Default value is `false`.
- `blockedZones` (optional): Set to `true` to backup blocked zones file. Default value is `false`. - `blockedZones` (optional): Set to `true` to backup blocked zones file. Default value is `false`.
- `dnsSettings` (optional): Set to `true` to backup DNS settings and certificate files. The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exists within the DNS server's config folder. Default value is `false`. - `dnsSettings` (optional): Set to `true` to backup DNS settings and certificate files. The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exist within the DNS server's config folder. Default value is `false`.
- `logSettings` (optional): Set to `true` to backup log settings file. Default value is `false`. - `logSettings` (optional): Set to `true` to backup log settings file. Default value is `false`.
- `authConfig` (optional): Set to `true` to backup the authentication config file. Default value is `false`. - `authConfig` (optional): Set to `true` to backup the authentication config file. Default value is `false`.

View File

@@ -100,7 +100,7 @@ Release Date: 12 August 2023
- Added support for DNS over [PROXY protocol](https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt) version 1 and 2 for both UDP and TCP transports. This feature allows using a load balancer or reverse proxy in front of the DNS server such that the client's IP address information is passed to the DNS server. This can also be used to provide DNS-over-TLS service with a TLS terminating reverse proxy that forwards request to TCP-PROXY protocol port. - Added support for DNS over [PROXY protocol](https://www.haproxy.org/download/1.8/doc/proxy-protocol.txt) version 1 and 2 for both UDP and TCP transports. This feature allows using a load balancer or reverse proxy in front of the DNS server such that the client's IP address information is passed to the DNS server. This can also be used to provide DNS-over-TLS service with a TLS terminating reverse proxy that forwards request to TCP-PROXY protocol port.
- Updated TLS certificate implementation to allow the TLS handshake to always send the certificate chain. - Updated TLS certificate implementation to allow the TLS handshake to always send the certificate chain.
- Updated Backup and Restore feature to include Web Service and Optional Protocols certificate files when they exists within the DNS server's config folder. - Updated Backup and Restore feature to include Web Service and Optional Protocols certificate files when they exist within the DNS server's config folder.
- Added DNS server uptime info in the About section. - Added DNS server uptime info in the About section.
- Multiple other minor bug fixes and improvements. - Multiple other minor bug fixes and improvements.

View File

@@ -558,7 +558,7 @@ namespace DnsServerCore.Dns.ZoneManagers
if (minimumEntriesToRemove < 1) if (minimumEntriesToRemove < 1)
return; //no need to remove return; //no need to remove
//remove stale records if they exists //remove stale records if they exist
if (serveStale) if (serveStale)
minimumEntriesToRemove -= RemoveExpiredRecordsInternal(false, minimumEntriesToRemove); minimumEntriesToRemove -= RemoveExpiredRecordsInternal(false, minimumEntriesToRemove);

View File

@@ -5216,7 +5216,7 @@ MII...
</div> </div>
</div> </div>
<p><b>Note!</b> The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exists within the DNS server's config folder.</p> <p><b>Note!</b> The Web Service or Optional Protocols TLS certificate (.pfx) files will be included in the backup only if they exist within the DNS server's config folder.</p>
<p><b>Note!</b> It may take several minutes to generate the backup zip file if log files are selected to be backed up which will depend on the size of the log files on the disk.</p> <p><b>Note!</b> It may take several minutes to generate the backup zip file if log files are selected to be backed up which will depend on the size of the log files on the disk.</p>