forked from cloudfoundry/docs-dev-guide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cloudfoundry#256 from emalm/add-ssh-proxy-security…
…-config Add SSH proxy security configuration details
- Loading branch information
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -186,6 +186,44 @@ vcap@ce4l5164kws:~$ | |
<br/> | ||
You have now securely connected to the application instance. | ||
|
||
## <a id="ssh-proxy-security-configuration"></a>SSH Proxy Security Configuration | ||
|
||
The CF SSH proxy has following SSH security configuration by default: | ||
|
||
<table id='ssh-proxy-security-configuration-values' border="1" class="nice"> | ||
<tr> | ||
<th>Security Parameter</th> | ||
<th>Values</th> | ||
</tr> | ||
<tr> | ||
<td>Ciphers</td> | ||
<td> | ||
<code>[email protected]</code><br/> | ||
<code>[email protected]</code><br/> | ||
<code>aes256-ctr</code><br/> | ||
<code>aes192-ctr</code><br/> | ||
<code>aes128-ctr</code> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td><abbr title="Message Authentication Codes">MACs</abbr></td> | ||
<td> | ||
<code>[email protected]</code><br/> | ||
<code>hmac-sha2-256</code> | ||
</td> | ||
</tr> | ||
<tr> | ||
<td>Key Exchanges</td> | ||
<td> | ||
<code>[email protected]</code> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
The `cf ssh` command is already compatible with this security configuration. If you <a href="#other-ssh-access">use a different SSH client</a> to access applications over SSH, you should ensure that it is configured to be compatible with these ciphers, MACs, and key exchanges. | ||
|
||
The CF deployment operator may also change these default values in the SSH proxy configuration, which may then require a change to the SSH client configuration. | ||
|
||
|
||
## <a id="proxy-to-container-auth"></a>Proxy to Container Authentication | ||
|
||
|