X11 अग्रेषण को ssh पर काम करने के लिए, आपको 3 चीजों की आवश्यकता होगी।
- आपके ग्राहक को X11 अग्रेषित करने के लिए सेट किया जाना चाहिए।
- X11 अग्रेषण की अनुमति देने के लिए आपका सर्वर सेट होना चाहिए।
- आपका सर्वर X11 प्रमाणीकरण सेट करने में सक्षम होना चाहिए।
यदि आपके पास # 1 और # 2 दोनों जगह हैं, लेकिन # 3 गायब हैं, तो आप एक खाली प्रदर्शन पर्यावरण चर के साथ समाप्त करेंगे।
सूप-टू-नट्स, यहां बताया गया है कि X11 को आगे काम करते हुए कैसे प्राप्त किया जाए।
अपने सर्वर पर, सुनिश्चित करें कि / etc / ssh / sshd_config में शामिल हैं:
X11Forwarding yes
X11DisplayOffset 10
आपको SIGHUP sshd की आवश्यकता हो सकती है इसलिए यह इन परिवर्तनों को उठाता है।
cat /var/run/sshd.pid | xargs kill -1
अपने सर्वर पर, सुनिश्चित करें कि आपने xauth स्थापित किया है।
belden@skretting:~$ which xauth
/usr/bin/xauth
यदि आपके पास xauth स्थापित नहीं है, तो आप "खाली प्रदर्शन पर्यावरण चर" समस्या में भाग लेंगे।
अपने क्लाइंट पर, अपने सर्वर से कनेक्ट करें। X11 अग्रेषण की अनुमति देने के लिए ssh को बताना निश्चित करें। मैं पसंद करता हूं
belden@skretting:~$ ssh -X blyman@the-server
लेकिन आप पसंद कर सकते हैं
belden@skretting:~$ ssh -o ForwardX11=yes blyman@the-server
या आप इसे अपने ~ / .ssh / config में सेट कर सकते हैं।
मैं आज इस खाली प्रदर्शन पर्यावरण चर में चल रहा था जब मैं एक नया सर्वर है कि मैं प्रशासित नहीं ssh'ing। लापता xauth भाग को ट्रैक करना थोड़ा मज़ेदार था। यहाँ मैंने क्या किया, और आप भी कर सकते हैं।
अपने स्थानीय कार्य केंद्र पर, जहां मैं एक प्रशासक हूं, मैंने सत्यापित किया कि X11 को अग्रेषित करने के लिए / etc / ssh / sshd_config स्थापित किया गया था। जब मैं लोकलहोस्ट में वापस ssh -X करता हूं, तो मुझे मेरा DISPLAY सेट सही से मिल जाता है।
परेशान होने के लिए मजबूर करना बहुत कठिन नहीं था। मुझे सिर्फ यह देखना है कि इसे सही तरीके से सेट करने के लिए sshd और ssh क्या कर रहे हैं। यहाँ मेरे द्वारा किए गए सब कुछ का पूरा आउटपुट है।
blyman@skretting:~$ mkdir ~/dummy-sshd
blyman@skretting:~$ cp -r /etc/ssh/* ~/dummy-sshd/
cp: cannot open `/etc/ssh/ssh_host_dsa_key' for reading: Permission denied
cp: cannot open `/etc/ssh/ssh_host_rsa_key' for reading: Permission denied
मेरे ssh_host_ {dsa, rsa} _key फ़ाइलों को कॉपी करने के लिए मजबूर करने के लिए sudo का उपयोग करने के बजाय, मैंने ssh-keygen का उपयोग अपने लिए डमी बनाने के लिए किया।
blyman@skretting:~$ ssh-keygen -t rsa -f ~/dummy-sshd/ssh_host_rsa_key
Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/blyman/dummy-sshd/ssh_host_rsa_key.
Your public key has been saved in /home/blyman/dummy-sshd/ssh_host_rsa_key.pub.
कुल्ला और बार-बार dsa के साथ:
blyman@skretting:~$ ssh-keygen -t dsa -f ~/dummy-sshd/ssh_host_dsa_key
# I bet you can visually copy-paste the above output down here
सही नई ssh_host कुंजी फ़ाइलों को इंगित करने के लिए ~ / dummy-sshd / sshd_config संपादित करें।
# before
blyman@skretting:~$ grep ssh_host /home/blyman/dummy-sshd/sshd_config
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
# after
blyman@skretting:~$ grep ssh_host /home/blyman/dummy-sshd/sshd_config
HostKey /home/blyman/dummy-sshd/ssh_host_rsa_key
HostKey /home/blyman/dummy-sshd/ssh_host_dsa_key
नॉन-डिटैच मोड में एक नए पोर्ट पर sshd फायर करें:
blyman@skretting:~$ sshd -p 50505 -f ~/dummy-sshd/sshd_config -d
sshd re-exec requires execution with an absolute path
वूप्स, बेहतर उस रास्ते को सही:
blyman@skretting:~$ /usr/sbin/sshd -p 50505 -f ~/dummy-sshd/sshd_config -d
debug1: sshd version OpenSSH_5.5p1 Debian-4ubuntu6
debug1: read PEM private key done: type RSA
debug1: Checking blacklist file /usr/share/ssh/blacklist.RSA-2048
debug1: Checking blacklist file /etc/ssh/blacklist.RSA-2048
debug1: private host key: #0 type 1 RSA
debug1: read PEM private key done: type DSA
debug1: Checking blacklist file /usr/share/ssh/blacklist.DSA-1024
debug1: Checking blacklist file /etc/ssh/blacklist.DSA-1024
debug1: private host key: #1 type 2 DSA
debug1: setgroups() failed: Operation not permitted
debug1: rexec_argv[0]='/usr/sbin/sshd'
debug1: rexec_argv[1]='-p'
debug1: rexec_argv[2]='50505'
debug1: rexec_argv[3]='-f'
debug1: rexec_argv[4]='/home/blyman/dummy-sshd/sshd_config'
debug1: rexec_argv[5]='-d'
Set /proc/self/oom_adj from 0 to -17
debug1: Bind to port 50505 on 0.0.0.0.
Server listening on 0.0.0.0 port 50505.
debug1: Bind to port 50505 on ::.
Server listening on :: port 50505.
पोर्ट 50505 पर लोकलहोस्ट में नया टर्मिनल और ssh पॉप करें:
blyman@skretting:~$ ssh -p 50505 localhost
The authenticity of host '[localhost]:50505 ([::1]:50505)' can't be established.
RSA key fingerprint is 81:36:a5:ff:a3:5a:45:a6:90:d3:cc:54:6b:52:d0:61.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '[localhost]:50505' (RSA) to the list of known hosts.
Linux skretting 2.6.35-32-generic #67-Ubuntu SMP Mon Mar 5 19:39:49 UTC 2012 x86_64 GNU/Linux
Ubuntu 10.10
Welcome to Ubuntu!
* Documentation: https://help.ubuntu.com/
1 package can be updated.
0 updates are security updates.
Last login: Thu Aug 16 15:41:58 2012 from 10.0.65.153
Environment:
LANG=en_US.UTF-8
USER=blyman
LOGNAME=blyman
HOME=/home/blyman
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
MAIL=/var/mail/blyman
SHELL=/bin/bash
SSH_CLIENT=::1 43599 50505
SSH_CONNECTION=::1 43599 ::1 50505
SSH_TTY=/dev/pts/16
TERM=xterm
DISPLAY=localhost:10.0
Running /usr/bin/xauth remove unix:10.0
/usr/bin/xauth add unix:10.0 MIT-MAGIC-COOKIE-1 79aa9275ced418dd445d9798b115d393
वहां अंतिम तीन पंक्तियों को देखें। मैंने सौभाग्य से DISPLAY सेट किया था, और उन दो अच्छी दिखने वाली लाइनों से था / usr / bin / xauth।
वहां से यह मेरे / usr / bin / xauth को /usr/bin/xauth.old में ले जाने के लिए, ssh से डिस्कनेक्ट करने और sshd को रोकने के लिए, फिर sshd लॉन्च करें और ssh को वापस लोकलहोस्ट में लॉन्च करने के लिए बच्चे का खेल था।
जब / usr / bin / xauth चला गया था, तो मैंने अपने वातावरण में प्रदर्शित प्रदर्शन को नहीं देखा।
यहाँ कुछ भी शानदार नहीं चल रहा है। ज्यादातर मैं अपने स्थानीय मशीन पर इस पुन: पेश करने की कोशिश करने के लिए एक समझदार दृष्टिकोण चुनने में भाग्यशाली रहा।