diff --git a/0x13-firewall/0-block_all_incoming_traffic_but b/0x13-firewall/0-block_all_incoming_traffic_but
new file mode 100644
index 0000000..05898ca
--- /dev/null
+++ b/0x13-firewall/0-block_all_incoming_traffic_but
@@ -0,0 +1,7 @@
+sudo apt-get -y install ufw
+sudo ufw enable
+sudo ufw default deny incoming
+sudo ufw allow 22
+sudo ufw allow 80/tcp
+sudo ufw allow 443/tcp
+sudo ufw reload
diff --git a/0x13-firewall/100-port_forwarding b/0x13-firewall/100-port_forwarding
new file mode 100644
index 0000000..e69de29
diff --git a/0x13-firewall/README.md b/0x13-firewall/README.md
new file mode 100644
index 0000000..802a76a
--- /dev/null
+++ b/0x13-firewall/README.md
@@ -0,0 +1,40 @@
+# Firewall
+
+In computing, a firewall is a network security system that monitors and controls incoming and outgoing network traffic based on predetermined security rules. A firewall typically establishes a barrier between a trusted network and an untrusted network, such as the Internet.
+
+More Info
+---------------
+
+As explained in the [web stack debugging](https://github.com/the1Riddle/alx-system_engineering-devops/tree/master/0x0E-web_stack_debugging_1#web-stack-debugging-1)telnet is a very good tool to check if sockets are open with telnet IP PORT. For example, if you want to check if port 22 is open on web-02 or on your web server:
+
+ user@ubuntu$ telnet web-02.holberton.online 22
+ Trying 54.89.38.100...
+ Connected to web-02.holberton.online.
+ Escape character is '^]'.
+ SSH-2.0-OpenSSH_6.6.1p1 Ubuntu-2ubuntu2.8
+
+ Protocol mismatch.
+ Connection closed by foreign host.
+ user@ubuntu$
+
+We can see for this example that the connection is successful: Connected to web-02.holberton.online.
+
+Now let’s try connecting to port 2222:
+
+ user@ubuntu$ telnet web-02.holberton.online 2222
+ Trying 54.89.38.100...
+ ^C
+ user@ubuntu$
+
+We can see that the connection never succeeds, so after some time I just use ctrl+c to kill the process.
+
+This can be used for any debugging situation where two pieces of software need to communicate over sockets.
+
+Warning!
+---------------
+
+> [!WARNING]
+> **Containers on demand cannot be used for this project (Docker container limitation)**
+
+> **Be very careful with firewall rules! For instance, if you ever deny port 22/TCP and log out of your server, you will not be able to reconnect to your server via SSH, and we will not be able to recover it. When you install UFW, port 22 is blocked by default, so you should unblock it immediately before logging out of your server.**
+