Bitte jetzt keinen Sermon "Telnet ist der Antichrist" "Telnet ist nicht sicher", ... Weiss ich alles
Wir verwenden Telnet nur innerhalb unserer Arbeitsgruppe in einem abgeschirmten Netzwerk, das von außen nicht zu erreichen ist.
Wie ihr vielleicht schon mitbekommen habt, will ich eine laufende Gentoo Installation auf Debian migrieren.
Nun habe ich das Problem, dass meine unter Gentoo funktionierende Konfiguration von xinetd und telnetd unter Debian nur dieses ausspuckt
Code: Alles auswählen
Trying <ip-adress>...
Negotiating binary mode on input.
'TRUE': unknown argument ('toggle ?' for help).
Negotiating binary mode on output.
'TRUE': unknown argument ('toggle ?' for help).
Connected to <machine-name>.
Escape character is '^]'.
Connection closed by foreign host.
Code: Alles auswählen
#->cat /etc/xinetd.conf
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/files/xinetd.conf,v 1.6 2004/07/15 00:53:48 agriffis Exp $
# Sample configuration file for xinetd
defaults
{
# only_from = <ip-adress>/<netmask>
instances = 60
log_type = SYSLOG authpriv info
log_on_success = HOST PID
log_on_failure = HOST
cps = 25 30
}
includedir /etc/xinetd.d
#->cat /etc/xinetd.d/telnetd
service telnet
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.telnetd
log_on_failure += USERID
disable = no
}
#-> cat /etc/hosts.allow
portmap: <ip-adress>/<netmask>
portmap: 255.255.255.255 0.0.0.0
mountd: <ip-adress>/<netmask>
lockd: <ip-adress>/<netmask>
statd: <ip-adress>/<netmask>
rquotad: <ip-adress>/<netmask>
#in.telnetd: <ip-adress>/<netmask>
inetd: <ip-adress>/<netmask>
#-> cat /etc/hosts.denie
ALL : ALL
Code: Alles auswählen
mount: RPC: Program not registered
Ich bin mit meiner Weisheit am Ende. Ich habe alle Tutorials durch, die man zu telnet findet (was nicht viele sind) und ich komme einfach nicht darauf, was ich noch anders einstellen könnte.
Für jeden Hinweis dankbar,
Alexander
Edit:
Ich habe auf inetd umgestellt und jetzt funktioniert es.