Linux ssh & x11: различия между версиями

Материал из support.qbpro.ru
Нет описания правки
Нет описания правки
 
(не показаны 2 промежуточные версии этого же участника)
Строка 4: Строка 4:
  ...
  ...
  Include /etc/ssh/sshd_config.d/*.conf
  Include /etc/ssh/sshd_config.d/*.conf
  ChallengeResponseAuthentication no
  '''ChallengeResponseAuthentication no'''
  PubkeyAuthentication yes
  '''PubkeyAuthentication yes'''
  ChallengeResponseAuthentication no
  '''ChallengeResponseAuthentication no'''
  KerberosAuthentication no
  '''KerberosAuthentication no'''
  GSSAPIAuthentication no
  '''GSSAPIAuthentication no'''
  UsePAM yes
  UsePAM yes
  '''X11Forwarding yes'''
  '''X11Forwarding yes'''
  '''GSSAPIAuthentication no'''
  '''GSSAPIAuthentication no'''
  '''AddressFamily inet'''
  '''AddressFamily inet'''
'''MACs umac-64@openssh.com'''
  '''Compression yes'''
  '''Compression yes'''
  PrintMotd no
  PrintMotd no
Строка 23: Строка 22:


* Команда подключения - пример:
* Команда подключения - пример:
  sudo ssh -Y -XC user@192.168.12.4 firefox
  ssh -Y -X user@192.168.12.4 firefox


   
   
*[http://system-administrators.info/?p=1857 тут]
*[http://system-administrators.info/?p=1857 тут]

Текущая версия от 21:01, 2 апреля 2024

Запуск через ssh приложений Xorg

  • Вносим изменения в /etc/ssh/sshd_config на подключаемом хосте:
...
Include /etc/ssh/sshd_config.d/*.conf
ChallengeResponseAuthentication no
PubkeyAuthentication yes
ChallengeResponseAuthentication no
KerberosAuthentication no
GSSAPIAuthentication no
UsePAM yes
X11Forwarding yes
GSSAPIAuthentication no
AddressFamily inet
Compression yes
PrintMotd no
AcceptEnv LANG LC_*
Subsystem	sftp	/usr/lib/openssh/sftp-server
...

и перезапускаем ssh:

sudo systemctl restart ssh
  • Команда подключения - пример:
ssh -Y -X user@192.168.12.4 firefox