ウェブサーバ(メールサーバ)の移設でさくらインターネットのVPSにて構築中です。CentOS Linux release 7.8.2003 (Core)
現状ウェブサーバ(APACHE)とメールサーバ(POSTFIX・DOVECOT)は動くようになり、SSL(TSL)導入の作業を進めているところです。
SSL関連のポートを開くため、firewalldにて以下のように設定しました。(pop3s,imaps,smtps追加、httpsは事前に開放済)
[root@domain_name admin]# firewall-cmd --list-all public (active) target: default icmp-block-inversion: no interfaces: eth0 sources: services: dhcpv6-client http https imap imaps pop3 pop3s smtp smtp-submission smtps ssh51515 ports: protocols: masquerade: no forward-ports: source-ports: icmp-blocks: rich rules:
リロード後確認すると、
[root@domain_name admin]# netstat -tanp | grep LISTEN tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 919/httpd tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 1234/master tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 919/httpd tcp 0 0 0.0.0.0:51515 0.0.0.0:* LISTEN 915/sshd tcp 0 0 0.0.0.0:587 0.0.0.0:* LISTEN 1234/master tcp 0 0 0.0.0.0:110 0.0.0.0:* LISTEN 969/dovecot tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN 969/dovecot tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 526/rpcbind tcp6 0 0 :::25 :::* LISTEN 1234/master tcp6 0 0 :::3306 :::* LISTEN 1267/mysqld tcp6 0 0 :::587 :::* LISTEN 1234/master tcp6 0 0 :::111 :::* LISTEN 526/rpcbind [root@domain_name admin]# nmap xxx.xxx.xx.xxx Starting Nmap 6.40 ( http://nmap.org ) at 2020-10-14 12:06 JST Nmap scan report for domain_name.vs.sakura.ne.jp (xxx.xxx.xx.xxx) Host is up (0.0000060s latency). Not shown: 992 closed ports PORT STATE SERVICE 25/tcp open smtp 80/tcp open http 110/tcp open pop3 111/tcp open rpcbind 143/tcp open imap 443/tcp open https 587/tcp open submission 3306/tcp open mysql Nmap done: 1 IP address (1 host up) scanned in 1.63 seconds
と、追加したサービスのポートが追加されません。
ポート番号で直接開放しても同様でした。
色々調べたところ、iptablesとの競合が怪しいと思いましたが、iptables.serviceはインストールされていませんでしたが、yumで調べるとインストールされていました。
iptables -nL を入力すると以下の通り表示されます。
Chain IN_public_allow (1 references) target prot opt source destination ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:51515 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:443 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:110 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:995 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:143 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:25 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:465 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:587 ctstate NEW,UNTRACKED ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:993 ctstate NEW,UNTRACKED
今回のポート追加前に開放していたポートはfail2banを導入前に開放していたので、これが怪しいと思い、停止、自動起動解除、サーバ再起動して改めてポート追加してみましたが、やはりだめでした。
何か解決方法、またはご助言いただけないでしょうか。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/14 05:58
2020/10/14 06:08
2020/10/14 06:49
2020/10/14 07:01
2020/10/14 07:27 編集
2020/10/14 15:34 編集