Cómo ssh a múltiples servidores y ejecutar comandos
for server in box1 box2 box3
do
ssh root@${server} uptime
done
AttractivePenguin
for server in box1 box2 box3
do
ssh root@${server} uptime
done