Authentication Reference
The most common scenario is to require authentication and to not allow access for any unauthenticated request. To achieve this, any of the authentication plugins can be used. The generic scheme/flow of those plugins works as follows:
- Apply an auth plugin to a Service, or globally (you cannot apply one on consumers)
- Create a entity
- Provide the consumer with authentication credentials for the specific authentication method
- Now whenever a request comes in, Kong will check the provided credentials (depends on the auth type) and it will either block the request if it cannot validate, or add consumer and credential details in the headers and forward the request.
The generic flow above does not always apply, for example when using external authentication like LDAP, then there is no consumer to be identified, and only the credentials will be added in the forwarded headers.
The authentication method specific elements and examples can be found in each .
The easiest way to think about consumers is to map them one-on-one to users. Yet, to Kong this does not matter. The core principle for consumers is that you can attach plugins to them, and hence customize request behavior. So you might have mobile apps, and define one consumer for each app, or version of it. Or have a consumer per platform, e.g. an android consumer, an iOS consumer, etc.
It is an opaque concept to Kong and hence they are called “consumers” and not “users”.
Kong has the ability to configure a given Service to allow both authenticated and anonymous access. You might use this configuration to grant access to anonymous users with a low rate limit, and grant access to authenticated users with a higher rate limit.
To configure a Service like this, you first apply your selected authentication plugin, then create a new consumer to represent anonymous users, then configure your authentication plugin to allow anonymous access. Here is an example, which assumes you have already configured a Service named example-service
and the corresponding Route:
Create an example Service and a Route
Issue the following cURL request to create
example-service
pointing tomockbin.org
, which will echo the request:Add a Route to the Service:
curl -i -X POST \
--url http://localhost:8001/services/example-service/routes \
The url
http://localhost:8000/auth-sample
will now echo whatever is being requested.-
Issue the following cURL request to add a plugin to a Service:
curl -i -X POST \
--url http://localhost:8001/services/example-service/plugins/ \
--data 'name=key-auth'
Be sure to note the created Plugin
id
- you’ll need it in step 5. Verify that the key-auth plugin is properly configured
Issue the following cURL request to verify that the key-auth plugin was properly configured on the Service:
Since you did not specify the required
apikey
header or parameter, and you have not yet enabled anonymous access, the response should be403 Forbidden
:HTTP/1.1 403 Forbidden
...
{
"message": "No API key found in headers or querystring"
}
Enable anonymous access
You’ll now re-configure the key-auth plugin to permit anonymous access by issuing the following request (replace the sample UUIDs below by the
id
values from step 2 and 4):curl -i -X PATCH \
--url http://localhost:8001/plugins/<your-plugin-id> \
--data "config.anonymous=<your-consumer-id>"
Check anonymous access
Confirm that your Service now permits anonymous access by issuing the following request:
curl -i -X GET \
--url http://localhost:8000/auth-sample
This is the same request you made in step #3; however, this time the request should succeed because you enabled anonymous access in step #5.
The response (which is the request as Mockbin received it) should have these elements:
It shows the request was successful, but anonymous.
Kong supports multiple authentication plugins for a given Service, allowing different clients to use different authentication methods to access a given Service or Route.
The behaviour of the auth plugins can be set to do either a logical AND
, or a logical OR
when evaluating multiple authentication credentials. The key to the behaviour is the config.anonymous
property.
config.anonymous
not set
If this property is not set (empty), then the auth plugins will always perform authentication and return a40x
response if not validated. This results in a logicalAND
when multiple auth plugins are being invoked.
NOTE 1: Either all or none of the auth plugins must be configured for anonymous access. The behaviour is undefined if they are mixed.
NOTE 2: When using the AND
method, the last plugin executed will be the one setting the credentials passed to the upstream service. With the OR
method, it will be the first plugin that successfully authenticates the consumer, or the last plugin that will set its configured anonymous consumer.
NOTE 3: When using the OAuth2 plugin in an AND
fashion, then also the OAuth2 endpoints for requesting tokens and so forth will require authentication by the other configured auth plugins.
When multiple authentication plugins are enabled in an OR fashion on a given Service, and it is desired that anonymous access be forbidden, then the request-termination plugin should be configured on the anonymous consumer. Failure to do so will allow unauthorized requests.