• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

ssh Fehler

Hallo,

neuerdings wenn ich mich per SSH einlogge bekomme folgende Fehler vom Server ??

Have a lot of fun...
hostname: Unknown host
hostname: Unknown host

An welchen Einstellungen kann das liegen ??

cu Carsten.
 
Hat nix mit known_hosts zu tun, schau in den .profile-Dateien nach wo `hostname` aufgerufen wird. Da versucht jemand ein Host-Lookup, und das klappt nicht. Das hat idR nix mit ssh zu tun.
 
Das .profile sieht aber irgendwie nach standard aus oder ??
Wüsste nicht woran es dabei liegen könnte ??

cu Carsten.

# Sample .profile for SuSE Linux
# rewritten by Christian Steinruecken <cstein@suse.de>
#
# This file is read each time a login shell is started.
# All other interactive shells will only read .bashrc; this is particularly
# important for language settings, see below.

test -z "$PROFILEREAD" && . /etc/profile

# Most applications support several languages for their output.
# To make use of this feature, simply uncomment one of the lines below or
# add your own one (see /usr/share/locale/locale.alias for more codes)
#
#export LANG=de_DE@euro # uncomment this line for German output
#export LANG=fr_FR@euro # uncomment this line for French output
#export LANG=es_ES@euro # uncomment this line for Spanish output

# Some people don't like fortune. If you uncomment the following lines,
# you will have a fortune each time you log in ;-)

#if [ -x /usr/bin/fortune ] ; then
# echo
# /usr/bin/fortune
# echo
#fi
 
Oben