ForwardingX11 问题,XAUTH 和显示设置

ForwardingX11 问题,XAUTH 和显示设置

我一直在尝试使用 Ubuntu 18.04 上的 /etc/ssh/ssh_config 文件中的 ForwardingX11 来通过 gui 获取 ssh,但是我尝试的每个指南都告诉我同样的事情,将 ForwardingX11 更改为 yes,然后在确保安装了 xauth 后使用 -X 命令重新启动 ssh 会话。

我对配置进行了更改(如下),验证我是否具有 xauth,并回显我的 $DISPLAY 和 $XAUTHORIZATION,发现两者都是空白的。我假设 $XAUTHORIZATION 变量为空白,这就是为什么即使在导出 DISPLAY="127.0.0.1:0.0" 后我仍看不到 GUI(firefox 是我的测试用例)的原因,所以我的问题是,如果 XAUTHORIZATION 变量是我缺少的,如何让这两个变量在重新启动时自动填充,以及这样做的正确值是什么?

Include /etc/ssh/ssh_config.d/*.conf

Host *
#   ForwardAgent no
   ForwardX11 yes
#   ForwardX11Trusted yes
#   PasswordAuthentication yes
#   HostbasedAuthentication no
#   GSSAPIAuthentication no
#   GSSAPIDelegateCredentials no
#   GSSAPIKeyExchange no
#   GSSAPITrustDNS no
#   BatchMode no
#   CheckHostIP yes
#   AddressFamily any
#   ConnectTimeout 0
#   StrictHostKeyChecking ask
#   IdentityFile ~/.ssh/id_rsa
#   IdentityFile ~/.ssh/id_dsa
#   IdentityFile ~/.ssh/id_ecdsa
#   IdentityFile ~/.ssh/id_ed25519
#   Port 22
#   Ciphers aes128-ctr,aes192-ctr,aes256-ctr,aes128-cbc,3des-cbc
#   MACs hmac-md5,hmac-sha1,[email protected]
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
#   VisualHostKey no
#   ProxyCommand ssh -q -W %h:%p gateway.example.com
#   RekeyLimit 1G 1h
    SendEnv LANG LC_*
    HashKnownHosts yes
    GSSAPIAuthentication yes

相关内容