Hi all, I'm trying to write the C sharp application to configure Cisco Switch.I'm using Renci.SshNet library. The problem whe I'm trying to enter to CONFIG mode. The next command is being not recognized. Any idea?RegardPaweł
Here's asynchronous version: using (var sshclient = new SshClient(sutIP, sutUsername, sutPassword)){ sshclient.Connect(); var cmd = sshclient.CreateCommand("configure terminal"); var asynch = cmd.BeginExecute(); while (!asynch.IsCompleted...