openssh

Importing OpenSSH RSA Public / Private Key Pair into Apple's Keychain Access

As stated in the title, I would like to import a key pair into Keychain Access. What I have done: Obtaining an RSA public / private key pair by using OpenSSH What I am going to do: Importing the key pair into the "login" keychain of Keychain Access Creating a CSR with OpenSSL Send the CSR to Apple for obtaining a developer...

Using public key from authorized_keys with Java security

How can I use an entry from the systems authorized_keys file for a java.security.PublicKey implementation? I specifically want to compare a public key from the authorized_keys file with a public key available in the Apache SSHD PublickeyAuthenticator interface. ...

SSH Scp - can't specify local path where to copy files from server

Hi, i'm trying to download .zip file from bluehost server to my computer. Like this - scp username@domainname:/pathof/file.zip /home/Public/username/ I found out, when writing local address (where i want to put file) still refers to server address (pressing tab). What am i doing wrong ? ...

How can I programmatically detect ssh authentication types available?

I'd like to write a monitoring plugin that checks various hosts on my network to make sure that password or interactive SSH authentication is not enabled. That is, I need to write code that: Connects to an SSH port. Enumerates available authentication methods. Verifies that only key based authentication is possible. Methods using eit...

make openssh on MAC OSX and problem with libcrypto

I need to compile openssh for leopard (10.5) on 10.6. but openssh has a dynamic link to libcrypto.0.9.8 which is not available on Leopard 10.5. The leopard version is 0.9.7. but somehow I can't link directly to 0.9.7. When I copy the 0.9.7 version to the root of openssh source, It doesn't compile. Currently I'm building with these flags...

"Network connection closed unexpectedly" upon svn checkout

When I attempt to checkout: svn checkout svn+ssh://serveradmin%[email protected]/home/87292/data/svn/repository/trunk . I get this (unhelpful) error: svn: Network connection closed unexpectedly What's happening? ...

problems deploying with capistrano from windows

Hi, I am trying to set up capistrano with github so that I can deploy from my windows XP laptop to my ubuntu server. Capistrano gives the following output when I run cap deploy: $ cap deploy * executing `deploy' * executing `deploy:update' ** transaction: start * executing `deploy:update_code' updating the cached checkout o...

getting ssh-agent to work with git run from windows command shell

Hello! I have msysgit installed, with OpenSSH. I am connecting to a gitosis repo. From the git bash, I have created a .profile file that runs ssh-agent (if not already running) each time git bash is opened. Here is my script: http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html I am also using git extensions, which runs the git com...

programmatically setting up eucalyptus node controller keys

Hello, I had a general question regarding the way eucalyptus setups ssh keypairs for the various controllers like cluster, node etc. Currently my task at hand is to automate setup of eucalyptus (including ssh'ing into machines and settuping up cluster controller and node controllers). If i have to do this programmatically, i need somehow...

OpenSSH Two Phase Login

I would like it if when I use OpenSSH like so: ssh user@host that it asks for a passphrase Please enter Passphrase: then asks for the password Please enter Password: Is this possible? ...

enabling log in openSSH, Windows 2003 box

I have 3 files inside OpenSSH\var\log, they are: lastlog OpenSSHD.log wtmp I changed the sshd_config file's LogLevel INFO Then also I am not getting any logs, anywhere. Can anybody help me to enable the log file. Any help is appreciated.Thanks ...

new encryption algorithm for ssh

hi dears I am asked to add a new algorithm to ssh so data is ciphered in new algorithm, any idea how to add new algorithm to ssh ? thanks ...

How should I write my ssh proxy command?

I'm trying to write a utility compatible with the -oProxyCommand of openssh. I wrote a utility that is a transparent socket to an ssh connection (or anything). Though it's taken some debugging I'm fairly confident it is indeed working correctly (manual IO tests, large binary file transfers all work). OpenSSH will not work with it. I'...