SSH接続後に標準出力で「X11 forwarding request failed on channel 0」が表示される時の対処法。
原因を確認する
SSH接続時に -vオプションを付与してデバッグをする。
ssh -v root@192.168.x.x
OpenSSH_9.6p1, OpenSSL 1.1.1v 1 Aug 2023
・・・・
debug1: Requesting X11 forwarding with authentication spoofing.
debug1: Remote: No xauth program; cannot forward X11.
X11 forwarding request failed on channel 0
Last login: Thu Oct 3 23:00:00 2024 from 192.168.x.x
対処法
debug1: Remote: No xauth program; cannot forward X11.
xauthが無いという事なので、OSに合わせてxauthを入れてあげる。
- RHEL系
[root@localhost ~]# dnf search xauth
[root@localhost ~]# dnf -y install xauth
備考
X11についてはwikiを参照いただくとして、個人的に利用した事はないな..と。
コメント