Netgate Discussion Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    • Register
    • Login

    Your connection is not private

    Scheduled Pinned Locked Moved pfBlockerNG
    22 Posts 5 Posters 1.9k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • T
      totowentsouth @netboy
      last edited by

      @netboy My best practices:

      • qwant.com for search
      • Firefox with uBlock origin and most of the default recommended lists
      • Chromium (with uBlock origin) when necessary as some websites are allergic to Firefox
      • Unbound (DNS Resolver) on pfSense in full recursive mode
      • pfBlockerNG with regularly maintained comprehensive ad, phishing and malware block lists such as oisd.nl and hagezi
      • pfSense + pfBlockerNG to block known DoH servers by domain and IP address with the understanding that 100% blocking of DoH via domain and IP is futile.
      • Configure Unbound to respond with NXDOMAIN for a small popular set of DoH domains. Some devices are grumpy when the DNS response for a DoH domain is 0.0.0.0 or 10.0.0.1.
      • NAT redirection in pfSense firewall rules to redirect all DNS queries over port 53 back to the pfSense box. Some devices will report "no internet connectivity" when denied DNS queries over port 53 and a hard coded IP.
      N 1 Reply Last reply Reply Quote 1
      • N
        netboy @totowentsouth
        last edited by

        @totowentsouth Wow!! Thanks

        @totowentsouth said in Your connection is not private:

        Unbound (DNS Resolver) on pfSense in full recursive mode

        Can you please explain to a non-network person in "english" what does this do?

        uBlock origin
        I installed this in Chrome and voila the googleservices vanishes....Now I can use google chrome without the annoyance. since this solves the googleservices what is the use case to use qwant.com for searches?

        johnpozJ T 2 Replies Last reply Reply Quote 0
        • johnpozJ
          johnpoz LAYER 8 Global Moderator @netboy
          last edited by johnpoz

          @netboy said in Your connection is not private:

          in "english" what does this do?

          It resolves vs forwarding.

          You want to look up www.domain.tld it asks the roots hey who is the name servers for .tld

          Roots answer with NS for .tld

          It then asks the NS for .tld hey what is the NS for domain.tld

          They answer.

          It go asks NS for domain.tld hey what is the A record for www.domain.tld

          you get the IP address of www.domain.tld

          This is how dns works..

          here is a full example.. I cut down any dnssec info to keep it cleaner looking.

          $ dig forum.netgate.com +trace +nodnssec
          
          ; <<>> DiG 9.16.44 <<>> forum.netgate.com +trace +nodnssec
          ;; global options: +cmd
          .                       16609   IN      NS      h.root-servers.net.
          .                       16609   IN      NS      g.root-servers.net.
          .                       16609   IN      NS      f.root-servers.net.
          .                       16609   IN      NS      l.root-servers.net.
          .                       16609   IN      NS      b.root-servers.net.
          .                       16609   IN      NS      a.root-servers.net.
          .                       16609   IN      NS      d.root-servers.net.
          .                       16609   IN      NS      i.root-servers.net.
          .                       16609   IN      NS      e.root-servers.net.
          .                       16609   IN      NS      c.root-servers.net.
          .                       16609   IN      NS      m.root-servers.net.
          .                       16609   IN      NS      j.root-servers.net.
          .                       16609   IN      NS      k.root-servers.net.
          ;; Received 239 bytes from 192.168.3.10#53(192.168.3.10) in 7 ms
          
          com.                    172800  IN      NS      c.gtld-servers.net.
          com.                    172800  IN      NS      b.gtld-servers.net.
          com.                    172800  IN      NS      j.gtld-servers.net.
          com.                    172800  IN      NS      a.gtld-servers.net.
          com.                    172800  IN      NS      e.gtld-servers.net.
          com.                    172800  IN      NS      f.gtld-servers.net.
          com.                    172800  IN      NS      i.gtld-servers.net.
          com.                    172800  IN      NS      h.gtld-servers.net.
          com.                    172800  IN      NS      d.gtld-servers.net.
          com.                    172800  IN      NS      g.gtld-servers.net.
          com.                    172800  IN      NS      k.gtld-servers.net.
          com.                    172800  IN      NS      l.gtld-servers.net.
          com.                    172800  IN      NS      m.gtld-servers.net.
          ;; Received 873 bytes from 192.5.5.241#53(f.root-servers.net) in 12 ms
          
          netgate.com.            172800  IN      NS      ns1.netgate.com.
          netgate.com.            172800  IN      NS      ns2.netgate.com.
          netgate.com.            172800  IN      NS      ns3.netgate.com.
          ;; Received 232 bytes from 192.33.14.30#53(b.gtld-servers.net) in 27 ms
          
          forum.netgate.com.      300     IN      A       208.123.73.83
          netgate.com.            3600    IN      NS      ns3.netgate.com.
          netgate.com.            3600    IN      NS      ns2.netgate.com.
          netgate.com.            3600    IN      NS      ns1.netgate.com.
          ;; Received 276 bytes from 208.123.73.80#53(ns1.netgate.com) in 33 ms
          

          Even when you forward to say quad9 or googledns or 1.1.1.1, there is a resolver upstream of them that they ask.. The only way to learn the IP address of some fully qualified domain name (fqdn) is to resolve..

          Once a fqdn has been resolved.. Your dns server you asked will cache it for a length of time.. See the numbers there 172800, and the 3600 those are seconds.. Once something has been looked up, that is how long that lookup can be cached.

          So in the above example forum.netgate.com can be cached for 300 seconds. after that have to look it up again, but since already know the ns for netgate.com and can cache them for 3600, can just go ask them directly - do not need to ask roots or gtld servers.. etc..

          An intelligent man is sometimes forced to be drunk to spend time with his fools
          If you get confused: Listen to the Music Play
          Please don't Chat/PM me for help, unless mod related
          SG-4860 24.11 | Lab VMs 2.7.2, 24.11

          N 1 Reply Last reply Reply Quote 0
          • N
            netboy @johnpoz
            last edited by

            @johnpoz said in Your connection is not private:

            It resolves vs forwarding.

            Thank you for the detail explanation.

            What is the advantage of "Resolving" vs "Forwarding" to the end user?

            johnpozJ GertjanG 2 Replies Last reply Reply Quote 0
            • johnpozJ
              johnpoz LAYER 8 Global Moderator @netboy
              last edited by

              @netboy control.. You are talking to the horses mouth vs asking someone else..

              And your not sending all your dns look ups to some company that does who knows what with them.

              An intelligent man is sometimes forced to be drunk to spend time with his fools
              If you get confused: Listen to the Music Play
              Please don't Chat/PM me for help, unless mod related
              SG-4860 24.11 | Lab VMs 2.7.2, 24.11

              N 1 Reply Last reply Reply Quote 1
              • N
                netboy @johnpoz
                last edited by

                @johnpoz said in Your connection is not private:

                You are talking to the horses mouth vs asking someone else..

                Got it!!

                N 1 Reply Last reply Reply Quote 0
                • N
                  netboy @netboy
                  last edited by

                  @netboy Now how do I make sure I configure pfsense to "resolve" than "forward"? Will this change affect anything else?

                  johnpozJ 1 Reply Last reply Reply Quote 0
                  • johnpozJ
                    johnpoz LAYER 8 Global Moderator @netboy
                    last edited by

                    @netboy it resolves out of the box, that is the default setting.. If you didn't actually enable forwarding mode its already resolving.

                    An intelligent man is sometimes forced to be drunk to spend time with his fools
                    If you get confused: Listen to the Music Play
                    Please don't Chat/PM me for help, unless mod related
                    SG-4860 24.11 | Lab VMs 2.7.2, 24.11

                    N 1 Reply Last reply Reply Quote 0
                    • N
                      netboy @johnpoz
                      last edited by

                      @johnpoz Wonderfull thanks

                      1 Reply Last reply Reply Quote 0
                      • GertjanG
                        Gertjan @netboy
                        last edited by

                        @netboy said in Your connection is not private:

                        What is the advantage of "Resolving" vs "Forwarding" to the end user?

                        See, for example, this video.
                        Many other video's about the same subject exist.

                        No "help me" PM's please. Use the forum, the community will thank you.
                        Edit : and where are the logs ??

                        1 Reply Last reply Reply Quote 0
                        • T
                          totowentsouth @netboy
                          last edited by

                          @netboy said in Your connection is not private:

                          what is the use case to use qwant.com for searches?

                          qwant claims to be privacy focused. I have found the search results to be on par or better than other popular search engines. YMMV.

                          N 1 Reply Last reply Reply Quote 0
                          • N
                            netboy @totowentsouth
                            last edited by

                            @totowentsouth OK thx

                            1 Reply Last reply Reply Quote 0
                            • First post
                              Last post
                            Copyright 2025 Rubicon Communications LLC (Netgate). All rights reserved.