Query: ssh2_auth_hostbased_file
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
SSH2_AUTH_HOSTBASED_FILE(3) 1 SSH2_AUTH_HOSTBASED_FILE(3) ssh2_auth_hostbased_file - Authenticate using a public hostkeySYNOPSISbool ssh2_auth_hostbased_file (resource $session, string $username, string $hostname, string $pubkeyfile, string $privkeyfile, [string $passphrase], [string $local_username])DESCRIPTIONAuthenticate using a public hostkey read from a file.PARAMETERSo $session - An SSH connection link identifier, obtained from a call to ssh2_connect(3). o $username - o $hostname - o $pubkeyfile - o $privkeyfile - o $passphrase - If $privkeyfile is encrypted (which it should be), the passphrase must be provided. o $local_username - If $local_username is omitted, then the value for $username will be used for it.RETURN VALUESReturns TRUE on success or FALSE on failure.EXAMPLESExample #1 Authentication using a public hostkey <?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 "; } else { die('Public Key Hostbased Authentication Failed'); } ?>NOTESNote ssh2_auth_hostbased_file(3) requires libssh2 >= 0.7 and PHP/SSH2 >= 0.7 PHP Documentation Group SSH2_AUTH_HOSTBASED_FILE(3)
Related Man Pages |
---|
mysqlnduhconnection(3) - php |
ssh2_auth_pubkey_file(3) - php |
ssh2_exec(3) - php |
ssh2_methods_negotiated(3) - php |
ssh2_sftp_mkdir(3) - php |
Similar Topics in the Unix Linux Community |
---|
reduce a string |
Public Key Authentication over SSH and Sudo-ing Implementation |
Hostbased Authentication |