访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux常用命令总结(六):关闭防火墙

时间:2019-08-29

linux命令vi进入后命令_linux常用命令_linux常用shell命令

本文链接:

如果3306端口监听了,看下是否有安全狗等安全软件阻止了3306端口的访问,关闭安全软件,同时关闭windows防火墙,之后再测试外网是否能访问3306端口。1、关闭防火墙,或者允许通过无主之地2游戏和端口,端口要通过3478,4379-4380,27000-27050linux常用命令,这些端口是无主之地2需要用的联机端口。5.设置nginx代理ajaxterm默认使用的是8022端口,一般防火墙访问的端口有限制,80linux常用命令,443这些不会封,这时我们可以考虑配置web服务器反响代理的方式通过80端口访问ajaxterm。

1.关闭防火墙并且不开机启动

(1)关闭Linux 防火墙

# service iptables status ? ##查看防火墙状态
 ?iptables: Firewall is not running.
# service iptables stop ? ? ##关闭防火墙

(2)设置不开机启动防火墙

linux命令vi进入后命令_linux常用shell命令_linux常用命令

?# ?chkconfig iptables off ? ##不随机启动

(3)查看防火墙的开机启动设置

# ?chkconfig --list | grep iptables

2.关闭安全子系统

# vi /etc/sysconfig/selinux
SELINUX=disabled

**这里不用去修改

linux命令vi进入后命令_linux常用shell命令_linux常用命令

1.服务管理

(1)检查防火墙状态是否打开

systemctl status firewalld #
或者
firewall-cmd --state

(2)启动

systemctl start firewalld ?
设置开机自启:
systemctl enable firewalld.service

(3)重启

systemctl%20restart%20firewalld

(4)关闭

systemctl%20stop%20firewalld 永久关闭 systemctl%20disable%20?firewalld

2.端口管理

(1)添加指定端口

#%20firewall-cmd%20--permanent%20--add-port=8080-8085/tcp success

(2)删除指定端口

# firewall-cmd --permanent --remove-port=8080-8085/tcp
success

(3)查看开放端口

firewall-cmd --permanent --list-ports

(4)查看通过端口的服务

# firewall-cmd --permanent --list-services
ssh dhcpv6-client

(5)重新加载端口管理服务