Home > Archives > Centos7启用iptables实战

Centos7启用iptables实战

Publish:

关闭firewall:

1
2
3
4
[root@localhost ~]# systemctl stop firewalld.service #停止firewall
[root@localhost ~]# systemctl disable firewalld.service #禁止firewall开机启动
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.

安装iptables防火墙:

1
2
3
4
[root@localhost ~]# yum install iptables-services #安装
[root@localhost ~]# vim /etc/sysconfig/iptables #编辑防火墙配置文件
[root@localhost ~]# systemctl restart iptables.service #最后重启防火墙使配置生效
[root@localhost ~]# systemctl enable iptables.service #设置防火墙开机启动 

参考资料:

CentOS 7.0,启用iptables防火墙

声明: 本文采用 BY-NC-SA 授权。转载请注明转自: Ding Bao Guo