Bind Postfix Mail Server To Localhost or Specific IP Address Only

by Vivek Gite on June 10, 2008 · 2 comments

Q. How do I bind Postfix MTA to specific IP address such as 127.0.0.1 or 202.5.1.2?

A. Postfix allows you to listen on a particular IP address. By default MTA will list on all network interfaces and loopback. You need to setup inet_interfaces parameter. You need Postfix version 2.2 and later to use this feature. The parameter also controls delivery of mail to user@[ip.address].

Postfix IP address bind configuration

Open /etc/postfix/main.cf file:
# vi /etc/postfix/main.cf
Append / modify line as follows to bind to localhost (127.0.0.1) only:
inet_interfaces = 127.0.0.1
If you need to bind to 127.0.0.1 and 202.5.1.2, enter:
inet_interfaces = 202.5.1.2,127.0.0.1
Save and close the file. You need to stop and start Postfix when this parameter changes. So type the following to restart Postfix:
# /etc/init.d/postfix restart
Verify that everything is working fine:
# netstat -tulpn | grep 25
# tail -f /var/log/maillog

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 2 comments… read them below or add one }

1 neeeko June 2, 2011

OK.
But what about this :

OPenVPN client is active and a new tap0 interface has been created.

Even if you have specified the parameters in main.cf, your Postfix will not receive nor send any email…

How to fix this ?

Reply

2 Todd August 12, 2011

Thank you for the great explanation. I would like to segragate my email domains, can you give you an expand on this a bit further and explain how you bind 1 unique ip address to 10 domains in Postfix, rather than 1 ip’d domain with 9 virtual addresses?

Thank you in advance for any tips.

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 6 + 11 ?
Please leave these two fields as-is:
IMPORTANT! To be able to proceed, you need to solve the simple math so we know that you are a human and not a script.




Previous post:

Next post: