Ubuntu

UFW Remove Rule

We all know that a Firewall works on the stated rules. Depending upon the requirements, these rules can be added or omitted from the set of Firewall rules. However, at times, you accidentally add a Firewall rule, or you might not need a certain Firewall rule any longer. In both of these cases, you would feel the need to remove that particular rule. Therefore, in this article, we will teach you how you can remove a UFW rule.

How to Remove a UFW Rule

Before teaching you how you can remove a UFW rule, we will first add a new rule to our Firewall, which we will remove later. To add a new Firewall rule, you can execute the following command. We have added this particular rule for the sake of demonstration. However, you are free to add any rule of your choice.

$ sudo ufw allow 53/tcp

The output presented in the following image shows that the specified Firewall rule has been added successfully:

Now, we will attempt to remove the very same Firewall rule. For that, we will run the following command:

$ sudo ufw delete allow 53/tcp

The following output confirms that the specified Firewall rule has been removed successfully.

Conclusion

By following this very basic yet useful guide, you can quickly remove any UFW rule that you want. All you need to know is the exact rule or its associated number, and you can easily remove any UFW rule of your choice whenever you want.

Similar Posts