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 @@ -22,7 +22,8 @@ import { Render } from "~/components"
chooseWeights: "/magic-wan/reference/traffic-steering/#set-priority-and-weights-for-static-routes",
publicAsnMT: " ",
productGatewayOrEgress: "Magic WAN with Gateway",
dashButtonPath: "/?to=/:account/magic-wan/configuration"
dashButtonPath: "/?to=/:account/magic-wan/configuration",
cfTunnelURL: "/magic-wan/zero-trust/cloudflare-tunnel/",
}}
/>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,14 @@ The following IPv4 address ranges are allowed in the Magic Routing table:

{ props.magicWord === "Magic WAN" && (
<>
<Markdown
text={`
- [RFC 1918](https://datatracker.ietf.org/doc/html/rfc1918) address space, specifically \`10.0.0.0/8\`, \`172.16.0.0/12\`, and \`192.168.0.0/16\`.

When using ${props.productName} and Cloudflare Tunnel together, remember to consider the IP ranges utilized in the static routes of Cloudflare Tunnel when selecting static routes for ${props.productName}. For more information, refer to <a href="${props.cfTunnelURL}">Cloudflare Tunnel</a>.

For prefixes outside RFC 1918 contact your Cloudflare customer service manager.
`}
inline={false}
/>
<Render
file="routing/magic-wan-allowed-ip-ranges"
product="networking-services"
params={{
productName: props.productName,
cfTunnelURL: props.cfTunnelURL
}}
/>
</>
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ params:
- chooseWeights
- productGatewayOrEgress
- dashButtonPath
- cfTunnelURL?
---

import { Aside, APIRequest, Markdown, Render, TabItem, Tabs, DashButton } from "~/components";
Expand All @@ -29,6 +30,21 @@ Refer to <a href={props.trafficSteeringPage}>Traffic Steering</a> for more infor

## Configure static routes

{ props.magicWord === "Magic WAN" && (
<>
<p>The following IPv4 address ranges are allowed in the Magic Routing table:</p>
<Render
file="routing/magic-wan-allowed-ip-ranges"
product="networking-services"
params={{
productName: props.productName,
cfTunnelURL: props.cfTunnelURL
}}
/>
</>
)
}

### Create a static route

<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
params:
- productName
- cfTunnelURL
---

import { Markdown } from "~/components";

<Markdown
text={`
- [RFC 1918](https://datatracker.ietf.org/doc/html/rfc1918) address space, specifically \`10.0.0.0/8\`, \`172.16.0.0/12\`, and \`192.168.0.0/16\`.

When using ${props.productName} and Cloudflare Tunnel together, remember to consider the IP ranges utilized in the static routes of Cloudflare Tunnel when selecting static routes for ${props.productName}. For more information, refer to <a href="${props.cfTunnelURL}">Cloudflare Tunnel</a>.

For prefixes outside RFC 1918 contact your Cloudflare customer service manager.
`}
inline={false}
/>
Loading