Problem scenario
You want to see if there is an operating system, software or host-based firewall on your Linux machine. What do you do?
Solution
Run the following six commands for clues:
sudo ps -ef | grep firewalld
sudo systemctl status firewalld
sudo ps -ef | grep ufw
sudo ufw status
sudo iptables -L #*
sudo nmap -P0 127.0.0.1
If you are running the server in a public cloud,
…
Continue reading “How Do You Tell if There is a Firewall on Linux?”