This is a complete rewrite of the previous NMSSH library. The goal is to create a clean, easy-to-use, test driven Cocoa framework that wraps libssh2.
NMSSH was initially built for usage in Kleio - a Mac OSX application that simplifies continuous deployment.
Using libssh2 version: 1.4.2
Are you using NMSSH for something cool? Let me know.
- Build the framework and add it to your project
- Add
#include <NMSSH/NMSSH.h>
to your source file.
NMSSHSession *session = [NMSSHSession connectToHost:@"127.0.0.1:22"
withUsername:@"user"];
if ([session isConnected]) {
NSLog(@"Successfully created a new session");
}
[session authenticateByPassword:@"pass"];
// Explicitly set the public key that should be used...
// Pass nil as password parameter for unprotected keys
[session authenticateByPublicKey:@"~/.ssh/id_rsa.pub"
andPassword:@"pass"];
[session connectToAgent];
if ([session isAuthorized]) {
NSLog(@"Authentication succeeded");
}
[session disconnect];
session = nil;
NSError *error = nil;
NSString *response = [[session channel] execute:@"echo foo" error:&error];
NSLog(@"Response: %@", response);
The SCP API provides a simple way to upload or download files.
The to:
parameter is flexible in that if you provide a directory, it will keep the same filename as in the from-parameter. But if you provide a complete file name you may name the transferred file anything you want.
BOOL success = [[session channel] uploadFile:@"~/my-local-file.txt" to:@"/var/www/"];
BOOL success = [[session channel] downloadFile:@"/var/www/my-remote-file.txt" to:@"~/"];
NMSSH contains a pre-built libssh2 for Mac OSX. The framework should work just fine with iOS as well if you compile libssh2 yourself and switch the included libssh2.dylib
.
Copyright (c) 2012 Nine Muses AB
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.