linux/ubuntu 端口开放

Posted Fight With Me!!!

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux/ubuntu 端口开放相关的知识,希望对你有一定的参考价值。

在ubuntu下面开放端口好像主要有两种方法,一种是ubuntu自带的防火墙,一种是iptables,这里我们主要使用iptables。本文的系统版本为ubuntu14.04和ubuntu16.04

安装iptables

一般情况下,ubuntu安装好的时候,iptables会被安装上,没有安装上也没啥,一条命令就可以安装了。

apt-get install iptables

安装好了之后就可以添加规则了

iptables -I INPUT -p tcp --dport 80 -j ACCEPT

然后可以直接保存了

iptables-save

持久化iptables

上文那样做只是暂时保存了开放端口的信息,如果服务器重启,保存的信息就掉了,所以我们需要持久化一下端口信息,这里我们使用 iptables-persistent

安装iptables-persistent

apt-get install iptables-persistent

持久化信息

service iptables-persistent save

  

以上是关于linux/ubuntu 端口开放的主要内容,如果未能解决你的问题,请参考以下文章

linux/ubuntu 端口开放

linux ubuntu 怎么查看所有开放的端口

Linux Ubuntu系统查看本机服务器端口占用情况

linux(Ubuntu/Centos) iproute 路由IP地址等命令集合,查看端口链接

CentOS7查看开放端口命令

CentOS中iptables防火墙 开放80端口方法