Hi Chad,
That's the docker network so-elastic-net most likely.
You could try adding something like the following to your existing daemon.json:
"default-address-pools":
[
]
Then run:
sudo so-stop
You will have to restart Docker for the changes to take effect, then remove and re-create the docker network:
sudo service docker stop
sudo service docker start
sudo docker network remove so-elastic-net
sudo docker network create so-elastic-net --driver=bridge
Then inspect the docker network:
sudo docker network inspect so-elastic-net
After changing that, you will need to change all the places where the docker gateway ip is referenced (172.18.0.1):
Ex.
Storage node autossh config (/usr/sbin/so-autossh-start, /root/.ssh/securityonion_ssh.conf DOCKER_INTERFACE)
Storage node elasticsearch.yml
Master elasticsearch.yml
localhost:9200/_cluster/settings on the master (curl -XPUT http://\$ELASTICSEARCH_HOST:\$ELASTICSEARCH_PORT/_cluster/settings -H'Content-Type: application/json' -d '{"persistent": {"search": {"remote": {"$HOSTNAME": {"skip_unavailable": "true", "seeds": ["$DOCKER_INTERFACE:$REVERSE_PORT"]}}}}}')
UFW on the master server (ufw allow proto tcp from $DOCKER_NETWORK to $DOCKER_INTERFACE port $REVERSE_PORT)
You can go through the setup script in /usr/sbin/sosetup to get a better idea of how this is handled.
Make sure to restart services/reboot after you are finished.
Thanks,
Wes