root per ssh verboten, geht aber trotzdem !!

Du hast Probleme mit Deinem eMail-Programm, Webbrowser oder Textprogramm? Dein Lieblingsprogramm streikt?
Antworten
Benutzeravatar
rahab
Beiträge: 165
Registriert: 24.09.2002 12:04:05

root per ssh verboten, geht aber trotzdem !!

Beitrag von rahab » 20.12.2002 10:08:54

Hey Allerseits,

Ich habe in meiner /etc/ssh/sshd-config die Zeile:
PermitRootLogin no
eingefügt, damit es nicht möglich ist, sich remote
als root einzuloggen. Allerdings musste ich festestellen,
dass es trotzdem möglich ist.

Ist an der Syntax was falsch :?:

Benutzeravatar
fred19726
Beiträge: 507
Registriert: 18.07.2002 03:38:38
Lizenz eigener Beiträge: MIT Lizenz
Wohnort: Heidelberg (DE)
Kontaktdaten:

Beitrag von fred19726 » 20.12.2002 12:16:36

hast du danach auch den sshd neu gestartet ?

MFG Fred

Benutzeravatar
rahab
Beiträge: 165
Registriert: 24.09.2002 12:04:05

Beitrag von rahab » 20.12.2002 12:31:23

jepp
x-mal

Benutzeravatar
acron
Beiträge: 147
Registriert: 03.05.2002 13:31:40
Wohnort: Aachen

Re: root per ssh verboten, geht aber trotzdem !!

Beitrag von acron » 20.12.2002 14:23:50

rahab hat geschrieben:
PermitRootLogin no
[...]
Ist an der Syntax was falsch :?:
an der Syntax ist soweit alles ok, denn es ist die selbe wie mir :lol: und die funzt auch bei mir :lol:

Code: Alles auswählen

dude:/# cat /etc/ssh/sshd_config |grep PermitRootLogin
PermitRootLogin no
dude:/# ssh dude
root@dude's password: 
Permission denied, please try again.
Ich habe in meiner /etc/ssh/sshd-config die Zeile:
die Datei heißt sshd_config, du hast dich doch nur jetzt verschrieben oder?
poste mal den rest der sshd_config

grüße acron
Of course, someone who knows more about this will correct me if I'm wrong, and someone who knows less will correct me if I'm right.
[David Palmer]

Benutzeravatar
rahab
Beiträge: 165
Registriert: 24.09.2002 12:04:05

Beitrag von rahab » 23.12.2002 00:37:59

Klar, das war der Fehlerteufel !
natürlich heisst das File sshd_config

hier mal das ganze Teil:

Code: Alles auswählen

# Package generated configuration file
# See the sshd(8) manpage for defails

# What ports, IPs and protocols we listen for
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#ListenAddress 0.0.0.0
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# ...but breaks Pam auth via kbdint, so we have to turn it off
# Use PAM authentication via keyboard-interactive so PAM modules can
# properly interface with the user (off due to PrivSep)
PAMAuthenticationViaKbdInt no
# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
LogLevel INFO

# Authentication:
LoginGraceTime 600
PermitRootLogin yes
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile     %h/.ssh/authorized_keys

# rhosts authentication should not be used
RhostsAuthentication no
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Uncomment to disable s/key passwords
#ChallengeResponseAuthentication no

# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication yes


# To change Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#AFSTokenPassing no
#KerberosTicketCleanup no

# Kerberos TGT Passing does only work with the AFS kaserver
#KerberosTgtPassing yes

X11Forwarding no
X11DisplayOffset 10
PrintMotd no
#PrintLastLog no
KeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#Banner /etc/issue.net
#ReverseMappingCheck yes

Subsystem       sftp    /usr/lib/sftp-server

PermitRootLogin no
Kommt es evtl. darauf an an welcher Stelle es steht ??

Benutzeravatar
acron
Beiträge: 147
Registriert: 03.05.2002 13:31:40
Wohnort: Aachen

Beitrag von acron » 23.12.2002 09:40:05

du hast einmal

Code: Alles auswählen

PermitRootLogin yes
und einmal

Code: Alles auswählen

PermitRootLogin no
drin, schmeiß deinen Eintrag raus und ändere den orginalen in no... und dann geht dem :lol:

grüß acron
Of course, someone who knows more about this will correct me if I'm wrong, and someone who knows less will correct me if I'm right.
[David Palmer]

Benutzeravatar
rahab
Beiträge: 165
Registriert: 24.09.2002 12:04:05

Beitrag von rahab » 23.12.2002 12:45:58

:oops: Oh mann, immer diese unnötigen Verpeil-Aktionen.

Hätte ich einmal genau drübergeschaut wäre mir das wohl auch aufgefallen :D

Auf jeden Fall vielen Dank acron

Antworten