CentOS 7 防火牆設定
#firewall-cmd --list-all
查看一下防火牆現在開啟了哪些服務和端口:
暫時開起or關閉
# firewall-cmd --add-service=https
# firewall-cmd --remove-service=https
永久開起
# firewall-cmd --add-service=ftp --permanent
查看防火牆
# iptables -L
開啟port
# /sbin/iptables -I INPUT -p tcp --dport 443 -j ACCEPT
# /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
關閉port
# /sbin/iptables -I INPUT -p tcp --dport 80 -j REJECT
沒有留言:
張貼留言