Will this command ensure that overlay traffic between service tasks is encrypted? docker network create -d overlay --secure
Will this command ensure that overlay traffic between service tasks is encrypted? docker network create -d overlay --secure
B https://docs.datadoghq.com/security/default_rules/cis-docker-1.2.0-7.4/ -- opt encrypted
docker network create -d overlay --opt encrypted <network-name>
A is correct
absolutely B is correct!
b. in order to secure overlay do --opt encrypted
B is correct. https://stackoverflow.com/questions/47589489/docker-communication-encryption-between-container-in-swarm-mode
The correct flag to enable encryption for overlay network traffic is --opt encrypted (or -o encrypted), not --secure. The proper command would be: $ docker network create -d overlay --opt encrypted <network-name>