Sponsored Content
Special Forums Cybersecurity openssh to ssh2 interoperability Post 302148477 by porter on Sunday 2nd of December 2007 12:24:45 PM
Old 12-02-2007
openssh to ssh2 interoperability

I have openssh identity and identity.pub which work well on many machines to uniquely identify myself.

I want to put these on a host (Tru64) using ssh2. I can convert the public key to ssh2 format using "ssh-keygen -e" on an openssh box.

How should I convert the private key?
 

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

HP-UX 10.2 servers interoperability with IBM mass storage devices

Does anyone have succesfully interconnected HP-UX 10.2 HP 9000 K370 servers with A6885A HBA's, with an IBM Fastt storage server? I need to replace integrate both platforms. Interoperability matrices from manufacturers do not certified such integration. Thanks for anybody's help. (0 Replies)
Discussion started by: raltmannr
0 Replies

2. AIX

SSH2 help !!!!

Hi, I need to implement sftp between server 1 and server2. I have already generated the public key using account user1 on server 1 and and sent it to the administrator of server2. I have also finished updating the identification file at /home/user1/.ssh2 I have an account created... (2 Replies)
Discussion started by: tansha
2 Replies

3. UNIX for Advanced & Expert Users

SSH2 Authentication with OpenSsh

Hi Can anyone help resolving the issue here? I am trying to connect from one unix server(ssh2) to another unix server using (Openssh). I converted the public key from ssh2 to openssh format and uploaded it. Yet it is asking for a password to connect. Here is the debug info: ... (0 Replies)
Discussion started by: jazjit
0 Replies

4. AIX

Interoperability Oracle Clusterware - PowerHA/HACMP

I am planning for building a new database server using AIX 6.1 and Oracle 11.2 using ASM. As i have learned starting with Oracle 11.2 ASM can only be used in conjunction with Clusterware, which is Oracles HA-software. As is the companies policy we do intend to use PowerHA as HA-solution instead... (1 Reply)
Discussion started by: bakunin
1 Replies

5. Red Hat

server and client interoperability in rpcgen

Hi, I want to use rpcgen for my application. My application requires client and server to be interoperable. So is it possible with rpcgen?? Details:- 1. Function will be called from client side and server will perform it 2. I want to stream continuous video from server end to client... (0 Replies)
Discussion started by: surendar4u
0 Replies
SSH2_PUBLICKEY_ADD(3)							 1						     SSH2_PUBLICKEY_ADD(3)

ssh2_publickey_add - Add an authorized publickey

SYNOPSIS
bool ssh2_publickey_add (resource $pkey, string $algoname, string $blob, [bool $overwrite = false], [array $attributes]) DESCRIPTION
Note The public key subsystem is used for managing public keys on a server to which the client is already authenticated. To authenticate to a remote system using public key authentication, use the ssh2_auth_pubkey_file(3) function instead. PARAMETERS
o $pkey - Publickey Subsystem resource created by ssh2_publickey_init(3). o $algoname - Publickey algorithm (e.g.): ssh-dss, ssh-rsa o $blob - Publickey blob as raw binary data o $overwrite - If the specified key already exists, should it be overwritten? o $attributes - Associative array of attributes to assign to this public key. Refer to ietf-secsh-publickey-subsystem for a list of supported attributes. To mark an attribute as mandatory, precede its name with an asterisk. If the server is unable to support an attribute marked mandatory, it will abort the add process. RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Adding a publickey with ssh2_publickey_add(3) <?php $ssh2 = ssh2_connect('shell.example.com', 22); ssh2_auth_password($ssh2, 'jdoe', 'password'); $pkey = ssh2_publickey_init($ssh2); $keyblob = base64_decode(' AAAAB3NzaC1yc2EAAAABIwAAAIEA5HVt6VqSGd5PTrLRdjNONxXH1tVFGn0 Bd26BF0aCP9qyJRlvdJ3j4WBeX4ZmrveGrjMgkseSYc4xZ26sDHwfL351xj zaLpipuBGRrw17mWVBhuCExo476ri5tQFzbTc54VEHYckxQ16CjSTibI5X 69GmnYC9PNqEYq/1TP+HF10='); ssh2_publickey_add($pkey, 'ssh-rsa', $keyblob, false, array('comment'=>"John's Key")); ?> SEE ALSO
ssh2_publickey_init(3), ssh2_publickey_remove(3), ssh2_publickey_list(3). PHP Documentation Group SSH2_PUBLICKEY_ADD(3)
All times are GMT -4. The time now is 01:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy