2013年9月23日月曜日

postfixでLISTENしているIPをlocalhostから0.0.0.0に変更する方法

netstat -an | grep 25

で以下のような設定にしたい場合
tcp        0      0 0.0.0.0:25                  0.0.0.0:*                   LISTEN
↓
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN

vim /etc/postfix/main.cf
inet_interfaces = localhost
↓
inet_interfaces = all

service postfix restart

0 件のコメント:

コメントを投稿