Enable DNS over HTTPS using CloudFlare DNS - Printable Version +- CentBrowser Forum (https://www.centbrowser.net/en) +-- Forum: Members Area (https://www.centbrowser.net/en/forumdisplay.php?fid=3) +--- Forum: General Discuss (https://www.centbrowser.net/en/forumdisplay.php?fid=5) +--- Thread: Enable DNS over HTTPS using CloudFlare DNS (/showthread.php?tid=3155) |
Enable DNS over HTTPS using CloudFlare DNS - hemlok89 - 09-08-2019 Right now there is no straightforward way of enabling DoH in Chrome or any Chromium browser. There are some flags that can be enabled or starting parameters can be added. Here is a simple way to change your DNS server to CloudFlare 1.1.1.1 and use DNS over HTTPS. Go to CentBrowser settings. Go to Other Settings in left column. In the Startup Command line box, paste this code Code: --enable-features="dns-over-https<DoHTrial" --force-fieldtrials="DoHTrial/Group1" --force-fieldtrial-params="DoHTrial.Group1:server/https%3A%2F%2F1.1.1.1%2Fdns-query/method/POST Restart CentBrowser. Go to DNSLeakTest to check if you are using only CLoudFlare DNS. RE: Enable DNS over HTTPS using CloudFlare DNS - Admini - 09-09-2019 Thanks for sharing. By the way, should a double quotes be placed after "method/POST"? RE: Enable DNS over HTTPS using CloudFlare DNS - mc0134 - 09-09-2019 Code: --enable-features="dns-over-https<DoHTrial" --force-fieldtrials="DoHTrial/Group1" --force-fieldtrial-params="DoHTrial.Group1:server/https%3A%2F%2F1.1.1.1%2Fdns-query/method/POST Can across this link, though I don't use the DOH in Chrome feature, seems like that's exactly what you gotta do. No double quotes placed after "method/POST" SOURCE: https://www.zdnet.com/article/how-to-enable-dns-over-https-doh-in-google-chrome/ RE: Enable DNS over HTTPS using CloudFlare DNS - hemlok89 - 09-09-2019 (09-09-2019, 03:01 PM)CentBrowser Wrote: Thanks for sharing. No quotation mark is needed. This method was originally posted on bugs.chromium.com. Here is the link RE: Enable DNS over HTTPS using CloudFlare DNS - wOxxOm - 09-10-2019 There should be a closing doublequote after POST even if it works without it because command line parameters are supposed to be quoted properly. Just because some developer works for Microsoft or Google doesn't mean they can't make typos or mistakes. RE: Enable DNS over HTTPS using CloudFlare DNS - Admini - 09-11-2019 (09-10-2019, 05:07 PM)wOxxOm Wrote: There should be a closing doublequote after POST even if it works without it because command line parameters are supposed to be quoted properly. Just because some developer works for Microsoft or Google doesn't mean they can't make typos or mistakes. I agree. |