diff --git a/DnsServerApp.NETCore/Program.cs b/DnsServerApp.NETCore/Program.cs index d848140e..27abbfbe 100644 --- a/DnsServerApp.NETCore/Program.cs +++ b/DnsServerApp.NETCore/Program.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2017 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2018 Shreyas Zare (shreyas@technitium.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -31,7 +31,7 @@ namespace DnsServerApp if (args.Length == 1) configFolder = args[0]; - DnsWebService service = new DnsWebService(configFolder, new Uri("https://technitium.com/download/dns/updateca.bin")); + DnsWebService service = new DnsWebService(configFolder, new Uri("https://technitium.com/download/dns/updateca2.bin")); service.Start(); Console.WriteLine("Technitium DNS Server was started successfully."); diff --git a/DnsServerApp/Program.cs b/DnsServerApp/Program.cs index 7fadd014..e09574aa 100644 --- a/DnsServerApp/Program.cs +++ b/DnsServerApp/Program.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2017 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2018 Shreyas Zare (shreyas@technitium.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -31,7 +31,7 @@ namespace DnsServerApp if (args.Length == 1) configFolder = args[0]; - DnsWebService service = new DnsWebService(configFolder, new Uri("https://technitium.com/download/dns/updatewa.bin")); + DnsWebService service = new DnsWebService(configFolder, new Uri("https://technitium.com/download/dns/updatewa2.bin")); service.Start(); Console.WriteLine("Technitium DNS Server was started successfully."); diff --git a/DnsService/DnsService.cs b/DnsService/DnsService.cs index fa97e242..206e6acc 100644 --- a/DnsService/DnsService.cs +++ b/DnsService/DnsService.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2017 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2018 Shreyas Zare (shreyas@technitium.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,7 +34,7 @@ namespace DnsService protected override void OnStart(string[] args) { - _service = new DnsWebService(null, new Uri("https://technitium.com/download/dns/updatews.bin")); + _service = new DnsWebService(null, new Uri("https://technitium.com/download/dns/updatews2.bin")); _service.Start(); }