2018-05-29 14:07:40 -07:00
---
2020-09-01 10:14:13 -05:00
layout: commands
2020-04-07 14:55:19 -04:00
page_title: 'Commands: Intention Check'
2023-01-26 12:42:13 -06:00
description: >-
The `consul intention check` command tests whether a connection between two services is authorized under the current set of intentions.
2018-05-29 14:07:40 -07:00
---
# Consul Intention Check
Command: `consul intention check`
2023-01-25 10:52:43 -06:00
Corresponding HTTP API Endpoint: [\[GET\] /v1/connect/intentions/check](/consul/api-docs/connect/intentions#check-intention-result)
2022-01-10 12:40:11 -05:00
2018-05-29 14:07:40 -07:00
The `intention check` command checks whether a connection attempt between
two services would be authorized given the current set of intentions and
Consul configuration.
This command requires less ACL permissions than other intention-related
tasks because no information about the intention is revealed. Therefore,
callers only need to have `service:read` access for the destination. Richer
2023-01-25 10:52:43 -06:00
commands like [match](/consul/commands/intention/match) require full
2018-05-29 14:07:40 -07:00
intention read permissions and don't evaluate the result.
2020-10-14 10:23:05 -05:00
-> **Note:** This command will always treat intentions with `Permissions`
2020-12-08 18:24:36 -05:00
defined as _deny_ intentions during evaluation, as this endpoint is only suited
2020-10-14 10:23:05 -05:00
for networking layer 4 (e.g. TCP) integration.
2023-01-25 10:52:43 -06:00
The table below shows this command's [required ACLs](/consul/api-docs/api-structure#authentication). Configuration of
[blocking queries](/consul/api-docs/features/blocking) and [agent caching](/consul/api-docs/features/caching)
2022-01-11 09:41:54 -05:00
are not supported from commands, but may be from the corresponding HTTP endpoint.
| ACL Required |
| ----------------------------- |
2023-03-24 15:16:06 -07:00
| `intentions:read`<p> Define intention rules in the `service` policy. Refer to [ACL requirements for intentions](/consul/docs/connect/intentions/create-manage-intentions#acl-requirements) for additional information.</p> |
2022-01-11 09:41:54 -05:00
2018-05-29 14:07:40 -07:00
## Usage
Usage: `consul intention check [options] SRC DST`
2023-01-25 10:52:43 -06:00
`SRC` and `DST` can both take [several forms](/consul/commands/intention#source-and-destination-naming).
2020-06-26 16:59:15 -05:00
#### Enterprise Options
2022-07-26 23:17:11 -07:00
@include 'http_api_partition_options.mdx'
2020-06-26 16:59:15 -05:00
@include 'http_api_namespace_options.mdx'
2022-07-26 23:17:11 -07:00
#### API Options
@include 'http_api_options_client.mdx'
2021-12-14 17:55:21 -08:00
2018-05-29 14:07:40 -07:00
## Examples
2020-05-19 14:32:38 -04:00
```shell-session
2018-05-29 14:07:40 -07:00
$ consul intention check web db
Denied
$ consul intention check web billing
Allowed
```