mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-04 00:59:25 +00:00
Closes #4242.
Updates #4244.
Squashed commit of the following:
commit 3a2296a7a70006cf6777e54ce1e2fc3559aec5be
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Feb 9 21:23:43 2022 +0300
client: imp more
commit 3aacc8696ac694ff459fd33ba7beeeabd2569a55
Merge: b28a120f 2a5b5f19
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Feb 9 21:21:59 2022 +0300
Merge branch 'master' into 4244-imp-i18n
commit b28a120fe9aa68507b173717059b7b259097d6a4
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Wed Feb 9 14:49:49 2022 +0300
client: imp texts more
commit c1fa6ca336f2d5bdcc67836f348be4843a0a8f79
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Feb 8 21:12:15 2022 +0300
all: use "ClientID" consistently
142 lines
5.1 KiB
JavaScript
142 lines
5.1 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Trans, withTranslation } from 'react-i18next';
|
|
import { COMMENT_LINE_DEFAULT_TOKEN } from '../../../../helpers/constants';
|
|
|
|
const Examples = (props) => (
|
|
<div className="list leading-loose">
|
|
<Trans>examples_title</Trans>:
|
|
<ol className="leading-loose">
|
|
<li>
|
|
<code>94.140.14.140</code>: {props.t('example_upstream_regular')}
|
|
</li>
|
|
<li>
|
|
<code>tls://dns-unfiltered.adguard.com</code>:
|
|
<span>
|
|
<Trans
|
|
components={[
|
|
<a
|
|
href="https://en.wikipedia.org/wiki/DNS_over_TLS"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="0"
|
|
>
|
|
DNS-over-TLS
|
|
</a>,
|
|
]}
|
|
>
|
|
example_upstream_dot
|
|
</Trans>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<code>https://dns-unfiltered.adguard.com/dns-query</code>:
|
|
<span>
|
|
<Trans
|
|
components={[
|
|
<a
|
|
href="https://en.wikipedia.org/wiki/DNS_over_HTTPS"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="0"
|
|
>
|
|
DNS-over-HTTPS
|
|
</a>,
|
|
]}
|
|
>
|
|
example_upstream_doh
|
|
</Trans>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<code>quic://dns-unfiltered.adguard.com:784</code>:
|
|
<span>
|
|
<Trans
|
|
components={[
|
|
<a
|
|
href="https://tools.ietf.org/html/draft-huitema-quic-dnsoquic-07"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="0"
|
|
>
|
|
DNS-over-QUIC
|
|
</a>,
|
|
]}
|
|
>
|
|
example_upstream_doq
|
|
</Trans>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<code>tcp://94.140.14.140</code>: <Trans>example_upstream_tcp</Trans>
|
|
</li>
|
|
<li>
|
|
<code>sdns://...</code>:
|
|
<span>
|
|
<Trans
|
|
components={[
|
|
<a
|
|
href="https://dnscrypt.info/stamps/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="0"
|
|
>
|
|
DNS Stamps
|
|
</a>,
|
|
<a
|
|
href="https://dnscrypt.info/"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="1"
|
|
>
|
|
DNSCrypt
|
|
</a>,
|
|
<a
|
|
href="https://en.wikipedia.org/wiki/DNS_over_HTTPS"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="2"
|
|
>
|
|
DNS-over-HTTPS
|
|
</a>,
|
|
]}
|
|
>
|
|
example_upstream_sdns
|
|
</Trans>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<code>[/example.local/]94.140.14.140</code>:
|
|
<span>
|
|
<Trans
|
|
components={[
|
|
<a
|
|
href="https://github.com/AdguardTeam/AdGuardHome/wiki/Configuration#upstreams-for-domains"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
key="0"
|
|
>
|
|
Link
|
|
</a>,
|
|
]}
|
|
>
|
|
example_upstream_reserved
|
|
</Trans>
|
|
</span>
|
|
</li>
|
|
<li>
|
|
<code>{COMMENT_LINE_DEFAULT_TOKEN} comment</code>:
|
|
<span>
|
|
<Trans>example_upstream_comment</Trans>
|
|
</span>
|
|
</li>
|
|
</ol>
|
|
</div>
|
|
);
|
|
|
|
Examples.propTypes = {
|
|
t: PropTypes.func.isRequired,
|
|
};
|
|
|
|
export default withTranslation()(Examples);
|