• 0 Posts
  • 11 Comments
Joined 2 years ago
cake
Cake day: June 11th, 2023

help-circle




  • railsdev@programming.devtoSelfhosted@lemmy.worldNetworking Help
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    2 years ago

    I’m guessing that both routers are running DHCP and/or running NAT at the same time. You need only one to do all that (the one attached to the WAN/Internet) and the other needs to act as a switch only (usually called access point mode).

    Not sure about all the mesh stuff, but traditionally you’d switch off all the routing functions of the second router and connect it to the other router via the LAN ports. Again, DHCP and actual routing would need to be turned off on the “secondary” routers.

    If all these “routers” (really we should be calling them access points to distinguish which function we’re referencing) are part of the same mesh networking system I’d imagine they’d take care of these issues on their own though, so more details about the network topology would be necessary to be helpful.


  • GoDaddy is known to be a terrible company for a multitude of reasons (both technical and non-).

    My last experience with them involved completely migrating a client away from them as they were paying significantly more than I’d ever seen for the services they were using.

    For the client, what drove them to finally dump GoDaddy was their email server only pushing new messages every 10 minutes (even on a manual fetch); not good in an email-heavy industry.

    I couldn’t even get DNSSEC working at the time and if I remember correctly you had to pay more for AAAA records — something crazy like that.





  • I’m somewhere in between. I hated containers for a long time but now work a lot with Kubernetes for work.

    For my personal projects I’ve always hated containers a lot. Once I started learning how to build them and build them well however I really started enjoying it.

    Using others’ containers is always hit or miss because a lot of them are WAY bloated. I especially hate all the docker-compose files that come with some database included as if I’m dying to run a ton of containerized database servers. Usually the underlying software supports the Postgres I run on the host itself.


  • Raspberry Pi with Alpine Linux and Docker containers. The thing really flies! While I try to keep it light I’m sometimes shocked how much stuff I can cram into Docker.

    I like to use a host-based Postgres and Unbound from the package manager though; I advertise Unbound as the LAN DNS server to offer encryption.

    (Rambling here: On my personal devices though I bypass that resolver and use one hosted on Fly (an Alpine Linux Docker image to be exact) so I can block ads, tracking and all that trash.)