ssh

What is SSH forwarding?

I read a guide. It says that run the following line and forget it. /usr/bin/ssh-add -K I am not sure when and where I should use it. What is SSH forwarding? ...

Maven copy local file to remote server using SSH

Can Maven copy local file to a remote server server using SSH? I want to specify location in maven configuration file and to copy that file(or files) to server each time deploy phase is executed. ...

How to keep ssh-keygen from using my login and computer name in the public key?

I ran ssh-keygen on OS X and when I displayed the public key generated, I saw that my login and machine name appears in the last part of the key. Is there any way to have it use a different value or not use it at all? ...

uploading code to dev or production server using ftp or using telnet, are they both not safe?

i still see people using ftp or telnet for work instead of sftp and ssh. is it true that using ftp or telnet can let people see the password quite easily? Who can actually see it? Update: for example, if i am not using Wireless... which i heard can be breakable if it is WEP when 1GB traffic is sent or received ... so if not using Wire...

can i know abt the exit status of the scp command in unix

while doing the programing in perl with scp command i am stucked with facing the exit status of scp command if you tell which exit value(other then 0-success,1-error) is for what my life will be simple ...

Is SSH logging capabilities equivalent to su logging for private/public key authentication?

Here at work, we have a non-root shared login account on UNIX that is used to admin a particular application. The policy is to not allow direct logins to the shared account; you must login as yourself and use the "su" command to change over to the shared account. This is for logging/security purposes. I've started using SSH public/priv...

What type of git server do you use? or how do you use git?

Hi Let's say we have a small team, 1-5 persons. What type of "git setup" would you use? Would you use gitweb and apache so you could run over http? Or would you use the user-accounts and ssh in some way? Today I'm familiar to use SubVersion thou apache (http), but I'm not sure it is right to setup to use git the same way... Thanks ...

How to make AnkhSVN remember my SVN + SSH password?

I want AnkhSVN to remember my SVN + SSH password. Until now I have to type it multiple times per operation. A previous topic discussed 2 solutions 1) Replace the default ssh client by renaming plinkw.exe to ssh.exe and moving it to one of the folders AnkhSVN searches for SSH client. 2) Replace the default ssh client in the configuratio...

Why no pure Python SSH1 (version 1) client implementations?

There seem to be a few good pure Python SSH2 client implementations out there, but I haven't been able to find one for SSH1. Is there some specific reason for this other than lack of interest in such a project? I am fully aware of the many SSH1 vulnerabilities, but a pure Python SSH1 client implementation would still be very useful to th...

How do I set $PATH such that `ssh user@host command` works?

I can't seem to set a new $PATH such that it is used when executing commands via ssh user@host command. I have tried adding export PATH=$PATH:$HOME/new_path to ~/.bashrc and ~/.profile on the remote machine, but executing ssh user@host "echo \$PATH" shows that the change has not been picked up (it shows /usr/local/sbin:/usr/local/bin:/u...

SSH Connection with Python 3.0

How can I make an SSH connection in Python 3.0? I want to save a file on a remote computer where I have password-less SSH set up. ...

How to make a programme continue to run after log out from ssh?

Possible Duplicate: Linux: Prevent a background process from being stopped after closing SSH client I have a program that takes a lot of time to finish. It is running as root over ssh. I want it to continue to run after I logout,is this possible and how would I achieve this? ...

Set up a specific SVN Repository

I would like to set up an SVN Repository on this Old machine I have at home and make it available over the net. This Computer is quite old, so I want to use Ubuntu Linux. I browsed around for some time, looking for certain combinations, and have now made up my mind as to what I want, but I cant find anything that implements it all, and ...

Perl and CopSSH

I'm trying to automate a process on a remote machine using a python script. The machine is a windows machine and I've installed CopSSH on it in order to SSH into it to run commands. I'm having trouble getting perl scripts to run from the CopSSH terminal. I get a command not found error. Is there a special way that I have to have perl ins...

How can I check if scp is available?

For my system I have to know whether I can do SCP (with or without transfering a file) with a particular number of systems in the network repeatedly. We may not transfer files but we have to know how we can do SCP without giving a password. ...

Object Oriented C++ library for ssh and scp

Is there any Object Oriented C++ library for ssh and scp. BSD license would be preferred. I could find libssh and libssh2. But these are all procedural. ...

How can I determine if scp is available from Perl?

In Net::SCP at which point do I need DSC or RSA keys (i.e when do I use the get or put functions)?. I would like to know the scp service is available without transferring the file. ...

SSH library for Java

Hi All, Does anyone know of a good library for SSH login from Java. Thanks, Ronen. ...

find the ip address of the client in an ssh session

I have a script that is to be run by a person that logs in to the server with ssh. Is there a way to find out automatically what ip is the user connecting from. Of course, I could ask the user (it is a tool for programmers, so no problem with that), but it would be cooler if I just found out. ...

UNIX ssh script, running commands on remote server

I would like to create a script that automatically logs into a remote server and grabs a file on the server. The script already logs into the server however the commands are not run on that machine. Once I disconnect from the remote server, the commands are run on the client machine. !/bin/sh ssh -o PreferredAuthentications=publickey b...