我正在尝试从VB.NET向我的Android电视盒发送ssh命令以重新启动它。
我尝试了这段代码,但是没有任何反应,ssh会话打开,但cmd无法执行
Dim connInfo As New Renci.SshNet.PasswordConnectionInfo("ip address", "port", "username", "password")
Dim sshClient As New Renci.SshNet.SshClient(connInfo)
'Need to hold the command'
Dim cmd As Renci.SshNet.SshCommand
Using sshClient
sshClient.Connect()
cmd = sshClient.RunCommand("reboot")
sshClient.Disconnect()
End Using
当我启动该应用并暂停时,我在调试中发现终止于
cmd = sshClient.RunCommand("reboot")
并且Android电视盒未重新启动!
对我的案子有任何想法
谢谢大家