2017 © Pedro Peláez
 

library ssh

SSH Connection

image

weelrs8/ssh

SSH Connection

  • Friday, May 8, 2015
  • by zephx
  • Repository
  • 1 Watchers
  • 1 Stars
  • 30 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 7 % Grown

The README.md

SSH PHP

Utilizando autenticação de usuário e senha

<?php
use SSH\SSHConnection;
use SSH\Auth\Password;

$ssh = new SSHConnection();
$ssh->open('172.17.10.180');
$ssh->authenticate(new Password('username', 'password'));

Executando um comando

<?php

$ssh->run('ls -la');

The Versions

08/05 2015

dev-master

9999999-dev

SSH Connection

  Sources   Download

GNU

The Requires

  • php >=5.5.0

 

php ssh