Old manual
You are reading the reference manual of an older release. Read the current manual »
Authentication
ContainerSSH does not know your users and their passwords. Therefore, it calls out to a microservice that you have to provide. Your service can verify the users, passwords, and SSH keys. You will have to provide the microservice URL in the configuration.
Configuration¶
The authentication webhook can be configured in the main configuration using the following structure:
auth:
<options>
The following options are supported:
Name | Type | Description |
---|---|---|
password |
bool |
Enable password authentication. |
pubkey |
bool |
Enable public key authentication. |
url |
string |
HTTP URL of the configuration server to call. Leaving this field empty disables the webhook. |
timeout |
string |
Timeout for the webhook. Can be provided with time units (e.g. 6s ), defaults to nanoseconds if provided without a time unit. |
authTimeout |
string |
Timeout for the authentication process. HTTP calls that result in a non-200 response call will be retried until this timeout is reached. |
cacert |
string |
CA certificate in PEM format or filename that contains the CA certificate. This is field is required for https:// URL's on Windows because of Golang issue #16736 |
cert |
string |
Client certificate in PEM format or filename that contains the client certificate for x509 authentication with the configuration server. |
key |
string |
Private key in PEM format or filename that contains the client certificate for x509 authentication with the configuration server. |
tlsVersion |
[]string |
Minimum TLS version to support. See the TLS version section below. |
curve |
[]string |
Elliptic curve algorithms to support. See the Elliptic curve algorithms section below. |
cipher |
[]string,string |
Which cipher suites to support. See the Cipher suites section below. |
allowRedirects |
bool |
Allow following HTTP redirects. Defaults to false. |
Configuring TLS¶
TLS ensures that the connection between ContainerSSH and the configuration server cannot be intercepted using a Man-in-the-Mittle attack. We recommend checking the Mozilla Wiki for information about which configuration can be considered secure.
TLS version¶
The minimum supported TLS version can be configured using the tlsVersion
option. It defaults to 1.3
and also supports 1.2
. Versions lower than 1.2
are not supported. Server certificates must use Subject Alternative Names (SAN's) for proper server verification.
Elliptic curve algorithms¶
The elliptic curve algorithms can be specified in the curve
option. We support and default to the following options:
x25519
secp256r1
secp384r1
secp521r1
Cipher suites¶
The following cipher suites are supported in ContainerSSH:
Suite | Default |
---|---|
TLS_AES_128_GCM_SHA256 | |
TLS_AES_256_GCM_SHA384 | |
TLS_CHACHA20_POLY1305_SHA256 | |
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 | |
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 | |
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 | |
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 | |
TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305 | |
TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305 |
Tip
Cipher suites can be provided as a list or as a colon (:
) separated string.
Client authentication¶
In order to safeguard secrets in the configuration the configuration server should be protected by either firewalling it appropriately, but it is better to use x509 client certificates as a means of authentication.
We recommend using cfssl for creating the CA infrastructure. First we need to create the CA certificates:
cat > ca-config.json <<EOF
{
"signing": {
"default": {
"expiry": "8760h"
},
"profiles": {
"containerssh": {
"usages": ["signing", "key encipherment", "server auth", "client auth"],
"expiry": "8760h"
}
}
}
}
EOF
cat > ca-csr.json <<EOF
{
"CN": "ContainerSSH CA",
"key": {
"algo": "rsa",
"size": 4096
},
"names": [
{
"C": "Your Country Code",
"L": "Your Locality",
"O": "Your Company",
"OU": "",
"ST": "Your State"
}
]
}
EOF
cfssl gencert -initca ca-csr.json | cfssljson -bare ca
The resulting ca.pem
should be added as a client CA in your configuration server. This CA does not have to be the same used to sign the server certificate.
Then we can create the client certificate:
cat > containerssh-csr.json <<EOF
{
"CN": "ContainerSSH",
"key": {
"algo": "rsa",
"size": 2048
},
"names": [
{
"C": "Your Country Code",
"L": "Your Locality",
"O": "Your Company",
"OU": "",
"ST": "Your State"
}
]
}
EOF
cfssl gencert \
-ca=ca.pem \
-ca-key=ca-key.pem \
-config=ca-config.json \
-profile=containerssh \
containerssh-csr.json | cfssljson -bare containerssh
The resulting containerssh.pem
and containerssh-key.pem
should then be added to the configuration as client credentials:
auth:
cert: /path/to/containerssh.pem
key: /path/to/containerssh-key.pem
The authentication webhook¶
The authentication webhook is a simple JSON POST
request to which the server must respond with a JSON response.
Note
We have an OpenAPI document available for the authentication and configuration server. You can check the exact values available there, or use the OpenAPI document to generate parts of your server code.
Tip
We provide a Go library to create an authentication server.
Warning
A warning about rate limiting: if the authentication server desires to do rate limiting for connecting users it should take into account that a user is allowed to try multiple authentication attempts (currently hard-coded to 6 per connection) before they are disconnected. Some of the authentication attempts (e.g. public keys) happen automatically on the client side without the user having any influence on them. Furthermore, ContainerSSH retries failed HTTP calls. To be effective the authentication server should count the unique connection identifiers seen in the connectionId
field and implement a lock-out based on these.
Password authentication¶
On password authentication the authentication server will receive the following request to the /password
endpoint:
{
"username": "username",
"remoteAddress": "127.0.0.1:1234",
"connectionId": "An opaque ID for the SSH connection",
"passwordBase64": "Base 64-encoded password"
}
Public key authentication¶
On public key authentication the authentication server will receive the following request to the /pubkey
endpoint:
{
"username": "username",
"remoteAddress": "127.0.0.1:1234",
"connectionId": "An opaque ID for the SSH connection",
"publicKey": "ssh-rsa ..."
}
The public key will be sent in the authorized key format.
Response¶
Both endpoints need to respond with an application/json
response of the following content:
{
"success": true
}
Tip
We provide a Go library to implement a authentication server.