|
|
|
|
|
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 SSHCommand. cMaSession is sshSession
cMaSession.Address = "127.0.0.1"
cMaSession.Port = 22
cMaSession.User = "login"
cMaSession.UserPassword = "pass"
IF SSHConnectShell(cMaSession) THEN
Info("Session ouverte")
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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|