All the cool projects I see while lurking around here have thrown me into the world of Self-Hosting! Some months ago I got myself a NAS, flashed it with TrueNAS and started playing. Today, I am ready to face the creation of my first homelab.

Since I got the basic data storage working, I decided to continue with the Firewall setup. I’d like to have my security figured out before I start spinning up machines, playing with their configs and unwittingly opening all kind of arcane doors to the unknown. So I turn to the Fediverse!

I’d like to create the standard network with a DMZ. Within the network, I plan to use VLANS to manage traffic between devices, and the firewall to limit internet access.

This is a sketch of what I think I want to achieve:

Connections

  • The Consoles will connect only to the internet
  • The Home Devices (printers) will connect only to the Home WKS
  • There will be a NAS device hosting VMs with services accessible only from the home network:
    • The Home Automation will connect to IoT
    • The Recipes will connect to Home Wks
    • The Data Archive will connect to Home Wks
    • Jellybean will connect to:
      • Home Wks
      • TV
    • *arr Stack will connect to:
      • The Internet
      • the NAS (presumably Jellybean)
  • The Home WKS connect to pretty much anything

Available Hardware

  • OpenWRT compatible Router
  • 2.5gbs Unmaged Switch
  • 1gbs Unmaged Switch
  • QNAS with 2x2.5gbs NIC, running TrueNas
  • A few Rpis of different specs

Questions

Firewall

My Main questions relate to the Firewall. It seems that pfsense is the way to go for a SW Firewall:

  • What HW should i use? would a Raspberry pi 4, 4GB RAM work?
  • What do you think of Netgear 1100?
  • I like this device since 3ports would allow me to create a physically separate DMZ
  • Should I consider other firewalls?

NAS

For Bonus Points, some questions regarding the NAS:

  • With my current diagram, it seems like it is not possible for the NAS to receive updates from the internet. The obvious change is to place the NAS within the DMZ, but I’d like to keep the Data Archive as far from the net as possible
  • Should i locate the entire NAS in the DMZ?
  • My TrueNas has 2x2.5Gb ports. Can i connect each NIC to a different network? Would this have any benefit?

Thanks for your time!

  • TCB13@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    edit-2
    5 months ago

    If you’ve an OpenWRT compatible router why are you thinking about pfsense? There isn’t much to gain there, your OpenWRT will do NAT and also has a firewall.

    I like this device since 3ports would allow me to create a physically separate DMZ

    OpenWRT can do this as well. What are your plans with the DMZ tho?

    Be careful with the use of the acronym DMZ as in the context of typical routers and ISPs it has a different meaning of what you’re implying here. DMZ usually is used in the context for a single host that is “outside” the ISP router’s firewall and all requests coming into the ISP router will be forward to that device.

    With my current diagram, it seems like it is not possible for the NAS to receive updates from the internet.

    You NAS will never “receive updates” it will ask for updates. Maybe add a firewall rule that allows traffic from the NAS to the internet but not the other way around (this is usually the default state of any router, it will allow local devices to go to the internet but not incoming connections to those devices).

    My TrueNas has 2x2.5Gb ports. Can i connect each NIC to a different network? Would this have any benefit?

    You can, but is it really worth it? If someone hacks the device they’ll access the rest of the network. Same applies to your computers and cames consoles, they can be used to jump to the other side and vice versa.

    Frankly I don’t see the usefulness of your setup as you’ll end up with weak points somewhere. Just get a single OpenWRT router and throw everything into the same network. Apply firewall restrictions as needed.

    • OpenTheSeaLegsOP
      link
      fedilink
      English
      arrow-up
      3
      ·
      5 months ago

      Thanks for all the info!

      At the time, I wasn’t sure why i bought OpenWRT compatible router, only that the community seemed to love it. Now I’m glad I got it!

      Time to get OpenWRT working!

    • N0x0n@lemmy.ml
      link
      fedilink
      English
      arrow-up
      2
      ·
      5 months ago

      Great read thank you !

      One technical question if you don’t mind.

      Maybe add a firewall rule that allows traffic from the NAS to the internet but not the other way around.

      How does that work¿ I mean if the internet traffic isn’t allowed to the NAS, how can the NAS get updates than?

      • stown@sedd.it
        link
        fedilink
        English
        arrow-up
        4
        ·
        5 months ago

        Packets initiated from the NAS to the Internet are allowed. Packets initiated from somewhere on the Internet to the NAS are not allowed.

        If the NAS requests files from a download server they will be allowed to come through the firewall because the files are a response to a request and not unsolicited traffic. I hope that makes sense.

        • N0x0n@lemmy.ml
          link
          fedilink
          English
          arrow-up
          3
          ·
          5 months ago

          Ohhh, so if the NAS sends the request, the internet is allowed to send traffic, somehow through a virtual/temporarly port/tunnel.

          I didn’t knew it worked like that. Do you know what specific subject I need to investigate to learn more about how it works under the hood?

          Thanks 👍🖐️

          • Lcs_150@lemmy.world
            link
            fedilink
            English
            arrow-up
            4
            ·
            5 months ago

            Quick comment to give you a place to start searching; This is called a stateful firewall. Any modern firewall is stateful and tracks connections in a table. When it receives external traffic (packets) associated with a known established TCP connection, it allows that traffic through.

            • med@sh.itjust.works
              cake
              link
              fedilink
              English
              arrow-up
              5
              ·
              5 months ago

              This is also true for UDP and ICMP connections, in case anyone reading wasn’t sure. This is how you’re able to ping stream and browse from behind your regular firewalls

          • TCB13@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            5 months ago

            Just note that by default ANY router is configured this way because they run NAT. Traffic originating from the local devices is forwarded to the internet while traffic originating from the internet isn’t forwarded to local devices (unless it’s a direct rely to a request initiated from a local machine).

            I believe this is a good introductory article: https://devopscube.com/what-is-nat-how-does-nat-work/

            • N0x0n@lemmy.ml
              link
              fedilink
              English
              arrow-up
              1
              ·
              5 months ago

              Thank you !

              I do not know if this is different, but I do have some NAT configurations in my Wireguard setup, that forwards all traffic to a protonVPN free tier. I didn’t came up with the rules by myself (found some good tutorial on the web)

              # Accept sending and receiving on wg0
              PostUp = iptables -A FORWARD -i %i -j ACCEPT; iptables -A FORWARD -o %i -j ACCEPT;
              
              # Forward traffic to wg-ext
              PostUp = iptables -t nat -A POSTROUTING -o wg-ext -j MASQUERADE;
              
              # allow local network connections
              PostUp = ip route add **REDACTED**/24 dev enp4s0;
              PostUp = iptables -t nat -A POSTROUTING -o enp4s0 -j MASQUERADE;
              

              Is this somehow related on how a router configuration looks like underneath? Or is that totally different?

              Thank your for the link :)!!!

            • vividspecter@lemm.ee
              link
              fedilink
              English
              arrow-up
              1
              ·
              5 months ago

              Except for ipv6 (usually). Although most routers will block incoming traffic anyway by default.

  • MSgtRedFox@infosec.pub
    link
    fedilink
    English
    arrow-up
    5
    ·
    5 months ago

    I recommend look into managed, vlan capable switches after you get your firewall figured out. That will allow you to put hosts on different vlans and separate lab stuff from the rest of your home network stuff.

    There’s a million videos.

  • atzanteol@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    5 months ago

    This is way overcomplicated.

    Internet -> router/firewall -> your network with all devices

    No DMZ needed or wanted.

    You will want a dhcp server which will likely be the router/firewall. It will tell all your internal systems to use it as a “gateway” for Internet traffic. The router then allows outbound for everybody and does NAT - basically it makes requests on that systems behalf and sends the results back. If your want external access to a system you configure port-forwarding on the router (again it acts as the middleman between external and internal systems).

    Edited to add: I love that you provided a diagram though! Makes it much easier to discuss.

    • OpenTheSeaLegsOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      5 months ago

      I do tend to overcomplicate things 😆

      It seems, based on your comments and others in the post, that my next step is to flash OpenWRT and do a deep dive on its firewall functions. Thanks for taking the time to educate me!

      • atzanteol@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        4
        ·
        5 months ago

        Yeah - basic home-networking is typically pretty straight-forward. You’ll want to figure out your basic services (DHCP, DNS, and routing) but after that it’s pretty simple. OpenWRT should handle the DHCP and routing. I’m not sure about DNS though.

        DHCP will tell systems "here is your IP, here is the CIDR of the network you are on, here is the router that handles traffic for things NOT on that network (e.g. the internet), and here are the DNS servers you should use for name resolution.

        With DHCP you can also hand out “static leases” to give systems reliable IP addresses based on their MAC addresses. Then you can setup a DNS server that does internal name resolution if you want to be able to reference systems by name. This DNS server doesn’t need to be publicly available (and indeed should not be).

        The Firewall is typically only for things coming into your network from the internet. You can restrict outbound traffic as well if you want but that’s less common. By default things on the internet will NOT be able to get to your internal systems because of NAT. So to allow things “out there” to access a service running on an internal system you’ll need to do port forwarding on your firewall. This will a) open a port on the internet side and b) send all traffic to that port to a port on an internal system. The router will handle all of the network-to-network and traffic handling stuff.

        • farcaller@fstab.sh
          link
          fedilink
          English
          arrow-up
          1
          ·
          5 months ago

          I’ll make a note here that a firewall is useful for internal traffic, too. Those IoT devices can get pretty annoying, so you’d want to e.g. drop your cheap webcams into a VLAN and disallow them from talking to enjoying but their cloud, and especially the other VLANs, or isolate Alexa capable device so it won’t try to figure what else you got there in your house over mDNS (it will).

          A managed switch would do nicely. Having isolated ports on the switch (and the wifi AP) is also great if you want to make sure the specific device will only talk to the gateway and not its peers.

  • Decronym@lemmy.decronym.xyzB
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    5 months ago

    Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I’ve seen in this thread:

    Fewer Letters More Letters
    AP WiFi Access Point
    DNS Domain Name Service/System
    IP Internet Protocol
    IoT Internet of Things for device controllers
    NAS Network-Attached Storage
    NAT Network Address Translation
    TCP Transmission Control Protocol, most often over IP
    UDP User Datagram Protocol, for real-time communications

    8 acronyms in this thread; the most compressed thread commented on today has 15 acronyms.

    [Thread #448 for this sub, first seen 23rd Jan 2024, 14:45] [FAQ] [Full list] [Contact] [Source code]