diff options
Diffstat (limited to 'ssh_config.5')
-rw-r--r-- | ssh_config.5 | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/ssh_config.5 b/ssh_config.5 index 46d3012c8..bab11d313 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -34,7 +34,7 @@ | |||
34 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 34 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
35 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 35 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
36 | .\" | 36 | .\" |
37 | .\" $OpenBSD: ssh_config.5,v 1.35 2004/06/13 14:01:42 dtucker Exp $ | 37 | .\" $OpenBSD: ssh_config.5,v 1.36 2004/06/13 15:03:02 djm Exp $ |
38 | .Dd September 25, 1999 | 38 | .Dd September 25, 1999 |
39 | .Dt SSH_CONFIG 5 | 39 | .Dt SSH_CONFIG 5 |
40 | .Os | 40 | .Os |
@@ -256,6 +256,28 @@ will act as a SOCKS server. | |||
256 | Multiple forwardings may be specified, and | 256 | Multiple forwardings may be specified, and |
257 | additional forwardings can be given on the command line. | 257 | additional forwardings can be given on the command line. |
258 | Only the superuser can forward privileged ports. | 258 | Only the superuser can forward privileged ports. |
259 | .It Cm ControlMaster | ||
260 | Enables the sharing of multiple sessions over a single network connection. | ||
261 | When set to | ||
262 | .Dq yes | ||
263 | .Nm ssh | ||
264 | will listen for connections on a control socket specified using the | ||
265 | .Cm ControlPath | ||
266 | argument. | ||
267 | Additional sessions can connect to this socket using the same | ||
268 | .Cm ControlPath | ||
269 | with | ||
270 | .Cm ControlMaster | ||
271 | set to | ||
272 | .Dq no | ||
273 | (the default.) | ||
274 | These sessions will reuse the master instance's network connection rather | ||
275 | than initiating new ones. | ||
276 | .It Cm ControlPath | ||
277 | Specify a the path to the control socket used for connection sharing. | ||
278 | See | ||
279 | .Cm ControlMaster | ||
280 | above. | ||
259 | .It Cm EnableSSHKeysign | 281 | .It Cm EnableSSHKeysign |
260 | Setting this option to | 282 | Setting this option to |
261 | .Dq yes | 283 | .Dq yes |