1. Create a new directory serverinstance with replication enabled on port 8989.
  2. Run netstat to see the ports bound for listening on port 8989. Notice that *.8989 means that it is listening on all addresses.
    $ netstat -an | grep LISTEN | grep 8989
  3. Run dsconfig to disable listening on all addresses for the replication server.
    $ bin/dsconfig set-replication-server-prop \
      --provider-name "Multimaster Synchronization" \
      --set listen-on-all-addresses:false
  4. Run netstat again to see the ports bound for listening on port 8989. Notice that <address>.8989 (for example, 10.8.1.211.8989) means that it is listening on the one address.