当前位置:   article > 正文

ubuntu防火墙各种配置及启动异常解决方案_ubuntu 开机bridge firewalling registered

ubuntu 开机bridge firewalling registered

目录

 

前言

 

一、防火墙配置

1. firewall防火墙常用命令

2. firewall-cmd命令

3. 打开关闭端口 

二、异常问题解决方案

三、常用基本命令


 

前言

  1. linux防火墙的开启与关闭等常用命令
  2. firewall-cmd配置端口等
  3. ubuntu防火墙配置

 

一、防火墙配置

在Centos7版本的防火墙使用的是firewall,Centos 6以下都是使用iptables

目前多数版本都在使用firewall,如果iptables命令执行不了,可以使用firewall命令参数;

启动iptables

modprobe ip_tables

关闭iptables(关闭命令要比启动复杂):

  1. iptalbes -F
  2. iptables -X
  3. iptables -Z
  4. iptables -P INPUT ACCEPT
  5. iptables -P OUTPUT ACCEPT
  6. iptables -P FORWARD ACCEPT
  7. modprobe -r ip_tables

依次执行以上命令即可关闭iptables,否则在执行modproble -r ip_tables时将会提示FATAL: Module ip_tables is in use.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/169769
推荐阅读
相关标签