Subject: RE: Cluster, ports order
CLUSTER=TCP,0,15,0,12288,CLUSTER_TcpIPAddress=0,192.168.1.1:1352
TCPIP=TCP,0,15,0,45088,
TCPIP_TcpIPAddress=0,xxx.xxx.xxx.xxx:1352
Ports=TCPIP,CLUSTER
PortOrder=CLUSTER,TCPIP
this is how my set up is done on our cluster changing the cluster IP based on servers.
Keep in mind PORTS= the first port listed is what SMTP/pop/imap will bind to on startup so make sure you don’t list your cluster first or you will find it can’t sent out mail since it’s on the private network.
In your server document under ports should look like this
Port Protocol Notes Network Net Address Enabled
TCPIP TCP TCPIP Network server1 Enabled
CLUSTER TCP Cluster Network server1-clu Enabled
and your host file should have a an entry like
server1-clu 192.168.1.1
keep in mind I’ve never been able to get it to work by turning off a port and turning it back on I’ve had to shut down the server make sure my ini/hosts are current and bring it back up then do the next server etc.
Cluster= and tcpip= lines show that i have encryption/compression turned off on cluster since they are on a private gig switch and turned on on the outside TCPIP
and _TcpIPAddress= entried show hard coded IPs
If you bring it up have an issue with smtp or pop3 listen on a the wrong port you can add
SMTPNotesport=TCPIP
to force it to the right port.