Valid DCA Dumps shared by ExamDiscuss.com for Helping Passing DCA Exam! ExamDiscuss.com now offer the newest DCA exam dumps, the ExamDiscuss.com DCA exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com DCA dumps with Test Engine here:
Will this command ensure that overlay traffic between service tasks is encrypted? Solution.docker network create -d overlay --secure <network-name>
Correct Answer: B
Explanation = The command docker network create -d overlay --secure <network-name> will not ensure that overlay traffic between service tasks is encrypted. The --secure option is not a valid flag for the docker network create command1. To enable encryption for an overlay network, you need to use the --opt encrypted flag instead23. This will create IPSEC tunnels between the nodes where the service tasks are scheduled, using the AES algorithm in GCM mode2. You can verify if an overlay network is encrypted by checking if the IPSEC tunnels were created using tools like netstat4. References: * 1: docker network create | Docker Docs * 2: Encrypt traffic on an overlay network | Docker Docs * 3: Overlay network driver | Docker Docs * 4: Docker: How to verify if an overlay network is encrypted - Stack Overflow