• Re: ISP's router being helpful

    From George at Clug@21:1/5 to All on Sun Jan 19 12:00:01 2025
    If everything you want to do is internal, maybe you can use PFSence's DNS settings?

    https://docs.netgate.com/pfsense/en/latest/services/dhcp/ipv4.html
    Server Options
    DNS Servers:
    Defines up to four DNS server IP addresses which the server provides to clients. To use custom DNS Servers instead of automatic choices, fill in the DNS server IP addresses.

    https://docs.netgate.com/pfsense/en/latest/services/dns/index.html

    https://docs.netgate.com/pfsense/en/latest/services/dns/wildcards.html

    George.

    On Sunday, 19-01-2025 at 21:21 mick.crane wrote:
    Hi,
    Obviously I don't understand the internet and don't know what I'm doing.
    The other day changed the ISP's (Sky) router to have fibre connection.
    I have a PC with apache2 presenting an index.html which is a page of
    links to various documents and websites.
    The link to e.g. the BBC works fine but the link to my roundcube install
    on the same PC shows gstatic.com in the address bar and a blank page.
    This seems to be something to do with the ISP using google to cache
    external websites.
    It seems Sky wants me to login to their network.
    Once I've clicked on some ISP's page vivaldi presented then the
    roundcube link works.
    I have the local network going through pfsense which should be
    firewalling and separating the wireless from the local network.
    This arrangement has worked for years until changing the router.
    The way I'm doing things is a bodge as I don't have a proper internet
    facing domain for these local things.
    Perhaps it is something about using the ISP's DNS for resolving things? regards
    mick



    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to mick.crane on Sun Jan 19 13:10:02 2025
    On Sun, Jan 19, 2025 at 10:21:45AM +0000, mick.crane wrote:
    Hi,
    Obviously I don't understand the internet and don't know what I'm doing.

    Honestly. Who does, these days?

    The other day changed the ISP's (Sky) router to have fibre connection.
    I have a PC with apache2 presenting an index.html which is a page of links
    to various documents and websites.
    The link to e.g. the BBC works fine but the link to my roundcube install on the same PC shows gstatic.com in the address bar and a blank page. This
    seems to be something to do with the ISP using google to cache external websites.

    To try to debug those things, you'll have to try small steps. How is your page's URL pointing to your Roundcoube written? Most probably with a name:

    - try to find how this name is being resolved to an IP:

    host <your-local-roundcube-name>

    (perhaps "host -a" and post the results here if you can't make heads or
    tails of them).

    Does the result correspond to your expected IP address?

    If not, you'll have to fix your DNS resolution thingy. AFAIK, pfsense can
    do that.

    If yes, more digging is in order.

    [...]

    The way I'm doing things is a bodge as I don't have a proper internet facing domain for these local things.

    This shouldn't be necessary. On the contrary, having a local net you have control of can be very convenient.

    Perhaps it is something about using the ISP's DNS for resolving things? regards

    Yes, but you should be able to override that at your whim with pfsense.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ4zprgAKCRAFyCz1etHa RvFRAJ9ogOECXrZzlQCESyHaOKI8J+8tygCdEtG/ncBwBvi52VIyFG/HhnWuAQs=
    =I6Dz
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to mick.crane on Sun Jan 19 15:00:01 2025
    On Sun, Jan 19, 2025 at 12:53:20PM +0000, mick.crane wrote:
    On 2025-01-19 12:01, tomas@tuxteam.de wrote:

    [...]

    OK. I can ping the PC with roundcube on it by name but "host <name-of-pc-with-roundcube-on-it>" fails to resolve.

    Aha. This means that your roundcube (whatever name it has, you
    didn't tell us yet :) is probably in your /etc/hosts: "ping", as
    most civilised programs do, goes through the resolver [0]: if
    other stars align [1], this first goes through /etc/hosts). But
    "host" goes directly to whatever DNS is boss in your box.

    Most probably you'll want to set up a forwarding DNS on your
    pfsense and use that.

    I need to go through everything for the 4th time ( -> home -> local -> home
    ) and change the domain to .home.arpa .
    I'll do that before anything else.
    mick

    That won't help. You'll have to convince things to look into hosts
    first. If you go through your browser, there's still the possibility
    that it's doing DoH (DNS over HTTP), then it'll ignore everything
    you do locally and go ask your friendly surveillance capitalist
    (Chrome, I'm looking at you).

    Of course, following that recommendation won't hurt either, but this
    is definitely not your problem.

    [0] This is part of the libc and (roughly) translates host names to
    IP addresses for the programs running in your box. Eventually,
    it goes out to ask some DNS servers.
    [1] Some of those stars live in /etc/nsswitch.conf. Mine has, among
    others:

    hosts: files mdns4_minimal [NOTFOUND=return] dns

    meaning that to resolve a host, you first look into /etc/hosts
    (that's the "files"), then mdns (gotta remove that, no mdns here),
    then DNS.

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ40E+gAKCRAFyCz1etHa Rrh7AJ0ZCbNy8sf+op1+HyU4lOBuMj/iMgCcCWIr1eDYTVo7+KzZ9t6JrpHlezc=
    =4+7u
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Nicholas Geovanis on Sun Jan 19 19:40:01 2025
    On Sun, Jan 19, 2025 at 10:51:58AM -0600, Nicholas Geovanis wrote:
    On Sun, Jan 19, 2025, 7:58 AM <tomas@tuxteam.de> wrote:

    ....
    [0] This is part of the libc and (roughly) translates host names to
    IP addresses for the programs running in your box. Eventually,
    it goes out to ask some DNS servers.


    Along the way it's (probably) consulting /etc/resolv.conf which is where
    the "resolver" gets most of its own config information. Such as how to "assume" the network name given only a hostname, and the order in which DNS servers should be queried and their names or network addresses.

    Then there's /etc/nsswitch.conf as already described below, that stands for "name-service switch". Originally a sort-of meta-config for name
    resolution, later other random configuration gunk got included there :-)

    Thanks for making the circle more round :-)

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ41GzgAKCRAFyCz1etHa RgTCAJ9r3xCXX5LAxKYs3HkU5sEIm0xXhgCdEA2Eg+u9lhUZ2wlZJWpIzR9qlG4=
    =TMRl
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From George at Clug@21:1/5 to All on Sun Jan 19 22:40:01 2025
    I had forgotten to mention about "DNS over HTTPS", which besides encrypting DNS traffic, usually use a trusted Internet based DNS service, instead of local DNS settings.

    https://support.mozilla.org/en-US/kb/dns-over-https

    This maybe why your web browser does not know about local domain names.

    I had to disable this feature to get systems to discover my local web based servers.
    It would be nice if this feature would also allow you to define specific exceptions for local web servers/services.

    George.

    On Sunday, 19-01-2025 at 21:21 mick.crane wrote:
    Hi,
    Obviously I don't understand the internet and don't know what I'm doing.
    The other day changed the ISP's (Sky) router to have fibre connection.
    I have a PC with apache2 presenting an index.html which is a page of
    links to various documents and websites.
    The link to e.g. the BBC works fine but the link to my roundcube install
    on the same PC shows gstatic.com in the address bar and a blank page.
    This seems to be something to do with the ISP using google to cache
    external websites.
    It seems Sky wants me to login to their network.
    Once I've clicked on some ISP's page vivaldi presented then the
    roundcube link works.
    I have the local network going through pfsense which should be
    firewalling and separating the wireless from the local network.
    This arrangement has worked for years until changing the router.
    The way I'm doing things is a bodge as I don't have a proper internet
    facing domain for these local things.
    Perhaps it is something about using the ISP's DNS for resolving things? regards
    mick



    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From debian-user@howorth.org.uk@21:1/5 to George at Clug on Mon Jan 20 13:20:01 2025
    George at Clug <Clug@goproject.info> wrote:
    I had forgotten to mention about "DNS over HTTPS", which besides
    encrypting DNS traffic, usually use a trusted Internet based DNS
    service, instead of local DNS settings.

    https://support.mozilla.org/en-US/kb/dns-over-https

    This maybe why your web browser does not know about local domain
    names.

    I had to disable this feature to get systems to discover my local web
    based servers. It would be nice if this feature would also allow you
    to define specific exceptions for local web servers/services.

    I just use IP addresses for local web services, so I can use DOH in my
    browser.

    George.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to George at Clug on Mon Jan 20 16:50:01 2025
    On Mon, Jan 20, 2025 at 08:36:11AM +1100, George at Clug wrote:
    I had forgotten to mention about "DNS over HTTPS", which besides encrypting DNS traffic, usually use a trusted Internet based DNS service, instead of local DNS settings.

    But I mentioned it. It brought us a lot of fun at
    $WORKPLACE recently.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ45uxQAKCRAFyCz1etHa RuZqAJ4z7RZ8ZD71UoSmeL82v/gjik+jlwCfZDWEIhJHtjg4IycukZ2yZqUKnyg=
    =yA5K
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to debian-user@howorth.org.uk on Mon Jan 20 16:50:01 2025
    On Mon, Jan 20, 2025 at 12:13:09PM +0000, debian-user@howorth.org.uk wrote:

    [...]

    I just use IP addresses for local web services, so I can use DOH in my browser.

    I'm at a loss why somebody would want to do that (although I pretty
    well know why Google wants everyone to).

    But to each their own :-)

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ45vUwAKCRAFyCz1etHa RlAzAJ4xfMCw8eywtgAhypK7szmCP1wS+wCeOxlxhB9bb1ehR9RqR+HEMODIeEQ=
    =sNWL
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From debian-user@howorth.org.uk@21:1/5 to tomas@tuxteam.de on Mon Jan 20 18:10:01 2025
    <tomas@tuxteam.de> wrote:
    On Mon, Jan 20, 2025 at 12:13:09PM +0000, debian-user@howorth.org.uk
    wrote:

    [...]

    I just use IP addresses for local web services, so I can use DOH in
    my browser.

    I'm at a loss why somebody would want to do that (although I pretty
    well know why Google wants everyone to).

    What does google have to do with anything?

    But to each their own :-)

    Cheers

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to debian-user@howorth.org.uk on Mon Jan 20 18:30:01 2025
    On Mon, Jan 20, 2025 at 05:04:16PM +0000, debian-user@howorth.org.uk wrote:
    <tomas@tuxteam.de> wrote:
    On Mon, Jan 20, 2025 at 12:13:09PM +0000, debian-user@howorth.org.uk
    wrote:

    [...]

    I just use IP addresses for local web services, so I can use DOH in
    my browser.

    I'm at a loss why somebody would want to do that (although I pretty
    well know why Google wants everyone to).

    What does google have to do with anything?

    If you are doing DoH on Chrome... guess where the DNS requests are
    going? (FF goes, AFAIK, to Cloudflare, which ain't much better).

    More behavioral surplus to The Google. Me says "no, thanks".

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ46F/QAKCRAFyCz1etHa Rj+rAJ9i3Wbf6ozCKdrZWlc2dTSFzfORZACfdzuInLqNDgwED/s/LXe1wfPXokg=
    =8Ye4
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From debian-user@howorth.org.uk@21:1/5 to tomas@tuxteam.de on Mon Jan 20 21:50:01 2025
    <tomas@tuxteam.de> wrote:
    On Mon, Jan 20, 2025 at 05:04:16PM +0000, debian-user@howorth.org.uk
    wrote:
    <tomas@tuxteam.de> wrote:
    On Mon, Jan 20, 2025 at 12:13:09PM +0000,
    debian-user@howorth.org.uk wrote:

    [...]

    I just use IP addresses for local web services, so I can use
    DOH in my browser.

    I'm at a loss why somebody would want to do that (although I
    pretty well know why Google wants everyone to).

    What does google have to do with anything?

    If you are doing DoH on Chrome... guess where the DNS requests are
    going? (FF goes, AFAIK, to Cloudflare, which ain't much better).

    FF gives you a free choice of DNS service.

    More behavioral surplus to The Google. Me says "no, thanks".

    Cheers

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to mick.crane on Tue Jan 21 09:50:01 2025
    On Mon, Jan 20, 2025 at 10:03:23PM +0000, mick.crane wrote:
    On 2025-01-19 13:58, tomas@tuxteam.de wrote:
    On Sun, Jan 19, 2025 at 12:53:20PM +0000, mick.crane wrote:
    On 2025-01-19 12:01, tomas@tuxteam.de wrote:

    [...]

    OK. I can ping the PC with roundcube on it by name but "host <name-of-pc-with-roundcube-on-it>" fails to resolve.

    Aha. This means that your roundcube (whatever name it has, you
    didn't tell us yet :)

    I haven't tried to access it directly as yet.
    It is a <a href> link to a soft link to the roundcube install.
    I did it like that to test other installations.

    OK, the interesting tidbits are:

    - is the host name you use internally for your Roundcube in
    that URL? Or something else? I guess it's the first
    - if yes: what happens if you ping that host name from exactly
    the same box your browser runs in?

    If the ping complains that it can't resolve the name, the problem
    is in your resolver setup. If it can, I'd look for the DoH (DNS-
    over-http) settings of your browser.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ49dogAKCRAFyCz1etHa RuNXAJ4mZqHB5HovLZkXUhzttTc19a7xggCePB8C3XjUwVhayR1/qOC+Quf8F9E=
    =dC4K
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Greg Wooledge@21:1/5 to mick.crane on Tue Jan 21 13:20:01 2025
    On Tue, Jan 21, 2025 at 10:44:22 +0000, mick.crane wrote:
    On 2025-01-21 08:41, tomas@tuxteam.de wrote:
    If the ping complains that it can't resolve the name, the problem
    is in your resolver setup. If it can, I'd look for the DoH (DNS-
    over-http) settings of your browser.

    mick@courgette:~$ ping rapunzel.home
    PING rapunzel.home (10.0.0.2) 56(84) bytes of data.
    64 bytes from rapunzel.home (10.0.0.2): icmp_seq=1 ttl=64 time=0.130 ms

    OK, that's good. So, now you'll need to look at your browser configs.
    Going to the list archives and finding the first message in this thrread,
    it looks like your browser is "vivaldi". I've never used that one, so
    I have no idea where to look for its name resolution configuration,
    other than "your favorite web search engine".

    E.g. <https://www.google.com/search?q=vivaldi+dns+configuration>

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dan Ritter@21:1/5 to mick.crane on Tue Jan 21 14:50:01 2025
    mick.crane wrote:
    On 2025-01-21 08:41, tomas@tuxteam.de wrote:

    Not quite sure what is meant by that. The link is http://rapunzel.home/roundcubemail
    Are you supposed to be able to ping a service?

    mick@courgette:~$ ping http://rapunzel.home/roundcubemail
    ping: http://rapunzel.home/roundcubemail: Name or service not known mick@courgette:~$ ping http://rapunzel.home
    ping: http://rapunzel.home: Name or service not known
    mick@courgette:~$ ping rapunzel.home
    PING rapunzel.home (10.0.0.2) 56(84) bytes of data.
    64 bytes from rapunzel.home (10.0.0.2): icmp_seq=1 ttl=64 time=0.130 ms


    ping sends an ICMP packet to an IP address (which may be
    specified or looked up from a domain name) and reports the time
    between sending and receiving a reply packet.

    It can be blocked by a firewall, dropped by a busy router, or
    not answered because the other end has decided not to do so
    (rare) or is not working.

    A service designated by a URL (such as http://rapunzel.home/)
    uses the same domain name lookup to find the IP address, but the
    specific protocol (http, here) must be used to make requests.

    curl is a tool which can make requests in many protocols. There
    are others.

    -dsr-

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Greg Wooledge on Tue Jan 21 16:20:01 2025
    On Tue, Jan 21, 2025 at 07:17:53AM -0500, Greg Wooledge wrote:

    [...]

    E.g. <https://www.google.com/search?q=vivaldi+dns+configuration>

    Ah, oh -- I overlooked (or forgot) that OP's brower is Vivaldi.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ4+5fQAKCRAFyCz1etHa RrXhAJ93QSMYS14FhRm7fik+KUgyLWJDwwCeNUyiRYlRjwU5AzDYD9PU/w7IrvY=
    =DTI0
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to mick.crane on Tue Jan 21 16:20:01 2025
    On Tue, Jan 21, 2025 at 10:44:22AM +0000, mick.crane wrote:
    On 2025-01-21 08:41, tomas@tuxteam.de wrote:
    <snipped>
    - is the host name you use internally for your Roundcube in
    that URL? Or something else? I guess it's the first
    - if yes: what happens if you ping that host name from exactly
    the same box your browser runs in?

    If the ping complains that it can't resolve the name, the problem
    is in your resolver setup. If it can, I'd look for the DoH (DNS-
    over-http) settings of your browser.

    Cheers

    Not quite sure what is meant by that. The link is http://rapunzel.home/roundcubemail
    Are you supposed to be able to ping a service?

    No -- but the host, rapunzel.home. Sorry for having been unclear.

    My intention is that ping does two things: first, resolve the host
    name to an IP address, then check connectivity by sending IP packets
    and listening to the answers.

    If ping can resolve rapunzel.home, but the browser is not, then it's
    the browser you'll have to have a stern word with...


    mick@courgette:~$ ping http://rapunzel.home/roundcubemail
    ping: http://rapunzel.home/roundcubemail: Name or service not known mick@courgette:~$ ping http://rapunzel.home
    ping: http://rapunzel.home: Name or service not known
    mick@courgette:~$ ping rapunzel.home
    PING rapunzel.home (10.0.0.2) 56(84) bytes of data.
    64 bytes from rapunzel.home (10.0.0.2): icmp_seq=1 ttl=64 time=0.130 ms

    ... which is actually the case.

    I know it's probably a mess. I stopped reading when it worked.
    mick

    It's not a mess. It's the browser (which actually is worse than a mess.
    I'm still in search of polite words which would be adequate).

    Most probably it's doing DNS-over-HTTP, thus bypassing your resolver
    settings. I think here [1] they explain how to disable that. At the
    same time they'll tell you that it's the best thing since sliced bread,
    steeped as they are in ad industry's groupthink. Rubbing salt in the
    wound -- surveillance capitalism is petty like that.

    Cheer
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ4+5LAAKCRAFyCz1etHa RrxjAJ9vX7pVNDleOCv8Kn6T0wEROSrfBQCeKAgn61sb1qJirZmrGNRl762IhFc=
    =agD7
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Max Nikulin on Tue Jan 21 17:40:01 2025
    On Tue, Jan 21, 2025 at 10:38:51PM +0700, Max Nikulin wrote:
    On 19/01/2025 17:21, mick.crane wrote:
    The other day changed the ISP's (Sky) router to have fibre connection.

    Maybe the previous router was configured to serve .home DNS zone.

    Judging by the other symptoms (ping working, browser not) the resolver
    in the box is OK (the .home names are resolved in /etc/hosts). So I'm
    nearly convinced it's the browser doing DoH (it's being rolled out at
    the moment).

    If vivaldi uses the same settings page as chromium than you may try to disable "secure DNS"

    chrome://settings/security?search=dns

    Exactly.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ4/L6QAKCRAFyCz1etHa RhOvAJ9Nb8RgaebJ9VS0es1roX8QU6hYTgCfQxIEOJFZuJ9TVtBSidwYo9rnKXY=
    =KUlz
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From George at Clug@21:1/5 to tomas@tuxteam.de on Tue Jan 21 22:40:01 2025
    On Wednesday, 22-01-2025 at 02:13 tomas@tuxteam.de wrote:
    On Tue, Jan 21, 2025 at 07:17:53AM -0500, Greg Wooledge wrote:

    [...]

    E.g. <https://www.google.com/search?q=vivaldi+dns+configuration>

    Ah, oh -- I overlooked (or forgot) that OP's brower is Vivaldi.

    https://help.vivaldi.com/desktop/privacy/privacy-settings/
    Resolving Navigation Errors with Google DNS Service
    The Google DNS (Domain Name System) Service will give you the IP address of the website you want to visit in case your ISP (Internet Service Provider) fails to do so properly (in some cases the ISP may have faulty DNSs).

    The Google DNS server addresses (8.8.8.8 and 8.8.4.4) have been hardcoded into Chromium, on which Vivaldi is built. The setting is enabled by default, but can be disabled in Settings > Privacy and Security.

    To set a custom DNS server in Vivaldi, you can do the following:

    Open the Vivaldi menu
    Select Settings
    Select Privacy and Security
    Select Use secure DNS
    Select Custom
    Enter the URL of your preferred DNS provider

    You can also choose from other DNS providers, such as Google, CleanBrowsing, OpenDNS, Cloudflare, or NextDNS.

    https://dns.sb/doh/vivaldi/




    Cheers
    --
    t


    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Max Nikulin on Wed Jan 22 08:10:01 2025
    On Wed, Jan 22, 2025 at 09:48:30AM +0700, Max Nikulin wrote:
    On 21/01/2025 23:31, tomas@tuxteam.de wrote:
    On Tue, Jan 21, 2025 at 10:38:51PM +0700, Max Nikulin wrote:
    On 19/01/2025 17:21, mick.crane wrote:
    The other day changed the ISP's (Sky) router to have fibre connection.
    Maybe the previous router was configured to serve .home DNS zone.
    Judging by the other symptoms (ping working, browser not) the resolver
    in the box is OK (the .home names are resolved in /etc/hosts).

    I have read somewhere that chromium may read /etc/resolv.conf and send requests to the specified servers directly bypassing /etc/nsswitch.conf.
    (The statement needs verification.)

    Oh, goody.

    [interesting stuff snipped]


    At least cloudflare and google do not resolve the host name (other DoH provider may behave in a different way)

    But most probably not in the way the OP expects, since they can't read
    (?) their local /etc/hosts...

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ5CXmAAKCRAFyCz1etHa RlC/AJ4qJ7bLBcnvc78i+6UNDSIWn8L21ACfWtuIvmTNyTNwbXjdksRJj2Rn2d0=
    =qCim
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Green@21:1/5 to tomas@tuxteam.de on Wed Jan 22 11:00:02 2025
    tomas@tuxteam.de wrote:
    [-- text/plain, encoding quoted-printable, charset: utf-8, 29 lines --]

    On Wed, Jan 22, 2025 at 09:48:30AM +0700, Max Nikulin wrote:
    On 21/01/2025 23:31, tomas@tuxteam.de wrote:
    On Tue, Jan 21, 2025 at 10:38:51PM +0700, Max Nikulin wrote:
    On 19/01/2025 17:21, mick.crane wrote:
    The other day changed the ISP's (Sky) router to have fibre connection.
    Maybe the previous router was configured to serve .home DNS zone.
    Judging by the other symptoms (ping working, browser not) the resolver
    in the box is OK (the .home names are resolved in /etc/hosts).

    I have read somewhere that chromium may read /etc/resolv.conf and send requests to the specified servers directly bypassing /etc/nsswitch.conf. (The statement needs verification.)

    Oh, goody.

    [interesting stuff snipped]


    At least cloudflare and google do not resolve the host name (other DoH provider may behave in a different way)

    But most probably not in the way the OP expects, since they can't read
    (?) their local /etc/hosts...

    Surely in many cases DNS gets farmed out to a router to which the web
    browser (whether Chromium based or not) doesn't have any sort of
    direct access so it can't really dig around in the configuration.

    I have removed nearly all the 'extra' DNS configuration (i.e. anything
    like systemd's resolver and local DNS caching) in my main Linux
    systems. I run dnsmasq on my router with a blacklist configuration so ad-blocking works for every system on the LAN (it confuses visitors
    sometimes when they don't see the usual adverts on their 'phones).

    I run Vivaldi and it seems to behave fairly as one would expect in
    this environment.

    --
    Chris Green
    ·

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Green@21:1/5 to tomas@tuxteam.de on Wed Jan 22 12:00:01 2025
    tomas@tuxteam.de wrote:
    [-- text/plain, encoding quoted-printable, charset: utf-8, 34 lines --]

    On Wed, Jan 22, 2025 at 09:45:55AM +0000, Chris Green wrote:
    tomas@tuxteam.de wrote:
    [-- text/plain, encoding quoted-printable, charset: utf-8, 29 lines --]

    On Wed, Jan 22, 2025 at 09:48:30AM +0700, Max Nikulin wrote:

    [...]

    At least cloudflare and google do not resolve the host name (other DoH provider may behave in a different way)

    But most probably not in the way the OP expects, since they can't read (?) their local /etc/hosts...

    Surely in many cases DNS gets farmed out to a router to which the web browser (whether Chromium based or not) doesn't have any sort of
    direct access so it can't really dig around in the configuration.

    I have removed nearly all the 'extra' DNS configuration (i.e. anything
    like systemd's resolver and local DNS caching) in my main Linux
    systems. I run dnsmasq on my router with a blacklist configuration so ad-blocking works for every system on the LAN (it confuses visitors sometimes when they don't see the usual adverts on their 'phones).

    I run Vivaldi and it seems to behave fairly as one would expect in
    this environment.

    I somehow have got the feeling that we are talking about completely
    different things. DoH has absolutely nothing to do with your router's
    (or any other local network's, or your provider's) DNS. It bypasses
    it. That's its job.

    How can it do that in reality? It's connecting to the outside world
    via the router. It would have to 'tunnel' through the router somehow
    wouldn't it as otherwise the router will 'see' any attempts to do DNS
    type things.

    I guess the browser can talk to numeric addresses just using the
    router as the default route but that's still assuming the router
    doesn't have its own internal 'investigation' of what's being passed
    through it.

    Are you saying that Chromium/Vivaldi have some fixed IP addresses that
    they use for DNS servers out on the internet?

    --
    Chris Green
    ·

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Chris Green on Wed Jan 22 11:30:01 2025
    On Wed, Jan 22, 2025 at 09:45:55AM +0000, Chris Green wrote:
    tomas@tuxteam.de wrote:
    [-- text/plain, encoding quoted-printable, charset: utf-8, 29 lines --]

    On Wed, Jan 22, 2025 at 09:48:30AM +0700, Max Nikulin wrote:

    [...]

    At least cloudflare and google do not resolve the host name (other DoH provider may behave in a different way)

    But most probably not in the way the OP expects, since they can't read
    (?) their local /etc/hosts...

    Surely in many cases DNS gets farmed out to a router to which the web
    browser (whether Chromium based or not) doesn't have any sort of
    direct access so it can't really dig around in the configuration.

    I have removed nearly all the 'extra' DNS configuration (i.e. anything
    like systemd's resolver and local DNS caching) in my main Linux
    systems. I run dnsmasq on my router with a blacklist configuration so ad-blocking works for every system on the LAN (it confuses visitors
    sometimes when they don't see the usual adverts on their 'phones).

    I run Vivaldi and it seems to behave fairly as one would expect in
    this environment.

    I somehow have got the feeling that we are talking about completely
    different things. DoH has absolutely nothing to do with your router's
    (or any other local network's, or your provider's) DNS. It bypasses
    it. That's its job.

    Cheers

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ5DHfgAKCRAFyCz1etHa RlyhAKCBm/cL3bbAWojtxm5GmNc4F7WKOACfS7QM7QGAwtQqCkgDRqFC75ztWuk=
    =EZyp
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Guthausen@21:1/5 to Chris Green on Wed Jan 22 12:40:01 2025
    On Wed, 22 Jan 2025 10:46:16 +0000
    Chris Green <cl@isbd.net> wrote:

    How can it do that in reality? It's connecting to the outside world
    via the router. It would have to 'tunnel' through the router somehow wouldn't it as otherwise the router will 'see' any attempts to do DNS
    type things.

    You can ask Google's DNS server directly:
    dig @8.8.8.8 -t A www.google.com

    Or you can use your local DNS server:
    dig -t A www.google.com

    Both methods are ordinary DNS requests.

    Are you saying that Chromium/Vivaldi have some fixed IP addresses that
    they use for DNS servers out on the internet?

    Yes, the protocol used here is DoH or ``DNS over HTTPS''[1] which is
    specified in RFC 8484[2]. This is a bypass for local network settings
    which might not allow to ask external DNS servers as in the example
    above. Since local dial-up connections usually depend on the ISPs DNS
    server, DoH can circumvent manipulation by the ISP as quite common in
    Germany and the EU. However, IANAL and I don't know in which cases it
    might be not legal to circumvent lawful censorship.

    [1] https://en.wikipedia.org/wiki/DNS_over_HTTPS
    [2] https://datatracker.ietf.org/doc/html/rfc8484

    --
    kind regards
    Frank

    -----BEGIN PGP SIGNATURE-----

    iQGzBAEBCgAdFiEE86z15c6qwvuAkhy+zDIN/uu9BloFAmeQ17wACgkQzDIN/uu9 BlrBBgwAj3s9lWN5x9RG6xXwpjl8OkFcQy8e7iQZ5HpGkLOnBQW/YzL6jdyUnMN8 cvucLvDx/Jfty71p/+yUb4NG6YZPl6fQkL4KOo5gQzZ3n8hMN8KZcIVjSGi4gRql VmCnTpTybvXZYB2+7dRbTQ0dZeR2ox7W6e0om1fiDTQcCaQawbhLkpkZNaiBbCDv Wl/3pZiBJ9PF2uA+TZZZvchSmrTyMBrHbc/SD4SsYUV68jnb9/jxW7Wd9K1Ufb1f 8j6wefLG4BIEup5BlCx6CBypM718r3fHiOuFG3UfqOZkwavetAzxIZE67tw2a6uG 6p6w0CP614TRZk1u3O2DOmUfHvk+rKq3lzfq8F8jBtRYS4ePwbwCpun0m8BF+lwv mnRf7IRz3X0SUtKFpWQjD2SMxJmuLK1hXaBuWGKO1gpjSjjyRWN9Nia4ierM/bSK eHxwLSjh66kcBw6h3ZVnRyM85Upg8iNRcSlW3N0Bl4CODxoMmNQUvztANC3X2a7e
    FF2cxKf4
    =aPjT
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Frank Guthausen on Wed Jan 22 12:50:01 2025
    On Wed, Jan 22, 2025 at 12:34:20PM +0100, Frank Guthausen wrote:

    [...]

    Yes, the protocol used here is DoH or ``DNS over HTTPS''[1] which is specified in RFC 8484[2]. This is a bypass for local network settings
    which might not allow to ask external DNS servers as in the example
    above. Since local dial-up connections usually depend on the ISPs DNS
    server, DoH can circumvent manipulation by the ISP as quite common in
    Germany and the EU. However, IANAL and I don't know in which cases it
    might be not legal to circumvent lawful censorship.

    It just replaces one bully by another bully. I won't bet on Google not manipulating its DoH lookups once that starts improving their bottom
    line.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ5DZlQAKCRAFyCz1etHa Rh3PAJ9kjerNV6+8ggjiRsnfoeVSftZl8QCfVHfn1WTbQkE2PhVtnkgH3/MC7eM=
    =Dhpj
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Chris Green on Wed Jan 22 12:20:01 2025
    On Wed, Jan 22, 2025 at 10:46:16AM +0000, Chris Green wrote:
    tomas@tuxteam.de wrote:

    [...]

    I somehow have got the feeling that we are talking about completely different things. DoH has absolutely nothing to do with your router's
    (or any other local network's, or your provider's) DNS. It bypasses
    it. That's its job.

    How can it do that in reality? It's connecting to the outside world
    via the router. It would have to 'tunnel' through the router somehow wouldn't it as otherwise the router will 'see' any attempts to do DNS
    type things.

    The tunnel is called HTTPS. The browser sends its DNS requests inside
    of HTTPS requests, which your router can't look into, unless it is
    playing MITM games:

    https://en.wikipedia.org/wiki/DoH

    I guess the browser can talk to numeric addresses just using the
    router as the default route but that's still assuming the router
    doesn't have its own internal 'investigation' of what's being passed
    through it.

    How could it, being an encrypted stream it hasn't the keys to?

    Are you saying that Chromium/Vivaldi have some fixed IP addresses that
    they use for DNS servers out on the internet?

    Basically this, yes.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ5DT+gAKCRAFyCz1etHa RrbjAJ9Lm3KUVlIbbqjdjdMBmSBmMX9O7QCdGIa58xCvAy10pnN4a6OFXGDU/YQ=
    =Ae3x
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Joe@21:1/5 to Jeffrey Walton on Wed Jan 22 14:10:02 2025
    On Wed, 22 Jan 2025 07:16:07 -0500
    Jeffrey Walton <noloader@gmail.com> wrote:

    On Wed, Jan 22, 2025 at 6:35 AM Frank Guthausen <fg.debian@shimps.de> wrote:

    On Wed, 22 Jan 2025 10:46:16 +0000
    Chris Green <cl@isbd.net> wrote:

    How can it do that in reality? It's connecting to the outside
    world via the router. It would have to 'tunnel' through the
    router somehow wouldn't it as otherwise the router will 'see' any attempts to do DNS type things.

    You can ask Google's DNS server directly:
    dig @8.8.8.8 -t A www.google.com

    Or you can use your local DNS server:
    dig -t A www.google.com

    Both methods are ordinary DNS requests.

    Are you saying that Chromium/Vivaldi have some fixed IP addresses
    that they use for DNS servers out on the internet?

    Yes, the protocol used here is DoH or ``DNS over HTTPS''[1] which is specified in RFC 8484[2]. This is a bypass for local network
    settings which might not allow to ask external DNS servers as in
    the example above. Since local dial-up connections usually depend
    on the ISPs DNS server, DoH can circumvent manipulation by the ISP
    as quite common in Germany and the EU. However, IANAL and I don't
    know in which cases it might be not legal to circumvent lawful
    censorship.

    [1] https://en.wikipedia.org/wiki/DNS_over_HTTPS
    [2] https://datatracker.ietf.org/doc/html/rfc8484

    In the US, manipulating DNS was (is?) a problem with some ISPs like
    Verizon. Verizon would provide incorrect answers for non-existent
    domains. Instead of returning NXDOMAIN in response to a query, Verizon
    would provide a response that effectively redirected folks to a page
    to register or purchase the non-existent domain, or to a search page
    with lots of ads. Obviously, Verizon's actions broke the behavior
    specified by the RFCs. See <https://arstechnica.com/uncategorized/2008/02/404-might-be-found-the-curious-case-of-dns-redirects/>
    and <https://freedom-to-tinker.com/2007/11/12/verizon-violates-net-neutrality-dns-deviations/>.

    For a while the BSD folks' network startup scripts issued a query to a
    known non-existent domain to see if DNS queries were being tampered
    with or DNS was broken. I don't know if they are still doing it.

    When Verizon started doing that, I switched to OpenDNS. I also use
    Google's DNS on occasion.


    An example:

    https://uk.linkedin.com/company/barefruit

    --
    Joe

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Chris Green@21:1/5 to tomas@tuxteam.de on Wed Jan 22 14:20:01 2025
    tomas@tuxteam.de wrote:
    [-- text/plain, encoding quoted-printable, charset: utf-8, 37 lines --]

    On Wed, Jan 22, 2025 at 10:46:16AM +0000, Chris Green wrote:
    tomas@tuxteam.de wrote:

    [...]

    I somehow have got the feeling that we are talking about completely different things. DoH has absolutely nothing to do with your router's
    (or any other local network's, or your provider's) DNS. It bypasses
    it. That's its job.

    How can it do that in reality? It's connecting to the outside world
    via the router. It would have to 'tunnel' through the router somehow wouldn't it as otherwise the router will 'see' any attempts to do DNS
    type things.

    The tunnel is called HTTPS. The browser sends its DNS requests inside
    of HTTPS requests, which your router can't look into, unless it is
    playing MITM games:

    https://en.wikipedia.org/wiki/DoH

    I guess the browser can talk to numeric addresses just using the
    router as the default route but that's still assuming the router
    doesn't have its own internal 'investigation' of what's being passed through it.

    How could it, being an encrypted stream it hasn't the keys to?

    Are you saying that Chromium/Vivaldi have some fixed IP addresses that
    they use for DNS servers out on the internet?

    Basically this, yes.

    Well that doesn't seem to be happening with Vivaldi on my systems, the dnsmasq/blacklist I run in my router is effective for both Vivaldi and
    the other browser I occasionally use (epiphany).

    I see no evidence of Vivaldi somehow bypassing my DNS configuration.

    --
    Chris Green
    ·

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Guthausen@21:1/5 to tomas@tuxteam.de on Wed Jan 22 14:40:01 2025
    On Wed, 22 Jan 2025 12:42:20 +0100
    <tomas@tuxteam.de> wrote:
    On Wed, Jan 22, 2025 at 12:34:20PM +0100, Frank Guthausen wrote:

    [...] DoH can circumvent manipulation by the ISP [...]

    It just replaces one bully by another bully. I won't bet on Google not manipulating its DoH lookups once that starts improving their bottom
    line.

    At least in principle we could recompile Chromium or Firefox with the
    IP of a trusted nameserver. A configuration option for the IP address
    would be even better (I don't know whether this is implemented yet).
    --
    kind regards
    Frank

    -----BEGIN PGP SIGNATURE-----

    iQGzBAEBCgAdFiEE86z15c6qwvuAkhy+zDIN/uu9BloFAmeQ8xIACgkQzDIN/uu9 Blq5/wwAn2rlAXiov6QGfkY21/PjRspQyNt21A7fzimcrwWQqYiPc8NyXce9gtZP 9e823k20xKO/E8HGKoi7G4kzXGLWNbuN/rNKOeuaP5LxpFlT19ITPX/iPiY2utIl gptHV6AM8D6659FmlBAZRTC4+dlS5T4DsiP511iQhtl2BvRV0KCyTQbr2s2VddDC X1tukg+GwX6hl5B6qjC9Jt6Ty64v74ao/3i8i9QEpplFNabI0txOi0UstqahWcE3 7EXAsWJ5KUOB6cwAFP3OObUcwJiynq1DKHE6e2QLilf39OAore1dDpYdKYvELWZk oPuN07VEHEFwA4zlHd4CRaltnMQrEHSKf2sCeSlkZGRqKWy3F/jo28zi30gAzlAM V2KESevWNewd6krsUlsAsOLLJF5V5xC4OjPK+BL0I0GjIPmV0o5NnTbMs8ONoSNE Q2Yoq/5GboJROum8VO7Gz71BRTY/UH9GgbhIzDZvVs80UosReyslFrGayPRy+a2p
    X2ihzRR5
    =FOKb
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to mick.crane on Wed Jan 22 15:00:02 2025
    On Wed, Jan 22, 2025 at 01:26:23PM +0000, mick.crane wrote:
    On 2025-01-22 13:08, Joe wrote:

    When Verizon started doing that, I switched to OpenDNS. I also use Google's DNS on occasion.


    An example:

    https://uk.linkedin.com/company/barefruit

    When I selected cloudflair as DNS provider in chrome:settings/security
    Going to https://chat.openai.com cloudflair was in the address bar and was presented with a Captcha
    Changed to "use OS default( when available) and haven't done any further testing.
    Would traceroute show any DNS queries?

    That's what tcpdump/wireshark are for.

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ5D3lgAKCRAFyCz1etHa RmmBAJ9C/BYdLgW0nXsipnT9R6kok/R4MgCfRApfHWx5Wwm4HUEO4y83ggFkR0Y=
    =ixcu
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From tomas@tuxteam.de@21:1/5 to Frank Guthausen on Wed Jan 22 15:00:01 2025
    On Wed, Jan 22, 2025 at 02:30:58PM +0100, Frank Guthausen wrote:
    On Wed, 22 Jan 2025 12:42:20 +0100
    <tomas@tuxteam.de> wrote:
    On Wed, Jan 22, 2025 at 12:34:20PM +0100, Frank Guthausen wrote:

    [...] DoH can circumvent manipulation by the ISP [...]

    It just replaces one bully by another bully. I won't bet on Google not manipulating its DoH lookups once that starts improving their bottom
    line.

    At least in principle we could recompile Chromium or Firefox with the
    IP of a trusted nameserver. A configuration option for the IP address
    would be even better (I don't know whether this is implemented yet).

    But then you can set your "upstream" name server and have your whole
    system profit from a "good" DNS. Perhaps use DNSSEC. Perhaps, even,
    use DoH at that level. And at the same time let the local admins do
    their local fixes.

    That's what miffs me about browsers: they think "they are the world".

    Cheers
    --
    t

    -----BEGIN PGP SIGNATURE-----

    iF0EABECAB0WIQRp53liolZD6iXhAoIFyCz1etHaRgUCZ5D4VQAKCRAFyCz1etHa Rt4eAJ4kpPV0oUSigKEWuE0Uv6GnWpPpbQCfdXLKiYyokVoWuBseym0m9so3ucI=
    =Hg0R
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Frank Guthausen@21:1/5 to Max Nikulin on Thu Jan 23 12:10:01 2025
    On Thu, 23 Jan 2025 10:03:09 +0700
    Max Nikulin <manikulin@gmail.com> wrote:

    You do not need to recompile Firefox. You can even set IP of your DoH provider to avoid querying local DNS to resolve provider's hostname: <https://wiki.mozilla.org/Trusted_Recursive_Resolver>

    JFTR: it looks like Chromium offers something like this, too. Use the
    URL: chrome://settings/security
    Section: Advanced
    Option: Select DNS provider
    --
    kind regards
    Frank

    -----BEGIN PGP SIGNATURE-----

    iQGzBAEBCgAdFiEE86z15c6qwvuAkhy+zDIN/uu9BloFAmeSI00ACgkQzDIN/uu9 BlrjFwv+JRuelpL18sjI0etnWiyFc+NNWXv5PmTgDtRP5z64rIB3gk2qrF3oqQCm HVHR7PwWBRDtUDHr67/F1NZwBFVvgivLJRmnv4AnLcHEa7cGkcc83FZWoLrj16wz u7pGyB/bSgBMnMSsoQL2saib0oaQbRP95sQqkPP/U6/+mLI3MKp2U/d9qw51zMp4 AXBXhYs1bbHd7UyNsIuc6Qm+EDCEp3n4VAK5p+E/+YkdcehlzOrsBzrv09EAUfXa 6fgodQhbg9S28Y3zN3xq1GBCCGRfUc62sY3mnS5/0BJyikkHCbhkA0bXpbqDpCaf NtjV3qWsSlgWJTWfke98tn5HB+Y028earXbQYuwP4QMxQu3iVbzWw3hBOJnBm1ZR vD9IagDNw/YGxTdF5cDNlmWsW/vt+EdGHuYfQp7XBM0o8PuptkK/M/AXUwMwFb5M kurxKYCRcxMRRjUcTGWyMxoPeS6Eq7dBRzy0qOZC5T0pvjwT+m5wxEEBp+eeB0wp
    YdWDHv6M
    =Kt+4
    -----END PGP SIGNATURE-----

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Dan Ritter@21:1/5 to mick.crane on Thu Jan 23 23:40:01 2025
    mick.crane wrote:

    Things seem to be working normally. This started as I wondered why I got a captcha page with cloudflare in the browser address bar the first time after changing the ISP router.
    I think I see what this Doh is about and will fiddle about with the options. https://docs.netgate.com/pfsense/en/latest/recipes/dns-over-tls.html

    DOH and DOT (https and TLS) are different carriers for DNS, and
    are not cross-compatible.

    DOT is easier to implement if you already have a running DNS
    server.

    DOH is reasonably easy to implement if you already have a
    running DNS server on the same machine as a web server.

    -dsr-

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)