Eu uso o Cygwin para conectar uma caixa Linux (servidor Ubuntu 12.04) via SSH e uso o encaminhamento X11. Cada vez que faço ssh, posso usar o encaminhamento do X por um tempo e então ele para de funcionar (por exemplo, gvim diz que o display não pode ser aberto). Se eu sair e re-ssh, ele começará a funcionar novamente. E para novamente depois de um tempo.
Alguma ideia?
Responder1
Quando tive esse problema, descobri que precisava adicionar estas linhas a ~/.ssh/config
:
Host *
ForwardX11Trusted yes
Você deve modificar o * para algum tipo de padrão de host para que não seja habilitado para todas as conexões ssh.
Você pode querer alterar a opção ForwardX11Timeout. De man ssh_config
:
ForwardX11Timeout
Specify a timeout for untrusted X11 forwarding using the format
described in the TIME FORMATS section of sshd_config(5). X11
connections received by ssh(1) after this time will be refused. The
default is to disable untrusted X11 forwarding after twenty minutes has
elapsed.
ForwardX11Trusted
If this option is set to “yes”, remote X11 clients will have full
access to the original X11 display.
If this option is set to “no”, remote X11 clients will be considered
untrusted and prevented from stealing or tampering with data belonging
to trusted X11 clients. Furthermore, the xauth(1) token used for the
session will be set to expire after 20 minutes. Remote clients will
be refused access after this time.