https://blog.csdn.net/yipianfuyunsm/article/details/99998332html
https://www.cnblogs.com/co10rway/p/8268735.htmlcentos
一、啓動防火牆安全
systemctl start firewalld.servicessh
二、指定IP與端口tcp
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.142.166" port protocol="tcp" port="5432" accept"
centos7
三、從新載入,使配置生效spa
systemctl restart firewalld.service.net
四、查看配置結果命令行
firewall-cmd --list-allrest
五、刪除規則
firewall-cmd --permanent --remove-rich-rule="rule family="ipv4" source address="192.168.142.166" port protocol="tcp" port="11300" accept"
防火牆的FTP策略配置
放行20、21端口仍是不能鏈接FTP,由於在PASV模式下,創建數據傳輸會隨機開放端口,這個端口顯然是沒有處於firewall的容許策略之下的,由於須要修改配置文件,指定端口範圍。
1 vi /etc/vsftpd/vsftpd.conf
在最後加入如下內容,端口儘可能選擇高範圍,提升安全性
1 pasv_enable=YES #開啓被動模式 2 pasv_min_port=30000 #隨機最小端口 3 pasv_max_port=31000 #隨機最大端口
而後對指定的IP開放指定的端口段
1 firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.142.166" port protocol="tcp" port="30000-31000" accept"
而後重啓ftp、firewall,便可正常鏈接
centos7.3 firewalld防火牆指定IP策略--------龍膽蘇打
firewall-cmd的命令行客戶端支持和這個守護進程通訊以永久修改防火牆規則
經常使用命令
firewall-cmd #防火牆的命令行
--permanent #永久
--remove #移除
--add #添加
--list-all #查詢全部
1
2
3
4
5
查看配置結果
firewall-cmd --list-all
1
顯示以下
public (default)
interfaces:
sources:
services: dhcpv6-client ftp ssh
ports:
masquerade: no
forward-ports:
icmp-blocks:
rich rules:
rule family="ipv4" source address="192.168.1.1" port port="2000-30000" protocol="tcp" accept
rule family="ipv4" source address="192.168.1.19" " accept
1
2
3
4
5
6
7
8
9
10
11
#刪除策略指定ip策略
語法
firewall-cmd --permanent --remove-rich-rule="《刪除的信息》"
1
例子1
firewall-cmd --permanent --remove-rich-rule="rule family="ipv4" source address="192.168.1.1" port port="2000-30000" protocol="tcp" accept"
1
例子2
firewall-cmd --permanent --remove-rich-rule="rule family="ipv4" source address="192.168.1.19" " accept"
1
從新加載防火牆
firewall-cmd --reload #在不改變狀態的條件下從新加載防火牆
添加策略指定ip策略
語法
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="終端ip" accept"
1
例子1
firewall-cmd --permanent --add-rich-rule="rule family="ipv4" source address="192.168.1.1" accept"
1
例子2
firewall-cmd --permanent --permanent --remove-rich-rule family="ipv4" source address="192.168.1.1" port port="1521" protocol="tcp" accept
1
開啓防火牆
systemctl restart firewalld
或者從新加載防火牆firewall-cmd --reload #在不改變狀態的條件下從新加載防火牆與 systemctl restart firewalld相似的效果————————————————版權聲明:本文爲CSDN博主「龍膽蘇打」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處連接及本聲明。原文連接:https://blog.csdn.net/yipianfuyunsm/article/details/99998332