SMTP binding on partitioned servers

Hi, I have a partitioned server with two partitions (the server has two nics) and I want that the traffic for partition A goes through nic1 (ip 210.15.15.17) and traffic for partition B goes through nic2 (ip 210.15.15.18). My question/doubt is refered to the SMTP listener on partition A, I have added the SMTPNotesPort=TCPIP (ip 210.15.15.17) in the notes.ini and for partition B SMTPNotesPort=TCPIP2 (ip 210.15.15.18) but when I do netstat -a the result is:

Proto Local Address Foreign Address State

TCP 0.0.0.0:21 serverA:0 LISTENING

TCP 0.0.0.0:25 serverA:0 LISTENING

TCP 0.0.0.0:135 serverA:0 LISTENING

TCP 0.0.0.0:445 serverA:0 LISTENING

TCP 0.0.0.0:1352 serverA:0 LISTENING

TCP 0.0.0.0:3389 serverA:0 LISTENING

TCP 0.0.0.0:5357 serverA:0 LISTENING

TCP 0.0.0.0:49152 serverA:0 LISTENING

TCP 0.0.0.0:49153 serverA:0 LISTENING

TCP 0.0.0.0:49154 serverA:0 LISTENING

TCP 0.0.0.0:49155 serverA:0 LISTENING

TCP 0.0.0.0:49156 serverA:0 LISTENING

TCP 0.0.0.0:49157 serverA:0 LISTENING

TCP 127.0.0.1:14147 serverA:0 LISTENING

TCP 127.0.0.1:14147 serverA:49202 ESTABLISHED

TCP 127.0.0.1:49202 serverA:14147 ESTABLISHED

TCP 210.15.15.17:80 serverA:0 LISTENING

TCP 210.15.15.17:80 serverA:0 LISTENING

TCP 210.15.15.17:139 serverA:0 LISTENING

TCP 210.15.15.17:443 serverA:0 LISTENING

TCP 210.15.15.17:443 serverA:0 LISTENING

TCP 210.15.15.17:2050 serverA:0 LISTENING

TCP 210.15.15.17:3389 IT-PEU:1266 ESTABLISHED

TCP 210.15.15.18:25 serverA:0 LISTENING

TCP 210.15.15.18:80 serverA:0 LISTENING

TCP 210.15.15.18:80 serverA:0 LISTENING

TCP 210.15.15.18:139 serverA:0 LISTENING

TCP 210.15.15.18:443 serverA:0 LISTENING

TCP 210.15.15.18:443 serverA:0 LISTENING

TCP 210.15.15.18:1352 serverA:0 LISTENING

TCP 210.15.15.18:2050 serverA:0 LISTENING

TCP [::]:135 serverA:0 LISTENING

TCP [::]:445 serverA:0 LISTENING

TCP [::]:3389 serverA:0 LISTENING

TCP [::]:5357 serverA:0 LISTENING

TCP [::]:49152 serverA:0 LISTENING

TCP [::]:49153 serverA:0 LISTENING

TCP [::]:49154 serverA:0 LISTENING

TCP [::]:49155 serverA:0 LISTENING

TCP [::]:49156 serverA:0 LISTENING

TCP [::]:49157 serverA:0 LISTENING

UDP 0.0.0.0:123 :

UDP 0.0.0.0:500 :

UDP 0.0.0.0:3702 :

UDP 0.0.0.0:3702 :

UDP 0.0.0.0:4500 :

UDP 0.0.0.0:5355 :

UDP 0.0.0.0:55255 :

UDP 210.15.15.17:137 :

UDP 210.15.15.17:138 :

UDP 210.15.15.18:137 :

UDP 210.15.15.18:138 :

UDP [::]:123 :

UDP [::]:500 :

UDP [::]:3702 :

UDP [::]:3702 :

UDP [::]:55256 :

And here the smtp listener for partition B is correct but not for the partition A (just 0.0.0.0:25) something similar happend with the 1352 port for the same partition

There is no 210.15.15.17:25 and 10.15.15.17:1352 like I wish

Here I paste de lines in both notes.ini concerning to TCPIP

Partition A:

Ports=TCPIP

TCPIP=TCP, 0, 15, 0,12288,

TCPIP_TCPIPADDRESS=210.15.15.17:1352

TCPIP2=TCP,0,15,0,12288,

TCPIP2_TCPIPADDRESS=210.15.15.18

DisabledPorts=TCPIP2

SMTPNotesPort=TCPIP

Partition B:

Ports=TCPIP2

TCPIP=TCP,0,15,0,12288,

TCPIP_TCPIPAddress=0,210.15.15.17

TCPIP2=TCP,0,15,0,12288,

TCPIP2_TCPIPAddress=0,210.15.15.18

DisabledPorts=TCPIP

SMTPNotesPort=TCPIP2

Sorry if my explanation is confuse and sorry about my english.

Any help would be appreciated!

Thanks!

Subject: Error in Notes.ini setting

The netstat display shows that one server is bound to an IP address and the other server is listening on the any address (0.0.0.0).

Looking at your notes.ini settings you can see that there is a syntax error as shown below. You left the zero out of the port_tcpipaddress setting for partition A.

Here I paste de lines in both notes.ini concerning to TCPIP

Partition A:

Ports=TCPIP

TCPIP=TCP, 0, 15, 0,12288,

TCPIP_TCPIPADDRESS=210.15.15.17:1352 should be TCPIP_TCPIPADDRESS=0,210.15.15.17:1352

TCPIP2=TCP,0,15,0,12288,

TCPIP2_TCPIPADDRESS=210.15.15.18

DisabledPorts=TCPIP2

SMTPNotesPort=TCPIP

Subject: Solved: Thanks!

Thanks Peter!!!, I change that values so many times that I didn“t realise of that syntax error!.Thanks again!