红联Linux门户
Linux帮助

Ubuntu15.04如何关闭防火墙

发布时间:2015-09-17 09:30:46来源:linux网站作者:poloshiao

起因:Ubuntu 15.04使用systemd系统。不清楚是那个服务启动的iptables。即便在rc.local里面清除rules也行不通。


参考解答:
1.先试试 ufw.service
1-1. systemctl list-unit-files --no-pager | grep ufw
ufw.service enabled
1-2. sudo ls -al /lib/systemd/system | grep ufw
-rw-r--r-- 1 root root 241 3月 3 2015 ufw.service

2.启动/关闭 ufw.service
sudo systemctl status ufw.service
sudo systemctl start ufw.service
sudo systemctl status ufw.service
sudo systemctl stop ufw.service
sudo systemctl status ufw.service

3.目前 Ubuntu 15.04 还没有提供 iptables.service 档案
3-1. 如果你要使用 systemctl 指令 启动 / 关闭 iptables.service
需要先自己写一个 iptables.service 并且 enable iptables.service
3-2. 或者 切换到 使用 Upstart 初始化 机制
https://wiki.ubuntu.com/SystemdForUpstartUsers#Switching_init_systems


关于Linux防火墙‘iptables‘的面试问答:http://www.linuxdiyf.com/linux/13271.html

CentOS 7.0关闭默认防火墙启用iptables防火墙:http://www.linuxdiyf.com/linux/12149.html

CentOS 7.0启用iptables防火墙:http://www.linuxdiyf.com/linux/6544.html

Ubuntu下的防火墙Gufw-ufw:http://www.linuxdiyf.com/linux/10875.html

CentOS配置防火墙操作实例(启、停、开、闭端口):http://www.linuxdiyf.com/linux/3341.html