How to Check Ubuntu Firewall Status with ufw Status Command

Ubuntu UFW Firewall It is a complete firewall solution that is highly configurable and provides an easy-to-use interface to manage Iptables on Ubuntu.

UFW comes preinstalled with Ubuntu, but inactive by default, How can I know? Well, we just need to check the status of the firewall.

The ufw status command is the command that we are using to check Firewall Status on Ubuntu Linux.

ufw status

If ufw is not running, you will see the following output (Status: inactive).

Status: inactive

If it is active, you will see a list of firewall rules along with the active status.

How to check ubuntu firewall status with ufw status command 1
Sponsored

Note that ufw status command requires root privileges to execute or you will see the following, ERROR: You need to be root to run this script.

Verbose Output

If you need more information, check the verbose status of the Ubuntu Firewall.

Sponsored
ufw status verbose

As you can see verbose status reports include a couple of additional lines.

How to check ubuntu firewall status with ufw status command 2

It Shows the default firewall policy for incoming and outgoing network traffic.

Numbered Status Report

When you add a new rule, it is important to add it into the right position. In that case you need to see the Ubuntu Firewall Status as a list of numbered rules.

ufw status numbered

Remember that the order matters. For example, you will need to add a certain deny rule before an allowed rule.

How to check ubuntu firewall status with ufw status command 3

This is also really helpful when Deleting a rule via its number.

How to check ubuntu firewall status with ufw status command 4
Ubuntu Server Admin

Recent Posts

Detecting and Fixing Memory Leaks with Valgrind

Memory leaks are among the most frustrating bugs to track down in C and C++…

5 hours ago

How to Kill Processes Using Specific Ports on Linux, Windows and MacOS

Have you ever encountered issues starting a server or application because the required port is…

5 hours ago

How to Fix the “Native Host Connector Not Detected” Error for GNOME Extensions in Ubuntu 22.04

When upgrading to Ubuntu 22.04 LTS (Jammy Jellyfish), many users encounter the error message: “Although…

5 hours ago

Building optimized LLM chatbots with Canonical and NVIDIA

The landscape of generative AI is rapidly evolving, and building robust, scalable large language model…

12 hours ago

Unlocking Edge AI: a collaborative reference architecture with NVIDIA

The world of edge AI is rapidly transforming how devices and data centers work together.…

12 hours ago

How to Install and Use Zig Programming Language on Ubuntu or Debian Linux

In this article, we will see how to install and use zig programming language on…

16 hours ago