---
title: "IP Address Filtering"
description: "IP Address Filtering — reference document from Claude Code knowledge pack."
type: skill
canonical_url: https://claudary.paisolsolutions.com/skills/ip-address
source: "Claudary"
difficulty: intermediate
author: "Claude Code Knowledge Pack"
date: 2026-07-10T11:30:19.177Z
license: CC-BY-4.0
attribution: "IP Address Filtering — Claudary (https://claudary.paisolsolutions.com/skills/ip-address)"
---

# IP Address Filtering
IP Address Filtering — reference document from Claude Code knowledge pack.

## Overview

# IP Address Filtering

:::info

You need a LiteLLM License to unlock this feature. [Grab time](https://enterprise.litellm.ai/demo), to get one today!

:::

Restrict which IP's can call the proxy endpoints.

```yaml
general_settings:
  allowed_ips: ["192.168.1.1"]
```

**Expected Response** (if IP not listed)

```bash
{
    "error": {
        "message": "Access forbidden: IP address not allowed.",
        "type": "auth_error",
        "param": "None",
        "code": 403
    }
}
```

---

Source: [Claudary](https://claudary.paisolsolutions.com/skills/ip-address) · https://claudary.paisolsolutions.com
