Objective-C
Objective-C
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 Objective-C Downloads
#import <CkoSshTunnel.h>
#import <NSString.h>
BOOL success = NO;
// 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.
CkoSshTunnel *tunnel = [[CkoSshTunnel alloc] init];
// The tunnel forwards accepted local connections to this destination through the SSH server.
tunnel.DestHostname = @"db.internal.example.com";
tunnel.DestPort = [NSNumber numberWithInt:5432];
// Connect to the SSH server. This performs the TCP/proxy connection and SSH handshake, but
// does not authenticate yet.
int sshPort = 22;
success = [tunnel Connect: @"ssh.example.com" port: [NSNumber numberWithInt: sshPort]];
if (success == NO) {
NSLog(@"%@",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.
NSString *password = @"mySshPassword";
success = [tunnel AuthenticatePw: @"mySshLogin" password: password];
if (success == NO) {
NSLog(@"%@",tunnel.LastErrorText);
return;
}
NSLog(@"%@",@"Authenticated.");
// After authenticating, call BeginAccepting to start listening for local connections to forward.
BOOL waitForThreadExit = YES;
success = [tunnel CloseTunnel: waitForThreadExit];
if (success == NO) {
NSLog(@"%@",tunnel.LastErrorText);
return;
}