Questions tagged [openssh]

OpenSSH is the most widespread and de-facto standard implementation of SSH protocol. Both server and client tools are included.

OpenSSH is the most widespread and de-facto standard implementation of SSH protocol (Secure Shell). It is the default SSH toolset for most *nix systems. The OpenSSH is open source licensed under BSD license.

The OpenSSH suite includes:

  • sshd - SSH deamon
  • sftp-server - SFTP server subsystem (though in current versions of OpenSSH, the SFTP server is built into the sshd. The sftp-server binary is kept for a backwards compatibility)
  • ssh - SSH terminal client
  • sftp - SFTP client
  • scp - SCP client (internally it works as SCP server too)

Other tools included are ssh-add, ssh-agent, ssh-keysign, ssh-keyscan, ssh-keygen and ssh-keysign.

The OpenSSH server (the sshd) is configured using sshd_config files. The client tools are configured using ssh_config file.

1367 questions
-1
votes
1 answer

ssh windows 7 connection refuser

trying to connect from localhost ssh @localhost - connected trying to connect from another computer in my local network ssh @ - connected trying to connect from internet ssh @
frau_muller
  • 23
  • 1
  • 5
-1
votes
1 answer

Login into Clients server with theire rsa key

A client gave me a rsa and ppk file so I can log into their server. Im using OSX Lion and I have all my current server connections in my id_rsa file. How do I add their key so I can login with that?
Harry
  • 13,091
  • 29
  • 107
  • 167
-2
votes
0 answers

What's the full steps to check ssh trust?

I setup both machine A and B with same OS version. Then setup the same docker images and container. In the container setup the ssh trust. But, I found if in A ssh to B works. The reverse can not work. On the B machine, if I call following command…
Daniel YC Lin
  • 15,050
  • 18
  • 63
  • 96
-2
votes
1 answer

I cannot, despite all of the available resources, login to my ssh server without a password

So I have my home computer & a server. I want the server to be able to SSH into my home computer w/out a password. I have followed various tutorials and can ssh from home to server with no password. Everything works fine. When I try to reverse…
binaryorganic
  • 1,554
  • 4
  • 17
  • 25
-2
votes
1 answer

Force SSH to prompt for user

Since I am very used to being prompted for my user-id while using putty or MobaXterm in SSH sessions I expected to have the same behaviour when using SSH in the windows terminal but that is not the case. If I try it without specifying a user via ssh…
-2
votes
1 answer

could not find config.h file (ssh source codes)

I am exploring SSH source codes that I cloned from github repo (https://github.com/openssh/openssh-portable.git). I want to compile a file but it includes a header file that doesn't exist in cloned directory. How can I fix this ? Thank…
Nane Petrosyan
  • 553
  • 1
  • 7
  • 19
-2
votes
1 answer

How to change public IPv4 so that it is unique

So, I'm using ssh to connect my phone to my pc. I am able to connect when I'm connected to my LAN. so entering like ssh username@192.168.1.7 will connect and I can list all my directories and everything. but I don't want this. I want to be on my…
Ashutosh Soni
  • 855
  • 3
  • 9
  • 22
-2
votes
1 answer

Disabled ec2-user ssh access by mistake

I have disabled ec2-user ssh access by removing authorization key and turn on public key authentication by mistake. Now I unable to access the server. Is there any way to gain access back?
Raj
  • 3
  • 2
-2
votes
2 answers

I uninstalled OpenSSH client by mistake. How can I reactivate it?

See optional feature history I uninstalled openssh client by mistake on Windows10 and now it is not listed in "optional features" anymore. How do I reactivate it?
-2
votes
1 answer

how to make ansible get access to an sshd container?

I use an ansible script to load & start the https://hub.docker.com/r/rastasheep/ubuntu-sshd/ container. so it starts well of course : bash-4.4$ docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS …
francois P
  • 306
  • 6
  • 20
-2
votes
1 answer

Unable to connect to SSH server. /.ssh/authorized_keys: Permission denied

I've been trying to setup a Ubuntu server with SSH authentication through RSA keys the last 4-5 hours, but i can't get it to work. Been all over google without any luck. I'm running an Ubuntu 16.04.3 server with SSH-2.0-OpenSSH_7.2p2. Just…
FredS
  • 1
  • 1
  • 2
-2
votes
2 answers

Best perl regex for OpenSSH authorized_keys file?

I wrote a small program in perl that parses authorization files containing public keys created by OpenSSH's ssh-keygen. Each valid line in the file contains one public key. Empty lines and lines starting with a ‘#’ are skipped. Lines can be…
Medievalist
  • 713
  • 5
  • 8
-2
votes
1 answer

How SSH Tunnel from Windows VM to the host system, which is running Mac

I am trying to ssh tunnel from a Windows VM to the host system, which is running Mac. I am running this command: ssh -L 80:localhost:5454 10.0.2.2 It then prompts me three times for a password like this: Password: Password: Password: Each time I…
user1974753
  • 1,359
  • 1
  • 18
  • 32
-2
votes
1 answer

How to access my home PC from remote location using SSH

Hi I have a pc in my home with Ubuntu os and ssh installed in it. I want to access my pc from other location. ssh user@999.999.9.99(my pc ip address) This will work when i try to access when using same network. what changes need to be done to…
-2
votes
1 answer

OpenSSH - Bad configuration file

I tried to get my private/public key in order to get connected on my linux debian with putty without password. I got no problem to generate it with this command : ssh-keygen -t rsa The problems occured when I do it : ssh-copy-id -i…
jy95
  • 773
  • 13
  • 36
1 2 3
91
92