I can list all container IP address inside a docker overlay network using:
~# docker network inspect <network_id>
I'm trying to do resolver troubleshooting in some Docker swarm stack. It seems that resolving is done to the wrong IP address, but I want to check if it is resolved to a VIP first. I'm talking the network between containers, not the ingress network.
In my quest I found this Docker Issue comment. Which suggests this:
From a debugging point of view, the tool to use are:
- tcpdump
- ipvsadm --> load balancer is done with ipvs
But I'm unable to find which ipvsadm
options to use to print the VIP's used inside my docker network.