problem when copying a file over putty ssh to my windows machine [closed] - ssh

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
i want to copy file from remote server that i connect with the following paramters
Ip : 192.168.1.1
port : 2202
then i log in with user and password :
user:root
pass:1234
but when i try to use this script it shows that connection is refused
pscp 192.168.1.1:/etc/hosts c:\temp\example-hosts.txt
is that correct or i should put the user and password somewhere to authenticate and be able to copy the files

You need to specify the port as it's not the standard port.
Try
pscp -P 2202 192.168.1.1:/etc/hosts c:\temp\example-hosts.txt

Related

Delete SSH key without SSH access [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
My sshd is refusing to restart because of the following error:
# WARNING: UNPROTECTED PRIVATE KEY FILE! #
However, i cant figure out how to delete the unsafe ssh keys without having the ssh access. What to do?
You need to chmod 600 ~/.ssh/rsa_key.
This protects the keyfile from other users on the same system beeing able to read/steal it.

Login ftp with access ssh? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
How to login to an SSH server using an FTP client (such as Filezilla)? I have the server's IP, my .ppk file and its passphrase? Is this possible?
I tried it with host: XXX.X.XXX.XXX and the login passphrase but I don't have a password.
You can use sftp. Add your key in Filezilla sftp settings like so:
and then connect to XXX.X.XXX.XXX and set port to 22, empty password:

SFTP through ssh node [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'm trying to set up an sftp on a networked server. I can access the machine through the outside world by first ssh'ing into a network login server through the following process:
ssh [network-username]#login.server.co.uk
then, once logged in
ssh [server-username]#[hostname]
Is there anyway to sftp into the networked server? I cant find a way to add the initial step into the login process.
Thanks!
You have not specified what SFTP client you are using.
In general, some SFTP clients DO allow SSH tunneling.
WinSCP for instance.
See Connect to FTP/SFTP server which can be accessed via another server only.
OpenSSH suite allows that too.
For example see Forward SSH traffic through a middle machine.
(I'm the author of WinSCP)

Connecting to remote server by ssh using ksh [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am trying to connect to a remote server through ssh.
$ssh "username"#host "command"
which prompts for password which can be done in interactive systems.But I want to automate this by passing the password as argument instead of typing interactively.
I am using ksh shell and I can't use expect is there any ksh specific solution to connect to remote server.
Just set up authentication keys so that you don't need passwords. See man ssh-keygen for full details.

virtualbox get access winscp access from host (vista) to guest (ubuntu) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
what worked fine is
http://kdl.nobugware.com/post/2009/02/17/virtualbox-nat-ssh-guest/
so that i can connect to guest system using ssh with putty
but winscp does not work? what i still have to install? ssh was installed on ubuntu apt-get, but what else... does winscp from vista need more ports? and if how to manage this?!
just use 127.0.0.1 instead of localhost on the session in winscp , different than putty but it works, why? I dont know :P ...