AutoIt
AutoIt
Request SSH X11 Forwarding
See more SSH Examples
Demonstrates the Chilkat Ssh.SendReqX11Forwarding method, which sends an X11-forwarding request on a session channel. The arguments are the channel number, whether forwarding is limited to a single connection, and the X11 authentication protocol, cookie, and screen number.
Background: X11 forwarding lets a graphical program running on the remote host display its window on your local machine, tunneled over SSH. This is a low-level method that only sends the protocol request — your application is still responsible for the local X server side of the arrangement. The authentication cookie guards the forwarded display, so it should be a freshly generated value rather than a fixed constant.
Chilkat AutoIt Downloads
Local $bSuccess = False
; Demonstrates the Ssh.SendReqX11Forwarding method, which sends an SSH X11-forwarding request
; on a session channel. The 1st argument is the channel number, the 2nd limits forwarding to a
; single connection, and the 3rd through 5th supply the X11 authentication protocol, cookie,
; and screen number.
$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 X11 forwarding. Named variables make each argument's meaning clear.
Local $bSingleConnection = False
Local $sAuthProt = "MIT-MAGIC-COOKIE-1"
Local $sAuthCookie = "d92f5e1a7c8b4306af17c2e5b9d43081"
Local $iScreenNum = 0
$bSuccess = $oSsh.SendReqX11Forwarding($iChannelNum,$bSingleConnection,$sAuthProt,$sAuthCookie,$iScreenNum)
If ($bSuccess = False) Then
ConsoleWrite($oSsh.LastErrorText & @CRLF)
Exit
EndIf
ConsoleWrite("X11 forwarding requested." & @CRLF)
$oSsh.Disconnect