Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Visual Basic 6.0 Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(Visual Basic 6.0) SSH Parallel Remote Commands on Multiple Servers

Shows how to execute a command in parallel on multiple servers.

Note: This example requires Chilkat v9.5.0.65 or greater.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

' This example assumes Chilkat SSH/SFTP to have been previously unlocked.
' See Unlock SSH for sample code.

' Executing a command on multiple servers simultaneously is straightforward.
' It's just a matter of using one SSH object per server..
Dim ssh1 As New ChilkatSsh
Dim ssh2 As New ChilkatSsh
Dim ssh3 As New ChilkatSsh

Dim port As Long
port = 22
Dim success As Long
success = ssh1.Connect("ssh-server1.com",port)
If (success <> 1) Then
    Debug.Print ssh1.LastErrorText
    Exit Sub
End If

' Authenticate using login/password:
success = ssh1.AuthenticatePw("sshLogin1","sshPassword1")
If (success <> 1) Then
    Debug.Print ssh1.LastErrorText
    Exit Sub
End If

' Connect and authenticate with 2 more servers.
' For brevity, the success/failure won't be checked...
success = ssh2.Connect("ssh-server2.com",port)
success = ssh2.AuthenticatePw("sshLogin2","sshPassword2")
success = ssh3.Connect("ssh-server3.com",port)
success = ssh3.AuthenticatePw("sshLogin3","sshPassword3")

' Note: If we wanted, we could've used ConnectAsync and AuthenticatePwAsync
' to do the connecting and authenticating in parallel...

' The command to be run on each SSH server will sleep for 5 seconds,
' and then show the current system date/time.
Dim cmd As String
cmd = "sleep 5; date"

' Start each command
Dim ssh1Channel As Long
ssh1Channel = ssh1.QuickCmdSend(cmd)
If (ssh1Channel < 0) Then
    Debug.Print ssh1.LastErrorText
    Exit Sub
End If

' For brevity, we're not checking the return values here:
Dim ssh2Channel As Long
ssh2Channel = ssh2.QuickCmdSend(cmd)
Dim ssh3Channel As Long
ssh3Channel = ssh3.QuickCmdSend(cmd)

' OK, at this point the command is running simultaneously on each server.

' Now collect the results of each command.
Dim pollTimeoutMs As Long
pollTimeoutMs = 50
Dim numFinished As Long
numFinished = 0
Dim channel As Long
' Note: You would rewrite this code to use arrays.
Dim ssh1Finished As Long
ssh1Finished = 0
Dim ssh2Finished As Long
ssh2Finished = 0
Dim ssh3Finished As Long
ssh3Finished = 0
Do While numFinished < 3
    ' Check to see if anything has finished.
    ' QuickCmdCheck returns -1 if there are no errors and nothing else finished
    ' QuickCmdCheck returns -2 if there was an error (such as a lost connection)
    ' QuickCmdCheck returns a channel number if a channel finished.
    If (ssh1Finished <> 1) Then
        channel = ssh1.QuickCmdCheck(pollTimeoutMs)
        If (channel = -2) Then
            Debug.Print ssh1.LastErrorText
            Exit Sub
        End If

        If (channel = ssh1Channel) Then
            Debug.Print "---- ssh1 channel " & channel & " finished ----"
            Debug.Print ssh1.GetReceivedText(channel,"ansi")
            numFinished = numFinished + 1
            ssh1Finished = 1
        End If

    End If

    If (ssh2Finished <> 1) Then
        channel = ssh2.QuickCmdCheck(pollTimeoutMs)
        If (channel = -2) Then
            Debug.Print ssh2.LastErrorText
            Exit Sub
        End If

        If (channel = ssh2Channel) Then
            Debug.Print "---- ssh2 channel " & channel & " finished ----"
            Debug.Print ssh2.GetReceivedText(channel,"ansi")
            numFinished = numFinished + 1
            ssh2Finished = 1
        End If

    End If

    If (ssh3Finished <> 1) Then
        channel = ssh3.QuickCmdCheck(pollTimeoutMs)
        If (channel = -2) Then
            Debug.Print ssh3.LastErrorText
            Exit Sub
        End If

        If (channel = ssh3Channel) Then
            Debug.Print "---- ssh3 channel " & channel & " finished ----"
            Debug.Print ssh3.GetReceivedText(channel,"ansi")
            numFinished = numFinished + 1
            ssh3Finished = 1
        End If

    End If

Loop

' --------------
' Sample output:

' 	---- ssh2 channel 101 finished ----
' 	Fri Dec 23 00:25:48 UTC 2016
' 
' 	---- ssh3 channel 102 finished ----
' 	Thu Dec 22 18:25:12 CST 2016
' 
' 	---- ssh1 channel 100 finished ----
' 	Thu Dec 22 18:25:48 CST 2016

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.