2017 © Pedro Peláez
 

library ssh

dTR-SSH is a SSHv2 library

image

dtr/ssh

dTR-SSH is a SSHv2 library

  • Wednesday, October 23, 2013
  • by mikemackintosh
  • Repository
  • 0 Watchers
  • 0 Stars
  • 99 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 2 % Grown

The README.md

dTR-SSH

dTR-SSH is a wrapper class for SSH functions in PHP. It was designed to manage the blocking/non-blocking of both OpenSSH2 and net-sshd daemons to help manage responses, and allow an OOP interface for use in other projects., (*1)


Example

use dTR\Networking;

$options = array(
     'host' => $remote_host,
     'port' => '22',
     'auth' =>
     array(
            'type' => SSH::PASS,
            'username' => 'admin',
            'password' => '',
     )
);  

try{
    $ssh = new SSH($options);
    $ssh->connect();

    if($ssh->authenticate()){   
        echo $ssh->exec('ls -la');
    }

    $ssh->disconnect();

}
catch(\Exception $e){
    echo $e->getMessage();
}

The Versions

23/10 2013

dev-master

9999999-dev http://bakeryframework.com

dTR-SSH is a SSHv2 library

  Sources   Download

MIT

The Requires

  • php >=5.4

 

by Mike Mackintosh

ssh networking dtr