Skip to content

Commit 50904f5

Browse files
[MWAN/WAN Tunnels] Designate WAN port for breakout apps (cloudflare#26170)
* added content * refined var * added content * cond render breakout * cond render * anchor heading * markdown * Update src/content/partials/networking-services/mconn/network-options/app-aware-policies/breakout-prioritized.mdx Co-authored-by: Rebecca Tamachiro <62246989+RebeccaTamachiro@users.noreply.github.com> --------- Co-authored-by: Rebecca Tamachiro <62246989+RebeccaTamachiro@users.noreply.github.com>
1 parent feebeab commit 50904f5

File tree

2 files changed

+89
-10
lines changed
  • src/content
    • docs/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/network-options/application-based-policies
    • partials/networking-services/mconn/network-options/app-aware-policies

2 files changed

+89
-10
lines changed

src/content/docs/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/network-options/application-based-policies/breakout-traffic.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { Render } from "~/components";
1212
product="networking-services"
1313
params={{
1414
magicWord: "breakout",
15-
productName: "Appliances",
15+
productName: "Appliance",
1616
featureName: "Breakout traffic",
1717
trafficSteeringURL: "/cloudflare-one/networks/connectors/wan-tunnels/reference/traffic-steering/",
1818
whatHappensApp: "will now go directly to the Internet and bypass Cloudflare's filtering",

src/content/partials/networking-services/mconn/network-options/app-aware-policies/breakout-prioritized.mdx

Lines changed: 88 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ You need to configure {props.featureName} applications for each of your existing
110110
<Markdown
111111
text={`
112112
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login), and select your account.
113-
2. Select **Magic WAN** > **Connector on-ramps (beta)**.
113+
2. Select **Networking** > **Magic WAN** > **Connector on-ramps (beta)**.
114114
`}
115115
inline={false}
116116
/>
@@ -119,17 +119,45 @@ You need to configure {props.featureName} applications for each of your existing
119119
}
120120
<Markdown
121121
text={`
122-
3. Select the Connector you want to configure > **Edit**.
122+
3. Select the ${props.productName} you want to configure > **Edit**.
123123
4. Select **Traffic Steering**.
124-
5. In **${props.featureName}**, select **Add**.
124+
5. In **${props.featureName}**, select **Assign application traffic**.
125125
6. Select one or more applications that should bypass Cloudflare filtering from the list. You can also use the search box.
126-
7. Select **Save**.
127-
128-
The traffic for the application you chose ${props.whatHappensApp}.
129126
`}
130127
inline={false}
131128
/>
132129

130+
{ props.magicWord === "breakout" && (
131+
<Markdown
132+
text={`
133+
7. (Optional) You can also pin an application to a WAN port. In **Preferred breakout port**, select the WAN you want to assign your applications to. Refer to [Designate WAN ports for breakout apps](#designate-wan-ports-for-breakout-apps) for more information.
134+
`}
135+
inline={false}
136+
/>
137+
)
138+
}
139+
140+
{ props.magicWord === "breakout" ? (
141+
<Markdown
142+
text={`
143+
8. Select **Save**.
144+
145+
The traffic for the application you chose ${props.whatHappensApp}.
146+
`}
147+
inline={false}
148+
/>
149+
) : (
150+
<Markdown
151+
text={`
152+
7. Select **Save**.
153+
154+
The traffic for the application you chose ${props.whatHappensApp}.
155+
`}
156+
inline={false}
157+
/>
158+
)
159+
}
160+
133161
</TabItem> <TabItem label="API">
134162

135163
<Render file="account-id-api-key" product="networking-services" />
@@ -204,7 +232,7 @@ inline={false}
204232
<Markdown
205233
text={`
206234
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login), and select your account.
207-
2. Select **Magic WAN** > **Connector on-ramps (beta)**.
235+
2. Select **Networking** > **Magic WAN** > **Connector on-ramps (beta)**.
208236
`}
209237
inline={false}
210238
/>
@@ -272,6 +300,58 @@ You need to delete {props.featureName} applications for each of your existing si
272300

273301
</TabItem> </Tabs>
274302

303+
{ props.magicWord === "breakout" && (
304+
<>
305+
<AnchorHeading title="Designate WAN ports for breakout apps" depth={2} />
306+
307+
<Markdown
308+
text={`
309+
You can pin applications to a specific WAN port in ${props.productName} when you need control over which WAN port your applications egress from the device. In case your preferred WAN port goes down, ${props.productName} automatically fails over to a standard configured WAN port priority.
310+
311+
With this preferred breakout port, customers have direct control over their local Internet breakout traffic. You can designate a specific WAN uplink as the primary path for your critical applications configured to bypass the Cloudflare network. This provides the predictability and control needed for performance-sensitive applications, ensuring your critical traffic always takes the path you choose.
312+
313+
To pin applications to a WAN port:
314+
`}
315+
inline={false}
316+
/>
317+
318+
{ props.mwanName === "WAN Tunnels" ? (
319+
<>
320+
<Markdown
321+
text={`
322+
1. Log in to the <a href="https://one.dash.cloudflare.com/">Cloudflare One dashboard</a>, and go to **Networks**.
323+
2. Go to **Connectors** > **Appliances** > **Profiles**.
324+
3. Select the Appliance you want to configure> **Edit**.
325+
`}
326+
inline={false}
327+
/>
328+
</>
329+
) : (
330+
<>
331+
<Markdown
332+
text={`
333+
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login), and select your account.
334+
2. Select **Networking** > **Magic WAN** > **Connector on-ramps (beta)**.
335+
3. Select your Connector > **Edit**.
336+
`}
337+
inline={false}
338+
/>
339+
</>
340+
)
341+
}
342+
<Markdown
343+
text={`
344+
4. In **Traffic steering** > **Breakout Traffic** find the application you want to pin to a WAN port.
345+
5. Select the three dots next to it > **Edit application traffic**.
346+
6. From the **Preferred breakout port** dropdown, select the WAN port you want to assign to the applications.
347+
7. Select **Save**.
348+
`}
349+
inline={false}
350+
/>
351+
</>
352+
)
353+
}
354+
275355
{ props.magicWord === "breakout" && (
276356
<>
277357
<AnchorHeading title="WARP traffic" depth={2} />
@@ -286,5 +366,4 @@ You need to delete {props.featureName} applications for each of your existing si
286366
/>
287367
</>
288368
)
289-
}
290-
369+
}

0 commit comments

Comments
 (0)