postfix本機が本機をテストする時、telnet接続エラー
順方向解析、逆方向解析は問題ありません.postfixのデフォルトポートは25です.
postfixのプロファイルの構成
postfixを再起動し、テストします.
問題の確認
まずtelnetサービスがあるかどうかを確認します
今telnetがあって、しかしサービスは閉じて、それを開きます
telnetの構成の表示
次のpostfixのプロファイルを見てみましょう
postfixのプロファイルの構成
[root@www:/var/named]# cd /etc/postfix/
[root@www:/etc/postfix]# vim main.cf
myhostname = www.crwolf.com
myorigin = crwolf.com
mydomain = crwolf.com
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
mynetworks = 192.168.1.0/24, 127.0.0.0/8
postfixを再起動し、テストします.
[root@www:/etc/postfix]# service postfix restart
postfix: [ ]
postfix: [ ]
[root@www:/etc/postfix]# vim /etc/resolv.conf
nameserver 192.168.1.9 DNS
[root@www:/etc/postfix]# telnet mail.crwolf.com 25
Trying 192.168.1.9...
telnet: connect to address 192.168.1.9: Connection refused #
[root@www:/etc/postfix]# telnet localhost 25 # ?
Trying ::1...
Connected to localhost.
Escape character is '^]'.
220 www.crwolf.com ESMTP Postfix
問題の確認
まずtelnetサービスがあるかどうかを確認します
[root@www:/etc/postfix]# cd
[root@www:~]# rpm -qa telnet
telnet-0.17-48.el6.x86_64 #
[root@www:~]# rpm -qa telnet-server #
[root@www:~]# chkconfig --list
xinetd : #xinetd telnet
[root@www:~]# yum install -y telnet-server # telnet-server
[root@www:~]# chkconfig --list
xinetd :
telnet:
今telnetがあって、しかしサービスは閉じて、それを開きます
[root@www:~]# service xinetd restart
xinetd: [ ]
xinetd: [ ]
[root@www:~]# service telnet start
telnet:
[root@www:~]# chkconfig telnet on
[root@www:~]# chkconfig --list
xinetd :
telnet:
[root@www:~]# telnet mail.crwolf.com 25
Trying 192.168.1.9...
telnet: connect to address 192.168.1.9: Connection refused #
telnetの構成の表示
[root@www:~]# vim /etc/xinetd.d/telnet
disable = no #
次のpostfixのプロファイルを見てみましょう
[root@www:~]# vim /etc/postfix/main.cf #inet_interfaces $myhostname,
inet_interfaces = localhost --> inet_interfaces = localhost, $myhostname
[root@www:~]# telnet www.crwolf.com 25 #
Trying 192.168.1.9...
Connected to www.crwolf.com.
Escape character is '^]'.
220 www.crwolf.com ESMTP Postfix