PureBasic
PureBasic
SSH Tunnel Authenticate with a Password
See more SSH Tunnel Examples
Demonstrates the Chilkat SshTunnel.AuthenticatePw method, which authenticates the SSH connection with a login name and password. The first argument is the login and the second is the password. Connect first, and call BeginAccepting afterward.
Background: Password authentication is the simplest option, but the password is a secret and should never be a hard-coded literal — obtain it from an interactive prompt, an environment variable, or a secrets vault. Public-key authentication is generally preferred for the unattended, long-running services that tunnels often are.
Chilkat PureBasic Downloads
IncludeFile "CkSshTunnel.pb"
Procedure ChilkatExample()
success.i = 0
; Demonstrates the SshTunnel.AuthenticatePw method, which authenticates the SSH connection with
; a login name and password. The 1st argument is the login and the 2nd is the password.
tunnel.i = CkSshTunnel::ckCreate()
If tunnel.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
; The tunnel forwards accepted local connections to this destination through the SSH server.
CkSshTunnel::setCkDestHostname(tunnel, "db.internal.example.com")
CkSshTunnel::setCkDestPort(tunnel, 5432)
; Connect to the SSH server. This performs the TCP/proxy connection and SSH handshake, but
; does not authenticate yet.
sshPort.i = 22
success = CkSshTunnel::ckConnect(tunnel,"ssh.example.com",sshPort)
If success = 0
Debug CkSshTunnel::ckLastErrorText(tunnel)
CkSshTunnel::ckDispose(tunnel)
ProcedureReturn
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.
password.s = "mySshPassword"
success = CkSshTunnel::ckAuthenticatePw(tunnel,"mySshLogin",password)
If success = 0
Debug CkSshTunnel::ckLastErrorText(tunnel)
CkSshTunnel::ckDispose(tunnel)
ProcedureReturn
EndIf
Debug "Authenticated."
; After authenticating, call BeginAccepting to start listening for local connections to forward.
waitForThreadExit.i = 1
success = CkSshTunnel::ckCloseTunnel(tunnel,waitForThreadExit)
If success = 0
Debug CkSshTunnel::ckLastErrorText(tunnel)
CkSshTunnel::ckDispose(tunnel)
ProcedureReturn
EndIf
CkSshTunnel::ckDispose(tunnel)
ProcedureReturn
EndProcedure