Visual FoxPro
Visual FoxPro
Get an SSH Tunnel's Current State (Diagnostics)
See more SSH Tunnel Examples
Demonstrates the Chilkat SshTunnel.GetCurrentState method, which returns an XML snapshot describing the tunnel manager, SSH channels, and current tunnel clients. It takes no arguments and is intended for diagnostics and monitoring.
Background: Because the tunnel forwards traffic on a background thread, there is no natural place in your code to observe what it is doing at a given moment.
GetCurrentState provides that visibility — byte counts, active channels, and connected clients — as structured XML suited to logging or a monitoring dashboard. It is a read-only snapshot and does not affect the tunnel.Chilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loTunnel
LOCAL lnSshPort
LOCAL lcPassword
LOCAL lnListenPort
LOCAL lcStateXml
LOCAL lnWaitForThreadExit
lnSuccess = 0
* Demonstrates the SshTunnel.GetCurrentState method, which returns an XML snapshot describing the
* tunnel manager, SSH channels, and current tunnel clients. It takes no arguments and is
* intended for diagnostics and monitoring.
loTunnel = CreateObject('Chilkat.SshTunnel')
* The tunnel forwards accepted local connections to this destination through the SSH server.
loTunnel.DestHostname = "db.internal.example.com"
loTunnel.DestPort = 5432
* Connect to the SSH server. This performs the TCP/proxy connection and SSH handshake, but
* does not authenticate yet.
lnSshPort = 22
lnSuccess = loTunnel.Connect("ssh.example.com",lnSshPort)
IF (lnSuccess = 0) THEN
? loTunnel.LastErrorText
RELEASE loTunnel
CANCEL
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.
lcPassword = "mySshPassword"
lnSuccess = loTunnel.AuthenticatePw("mySshLogin",lcPassword)
IF (lnSuccess = 0) THEN
? loTunnel.LastErrorText
RELEASE loTunnel
CANCEL
ENDIF
* Begin accepting so there is live tunnel state to inspect.
lnListenPort = 1080
lnSuccess = loTunnel.BeginAccepting(lnListenPort)
IF (lnSuccess = 0) THEN
? loTunnel.LastErrorText
RELEASE loTunnel
CANCEL
ENDIF
* Get a diagnostic snapshot of the tunnel's current state as XML.
lcStateXml = loTunnel.GetCurrentState()
IF (loTunnel.LastMethodSuccess = 0) THEN
? loTunnel.LastErrorText
RELEASE loTunnel
CANCEL
ENDIF
? lcStateXml
lnWaitForThreadExit = 1
lnSuccess = loTunnel.CloseTunnel(lnWaitForThreadExit)
IF (lnSuccess = 0) THEN
? loTunnel.LastErrorText
RELEASE loTunnel
CANCEL
ENDIF
RELEASE loTunnel