Linux 基本防火墙设置和开放端口命令
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
关闭防火墙
CentOS 7
、RedHat 7
之前的 Linux 发行版防火墙开启和关闭( iptables
):
即时生效,重启失效
#开启
service iptables start
#关闭
service iptables stop
重启
生效
#开启
chkconfig iptables on
#关闭
chkconfig iptables off
CentOS 7
、RedHat 7
之后的 Linux 发行版防火墙开启和关闭( firewall
):
systemctl stop firewalld.service
开放端口
CentOS 7
、RedHat 7
之前的 Linux 发行版开放端口
#命令方式开放5212端口命令
#开启5212端口接收数据
/sbin/iptables -I INPUT -p tcp --dport 5212 -j ACCEPT
#开启5212端口发送数据
/sbin/iptables -I OUTPUT -p tcp --dport 5212 -j ACCEPT
#保存配置
/etc/rc.d/init.d/iptables save
#重启防火墙服务
/etc/rc.d/init.d/iptables restart
#查看是否开启成功
/etc/init.d/iptables status
CentOS 7
、RedHat 7
之后的 Linux 发行版开放端口
firewall-cmd --zone=public --add-port=5121/tcp --permanent
# --zone 作用域
# --add-port=5121/tcp 添加端口,格式为:端口/通讯协议
# --permanent 永久生效,没有此参数重启后失效
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献1条内容
所有评论(0)