]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
doc nit: tweak the link to dnsflagday.net
authorVladimír Čunát <vladimir.cunat@nic.cz>
Sat, 5 Nov 2022 06:21:43 +0000 (07:21 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Mon, 7 Nov 2022 17:08:29 +0000 (18:08 +0100)
As the web is now, combination without www doesn't redirect https
(only http).  So let's switch to the final URL; apex is problematic.

NEWS
daemon/bindings/net_dns_tweaks.rst
doc/upgrading.rst
lib/defines.h

diff --git a/NEWS b/NEWS
index f1fa5f3e212e6595a178f6dbba61a35eef7ab62a..5238331abfedb3f8b6b41077c84bc046f34d52c2 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -241,7 +241,7 @@ Improvements
 - doh2: add native C module for DNS-over-HTTPS (#600, !997)
 - xdp: add server-side XDP support for higher UDP performance (#533, !1083)
 - lower default EDNS buffer size to 1232 bytes (#538, #300, !920);
-  see https://dnsflagday.net/2020/
+  see https://www.dnsflagday.net/2020/
 - net: split the EDNS buffer size into upstream and downstream (!1026)
 - lua-http doh: answer to /dns-query endpoint as well as /doh (!1069)
 - improve resiliency against UDP fragmentation attacks (disable PMTUD) (!1061)
index 4bdc1161bb7f738192857b78b6cf9a8f0ed65453..4cfeba64df6eded5a3393693341b256f014c4446 100644 (file)
@@ -10,7 +10,7 @@ Default values should not be changed except for very special cases.
 
    Get/set maximum EDNS payload size advertised in DNS packets. Different values can be configured for communication downstream (towards clients) and upstream (towards other DNS servers). Set and also get operations use values in this order.
 
-   Default is 1232 bytes which was chosen to minimize risk of `issues caused by IP fragmentation <https://blog.apnic.net/2019/07/12/its-time-to-consider-avoiding-ip-fragmentation-in-the-dns/>`_. Further details can be found at `DNS Flag Day 2020 <https://dnsflagday.net/2020/>`_ web site.
+   Default is 1232 bytes which was chosen to minimize risk of `issues caused by IP fragmentation <https://blog.apnic.net/2019/07/12/its-time-to-consider-avoiding-ip-fragmentation-in-the-dns/>`_. Further details can be found at `DNS Flag Day 2020 <https://www.dnsflagday.net/2020/>`_ web site.
 
    Minimal value allowed by standard :rfc:`6891` is 512 bytes, which is equal to DNS packet size without Extension Mechanisms for DNS. Value 1220 bytes is minimum size required by DNSSEC standard :rfc:`4035`.
 
index c35fb1b598a4eae366371cb53fb3b5099722dd83..56655faff6b8bc02fb917a05760bbff30817e37c 100644 (file)
@@ -94,7 +94,7 @@ Users
 * Users of :ref:`control-sockets` API need to terminate each command sent to resolver with newline
   character (ASCII ``\n``). Correct usage: ``cache.stats()\n``.
   Newline terminated commands are accepted by all resolver versions >= 1.0.0.
-* `DNS Flag Day 2020 <https://dnsflagday.net/2020/>`_ is now effective and Knot Resolver uses
+* `DNS Flag Day 2020 <https://www.dnsflagday.net/2020/>`_ is now effective and Knot Resolver uses
   maximum size of UDP answer to 1232 bytes. Please double-check your firewall,
   it has to allow DNS traffic on UDP and **also TCP** port 53.
 * Human readable output in interactive mode and from :ref:`control-sockets` was improved and
index 226f7216f0849c69fa809af65768e464c09819d8..156ff6188a5d7704ed6ed634862c710b7c4aff77 100644 (file)
@@ -64,7 +64,7 @@ static inline int KR_COLD kr_error(int x) {
 #define KR_DNS_DOH_PORT 443
 #define KR_DNS_TLS_PORT 853
 #define KR_EDNS_VERSION 0
-#define KR_EDNS_PAYLOAD 1232 /* Default UDP payload; see https://dnsflagday.net/2020/ */
+#define KR_EDNS_PAYLOAD 1232 /* Default UDP payload; see https://www.dnsflagday.net/2020/ */
 #define KR_CACHE_DEFAULT_TTL_MIN (5) /* avoid bursts of queries */
 #define KR_CACHE_DEFAULT_TTL_MAX (6 * 24 * 3600) /* 6 days, like the root NS TTL */