Connection SSH RSA KEY with phpseclib - PHP Compute Engine GCP | ILMU PROGRAMMER
Home ยป Connection SSH RSA KEY with phpseclib – PHP Compute Engine GCP

Connection SSH RSA KEY with phpseclib – PHP Compute Engine GCP

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 ๐Ÿ™‚

Leave a Comment

 
Open chat
Perlu Bantuan Konsultasi ?
Hallo Pembaca.
Telp (021) 55670115 untuk terhubung langsung dengan kami.

Apakah ada yang bisa kami bantu?