linux 开启防火墙的指定端口

通过下面的命令可以开启允许对外访问的网络端口:

/sbin/iptables -I INPUT -p tcp --dport 8011 -j ACCEPT #开启8011端口

/etc/rc.d/init.d/iptables save #保存配置

/etc/rc.d/init.d/iptables restart #重启服务

查看端口是否已经开放

/etc/init.d/iptables status

结果如下

时间: 2024-10-08 10:28:00

linux 开启防火墙的指定端口的相关文章

Linux iptables防火墙添加删除端口

一.  Linux 防火墙的启动和关闭1.1 启动命令[[email protected] ~]# service iptables stopFlushing firewall rules:                                   [  OK  ]Setting chains to policy ACCEPT: filter nat                [  OK  ]Unloading iptables modules:                  

CentOS 6、CentOS7 防火墙开放指定端口

当我们在CentOS服务器中装了一些开发环境(如 tomcat.mysql.nginx 等...)时,希望能从外界访问,就需要配置防火墙对指定端口开放. CentOS 6.51.开放指定端口/sbin/iptables -I INPUT -p tcp --dport 端口号 -j ACCEPT   //写入修改/etc/init.d/iptables save                                       //保存修改service iptables restart

linux 开启防火墙

开启防火墙 当我们修改了某些配置之后(尤其是配置文件的修改),firewall并不会立即生效.可以通过两种方式来激活最新配置 systemctl restart firewalld 和 firewall-cmd --reload 两种方式,前一种是重启firewalld服务,建议使用后一种"重载配置文件".重载配置文件之后不会断掉正在连接的tcp会话,而重启服务则会断开tcp会话. 在CentOS7.0中默认使用firewall代替了iptables service.虽然继续保留了ip

Linux关闭防火墙,开放端口

Centos/redhat系统: 开启防火墙 #systemctl start firewalld.service 停止firewall #systemctl stop firewalld.service 禁止firewall开机启动 #systemctl disable firewalld.service 查看默认防火墙状态(关闭后显示not running,开启后显示running) #firewall-cmd --state 配置iptables,首先需要安装iptables服务 #yum

CentOS7开启防火墙及特定端口

开启防火墙服务 以前为了方便,把防火墙都关闭了,因为现在项目都比较重要,害怕受到攻击,所以为了安全性,现在需要将防火墙开启,接下来介绍一下步骤. 1, 首先查看防火墙状态: firewall-cmd --state 下图所示为关闭防火墙,接下来需要开启 2, 开启防火墙, 启动firewall: systemctl start firewalld.service 设置开机自启: systemctl enable firewalld.service 3, 重启防火墙: systemctl rest

linux开启防火墙端口和查看,开启相关端口号

防火墙开启与关闭(即时生效,重启后失效): $ sudo service iptables start            #开启 $ sudo service iptables stop            #关闭 防火墙开启与关闭(重启后生效): $ sudo chkconfig iptables on $ sudo chkconfig iptables off 开启相关端口: 修改 /etc/sysconfig/iptables 文件,添加以下内容: -A INPUT -p tcp -

Linux关闭防火墙、设置端口

关闭防火墙 1)重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off 验证防火墙是否关闭:chkconfig --list |grep iptables 2) 即时生效,重启后失效 开启: service iptables start 关闭: service iptables stop centos 7: systemctl stop firewalld.service #停止 systemctl disable firewalld

linux配置防火墙打开3306端口

安装完MYSQL服务器后在本机所有操作都正常, 但在其它机器上远程访问这个MYSQL服务器时怎么都连接不上.  shit! 怀疑是端口问题, 结果: telnet 192.168.1.245 3306 发现连接不上, 原来如此是端口被防火墙限制了. 现在只需要是在防火墙中打开3306端口即可. 执行 vi /etc/sysconfig/iptables 如图: -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 33

linux系统防火墙相关问题及常用命令介绍

今天介绍关于linux系统防火墙:centos5.centos6.redhat6系统自带的是iptables防火墙,centos7.redhat7自带firewall防火墙,ubuntu系统使用的是ufw防火墙.本平台www.gxdeqiong.com 安装的是iptables防火墙(其他云服务供应商可能使用的是其他防火墙). 防火墙导致服务不正常的问题: 在服务器安装某些服务之后,服务无法连接.无法正常启动等情况.查看下系统防火墙有没开放相关的服务端口.(linux系统防火墙开放相关端口后还要