AutoIt
AutoIt
Request an SSH Subsystem
See more SSH Examples
Demonstrates the Chilkat Ssh.SendReqSubsystem method, which requests a predefined subsystem on a session channel. The first argument is the channel number and the second is the subsystem name. This example requests the sftp subsystem.
Background: A subsystem is a named service the server exposes over a channel instead of a shell command —
sftp is the familiar example, and netconf is common on network devices. After acceptance, the channel carries that protocol's data, exchanged with the ordinary channel send and receive methods. If the server rejects the subsystem, the channel normally stays open and can be reused for another request.Chilkat AutoIt Downloads
Local $bSuccess = False
; Demonstrates the Ssh.SendReqSubsystem method, which requests a predefined subsystem on a
; session channel. The 1st argument is the channel number and the 2nd is the subsystem name.
$oSsh = ObjCreate("Chilkat.Ssh")
Local $iSshPort = 22
$bSuccess = $oSsh.Connect("ssh.example.com",$iSshPort)
If ($bSuccess = False) Then
ConsoleWrite($oSsh.LastErrorText & @CRLF)
Exit
EndIf
; Normally you would not hard-code the password in source. You should instead obtain it
; from an interactive prompt, environment variable, or a secrets vault.
Local $sPassword = "mySshPassword"
$bSuccess = $oSsh.AuthenticatePw("mySshLogin",$sPassword)
If ($bSuccess = False) Then
ConsoleWrite($oSsh.LastErrorText & @CRLF)
Exit
EndIf
; Open a session channel. A negative return value indicates failure.
Local $iChannelNum = $oSsh.OpenSessionChannel()
If ($iChannelNum < 0) Then
ConsoleWrite($oSsh.LastErrorText & @CRLF)
Exit
EndIf
; Request the "sftp" subsystem. A True return means the server accepted the request;
; subsequent protocol data is exchanged with the normal channel send and receive methods.
$bSuccess = $oSsh.SendReqSubsystem($iChannelNum,"sftp")
If ($bSuccess = False) Then
ConsoleWrite($oSsh.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite("Subsystem request accepted." & @CRLF)
$oSsh.Disconnect