From: Don Armstrong Date: Sat, 2 Jul 2022 14:30:39 +0000 (-0700) Subject: uses spaces instead of ``` in post X-Git-Url: https://git.donarmstrong.com/?p=don.git;a=commitdiff_plain;h=7fd2260c66988d44866e6001696cfb7b0a434a89 uses spaces instead of ``` in post --- diff --git a/posts/dnswl_ipv6_blocking.mdwn b/posts/dnswl_ipv6_blocking.mdwn index c38fce4..57ddeb2 100644 --- a/posts/dnswl_ipv6_blocking.mdwn +++ b/posts/dnswl_ipv6_blocking.mdwn @@ -23,14 +23,12 @@ them.](https://bind9.readthedocs.io/en/v9_16_6/reference.html#server-statement-d Using this feature, we can ignore the dnswl IPv6 servers which are returning bad results, and only use IPv4 to contact them: -``` -server 2a01:7e00:e000:293::a:1000 { bogus yes; }; -server 2607:5300:201:3100::3e79 { bogus yes; }; -server 2600:3c01::21:1faa { bogus yes; }; -server 2a01:4f8:c2c:52e::feed { bogus yes; }; -server 2400:8901::f03c:91ff:fee9:a89 { bogus yes; }; -server 2a01:4f8:1c0c:708f::53 { bogus yes; }; -``` + server 2a01:7e00:e000:293::a:1000 { bogus yes; }; + server 2607:5300:201:3100::3e79 { bogus yes; }; + server 2600:3c01::21:1faa { bogus yes; }; + server 2a01:4f8:c2c:52e::feed { bogus yes; }; + server 2400:8901::f03c:91ff:fee9:a89 { bogus yes; }; + server 2a01:4f8:1c0c:708f::53 { bogus yes; }; Hope that helps anyone else (and future me) running into this issue.