WebService: setting default settings for RandomizeName to true when config file is missing.

This commit is contained in:
Shreyas Zare
2020-10-18 16:02:08 +05:30
parent 59b2367f22
commit 2af5fa9662

View File

@@ -4245,6 +4245,7 @@ namespace DnsServerCore
_dnsServer.AllowRecursion = true;
_dnsServer.AllowRecursionOnlyForPrivateNetworks = true; //default true for security reasons
_dnsServer.RandomizeName = true; //default true to enable security feature
SaveConfigFile();
}