Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
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...