---
title: Listen addresses
description: When configuring a server on a multi-homed system with multiple IP addresses, you can specify the listen addresses. For this to work correctly, specify one advertised address and have DNS assign to it an IP address on each network of each listen address.
component: pingds
version: 8.1
page_id: pingds:config-guide:repl-listen
canonical_url: https://docs.pingidentity.com/pingds/8.1/config-guide/repl-listen.html
revdate: 2025-10-22T14:42:39Z
keywords: ["Features", "LDAP", "Replication", "Setup &amp; Configuration"]
---

# Listen addresses

When configuring a server on a multi-homed system with multiple IP addresses, you can specify the listen addresses. For this to work correctly, specify one advertised address and have DNS assign to it an IP address on each network of each listen address.

By default, the replication server listens on all network interfaces.

The following example configures the server to listen only on `192.168.0.10` for all connections:

```console
$ dsconfig \
 set-replication-server-prop \
 --provider-name "Multimaster Synchronization" \
 --set listen-address:192.168.0.10 \
 --hostname localhost \
 --port 4444 \
 --bindDN uid=admin \
 --bindPassword password \
 --trustStorePath /path/to/opendj/config/keystore \
 --trustStoreType PKCS12 \
 --trustStorePassword:file /path/to/opendj/config/keystore.pin \
 --no-prompt
```

Learn more in [listen-address](../configref/objects-replication-server.html#listen-address).
