Hai, kali ini saya akan share source code untuk koneksi SSH server
Sebelum memulai download phpseclib https://sourceforge.net/projects/phpseclib/ lalu extract dalam 1 folder yang sama
Buat 1 file index.php pada folder phpseclib, kemudian ketik:
<?php
include('Net/SSH2.php');
include('Crypt/RSA.php');
$ssh = new Net_SSH2('IPkamu');
$key = new Crypt_RSA();
$key->loadKey(file_get_contents('privatekey.pem'));
if (!$ssh->login('username', $key)) {
exit('Login Failed');
}
echo $ssh->exec('pwd');
echo $ssh->exec('ls -la');
?>
Masukkan Private Key yang akan kita buat untuk koneksi, disini saya menggunakan privatekey.pem
Jalankan XAMPP, dan lihat hasil nya ๐