2018-05-29 21:07:40 +00:00
|
|
|
---
|
2020-09-01 15:14:13 +00:00
|
|
|
layout: commands
|
2020-04-07 18:55:19 +00:00
|
|
|
page_title: 'Commands: Intention Match'
|
2020-04-13 18:40:26 +00:00
|
|
|
sidebar_title: match
|
2018-05-29 21:07:40 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul Intention Match
|
|
|
|
|
|
|
|
Command: `consul intention match`
|
|
|
|
|
|
|
|
The `intention match` command shows the list of intentions that match
|
|
|
|
a given source or destination. The list of intentions is listed in evaluation
|
|
|
|
order: the first intention that matches a request would be evaluated.
|
|
|
|
|
2020-10-14 15:23:05 +00:00
|
|
|
The [check](/commands/intention/check) command can be used to
|
|
|
|
check whether an L4 connection would be authorized between any two services.
|
2018-05-29 21:07:40 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul intention match [options] SRC_OR_DST`
|
|
|
|
|
2020-10-14 15:23:05 +00:00
|
|
|
`SRC` and `DST` can both take [several forms](/commands/intention#source-and-destination-naming).
|
2020-06-26 21:59:15 +00:00
|
|
|
|
2018-05-29 21:07:40 +00:00
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_client.mdx'
|
2018-05-29 21:07:40 +00:00
|
|
|
|
2020-06-26 21:59:15 +00:00
|
|
|
#### Enterprise Options
|
|
|
|
|
|
|
|
@include 'http_api_namespace_options.mdx'
|
|
|
|
|
2018-05-29 21:07:40 +00:00
|
|
|
#### Intention Match Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-destination` - Match by destination.
|
2018-05-29 21:07:40 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
- `-source` - Match by source.
|
2018-05-29 21:07:40 +00:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2018-05-29 21:07:40 +00:00
|
|
|
$ consul intention match -source web
|
|
|
|
web => db (deny)
|
2020-10-14 15:23:05 +00:00
|
|
|
web => api (2 permissions)
|
2018-05-29 21:07:40 +00:00
|
|
|
web => * (allow)
|
|
|
|
```
|