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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pcx_content_type: how-to
title: Advertise prefixes
sidebar:
order: 3
order: 4
---

import { Details, GlossaryTooltip } from "~/components"
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/magic-transit/how-to/bgp-peering.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pcx_content_type: how-to
title: Configure BGP peering
sidebar:
order: 4
order: 3
---

import { Render } from "~/components"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
pcx_content_type: how-to
title: Configure static routes
title: Configure routes
sidebar:
order: 2
head: []
Expand All @@ -12,7 +12,7 @@ description: Magic Transit uses a static configuration to route your traffic

import { Render } from "~/components"

<Render file="static-routes/static-routes1" params={{ productName: "Magic Transit", anycastURL: "/magic-transit/reference/tunnels/", trafficSteering: "/magic-transit/reference/traffic-steering/", magicWANecmp: "" }} />
<Render file="static-routes/static-routes1" params={{ productName: "Magic Transit", BGPpath: "/magic-transit/how-to/bgp-peering/", anycastURL: "/magic-transit/reference/tunnels/", trafficSteering: "/magic-transit/reference/traffic-steering/", magicWANecmp: "" }} />

<Render file="static-routes/static-routes2-prefixes-smaller-24" />

Expand Down
2 changes: 2 additions & 0 deletions src/content/docs/magic-transit/how-to/configure-tunnels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,5 @@ import { GlossaryTooltip, Render } from "~/components";
## Next steps

Now that you have set up your tunnel endpoints, you need to configure <GlossaryTooltip term="static route" link="/magic-transit/how-to/configure-static-routes/">static routes</GlossaryTooltip> to route your traffic through Cloudflare.

If you are connecting to Cloudflare through a [Direct CNI connection](/network-interconnect/express-cni/), you can [configure BGP routing](/magic-transit/how-to/bgp-peering/) instead.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Configure static routes
title: Configure routes
pcx_content_type: how-to
sidebar:
order: 2
Expand All @@ -11,6 +11,6 @@ description: Magic WAN uses a static configuration to route your traffic through

import { Render } from "~/components"

<Render file="static-routes/static-routes1" product="magic-transit" params={{ productName: "Magic WAN", anycastURL: "/magic-wan/reference/tunnels/", trafficSteering: "/magic-wan/reference/traffic-steering/", magicWANecmp: "The maximum number of routes you can have with the same priority is 64." }} />
<Render file="static-routes/static-routes1" product="magic-transit" params={{ productName: "Magic WAN", BGPpath: "/magic-wan/configuration/manually/how-to/bgp-peering/", anycastURL: "/magic-wan/reference/tunnels/", trafficSteering: "/magic-wan/reference/traffic-steering/", magicWANecmp: "The maximum number of routes you can have with the same priority is 64." }} />

<Render file="static-routes/static-routes3" product="magic-transit" params={{ createPath: "Magic WAN > Configuration", tunnelEndpoints: "/magic-wan/configuration/manually/how-to/configure-tunnels/", ipRanges: "<br /> When using Magic WAN and Cloudflare Tunnel together, remember to consider the IP ranges utilized in the static routes of Cloudflare Tunnel when selecting static routes for Magic WAN. For more information, refer to [Cloudflare Tunnel](/magic-wan/zero-trust/cloudflare-tunnel/).<br>" }} />
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,5 @@ import { GlossaryTooltip, Render } from "~/components";
## Next steps

Now that you have set up your tunnel endpoints, you need to configure <GlossaryTooltip term="static route" link="/magic-wan/configuration/manually/how-to/configure-static-routes/">static routes</GlossaryTooltip> to route your traffic through Cloudflare.

If you are connecting to Cloudflare through a [Direct CNI connection](/network-interconnect/express-cni/), you can [configure BGP routing](/magic-wan/configuration/manually/how-to/bgp-peering/) instead.
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
---
params:
- productName
- BGPpath
- anycastURL
- trafficSteering
- magicWANecmp
---

import { GlossaryTooltip, Markdown } from "~/components";

:::note
If you are connecting to Cloudflare via a [Direct CNI connection](/network-interconnect/express-cni/), refer to <a href={props.BGPpath}>BGP peering</a> to learn how to take advantage of this routing protocol. If not, continue reading.
:::

{props.productName} uses a static configuration to route your traffic through <GlossaryTooltip term="anycast" link={props.anycastURL}>anycast tunnels</GlossaryTooltip> from Cloudflare's global network to your locations.

You must assign a route priority to each tunnel-subnet pair in your configuration, as follows:
Expand Down
Loading