Skip to content
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
41830a4
Cloud Client IP Restrictions Docs
logand22 Dec 23, 2025
02512bf
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
f002880
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
d65a351
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
1bb7d09
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
6f3db51
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
aab14ae
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
4be7f67
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
7f97d9d
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
8096067
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
e0f0cd4
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
615d73e
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 26, 2025
e1e31b8
client ip restrictions
logand22 Dec 26, 2025
57eeb5a
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 29, 2025
0f3cd9e
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 29, 2025
5132744
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 29, 2025
177108a
Address feedback
logand22 Dec 29, 2025
8fd7c3e
remove image
logand22 Dec 29, 2025
a4bd2a0
remove link
logand22 Dec 30, 2025
21f043e
Update docs/pages/cloud-client-ip-restrictions.mdx
logand22 Dec 30, 2025
097d9fb
update location
logand22 Dec 31, 2025
a4e7d61
Updates
logand22 Dec 31, 2025
3c0a961
add extra explicitly cloud only callout
logand22 Dec 31, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
---
title: Cloud Client IP Restrictions
description: Restrict access to your cloud cluster with a configurable allowlist.
tags:
- faq
- platform-wide
---

**Client IP Restrictions** restrict access to your Teleport Cloud cluster, allowing traffic only from the specified network ranges (CIDR blocks).

## How to enable
This feature is only available to Teleport Cloud customers and is opt-in only. Please contact your account executive or [customer support](https://goteleport.com/support/) to enable client IP restrictions for your tenant.

## Adding CIDR blocks to the IP Allowlist

Log in to your Teleport Cloud account. Open the user dropdown menu on the top right of the navigation bar, and select "Help & Support," then scroll down until you see the IP Allowlist section.
If you do not see the IP Allowlist section, then it has yet to be enabled for your account. Please refer to [how to enable](#how-to-enable).

Once you add a CIDR, it will take effect in 5-20 minutes and will terminate existing connections. Changes to the allowlist are recorded in the audit log.

Managing allow rules is governed by Teleport’s existing RBAC system.
The preset `editor` role has permissions to read and write the allowlist.

You can also create custom roles granting access via the `client_ip_restriction`
resource.

```yaml
allow:
- resources: [ client_ip_restriction ]
verbs:
# list is required to view the allowlist
- list
# create and update are required to modify the allowlist
- create
- update
```

## Limitations

### Misconfiguration
Misconfiguration can block all access to your cluster. Make sure to include your current network before saving changes.

### Third-party service ranges
Teleport does not auto-add third-party service ranges. You must add allow rules for any third party service that needs to access your Teleport cluster (CI/CD systems, Identity Providers, etc.)

### Network security
The allowlist applies to Teleport Cloud access; it does not replace your organization’s network/firewall policies.

### Sync time
The Client IP Restriction allowlist may take up to 20 minutes before it is fully synced.

## FAQ

### How many CIDRs can you configure?

By default, up to 256 CIDR blocks can be configured. Please contact your account executive or customer support to increase the limit.

### Do you support a denylist?

Teleport Cloud client IP restrictions do not currently support a denylist.
Loading