+4 votes
287 views
How to disable Firewall in Linux CentOS Ubuntu

in Security by (551k points)
reopened | 287 views

1 Answer

+5 votes
Best answer

1. How to disable the UFW firewall in Ubuntu
2. How to disable the UFW firewall in CentOS

Information security is one of the most important bastions that every user or system administrator must take care of and implement in their own equipment as well as those under their responsibility, and although there are hundreds of options to increase security in an operating system , both software and hardware, we must select the one that best suits the needs of each environment and those of the system are the most appropriate..

In the case of Linux, the ideal integrated option to improve security is the firewall, based on the distribution used, it will fulfill certain special functions but a common objective that is to protect both the system and its services and the information hosted of all kinds of attacks

The firewall has the task of protecting all the information of the packets that enter and leave through the system ports, remember that each port has a clear mission, so, port 80 is used for insecure web browsing while port 443 It is used for secure web browsing.

With the firewall it will be possible to allow certain types of network traffic to enter and exit the system or we can also configure rules to allow or restrict access to specific IP addresses or domains thereby increasing overall security. We will talk a little about the firewall in two of the most known and used Linux distributions: CentOS and Ubuntu..

Ubuntu Firewall
Ubuntu distributions integrate a firewall called UFW (Uncomplicated Firewall) which has been developed as a front-end for iptables and its use is practical for host-based firewalls.

UFW was added as of Ubuntu 8.04 LTS and as such it is available in all Ubuntu distributions as of this version.

Some of the features of UFW are:

  • It has default entry policies (allow / deny)
  • Allow or deny incoming rules
  • IPv6 support
  • Extensible framework
  • Supports Python 2.5
  • It can be integrated into applications
  • Inbound multiport rules
  • Rule Insertion
  • Filters per interface
  • Improvement in reports
  • Deletion capacity per rule number
CentOS 7 firewall
In the case of CentOS, this makes use of firewalld as its integrated firewall, this is a firewall that dynamically manages the network areas which in turn define the level of trust of the network connections or interfaces available on the computer .

Firewalld supports IPv4, IPv6 firewall configuration, Ethernet bridges and IP sets and also provides us with an interface to manage services or applications in order to add firewall rules directly from there. Firewalld is available for CentOS and Red Hat distributions, some of its functions are:

  • Compatibility with IPv4, IPv6, bridge and ipset
  • Compatibility with IPv4 and IPv6 NAT
  • Predefined list of zones, services and icmptypes
  • Automatic loading of Linux kernel modules.
  • Integration with Puppet
  • Graphical configuration tool using gtk3
  • Timed firewall rules in zones
  • Simple registration of denied packages
  • Simple service definition integrating ports, protocols, source ports, modules and destination address management

By default the firewall in both distributions is disabled and its activation is logically recommended, but for some type of administrative or support tasks it may be required that the firewall is temporarily disabled so that it does not interfere with the transfer of packets, so TechnoWikis will explain how to disable the firewall in these two distributions..

To keep up, remember to subscribe to our YouTube channel! SUBSCRIBE


1. How to disable the UFW firewall in Ubuntu

Step 1

For this case we will use Ubuntu 19.04 and first we must validate the status of the firewall by executing the following command.
 sudo ufw status 

image

Step 2

As we see its status is active, now, to deactivate it, we will execute the following line:
 sudo ufw disable 
Step 3

We will enter our administrator password and we can verify that the firewall has been correctly disabled in Ubuntu:

image

Step 4

Ubuntu gives us the option to administer the system firewall graphically thanks to a utility called GUFW which we install by running the following:
 sudo apt install gufw 

image

Step 5

Once installed, we can access it from the Ubuntu 19 search engine:

image

Step 6

Authentication will be requested:

image

Step 7

Click on the "Authenticate" button and this will be the GUFW environment. There we can define the type of state for outgoing or incoming rules, as well as see the current rules, reports and so on.

image

Step 8

To deactivate the firewall through this medium, we click on the "Status" switch. Thus, we can manage the firewall in Ubuntu.

image


2. How to disable the UFW firewall in CentOS

Step 1

In the case of CentOS 7, the process is equally simple, first, we check the status of the firewall with the following command:
 systemctl status firewalld 
image
Step 2

Once we validate this, we proceed to disable the CentOS 7 firewall with the following command. There we must enter and confirm our password to complete the process.
 systemctl disable firewalld 
image
Step 3

Finally, if we want to stop the firewall, we must execute the following line:
 systemctl stop firewalld 
image
Step 4

We can verify that the firewall has been disabled by running again:
 systemctl status firewalld 
image

With any of the options mentioned above, we can manage everything related to the disablement of the firewall in CentOS or Ubuntu and thus be able to execute the required tasks without problems but remember the importance of the firewall in the system.


by (3.5m points)
edited

Related questions

+5 votes
1 answer
asked Oct 5, 2019 in Security by backtothefuture (551k points) | 587 views
+4 votes
1 answer
asked Feb 12, 2021 in Security by backtothefuture (551k points) | 456 views
+4 votes
1 answer
+3 votes
1 answer
asked Nov 16, 2019 in Linux / Unix by backtothefuture (551k points) | 627 views
+5 votes
1 answer
asked Nov 11, 2020 in Linux / Unix by backtothefuture (551k points) | 532 views
Sponsored articles cost $40 per post. You can contact us via Feedback
10,633 questions
10,765 answers
510 comments
3 users