次の設定があります。
私の仕事用コンピューターはUbuntu 18.04を実行しており、次の/etc/ssh/sshd_config
が使用されています。
# $OpenBSD: sshd_config,v 1.101 2017/03/14 07:19:07 djm Exp $
# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.
# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin
# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options override the
# default value.
Port 3022
#AddressFamily any
#ListenAddress 0.0.0.0
#ListenAddress ::
#HostKey /etc/ssh/ssh_Host_rsa_key
#HostKey /etc/ssh/ssh_Host_ecdsa_key
#HostKey /etc/ssh/ssh_Host_ed25519_key
# Ciphers and keying
#RekeyLimit default none
# Logging
#SyslogFacility AUTH
#LogLevel INFO
# Authentication:
#LoginGraceTime 2m
PermitRootLogin no
#StrictModes yes
#MaxAuthTries 6
#MaxSessions 10
PubkeyAuthentication yes
# Expect .ssh/authorized_keys2 to be disregarded by default in future.
#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2
#AuthorizedPrincipalsFile none
#AuthorizedKeysCommand none
#AuthorizedKeysCommandUser nobody
# For this to work you will also need Host keys in /etc/ssh/ssh_known_hosts
#HostbasedAuthentication no
# Change to yes if you don't trust ~/.ssh/known_hosts for
# HostbasedAuthentication
#IgnoreUserKnownHosts no
# Don't read the user's ~/.rhosts and ~/.shosts files
#IgnoreRhosts yes
# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication no
#PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Kerberos options
#KerberosAuthentication no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
#KerberosGetAFSToken no
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
#GSSAPIStrictAcceptorCheck yes
#GSSAPIKeyExchange no
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM no
AllowAgentForwarding no
AllowTcpForwarding no
#GatewayPorts no
X11Forwarding yes
X11DisplayOffset 10
#X11UseLocalhost yes
#PermitTTY yes
#PrintLastLog yes
TCPKeepAlive no
#UseLogin no
#PermitUserEnvironment no
#Compression delayed
#ClientAliveInterval 0
#ClientAliveCountMax 3
#UseDNS no
#PidFile /var/run/sshd.pid
#MaxStartups 10:30:100
PermitTunnel no
#ChrootDirectory none
#VersionAddendum none
# no default banner path
Banner /etc/issue.net
PrintMotd yes
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
# override default of no subsystems
Subsystem sftp /usr/lib/openssh/sftp-server
# Example of overriding settings on a per-user basis
Match User me
AllowAgentForwarding yes
AllowTcpForwarding yes
X11Forwarding yes
X11UseLocalhost no
PermitTunnel yes
現在、仕事用のコンピューターに物理的にアクセスできません。だから私は家から接続しています。私の家のPCは、Ubuntu 18.04を実行するLinux用のWindowsサブシェルを備えたWindows 10を実行しています。そこに~/.ssh/config
には以下が含まれています:
# Defaults
Host *
ForwardAgent no
ForwardX11 no
ForwardX11Trusted no
User me
Protocol 2
ServerAliveInterval 0
TcpKeepAlive no
# Workstation
Host workcomputer
HostName machine.domain.com
Port 3022
ForwardX11 Yes
ForwardX11Trusted Yes
および~/.profile
には次の行が含まれます
DISPLAY=:0
ホームコンピューターにもVcXsrvがインストールされ、実行されています。
私はxeyes
のようなアプリをローカルで実行することができ、それらはVcXsrvウィンドウでうまく開きます(ただし、xeyes
は使用していないため、xeyes -display :0
として実行する必要があります) $ DISPLAY変数)。ただし、リモートGUIアプリケーションを表示できません。
me@Home:~$ ssh workcomputer
me@Work:~$ echo $DISPLAY
me@Work:~$ gedit
Unable to init server: Could not connect: Connection refused
(gedit:20107): Gtk-WARNING **: 16:58:42.096: cannot open display:
リモートマシンでexport DISPLAY=:0
を実行してみましたが、gedit
はその後実行されましたが、ローカルマシンのVcXsrvウィンドウに表示されませんでした。私もexport DISPLAY=:10
を試しましたが、これもConnection refused
になりました。私もssh -X
で接続してみましたが、それもうまくいきませんでした。
ローカルXサーバーでリモートGUIアプリケーションを開くには、他に何ができますか?
それで、私はようやくこれを適切に機能させることができました。 (元の投稿に加えて)やるべきこと:
ローカルとリモートの両方でxauthをインストールし、:0
のエントリを生成します。
Sudo apt install xauth
xauth generate :0 . trusted
これはリモートで必要な場合と必要でない場合がありますが、ローカルでは認証データの欠落に関する警告を取り除くために必ず必要です。 This は、xauthがインストールされる場所によっては、ローカルでも必要になる場合があります。
ローカルで、この行を(短縮したり省略したりせずに)~/.bashrc
(~/.profile
から削除)に配置します。
export DISPLAY=localhost:0.0
ForwardX11
でForwardX11Trusted
と~/.ssh/config
がYes
に設定されている場合でも、-Y
(信頼できない場合は-X
を使用してください接続)接続時のスイッチ:
ssh -Y workcomputer
なぜこれが必要なのかはわかりませんが、何らかの理由でスイッチなしではX11を転送できません。