library ssh
SSH Connection
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
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');
dev-master
9999999-dev
SSH Connection
Sources
Download
GNU
The Requires
php
ssh