DotNetLibs Terminal Emulation component adds terminal emulation capabilities to your applications and let you execute commands on Unix/Windows SSH or telnet servers with ease. All popular SSH or telnet servers are supported. Written entirely in managed code and works with Mono and .NET 2.0, 3.0, 3.5, 4.0 and 4.5 including Mono. Features
Quick start samplesExecute a command
using (var ssh = new Ssh()) { // Connect to the SSH server ssh.Connect(serverName); // and authenticate the user ssh.Login(username, password); // Execute a command var response = ssh.RunCommand("echo Hello world!"); // Print out the response Console.WriteLine(response); }
|