Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion src/content/docs/aegis/about/ips-allocation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ head:

---

import { Render } from "~/components";

Cloudflare Aegis supports both IPv4 and IPv6 addresses.

IPv6 address ranges are deployed globally, meaning your Aegis IPv6 addresses can be used for connections from Cloudflare to your origin servers across all Cloudflare data centers.
Expand All @@ -23,7 +25,7 @@ Refer to [connection forwarding](/aegis/about/connection-forwarding/) to underst

## Connections to your origin

Each Aegis IP can support 40,000 concurrent connections per origin IP. For example, if you have one Aegis IP and two origins (A and B), this single Aegis IP can support 40,000 concurrent connections to origin A, while simultaneously supporting 40,000 concurrent connections to origin B.
<Render file="concurrent-connections-explainer" />

[GraphQL Analytics API](/aegis/analytics/) allows you to get visibility over Aegis IP utilization.

Expand Down
6 changes: 4 additions & 2 deletions src/content/docs/aegis/analytics.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ sidebar:
order: 7
---

import { Type } from "~/components";
import { Type, Render } from "~/components";

Use the [GraphQL API](/analytics/graphql-api/) to get aggregate data and monitor your Aegis IPs capacity. As explained in [IPs allocation](/aegis/about/ips-allocation/), each Aegis IP can support 40,000 concurrent connections per origin IP.
Use the [GraphQL API](/analytics/graphql-api/) to get aggregate data and monitor your Aegis IPs capacity.

<Render file="concurrent-connections-explainer" />

Refer to the GraphQL Analytics API documentation to [get started](/analytics/graphql-api/getting-started/). The specific Aegis schema is called `aegisIpUtilizationAdaptiveGroups`.

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/aegis/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sidebar:

import { APIRequest } from "~/components";

You can control Aegis enablement on your zones via API. If you are not familiar with how Cloudflare API works, refer to [Fundamentals](/fundamentals/api/).
You can control Aegis enablement on your zones [via API](/api/resources/zones/subresources/settings/methods/edit/). If you are not familiar with how Cloudflare API works, refer to [Fundamentals](/fundamentals/api/).

:::caution[Availability]
Cloudflare Aegis is available in early access to Enterprise customers. Contact your account team to request access.
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
{}
---

Each Aegis IP can support 40,000 concurrent connections per origin IP port. For example, if you have one Aegis IP and two origins (A and B), this single Aegis IP can support 40,000 concurrent connections to origin A, while simultaneously supporting 40,000 concurrent connections to origin B.
Loading