diff options
Diffstat (limited to 'doc/misc/tramp.texi')
| -rw-r--r-- | doc/misc/tramp.texi | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi index 41ba6689f13..7fbd11decd7 100644 --- a/doc/misc/tramp.texi +++ b/doc/misc/tramp.texi | |||
| @@ -866,13 +866,22 @@ Newer versions of @option{ssh} (for example OpenSSH 4) offer an option | |||
| 866 | @option{ControlMaster}. This allows @option{scp} to reuse an existing | 866 | @option{ControlMaster}. This allows @option{scp} to reuse an existing |
| 867 | @option{ssh} channel, which increases performance. | 867 | @option{ssh} channel, which increases performance. |
| 868 | 868 | ||
| 869 | Before you use this method, you shall check whether your @option{ssh} | 869 | Before you use this method, you should check whether your @option{ssh} |
| 870 | implementation does support this option. Try from the command line | 870 | implementation supports this option. Try from the command line |
| 871 | 871 | ||
| 872 | @example | 872 | @example |
| 873 | ssh localhost -o ControlMaster=yes | 873 | ssh localhost -o ControlMaster=yes /bin/true |
| 874 | @end example | 874 | @end example |
| 875 | 875 | ||
| 876 | If that command succeeds silently, then you can use @option{scpc}; but | ||
| 877 | if it fails like | ||
| 878 | |||
| 879 | @example | ||
| 880 | command-line: line 0: Bad configuration option: ControlMaster | ||
| 881 | @end example | ||
| 882 | |||
| 883 | then you cannot use it. | ||
| 884 | |||
| 876 | This method supports the @samp{-p} argument. | 885 | This method supports the @samp{-p} argument. |
| 877 | 886 | ||
| 878 | 887 | ||