Skip to content

Commit

Permalink
Merged two ssh configuration suggestion blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
delucks committed Jun 17, 2015
1 parent d9f6bbd commit 4519925
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,12 @@ Scope:

- In ssh, knowing how to port tunnel with `-L` or `-D` (and occasionally `-R`) is useful, e.g. to access web sites from a remote server.

- It can be useful to make a few optimizations to your ssh configuration; for example, this `~/.ssh/config` contains settings to avoid dropped connections in certain network environments, and use compression (which is helpful with scp over low-bandwidth connections):
- It can be useful to make a few optimizations to your ssh configuration; for example, this `~/.ssh/config` contains settings to avoid dropped connections in certain network environments, use compression (which is helpful with scp over low-bandwidth connections), and multiplex channels to the same server with a local control file:
```
TCPKeepAlive=yes
ServerAliveInterval=15
ServerAliveCountMax=6
Compression=yes
```

- To lower network overhead, this `~/.ssh/config` contains settings to multiplex channels to the same server with a local control file:
```
ControlMaster auto
ControlPath /tmp/%r@%h:%p
ControlPersist yes
Expand Down

0 comments on commit 4519925

Please sign in to comment.