Tomasz Chmielewski wrote:
mouss schrieb:
Tomasz Chmielewski wrote:
Basically, if Postfix can specify the source IP address, that should
be fine for me... provided that it can make some decisions here
(i.e., which outgoing interface to choose, depending on From: or
Received: etc).
since you have one network card, you have one outgoing interface.
Choosing among one thing would be strange outside of maths ;-p
Now I see I didn't pick the thread's title very well ;)
(should be: "multiple outgoing IP addresses").
sysv heritage. Compare this:
# ifconfig eth0:1 192.168.1.1
# ifconfig eth0:2 192.168.1.2
# ifconfig
...
eth0:0 ....
inet adr:192.168.1.1 ...
...
eth0:2 ...
inet adr:192.168.1.2 ...
with the "BSD way":
# ifconfig xl0 192.168.1.1 alias
# ifconfig xl0 192.168.1.2 alias
# ifconfig
xl0: ...
inet 192.168.1.1 ...
inet 192.168.1.2 ...
...