Reputation: 73
My firewall is currently inactive.
# systemctl status firewalld
firewalld.service
Loaded: masked (/dev/null)
Active: inactive (dead)
I used the following command to enable the firewall
$systemctl unmask firewalld
but I got this error
# systemctl unmask firewalld
Failed to issue method call: Access denied
Please advise.
Thanks in advance!
Upvotes: 7
Views: 28153
Reputation: 658
Try this:
systemctl unmask firewalld
return: Removed symlink /etc/systemd/system/firewalld.service.
After that, you can:
systemctl restart firewalld
Upvotes: 19
Reputation: 1976
Try this:
sudo systemctl restart firewalld
sudo systemctl enable firewalld
But before you should install firewalld
. You can use yum
for that:
sudo yum install firewalld
Upvotes: 2