public Iperf(string host, string user, string pass)
 {
     OSSH = new SSH(host, user, pass);
 }
 public Iperf(SSH ssh)
 {
     OSSH = ssh;
 }
 public Iperf(string host)
 {
     OSSH = new SSH(host);
 }