Re: Cisco MDS login and show commands (General questions)
Kreso,
I tried both of these with different results.
[code]
Ssh1.WaitFor( MDS-Top# , 5)
ssh1.execute( show version & Chr(10), MDS-Top# , 5)
[/code]
The execute command timed out due to inactivity
[code]
Ssh1.WaitFor( MDS-Top# , 5)
Ssh1.Send( show version & chr(10))
TextBox1.Text = Ssh1.Receive
[/code]
This one didn't return any data to Textbox1.
This device is on my local LAN so the response should be almost immediate.
Any thoughts?
VBRookie