He creado una pequeña red con 2 clientes y 2 enrutadores con esto Dockerfile: FROM ubuntu:18.04 RUN apt update && apt upgrade -y && apt install -y vim iputils-ping iproute2 Los contenedores se crearon con el siguiente script: #!/bin/bash sudo docker build -t test02 . sudo...