Reputation: 3469
I write a simple code with Tamir.SharpSsh to SSH connect :
SshStream ssh = new SshStream(txt_ip.Text, txt_user.Text, "foo");
var output = ssh.ReadResponse();
After successfuly connect to client, i want to send some key directly to client, Anyone know how i do that?
Upvotes: 1
Views: 1017