Sample code for 30+ languages & platforms
Swift

Start an SSH Tunnel Listener (BeginAccepting)

See more SSH Tunnel Examples

Demonstrates the Chilkat SshTunnel.BeginAccepting method, which creates and starts the local listener on the given port. The only argument is the listen port. Connect and authenticate first — clients accepted before authentication cannot be forwarded. The IsAccepting property reports whether the listener is running.

Background: This is the step that actually turns the object into a working tunnel: it spawns a background thread that accepts local TCP connections and forwards each through the authenticated SSH transport. Because the forwarding runs on its own thread, control returns to your program immediately and the tunnel operates while the rest of the application does other work — which is why a separate CloseTunnel is needed to shut it down cleanly.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

    //  Demonstrates the SshTunnel.BeginAccepting method, which creates and starts the local listener
    //  on the given port.  The only argument is the listen port.  Connect and authenticate first;
    //  clients accepted before authentication cannot be forwarded.

    let tunnel = CkoSshTunnel()!

    tunnel.destHostname = "db.internal.example.com"
    tunnel.destPort = 5432

    var sshPort: Int = 22
    success = tunnel.connect(hostname: "ssh.example.com", port: sshPort)
    if success == false {
        print("\(tunnel.lastErrorText!)")
        return
    }

    //  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.
    var password: String? = "mySshPassword"

    success = tunnel.authenticatePw(login: "mySshLogin", password: password)
    if success == false {
        print("\(tunnel.lastErrorText!)")
        return
    }

    //  Start the local listener.  Local TCP connections to this port are forwarded to DestHostname:DestPort
    //  through the SSH server.
    var listenPort: Int = 1080
    success = tunnel.beginAccepting(listenPort: listenPort)
    if success == false {
        print("\(tunnel.lastErrorText!)")
        return
    }

    //  IsAccepting reports whether the listener thread is running.
    if tunnel.isAccepting {
        print("The tunnel is accepting connections on port \(listenPort)")
    }

    //  ... the tunnel forwards traffic on a background thread while your application runs ...

    var waitForThreadExit: Bool = true
    success = tunnel.closeTunnel(waitForThreads: waitForThreadExit)
    if success == false {
        print("\(tunnel.lastErrorText!)")
        return
    }


}