> For the complete documentation index, see [llms.txt](https://metalbear.com/mirrord/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://metalbear.com/mirrord/docs/using-mirrord/incoming-traffic.md).

# Incoming Traffic

mirrord lets your local process receive network traffic that would normally go to a pod in the cluster. There are two modes:

### Mirroring (default)

In the default configuration, mirrord **mirrors** incoming TCP traffic - your local process receives a copy of the traffic while the remote pod continues to handle it normally. Responses from your local process are dropped. This is a safe, read-only way to observe how your code handles real requests.

### Stealing

In **steal** mode, mirrord intercepts incoming traffic and redirects it to your local process instead of the remote pod. Your local process becomes the one responding to real requests. This is useful when you need to test how your code handles and responds to live traffic.

Steal mode can be configured in your mirrord config:

```json
{
  "feature": {
    "network": {
      "incoming": "steal"
    }
  }
}
```

### What's in this section

* [**Filter Incoming Traffic**](/mirrord/docs/using-mirrord/incoming-traffic/filter-incoming-traffic.md) - Steal only a subset of traffic using HTTP header, W3C `baggage`/`tracestate`, path, or method filters
  * [Filtering by JSON Body](/mirrord/docs/using-mirrord/incoming-traffic/filter-incoming-traffic/filtering-by-json-body.md) - Filter based on request body content
  * [Debug from Browser](/mirrord/docs/using-mirrord/incoming-traffic/filter-incoming-traffic/debug-from-browser.md) - Use the Chrome extension to route browser traffic to your local process
* [**Steal HTTPS Requests**](/mirrord/docs/using-mirrord/incoming-traffic/steal-https.md) **\[Teams]** - Decrypt and steal HTTPS traffic using TLS certificates
* [**Inspect Live Traffic**](/mirrord/docs/using-mirrord/incoming-traffic/inspect-live-traffic.md) - Monitor incoming traffic without running a local process


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://metalbear.com/mirrord/docs/using-mirrord/incoming-traffic.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
