您好,登錄后才能下訂單哦!
本篇內容介紹了“怎么用FirewallD配置防火墻”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
firewalld是centos7系統默認的防火墻,和iptables一樣,是使用系統中netfilter內核模塊的管理工具。和iptables不一樣的點 firewalld 使用區域和服務而不是鏈式規則。 它動態管理規則集,允許更新規則而不破壞現有會話和連接。
FirewallD 使用服務service 和區域zone來代替 iptables 的規則rule和鏈chain。
默認情況下,有以下的區域zone可用:
要列出所有可用的區域,運行:
# firewall-cmd --get-zoneswork drop internal external trusted home dmz public block
列出默認的區域 :
# firewall-cmd --get-default-zonepublic
改變默認的區域 :
# firewall-cmd --set-default-zone=dmz# firewall-cmd --get-default-zonedmz
FirewallD 服務使用 XML 配置文件,記錄了 firewalld 服務信息。
列出所有可用的服務:
# firewall-cmd --get-servicesamanda-client amanda-k5-client bacula bacula-client ceph ceph-mon dhcp dhcpv6 dhcpv6-client dns docker-registry dropbox-lansync freeipa-ldap freeipa-ldaps freeipa-replication ftp high-availability http https imap imaps ipp ipp-client ipsec iscsi-target kadmin kerberos kpasswd ldap ldaps libvirt libvirt-tls mdns mosh mountd ms-wbt mysql nfs ntp openvpn pmcd pmproxy pmwebapi pmwebapis pop3 pop3s postgresql privoxy proxy-dhcp ptp pulseaudio puppetmaster radius rpc-bind rsyncd samba samba-client sane smtp smtps snmp snmptrap squid ssh synergy syslog syslog-tls telnet tftp tftp-client tinc tor-socks transmission-client vdsm vnc-server wbem-https xmpp-bosh xmpp-client xmpp-local xmpp-server
XML 配置文件存儲在 /usr/lib/firewalld/services/
和 /etc/firewalld/services/
目錄下。
作為一個例子,假設你正在運行一個 web 服務器,SSH 服務端口為 7022 ,以及郵件服務,你可以利用 FirewallD 這樣配置你的服務器:
首先設置默認區為 dmz。
# firewall-cmd --set-default-zone=dmz# firewall-cmd --get-default-zonedmz
為 dmz 區添加持久性的 HTTP 和 HTTPS 規則:
# firewall-cmd --zone=dmz --add-service=http --permanent# firewall-cmd --zone=dmz --add-service=https --permanent
開啟端口 25 (SMTP) 和端口 465 (SMTPS) :
firewall-cmd --zone=dmz --add-service=smtp --permanent firewall-cmd --zone=dmz --add-service=smtps --permanent
開啟 IMAP、IMAPS、POP3 和 POP3S 端口:
firewall-cmd --zone=dmz --add-service=imap --permanent firewall-cmd --zone=dmz --add-service=imaps --permanent firewall-cmd --zone=dmz --add-service=pop3 --permanent firewall-cmd --zone=dmz --add-service=pop3s --permanent
因為將 SSH 端口改到了 7022,所以要移除 ssh 服務(端口 22),開啟端口 7022:
firewall-cmd --remove-service=ssh --permanent firewall-cmd --add-port=7022/tcp --permanent
要應用這些更改,我們需要重新加載防火墻:
firewall-cmd --reload
最后可以列出這些規則:
# firewall-cmd –list-alldmz target: default icmp-block-inversion: no interfaces: sources: services: http https imap imaps pop3 pop3s smtp smtps ports: 7022/tcp protocols: masquerade: no forward-ports: sourceports: icmp-blocks: rich rules:
“怎么用FirewallD配置防火墻”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。