Raspberry PI ArchLinux Telnet Server 4 ログインエラー

Raspberry PI ArchLinux Telnet Server 4 ログインエラー

Telnet経由でインストールし、pacman -S inetutilsTelnet経由でログインしようとしていますが、Telnetを使用してtelnet localhost接続すると

が表示されます

[root@alarmpi ~]# systemctl restart telnet.socket
[root@alarmpi ~]# telnet localhost
Trying ::1...
Connected to localhost.
Escape character is '^]'.

Linux 5.10.38-2-ARCH (alarmpi) (pts/1)

Login incorrect

Login incorrect

Login incorrect

Login incorrect


Login incorrect

Connection closed by foreign host.

私はたくさんグーグルして今見つけました。https://www.toolbox.com/tech/operating-systems/question/problems-using-telnet-to-access-a-solaris-8-server-032008/しかし解決策はありません。

私のもの/etc/xinetd/telnet

service telnet
{
        flags                   = REUSE
        socket_type             = stream
        wait                    = no
        user                    = root
        server                  = /usr/bin/telnetd
        log_on_failure          += USERID
        disable                 = no
}

ベストアンサー1

解決策:

そうでない場合は、インストールしてpacman -S xinetd 変更してください。nano /etc/xinetd/telnet

service telnet
{
        flags                   = REUSE
        socket_type             = stream
        wait                    = no
        user                    = root
        server                  = /usr/bin/telnetd
        server_args             = --exec-login=/usr/bin/login
        log_on_failure          += USERID
        disable                 = no
}

それsystemctl stop telnet.socketからsystemctl start xinetd

http://ポーラホーム.com/service/man/?qf=telnetd&tf=2&of=Archlinux&sf=8

--exec-login=STRING: /usr/bin/login の代わりに実行するプログラムを設定します。

おすすめ記事