您好,登錄后才能下訂單哦!
本篇內容主要講解“CentOS7中如何使用FirewallD”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“CentOS7中如何使用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:
到此,相信大家對“CentOS7中如何使用FirewallD”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。