From b8f49fcc14b82bb19ad31fb86dab77f76700ce50 Mon Sep 17 00:00:00 2001 From: Glauber Costa Date: Thu, 14 Dec 2017 20:12:40 -0500 Subject: [PATCH] conf: document listen_on_broadcast_address That's a supported feature that is listed in our help message, but it is not present in the yaml file. Signed-off-by: Glauber Costa Message-Id: <20171215011240.16027-1-glauber@scylladb.com> --- conf/scylla.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/conf/scylla.yaml b/conf/scylla.yaml index 481d29c5d1..8525685bd0 100644 --- a/conf/scylla.yaml +++ b/conf/scylla.yaml @@ -87,6 +87,13 @@ listen_address: localhost # Leaving this blank will set it to the same value as listen_address # broadcast_address: 1.2.3.4 + +# When using multiple physical network interfaces, set this to true to listen on broadcast_address +# in addition to the listen_address, allowing nodes to communicate in both interfaces. +# Ignore this property if the network configuration automatically routes between the public and private networks such as EC2. +# +# listen_on_broadcast_address: false + # port for the CQL native transport to listen for clients on # For security reasons, you should not expose this port to the internet. Firewall it if needed. native_transport_port: 9042