X11 forwarding.
--- a/ssh.rst Wed Oct 10 21:06:07 2012 +0300
+++ b/ssh.rst Wed Oct 10 21:11:08 2012 +0300
@@ -38,12 +38,22 @@
$ ssh -l $user $host
$ ssh -l $user $host:$port
-X session.
-==========
-::
+X11 forwarding.
+===============
+
+Enable X11 forwarding on remote host in ``~/.ssh/config`` or ``/etc/ssh_config``::
+
+ X11Forwarding yes
+
+then login to this host by::
$ ssh -X $user@$host
+or by using trusted X11 forwarding::
+
+ $ ssh -Y $user@$host
+
+
Multiply private keys.
======================