博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux开放端口号
阅读量:6222 次
发布时间:2019-06-21

本文共 825 字,大约阅读时间需要 2 分钟。

hot3.png

1.centos7版本对防火墙进行 加强,不再使用原来的iptables,启用firewall
1.查看已开放的端口(默认不开放任何端口)
firewall-cmd --list-ports
2.开启80端口
firewall-cmd --zone=public(作用域) --add-port=80/tcp(端口和访问类型) --permanent(永久生效)
3.重启防火墙
firewall-cmd --reload
4.停止防火墙
systemctl stop firewalld.service
5.禁止防火墙开机启动
systemctl disable firewalld.service
6.删除
firewall-cmd --zone= public --remove-port=80/tcp --permanent
2.centos7以下版本
1.开放80,22,8080 端口
/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 22 -j ACCEPT
/sbin/iptables -I INPUT -p tcp --dport 8080 -j ACCEPT
2.保存
/etc/rc.d/init.d/iptables save
3.查看打开的端口
/etc/init.d/iptables status
4.关闭防火墙 
1) 永久性生效,重启后不会复原
开启: chkconfig iptables on
关闭: chkconfig iptables off
2) 即时生效,重启后复原
开启: service iptables start
关闭: service iptables stop

转载于:https://my.oschina.net/u/2351011/blog/1919914

你可能感兴趣的文章
iOS开发,Bluetooth你应该了解一些!
查看>>
RAMDISK:EOF while reading comperessed data
查看>>
确定jdk是32位版本还是64位版本
查看>>
mysql进阶简单解析
查看>>
poi操作excel 07
查看>>
建造模式
查看>>
程序员如何让自己 Be Cloud Native - 配置篇
查看>>
40.使用JQ对表单进行全面校验
查看>>
飞猪IP-代理-换IP作用
查看>>
爬虫笔记1:Python爬虫常用库
查看>>
linux系统下使用pwgen生成密码的教程
查看>>
java简介
查看>>
斐波那奇数列
查看>>
iOS中的定位
查看>>
amavisd-new 设置
查看>>
我的友情链接
查看>>
第一次修改:pxe无人值守网络安装redhat linux系统脚本
查看>>
开发者必备,超实用的PHP代码片段!
查看>>
doker 1.12-runc源码逻辑跳转流程分析
查看>>
servlet
查看>>