search for: sshd_server

Displaying 9 results from an estimated 9 matches for "sshd_server".

2006 Aug 30
0
[PATCH] Cygwin: Add SeTcbPrivilege to sshd_server user
Hi, the below patch adds a Windows NT user right to the sshd_server user which will be important in an upcoming version of Cygwin. I have a preliminary implementation which solves the problem that native Windows processes don't recognize the user name correctly, if the user has logged in using public key authentication. The new mechanism requires the SeTcbPri...
2003 Nov 05
0
[PATCH] contrip/cygwin: Reworking the installation support
...ally, this account should be member +of the administrators group, plus it should have the following user rights: + + Create a token object + Logon as a service + Replace a process level token + Increase Quota + +The ssh-host-config script asks you, if it should create such an account, +called "sshd_server". If you say "no" here, you're on your own. Please +follow the instruction in ssh-host-config exactly if possible. Note that +ssh-user-config sets the permissions on 2003 Server machines dependent of +whether a sshd_server account exists or not. +==============================...
2006 Jan 09
0
[PATCH] Add service dependency to network
...diff -p -u -r1.17 ssh-host-config --- contrib/cygwin/ssh-host-config 9 May 2005 13:48:17 -0000 1.17 +++ contrib/cygwin/ssh-host-config 9 Jan 2006 12:45:45 -0000 @@ -551,14 +551,14 @@ then [ -z "${_cygwin}" ] && _cygwin="ntsec" if [ $_nt2003 -gt 0 -a "${sshd_server_in_sam}" = "yes" ] then - if cygrunsrv -I sshd -d "CYGWIN sshd" -p /usr/sbin/sshd -a -D -u sshd_server -w "${_password}" -e "CYGWIN=${_cygwin}" + if cygrunsrv -I sshd -d "CYGWIN sshd" -p /usr/sbin/sshd -a -D -u sshd_server -w "${_pa...
2006 May 09
1
Post-Win2k3 Upgrade rsync+ssh Permissions Problem
...513:CN=Microsoft Corporation,L=Redmond,S=Washington,C=US,U-ROBOTRON\SUPPORT_388945a0,S-1-5-21-3136447401-2129490065-3906172409-1001:/home/SUPPORT_388945a0:/bin/bash weblord:unused_by_nt/2000/xp:500:513:weblord,U-ROBOTRON\weblord,S-1-5-21-3136447401-2129490065-3906172409-1004:/home/weblord:/bin/bash sshd_server:unused_by_nt/2000/xp:1009:513:sshd server account,U-ROBOTRON\sshd_server,S-1-5-21-3136447401-2129490065-3906172409-1009:/var/empty:/bin/false When I look at the Windows permissions of the new files they differ in that the old files had an owner list of Administrators SYSTEM Domain Users Users Ever...
2013 Jul 02
1
[patch/cygwin]: Fix documentation
...ally, this account should be member -of the administrators group, plus it should have the following user rights: - - Create a token object - Logon as a service - Replace a process level token - Increase Quota - -The ssh-host-config script asks you, if it should create such an account, -called "sshd_server". If you say "no" here, you're on your own. Please -follow the instruction in ssh-host-config exactly if possible. Note that -ssh-user-config sets the permissions on 2003 Server machines dependent of -whether a sshd_server account exists or not. -==============================...
2006 Apr 23
0
Domain trust relationship between Samba 3.0.21c and AD 2003
...ST\administrateurs de l'entreprise DOMAINTEST\propriDOMAINTEST\dnsupdateproxy BUILTIN\administrators BUILTIN\print operators BUILTIN\backup operators BUILTIN\replicators DOMAINTEST\administrateur DOMAINTEST\anonymous DOMAINTEST\cedric DOMAINTEST\invitDOMAINTEST\krbtgt DOMAINTEST\sshd DOMAINTEST\sshd_server DOMAINTEST\support_388945a0 Now, from the AD, if I try to log in as an AD user on a FRANCE domain share, it doesn't work (access denied). Here is what I have in log.smbd: [2006/04/21 15:30:08, 3] smbd/sesssetup.c:reply_sesssetup_and_X_spnego(633) Doing spnego session setup [2006/04/21 1...
2004 Jan 23
0
[PATCH] contrib/cygwin/README
...Answer all questions with "no" automatically. + --cygwin -c <options> Use "options" as value for CYGWIN environment var. + --port -p <n> sshd listens on port n. + --pwd -w <passwd> Use "pwd" as password for user 'sshd_server'. Additionally ssh-host-config now asks if it should install sshd as a service when running under NT/W2K. This requires cygrunsrv installed. -- Corinna Vinschen Cygwin Developer Red Hat, Inc.
2004 Sep 12
0
[PATCH] contrib/cygwin/ssh-host-config
...in/ssh-host-config,v retrieving revision 1.14 diff -p -u -r1.14 ssh-host-config --- contrib/cygwin/ssh-host-config 21 Nov 2003 12:48:57 -0000 1.14 +++ contrib/cygwin/ssh-host-config 12 Sep 2004 14:04:21 -0000 @@ -449,7 +449,7 @@ then echo "Should this script create a new local account 'sshd_server' which has" if request "the required privileges?" then - _admingroup=`awk -F: '{if ( $2 == "S-1-5-32-544" ) print $1;}' ${SYSCONFDIR}/group` + _admingroup=`awk -F: '{if ( $1 != "root" && $2 == "S-1-5-32-544" ) prin...
2005 Mar 13
0
[PATCH] contrib/cygwin/ssh-host-config: Reliability fix
...cvs/openssh_cvs/contrib/cygwin/ssh-host-config,v retrieving revision 1.15 diff -p -u -r1.15 ssh-host-config --- ssh-host-config 21 Sep 2004 11:35:56 -0000 1.15 +++ ssh-host-config 13 Mar 2005 09:45:30 -0000 @@ -449,12 +449,10 @@ then echo "Should this script create a new local account 'sshd_server' which has" if request "the required privileges?" then - _admingroup=`awk -F: '{if ( $1 != "root" && $2 == "S-1-5-32-544" ) print $1;}' ${SYSCONFDIR}/group` + _admingroup=`mkgroup -l | awk -F: '{if ( $2 == "S-1-5-32-544...