Centos7安装iptables防火墙

本文涉及的产品
云防火墙,500元 1000GB
简介:

安装iptable iptable-service



  1. 1
    2
    3
    4
    5
    6
    7
    8
    #先检查是否安装了iptables  
    service iptables status  
    #安装iptables  
    yum  install  -y iptables  
    #升级iptables  
    yum update iptables   
    #安装iptables-services  
    yum  install  iptables-services

禁用/停止自带的firewalld服务


  1. 1
    2
    3
    4
    #停止firewalld服务  
    systemctl stop firewalld  
    #禁用firewalld服务  
    systemctl mask firewalld

设置现有规则


  1. 1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    #查看iptables现有规则  
    iptables -L -n  
    #先允许所有,不然有可能会杯具  
    iptables -P INPUT ACCEPT  
    #清空所有默认规则  
    iptables -F  
    #清空所有自定义规则  
    iptables -X  
    #所有计数器归0  
    iptables -Z  
    #允许来自于lo接口的数据包(本地访问)  
    iptables -A INPUT -i lo -j ACCEPT  
    #开放22端口  
    iptables -A INPUT -p tcp --dport 22 -j ACCEPT  
    #开放21端口(FTP)  
    iptables -A INPUT -p tcp --dport 21 -j ACCEPT  
    #开放80端口(HTTP)  
    iptables -A INPUT -p tcp --dport 80 -j ACCEPT  
    #开放443端口(HTTPS)  
    iptables -A INPUT -p tcp --dport 443 -j ACCEPT  
    #允许ping  
    iptables -A INPUT -p icmp --icmp- type  8 -j ACCEPT  
    #允许接受本机请求之后的返回数据 RELATED,是为FTP设置的  
    iptables -A INPUT -m state --state  RELATED,ESTABLISHED -j ACCEPT  
    #其他入站一律丢弃  
    iptables -P INPUT DROP  
    #所有出站一律绿灯  
    iptables -P OUTPUT ACCEPT  
    #所有转发一律丢弃  
    iptables -P FORWARD DROP

其他规则设定


  1. 1
    2
    3
    4
    5
    6
    7
    8
    #如果要添加内网ip信任(接受其所有TCP请求)  
    iptables -A INPUT -p tcp -s 45.96.174.68 -j ACCEPT  
    #过滤所有非以上规则的请求  
    iptables -P INPUT DROP  
    #要封停一个IP,使用下面这条命令:  
    iptables -I INPUT -s ***.***.***.*** -j DROP  
    #要解封一个IP,使用下面这条命令:  
    iptables -D INPUT -s ***.***.***.*** -j DROP

保存规则设定


  1. 1
    2
    #保存上述规则  
    service iptables save

开启iptables服务

copy

1
2
3
4
5
6
7
#注册iptables服务  
#相当于以前的chkconfig iptables on  
systemctl  enable  iptables.service  
#开启服务  
systemctl start iptables.service  
#查看状态  
systemctl status iptables.service

解决vsftpd在iptables开启后,无法使用被动模式的问题

1.首先在/etc/sysconfig/iptables-config中修改或者添加以下内容

copy

  1. 1
    2
    3
    #添加以下内容,注意顺序不能调换  
    IPTABLES_MODULES= "ip_conntrack_ftp"  
    IPTABLES_MODULES= "ip_nat_ftp"

2.重新设置iptables设置


  1. 1
    iptables -A INPUT -m state --state  RELATED,ESTABLISHED -j ACCEPT

以下为完整设置脚本

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh  
iptables -P INPUT ACCEPT  
iptables -F  
iptables -X  
iptables -Z  
iptables -A INPUT -i lo -j ACCEPT  
iptables -A INPUT -p tcp --dport 22 -j ACCEPT  
iptables -A INPUT -p tcp --dport 21 -j ACCEPT  
iptables -A INPUT -p tcp --dport 80 -j ACCEPT  
iptables -A INPUT -p tcp --dport 443 -j ACCEPT  
iptables -A INPUT -p icmp --icmp- type  8 -j ACCEPT  
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT  
iptables -P INPUT DROP  
iptables -P OUTPUT ACCEPT  
iptables -P FORWARD DROP  
service iptables save  
systemctl restart iptables.service










本文转自 蓝叶子Sheep 51CTO博客,原文链接:http://blog.51cto.com/dellinger/2046037,如需转载请自行联系原作者
目录
相关文章
|
2月前
|
机器学习/深度学习 安全 网络协议
Linux防火墙iptables命令管理入门
本文介绍了关于Linux防火墙iptables命令管理入门的教程,涵盖了iptables的基本概念、语法格式、常用参数、基础查询操作以及链和规则管理等内容。
222 73
|
16天前
|
安全 Linux 网络安全
centos7中firewall防火墙的常用命令总结
以上命令集覆盖了 `firewalld`的基本操作,是维护CentOS 7系统安全不可或缺的工具。对于更高级的配置需求或遇到特定问题
13 3
|
3月前
|
网络协议 Ubuntu 安全
在Ubuntu上安装和配置配置服务器防火墙(CSF)的方法
在Ubuntu上安装和配置配置服务器防火墙(CSF)的方法
49 1
|
3月前
|
存储 网络协议 Ubuntu
如何在 Ubuntu 14.04 上使用 Iptables 实现基本防火墙模板
如何在 Ubuntu 14.04 上使用 Iptables 实现基本防火墙模板
45 0
|
3月前
|
网络协议 Ubuntu Linux
Iptables 防火墙的工作原理
Iptables 防火墙的工作原理
42 0
|
6月前
|
XML 安全 Linux
【Linux】深入探究CentOS防火墙(Firewalld):基础概念、常用命令及实例操作
【Linux】深入探究CentOS防火墙(Firewalld):基础概念、常用命令及实例操作
|
6月前
|
Linux 网络安全
centos7如何关闭防火墙
centos7如何关闭防火墙
553 3
|
6月前
|
网络协议 Linux 网络安全
iptables 与 firewalld 防火墙
iptables 与 firewalld 防火墙
|
6月前
|
网络协议 Linux 网络安全
CentOS 7 防火墙指令
本文介绍了CentOS 7中管理防火墙`firewalld`的指令。
86 0
|
6月前
|
网络协议 Linux 网络安全
Linux(17)Centos5、6、7、8版本的防火墙常用命令
Linux(17)Centos5、6、7、8版本的防火墙常用命令
136 0