Forums
New posts
Search forums
News
Security News
Technology News
Giveaways
Giveaways, Promotions and Contests
Discounts & Deals
Reviews
Users Reviews
Video Reviews
Support
Windows Malware Removal Help & Support
Inactive Support Threads
Mac Malware Removal Help & Support
Mobile Malware Removal Help & Support
Blog
Log in
Register
What's new
Search
Search titles only
By:
Search titles only
By:
Reply to thread
Menu
Install the app
Install
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Forums
Software
General Apps
VPN and DNS
NextDNS setups
Message
<blockquote data-quote="TairikuOkami" data-source="post: 1081295" data-attributes="member: 61892"><p>Once DoH is enabled (though you might need to have <a href="https://www.thewindowsclub.com/enable-or-disable-dnr-windows" target="_blank">DNR enabled</a> for the first time, so DOH can be verified)</p><p>[CODE]reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters" /v "EnableAutoDoh" /t REG_DWORD /d "2" /f</p><p>reg add "HKLM\Software\Policies\Microsoft\Windows NT\DNSClient" /v "DoHPolicy" /t REG_DWORD /d "3" /f</p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters" /v "EnableDnr" /t REG_DWORD /d "0" /f</p><p>[/CODE]</p><p></p><p>you can even set it up via registry by creating a template with your custom link and enabling it for your adapter's ID directly:</p><p>[CODE]wmic nicconfig where DHCPEnabled=TRUE call SetDNSServerSearchOrder ("45.90.28.99","45.90.30.99")</p><p></p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters\DohWellKnownServers\45.90.28.99" /v "Template" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f</p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters\DohWellKnownServers\45.90.30.99" /v "Template" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f</p><p></p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.28.99" /v "DohFlags" /t REG_QWORD /d "2" /f</p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.28.99" /v "DohTemplate" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f</p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.30.99" /v "DohFlags" /t REG_QWORD /d "2" /f</p><p>reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.30.99" /v "DohTemplate" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f[/CODE]</p><p></p><p>[ATTACH]282500[/ATTACH]</p><p></p><p>Windows also likes to use the default DNS (UDP via port 53), you might want to block it in the firewall, so it will not get used.</p><p></p><p>[ATTACH]282501[/ATTACH]</p></blockquote><p></p>
[QUOTE="TairikuOkami, post: 1081295, member: 61892"] Once DoH is enabled (though you might need to have [URL='https://www.thewindowsclub.com/enable-or-disable-dnr-windows']DNR enabled[/URL] for the first time, so DOH can be verified) [CODE]reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters" /v "EnableAutoDoh" /t REG_DWORD /d "2" /f reg add "HKLM\Software\Policies\Microsoft\Windows NT\DNSClient" /v "DoHPolicy" /t REG_DWORD /d "3" /f reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters" /v "EnableDnr" /t REG_DWORD /d "0" /f [/CODE] you can even set it up via registry by creating a template with your custom link and enabling it for your adapter's ID directly: [CODE]wmic nicconfig where DHCPEnabled=TRUE call SetDNSServerSearchOrder ("45.90.28.99","45.90.30.99") reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters\DohWellKnownServers\45.90.28.99" /v "Template" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f reg add "HKLM\System\CurrentControlSet\Services\Dnscache\Parameters\DohWellKnownServers\45.90.30.99" /v "Template" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.28.99" /v "DohFlags" /t REG_QWORD /d "2" /f reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.28.99" /v "DohTemplate" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.30.99" /v "DohFlags" /t REG_QWORD /d "2" /f reg add "HKLM\System\CurrentControlSet\Services\Dnscache\InterfaceSpecificParameters\{2fea24ab-7667-4d1c-87c9-220b61023550}\DohInterfaceSettings\Doh\45.90.30.99" /v "DohTemplate" /t REG_SZ /d "https://dns.nextdns.io/xxxxxx/LianLiPC-7NB" /f[/CODE] [ATTACH alt="capture_03312024_125652.jpg"]282500[/ATTACH] Windows also likes to use the default DNS (UDP via port 53), you might want to block it in the firewall, so it will not get used. [ATTACH]282501[/ATTACH] [/QUOTE]
Insert quotes…
Verification
Post reply
Top