The Secure Shell (SSH) daemon. It is the server side process to which SSH clients can connect and invoke commands and services. Note that system administration questions are off-topic on this site.

learn more… | top users | synonyms

-2
votes
0answers
5 views

systemd sshd sshkey fail while manualy sshd works [closed]

I have a weird issue with my sshd on my Fedora 17. First, sshd works fine with sshkey auth with my main user "bob" on my server. I created a new user "git" but I failed to ssh on it. So a largely ...
0
votes
0answers
9 views

Embedding Apache SSHD server in Android application

I am trying to embed Apache SSHD Server in my Android application. Here is the code: SshServer sshd = SshServer.setUpDefaultServer(); sshd.setPort(8022); ...
0
votes
0answers
15 views

CYGWIN SSHD service not starting [migrated]

To setup Hadoop I am installing CYGWIN on my 32 bit Windows 7 machine. It has installed successfully without any error. CYGWIN Setup version : 2.774 $ uname -r : 1.7.17(0.262/5/3) SSHD installed ...
0
votes
0answers
98 views

Cygwin user permissions for sftp (Operation not permitted)

So, I installed Cygwin 1.7.17 on Win7, I used mkpasswd to bring in a domain user (my main admin account). I used mkpasswd again to bring in a local account I created called "ffftp". mkpasswd -d -u ...
-3
votes
1answer
31 views

Danger in group-writable home directory [closed]

What is the danger of having a home directory that is writable by the group (e.g. 770)? I am asking because the only way to have sshd working with a group-writable home directory is to set explicitly ...
-1
votes
1answer
280 views

Linux how to start “sftp-server”?

I'm not very familiar with it but there is installed openssh/sftp-server (by a vendor before) on RHEL and it was well running before i reboot the server. Then when i check after rebooted: # ps aux | ...
0
votes
1answer
52 views

How to exclude logins from check_procs checks of sshd

I am looking to use the Nagios plugin check_procs to monitor the number of ssh daemons running on my CentOS servers. Consider my server right now: $ ps auxww | grep ssh root 6750 0.0 0.0 ...
0
votes
0answers
211 views

ssh server close connection after password attempt

I am trying to access to remote server via ssh. I couldn't do it via ssh command in CLI, but with same credentials I can access via putty ssh. I am using ubuntu 12.04. I don't have access to ssh ...
0
votes
1answer
142 views

apache sshd public key authentication

I am trying to set up an ssh server using apache mina sshd. I want to use public key authentication, and basically I want to know how to implement package org.apache.sshd.server; import ...
-1
votes
1answer
89 views

ssh windows 7 connection refuser

trying to connect from localhost ssh <MyLogin>@localhost - connected trying to connect from another computer in my local network ssh <Mylogin>@<MyServerLocalIp> - ...
0
votes
0answers
61 views

Restrict Simultaneous connections for root [closed]

I don't normally ask for help but I'm pretty desperate. My goal here is to restrict ssh access for user root to a number of concurrent users. Let's say I want to allow 4 people to be logged into the ...
0
votes
0answers
127 views

sshd_config AllowUsers

I'm trying a very specific configuration for the AllowUsers directive that follows the logic below: Allow user1 to ssh from host1 Deny user1 to ssh from any other host Allow all other users from ...
0
votes
1answer
92 views

Unable to connect to Gerrit SSHD

I am trying to setup gerrit, but I guess I am missing some configuration as I am unable to connect to gerrit sshd. This guide is what I am trying to follow. The web interface is opening up and I was ...
0
votes
0answers
68 views

Error launching dbclient: Error connecting: Connection timed out. How to fix it?

I'm trying to set a ssh connection using dropbear client/server on PC and embedded system. Dropbear server is launched automatically as service from /etc/init.d/S31-dropbear. Its configuration file is ...
-1
votes
2answers
222 views

ssh & sshd are segfaulting - how to debug cores? [closed]

Within the last week (between Dec 23 and Dec 25) something happened to my system that broke ssh/sshd. I've taken a lot of steps (please see http://pastebin.com/KWZBSD4C for a full run down) to try to ...
0
votes
0answers
71 views

creating an sshd server using apache libraries requires me to alter the commands server side but it works if i connect to another ssh server

Requirements: Write my own ssh server that allows msysgit to communicate with a repo (pull, push, etc) using the ssh protocol and going though my ssh server. I'm running on Windows 7. using git ...
1
vote
0answers
280 views

using git with apache sshd

Hi I'm trying to use msysgit over an ssh server i wrote in Java using sshd and i have made great progress in that i got past some git errors, I am able to connect using putty and get a shell, I have ...
0
votes
0answers
97 views

When user in server is not logged in ssh gives: Permission denied (public key)

I'm setting up a ssh server using public key authentication. For that I used this tutorial: http://www.g-loaded.eu/2005/11/10/ssh-with-keys/ I was able to login via ssh. But this works only if I keep ...
1
vote
1answer
160 views

install sshd using cygwin

I want to use cygwin to install sshd in windows. But when I start the sshd service, it says: The CYGWIN sshd service is starting. The CYGWIN sshd service could not be started. The service did not ...
-1
votes
4answers
186 views

Monitor traffic of remote login machine (through ssh local port forwarding) in Ubuntu [closed]

I have started sshd in my computer (Ubuntu-12.10) to let other PC (let pc2) connect in my guest account through local port forwarding. Now how can I monitor the traffic of that pc2 from my PC i.e. ...
0
votes
0answers
112 views

permission issues while writing date on nfs share dir from cygwin sshd (win 7)

I have configured an nfs share on a linux machine with proper permissions in the /etc/hosts.allow and /etc/exports files, and in the folder /root/nfs_share. On a Windows 7 machine, I have configured ...
1
vote
2answers
180 views

Using SSH connection for inter application communication

I want to write an application that would be a custom SSH server with two types of connection: A sync channel, where clients type a command and the server would return the output An stream channel ...
-4
votes
2answers
449 views

How to install sshd on Mac? [closed]

I am trying to use Hadoop on my Mac, but it requires Java and ssh, so I need to install them. I have already done the ssh part with the help of Homebrew, but after I download sshd, I don't know how to ...
0
votes
0answers
183 views

Apache Mina SSHD: closing active shells

I have implemented Apache Mina SSHD (java) with my own Shell Factory. Everything works great, however, this doesn't work: A user connects The user is done and closes the session without typing ...
0
votes
0answers
173 views

sshd_config Match directive to exclude all but a certain network [closed]

The sshd_config (in my particular case: OpenSSL on Ubuntu 10.04) lets you set a default set of conditions. I'm using ForceCommand to implement a two-factor authentication system we're using. ...
0
votes
1answer
6k views

SSH not working, Connection refused [closed]

I'm at a bit of a loss here. I cannot get ssh working on my machine. It's a plain old ubuntu home server. I took it down today to add a few more hard drives to it, now SSH is acting up. I get ...
0
votes
2answers
78 views

JavaMail use of SSHD ports (when on open networks)

I have a (hopefully) simple question. Is it possible to use SSHD tunneling to securely access your Microsoft Exchange server using JavaMail when you are on a public network? I read about someone using ...
0
votes
1answer
385 views

use both ssh key and password [closed]

Ok, so here's the setup. I work at my university in the EE dept. as a lab tech. I was tasked with setting up a server to host a specific program that our students use. Due to red-tape reasons this is ...
0
votes
1answer
376 views

sshd with multiple match sections, override settings

I have the situation where sshd should permit sftp only access to a group of users. This is easily done by adding a match section like Match Group groupname ChrootDirectory /srv/ftp ...
0
votes
1answer
224 views

only allow scp no shell

can I use /etc/ssh/sshd_config to make it so a user can only scp files to the server but open a shell. I tried with the commands below but just got connection closed. Match User website ...
2
votes
2answers
702 views

“Session” vs “Channel” (JSch and sshd)

I'm looking to move small files (at unknown times and in unknown quantities) from one server to another using JSch - unfortunately, I tried to open up a sessions for each transfer which quickly bombed ...
5
votes
2answers
3k views

RedHat 6/Oracle Linux 6 is not allowing key authentication via ssh

Keys are properly deployed in ~/.ssh/authorized_keys Yet ssh keeps on prompting for a password.
1
vote
1answer
622 views

How to create a “Nested ssh tunnel”?

I connect to a linux server over 2 other server: MyPC --(ssh)--> serverA --(ssh)--> serverB --(ssh)--> FinalServer httpd is running on FinalServer, listen on 80 serverA/serverB only accept ...
0
votes
1answer
4k views

ssh to localhost displays “Connection closed by remote host”

I had ssh installed and working. I ran sudo chmod -R 777 /var and it stopped working. I changed permissions with sudo chmod -R 700 /var but that didn't make it work again. When I do ssh -v localhost ...
0
votes
1answer
2k views

SSHD Java example

Can anyone point me to some example code for using SSHD to access a server and execute some commands from a JAVA application. I have looked through the Apache SSHD website and downloads and have not ...
3
votes
2answers
75 views

algorithmic password on sshd

ok, i got this in my mind and curious if its possible. On linux systems, is there any way to generate a valid algorithmic password combination to login SSH, that we can generate valid password with a ...
1
vote
1answer
122 views

Fork “free” sshd?

Is there a way to run sshd such that it can (at least for a limited number of log-ins) successfully return a prompt (likely busybox) even while fork is unavailable (e.g. out of PIDs)? It seems to me ...
2
votes
2answers
118 views

tunneling using SSH

I'm tunneling all of my internet traffic through a remote computer hosting Debian using sshd. But my internet connection becomes so slow (something around 5 to 10 kbps!). Can be anything wrong with ...
0
votes
1answer
87 views

cannot login sshd with another port [closed]

ok,stop selinux, stop iptables /etc/init.d/iptables stop change sshd port and restart in /etc/ssh/sshd_config: Port 5050 check the port working netstat -ntlp | grep :5050 login on server ...
0
votes
1answer
551 views

public key authentication fails ONLY when sshd is daemon [closed]

I have no clue on how this happens. Everything is set up to perform authentication via public key. Yet, when sshd is running as a daemon (service sshd start), it doesn't accept public keys. (To obtain ...
1
vote
2answers
325 views

Alternative ways to access Amazon EC2 instance should sshd die?

On a debian or ubuntu instance, autossh usually does the trick and on an arch instance, by adding the daemon name to the DAEMONS array in /etc/rc.conf file. What if sshd still fails to autorestart ...
1
vote
2answers
2k views

Centos 6 sshd “server refused our key”

I'm just setting up a fresh install of Centos 6 (my first time with 6) and have inserted the public key into the authorized_keys file - I'm using the same public/private key pair that I already use ...
3
votes
0answers
144 views

Perl - SSH daemon package [closed]

Do we have any Server module like HTTP::Daemon for SSH? I tried searching CPAN but no luck.
3
votes
3answers
7k views

Trouble setting up OpenSSH server on Windows 7 (can't start SSHD) [closed]

I just downloaded Cygwin for Windows 7. I want to install an OpenSSH SSH daemon, and after running "ssh-host-config", I tried starting the service by running $net start sshd System error 1069 has ...
1
vote
1answer
338 views

ssh(cygwin) service stop after successfully connecting one time

i have install cygwin and configure the ssh service completely but after accessing the computer from another pc and when i logout from that the service stop automatically and next time it refuse ...
4
votes
3answers
3k views

git push using PuTTY on Windows fails (fatal: The remote end hung up unexpectedly)

Excited about being ready to do my first git push ever, I created an alias for PuTTY in my cygwin environment: alias ssh="/cygdrive/c/PROGRA~2/putty/PUTTY.EXE" Then invoked (inside my working ...
0
votes
1answer
1k views

Change the default port that Nagios monitors a well-known service on

Just installed Nagios 3.2 and have it monitoring 4 or 5 windows hosts as well as itself. The localhost (Ubuntu 10.04) has SSHD configured, but I've changed the port it's listening on. Nagios hates ...
0
votes
2answers
292 views

Black screenshots using c++ and cygwin sshd service

I have a problem when trying to capture screenshots using c++ on windows xp. The code is similar to this: hDc = CreateCompatibleDC(0); hBmp = CreateCompatibleBitmap(GetDC(0), width, height); ...
1
vote
2answers
396 views

why background process group die when terminal closed

According to this faq (and by many other books): ftp://rtfm.mit.edu/pub/faqs/unix-faq/programmer/faq 1.15 Why doesn't my process get SIGHUP when its parent dies? SIGHUP won't be sent to ...
1
vote
1answer
365 views

where is SIGHUP from? (sshd forks a child to create a new session, kill this child and all processes in the session dies)

sshd forks a child process to create a new session. here is the output(partial) of pstree: sshd(1230) -- sshd(1234) -- bash (...) |- sshd(1235) -- bash -- a.out -- a.out ...

1 2