The question above for the most part, been reading up on it. Also want to it for learning purposes.

  • @orangeboats@lemmy.world
    link
    fedilink
    English
    2
    edit-2
    1 year ago

    Right. Packets still have to go through your router, assuming that your router has firewall turned on, it goes like this:

    1. Your router receives a packet.

    2. It checks whether the packet is “expected” (a “related” packet) - by using connection tracking.

      For example, if ComputerA had sent something to ServerX before, and now the packet received by router says “from ServerX to ComputerA”, then the packet is let through - surely, this packet is just a reply to ComputerA’s previous requests.

    3. If step 2 fails - we know this is a new incoming packet. Possibly it comes from an attacker, which we don’t want. And so the router checks whether there is a rule that allows such a packet to go through (the assumption is that since you are explicitly allowing it, you know how to secure yourself.)

      If I have setup a firewall rule that says “allow packets if their destination is ComputerB, TCP port 25565”, and the received packet matches this description, the router lets it through.

    4. Finally, the packets that the router accepts from the previous steps are forwarded to the relevant LAN hosts.

    • @Reliant1087@lemmy.world
      link
      fedilink
      English
      21 year ago

      I understand this part :) I use a fairly complex firewall at work though I only know bits and pieces from reading different manuals. I think the part I didn’t understand was how exactly the routing worked differently in IPv4 vs v6. I get that because NAT happens in IPv4, packets can’t be routed at all without the firewall/router but I wasn’t sure what was the mechanism by which v6 made sure that packets went through the router, especially when you have stuff like v6 DHCP relays.

      • @orangeboats@lemmy.world
        link
        fedilink
        English
        21 year ago

        Ah, I misunderstood your original comment, oops! But yes, IPv6 packets are routed just like IPv4 ones, just without the NAT’ing process i.e. the packet remains untouched the entire trip.