• 2 Posts
  • 159 Comments
Joined 3 months ago
cake
Cake day: March 27th, 2025

help-circle







  • Vanilla_PuddinFudge@infosec.pubtomemes@lemmy.worldWe're learnding.
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    2
    ·
    edit-2
    4 days ago

    You have entire corporations, nation-wide that are backed by religious nuts and racists, entire state-sized organizations of assholes paid from the bottom-up, and unless science and education has the same backing, we will lose.

    When’s the last time a rock band was labeled a “science band”, but you can name four or five christian bands without even listening to them?

    There are entire record companies and publishing houses that do nothing but spread more of it, interest groups in the billions of dollars that circulate faith and blindness. Even philanthropy, and a yelling preacher on every corner, sometimes across the street from one another, hospitals, nonprofits, foundations, you name it.

    Christianity and Judaism is so overblown in support, we shouldn’t expect anything less than absolute ignorance. Look what’s pushing it.




  • the VPS uses the pi-hole through the tunnel

    The VPS is Pihole, the dns for the server side is 127.0.0.1. 127.0.0.1 is also 10.x.x.1 for the clients, so they connect to that as the dns address.

    server dns - itself

    client dns - the server’s wg address

    On the local side, the pi-hole is the DNS for all the services on that subnet and each service automatically populate their host name on pi-hole. I can configure the DNS server in my router/firewall (OPNSense in my case)

    Only if your router/firewall can directly connect to wg tunnels, but I went for every machine individually. My router isn’t aware I host anything at all.

    So when I ping service.example.com, it goes through the VPS, which queries the pi-hole through the tunnel and translates the address to the local subnet IP if applicable.

    Pihole (in my case) can’t see 192.x.x.x hosts. Use 10.x.x.x across every system for continuity.

    So when I have the wg connection active and my pi-hole is the DNS, every web request will go through the pi-hole. If the IP address is inside the range of AllowedIPs, the connection will go through the tunnel to the service, otherwise, the connection will go through outside the wg tunnel.

    Allowed ips = 10.x.x.0/24 - only connects the clients and server together

    Allowed ips = 0.0.0.0/0 - sends everything through the VPN, and connects the clients and server together.

    Do the top one, that’s how TS works.