-
Notifications
You must be signed in to change notification settings - Fork 347
Closed
Description
Can we add documentation to Network Settings that illustrates how to configure binding Elasticsearch to all network interfaces; i.e., using a wildcard?
elasticsearch.yml:
network.bind_host: 0
All interfaces are listening:
$ netstat -p tcp -na | egrep '9200|9300'
tcp46 0 0 *.9200 *.* LISTEN
tcp46 0 0 *.9300 *.* LISTEN
We do not want to necessarily encourage this configuration, however, it would be very helpful to document how to do it.
As a side note, configuring network.bind_host: 0.0.0.0
or 0.0.0
or 0.0
also works which is just unexpected. It seems just documenting a lone 0
value would suffice.
Metadata
Metadata
Assignees
Labels
No labels