CentOS7默認的防火墻不是iptables,而是firewalle
10年積累的網(wǎng)站設(shè)計、做網(wǎng)站經(jīng)驗,可以快速應對客戶對網(wǎng)站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有積石山保安族東鄉(xiāng)族免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。#先檢查是否安裝了iptables
service iptables status
#安裝iptables
yum install -y iptables
#升級iptables
yum update iptables
#安裝iptables-services
yum install iptables-services
禁用/停止自帶的firewalld服務(wù)
#停止firewalld服務(wù)
systemctl stop firewalld
#禁用firewalld服務(wù)
systemctl mask firewalld
#查看iptables現(xiàn)有規(guī)則
iptables -L -n
#先允許所有,不然有可能會杯具
iptables -P INPUT ACCEPT
#清空所有默認規(guī)則
iptables -F
#清空所有自定義規(guī)則
iptables -X
#所有計數(shù)器歸0
iptables -Z
#允許來自于lo接口的數(shù)據(jù)包(本地訪問)
iptables -A INPUT -i lo -j ACCEPT
防web:
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
iptables -A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
iptables -A INPUT -p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -j DROP
iptables -A INPUT -p tcp -m tcp --tcp-flags SYN,RST SYN,RST -j DROP
iptables -A INPUT -p tcp -m tcp --tcp-flags FIN,RST FIN,RST -j DROP
iptables -A INPUT -p tcp -m tcp --tcp-flags FIN,ACK FIN -j DROP
iptables -A INPUT -p tcp -m tcp --tcp-flags PSH,ACK PSH -j DROP
iptables -A INPUT -p tcp -m tcp --tcp-flags ACK,URG URG -j DROP
設(shè)置開放端口
#開放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
#允許接受本機請求之后的返回數(shù)據(jù) RELATED,是為FTP設(shè)置的
iptables -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
一次多個端口設(shè)置
iptables -A INPUT -p tcp -m multiport --dports 3306,27017,6060:6062,9000:9001, -j ACCEPT
允許某網(wǎng)段訪問:-I參數(shù)是把規(guī)則添加到首行
iptables -I INPUT -s 192.168.3.0/24 -j ACCEPT
添加防火墻 -A參數(shù)是把規(guī)則添加到尾部
iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 52110 -j ACCEPT
刪除防火墻規(guī)則 -D刪除防火墻規(guī)則
iptables -D INPUT -p tcp -m state --state NEW -m tcp --dport 52110 -j ACCEPT
#其他入站一律丟棄
iptables -P INPUT DROP
#所有出站一律綠燈
iptables -P OUTPUT ACCEPT
#所有轉(zhuǎn)發(fā)一律丟棄
iptables -P FORWARD DROP
保存防火墻規(guī)則 修改防火墻規(guī)則需要執(zhí)行此命令
service iptables save
#開啟服務(wù)
systemctl start iptables.service
#查看狀態(tài)
systemctl status iptables.service
防火墻的啟動、停止、重啟
#相當于以前的chkconfig iptables on
systemctl enable iptables.service
#開啟服務(wù)
systemctl start iptables.service
#查看狀態(tài)
systemctl status iptables.service
#重啟服務(wù)
systemctl restart iptables.service
#停止服務(wù)
systemctl stop iptables.service
解決vsftpd在iptables開啟后,無法使用被動模式的問題
1.首先在/etc/sysconfig/iptables-config中修改或者添加以下內(nèi)容
#添加以下內(nèi)容,注意順序不能調(diào)換
IPTABLES_MODULES="ip_conntrack_ftp"
IPTABLES_MODULES="ip_nat_ftp"
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。