Skip to content

Commit 5e372ee

Browse files
added rfc ips
1 parent 44f31cc commit 5e372ee

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

src/content/docs/magic-wan/configuration/manually/how-to/configure-routes.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ import { Render } from "~/components"
2222
chooseWeights: "/magic-wan/reference/traffic-steering/#set-priority-and-weights-for-static-routes",
2323
publicAsnMT: " ",
2424
productGatewayOrEgress: "Magic WAN with Gateway",
25-
dashButtonPath: "/?to=/:account/magic-wan/configuration"
25+
dashButtonPath: "/?to=/:account/magic-wan/configuration",
26+
cfTunnelURL: "/magic-wan/zero-trust/cloudflare-tunnel/",
2627
}}
2728
/>
2829

src/content/partials/networking-services/routing/configure-routes.mdx

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ params:
99
- chooseWeights
1010
- productGatewayOrEgress
1111
- dashButtonPath
12+
- cfTunnelURL?
1213
---
1314

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

3031
## Configure static routes
3132

33+
{ props.magicWord === "Magic WAN" && (
34+
<>
35+
<p>The following IPv4 address ranges are allowed in the Magic Routing table:</p>
36+
<Markdown
37+
text={`
38+
- [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\`.
39+
40+
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>.
41+
42+
For prefixes outside RFC 1918 contact your Cloudflare customer service manager.
43+
`}
44+
inline={false}
45+
/>
46+
</>
47+
)
48+
}
49+
3250
### Create a static route
3351

3452
<Tabs syncKey="dashPlusAPI"> <TabItem label="Dashboard">

0 commit comments

Comments
 (0)