I have 3 servers (Dediceted Server).
I connect to them using SSH C #.
I have to execute one command on all three servers simultaneously, but they are executed in turn, first go to the first server, execute the command, then the second, also execute the command, and then go to the last server.
using (var client1 = new SshClient("96.102.49.253", "root "Пароль")) { client1.Connect(); client1.RunCommand("команда"); } Something like this, only here is 1 server, and I need 3, is it possible to combine them somehow?