CakeFest 2024: The Official CakePHP Conference

ssh2_auth_hostbased_file

(PECL ssh2 >= 0.9.0)

ssh2_auth_hostbased_fileホスト公開鍵を使用して認証を行う

説明

ssh2_auth_hostbased_file(
    resource $session,
    string $username,
    string $hostname,
    string $pubkeyfile,
    string $privkeyfile,
    string $passphrase = ?,
    string $local_username = ?
): bool

ファイルから読み込まれたホスト公開鍵を使用して認証を行います。

パラメータ

session

ssh2_connect() のコールによって取得した SSH 接続リンク ID。

username

hostname

pubkeyfile

privkeyfile

passphrase

もし privkeyfile が暗号化されている (そのはずです) 場合、パスフレーズを渡す必要があります。

local_username

もし local_username を省略した場合、 username の値を使用します。

戻り値

成功した場合に true を、失敗した場合に false を返します。

例1 ホスト公開鍵を使用した認証

<?php
$connection
= ssh2_connect('shell.example.com', 22, array('hostkey'=>'ssh-rsa'));

if (
ssh2_auth_hostbased_file($connection, 'remoteusername', 'myhost.example.com',
'/usr/local/etc/hostkey_rsa.pub',
'/usr/local/etc/hostkey_rsa', 'secret',
'localusername')) {
echo
"Public Key Hostbased Authentication Successful\n";
} else {
die(
'Public Key Hostbased Authentication Failed');
}
?>

注意

注意:

ssh2_auth_hostbased_file() には libssh2 >= 0.7 と PHP/SSH2 >= 0.7 が必要です。

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top