By Morgan Lucas (she/her) - August 2025

Just like the Terraform post, the labs are located here.

Configuring Firewall Tables

Firewalls are rules that let connections through. By doing this, I’m a guardian for what is allowed to connect to our resources. We make these with iptables in Linux.

image.png

<aside> 💡

sudo is is the Ultimate User in Linux systems.

</aside>

These particular rules

Linux Networking

I check interfaces with ip a, and the routing table as a whole with ip r

<aside> 💡

I do that to check the gateway IP address - that’s how local network data goes places

</aside>