|
|
|
|
|
SSHConnectShell (Function) In french: SSHConnecteShell Starts a new SSH session of "Shell" type. This session can be closed by SSHDisconnectShell. Note: To send a command directly to the SSH server, use the SSHCommand function. cMySession is sshSession cMySession.Address = "127.0.0.1" cMySession.Port = 22 cMySession.User = "login" cMySession.UserPassword = "pass" IF SSHConnectShell(cMySession) THEN Info("Session started") END
Syntax
<Result> = SSHConnectShell(<SSH session>)
<Result>: Boolean - True if the session was started,
- False otherwise.
<SSH session>: sshSession variable Name of the sshSession variable containing the connection parameters of the SSH session to open. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|