Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Open DNS with Quad9 #58

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -194,14 +194,14 @@ export const WebConnectivityDetails = ({ measurement }) => {
<p>
<FormattedMessage
id='nettests.webConnectivity.circumvention.changeDNS.text'
defaultMessage='Try {changeDNS} to one that does not implement blocking, such as OpenDNS ({openDNS}) or Google DNS: {googleDNS}.'
defaultMessage='Try {changeDNS} to one that does not implement blocking, such as Quad9 ({quad9}) or Google DNS: {googleDNS}.'
values={{
changeDNS: <strong><FormattedMessage
id='nettests.webConnectivity.circumvention.changeDNS.text.changeDNS'
defaultMessage='changing your DNS resolver'
/></strong>,
googleDNS: <code>8.8.8.8</code>,
openDNS: <code>208.67.222.222</code>
quad9: <code>9.9.9.9</code>
}}
/>
</p>
Expand All @@ -210,8 +210,8 @@ export const WebConnectivityDetails = ({ measurement }) => {
id='nettests.webConnectivity.circumvention.changeDNS.instructions'
defaultMessage='You can find instructions on how to change your DNS resolver through the following URL: {instructionsLink}'
values={{
instructionsLink:<a href='https://www.opendns.com/setupguide/' target='_blank'>
https://www.opendns.com/setupguide/
instructionsLink:<a href='https://quad9.net/#/#setup-quad9' target='_blank'>
https://quad9.net/#/#setup-quad9
</a>
}}
/>
Expand Down