---
title: "Privacy and network controls"
description: "Understand the local viewer, inspect telemetry before it is sent, and explicitly opt out when needed."
---

> Documentation Index
> Fetch the complete documentation index at: https://docs.harden.run/llms.txt
> Use this file to discover all available pages before exploring further.

# Privacy and network controls

The public AIF documentation states that telemetry excludes code, commands, file paths, prompts, and values where a secret could ride.

## Local dashboard

```sh title="Terminal"
aif show
```

The dashboard runs on the loopback address `127.0.0.1:47391`.

## Inspect telemetry first

```sh title="Terminal"
aif telemetry show
```

Print the anonymous operational payload before it is sent.

## Opt out explicitly

```sh title="Terminal"
AIF_NO_TELEMETRY=1
```

Set this environment variable before running AIF when you do not want telemetry.

For the complete data handling, network, update, and known-limit material, read [AIF trust documentation](https://harden.run/trust/aif).

Source: https://docs.harden.run/operations/privacy/index.mdx
