码迷,mamicode.com
首页 > 系统相关 > 详细

Ubuntu18.04防火墙安装关闭开启操作等

时间:2020-08-20 19:08:48      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:shel   tcp   启动   status   grep   指定   安装方法   指定端口   连接   

防火墙安装关闭开启

一般ubuntu的防火墙是关闭的

安装方法(一般都会默认安装防火墙)

 sudo apt-get install ufw

当然,这是有图形界面的(比较简陋),在新立得里搜索gufw试试……

使用方法

1 启用

 sudo ufw enable

 sudo ufw default deny 

作用:开启了防火墙并随系统启动同时关闭所有外部对本机的访问(本机访问外部正常)。

2 关闭

sudo ufw disable 

3 查看防火墙状态

sudo ufw status

4. 开放端口(22,连接Xterm或者XShell)

sudo ufw allow 22

5. 查看指定端口信息/监听状态

sudo netstat -tunlp | grep 22

5. 关闭指定端口

 sudo ufw delete allow 8001/tcp 

开放指定ip

sudo ufw allow from 192.168.3.38

关闭指定ip

sudo ufw delete allow from 192.168.3.38

开启对应ip指定端口

sudo ufw allow from 192.168.3.38 to any port 3306

关闭指定ip指定端口

sudo ufw delete allow from 192.168.3.38 to any port 3306

6. 重启使配置生效

sudo ufw reload

Ubuntu18.04防火墙安装关闭开启操作等

标签:shel   tcp   启动   status   grep   指定   安装方法   指定端口   连接   

原文地址:https://www.cnblogs.com/chougoushi/p/13524426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!