Skip to content

Commit 65986e9

Browse files
corrected problems for breakout
1 parent e5ccb8d commit 65986e9

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

src/content/docs/magic-wan/configuration/connector/network-options/application-based-policies/breakout-traffic.mdx

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,11 @@ description: Breakout traffic allows you to define which applications should
66
bypass Cloudflare's security filtering.
77
---
88

9-
import { APIRequest, Render, TabItem, Tabs } from "~/components";
10-
11-
12-
13-
14-
15-
<Render file="connector/account-id-api-key" />
16-
17-
18-
19-
20-
21-
9+
import { Render } from "~/components";
10+
11+
<Render file="connector/app-aware-policies/breakout-prioritized" params={{
12+
magicWord: "breakout",
13+
featureName: "Breakout traffic",
14+
whatHappensApp: "will now go directly to the Internet and bypass Cloudflare's filtering",
15+
jsonType: "breakout"
16+
}} />

src/content/docs/magic-wan/configuration/connector/network-options/application-based-policies/prioritized-traffic.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,8 @@ description: Prioritized traffic allows you to define which applications are
66
processed first by Magic WAN Connector.
77
---
88

9-
import { APIRequest, Render, TabItem, Tabs } from "~/components";
9+
import { Render } from "~/components";
1010

11+
<Render file="connector/network-options/application-based-policies/breakout-prioritized" params={{
12+
magicWord:""
13+
}} />

src/content/partials/magic-wan/connector/app-aware-policies/breakout-prioritized.mdx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ import { APIRequest, Aside, Markdown, Render, TabItem, Tabs } from "~/components
2828
{ props.magicWord === "breakout" && (
2929
<>
3030
<pre class="mermaid">
31+
{`
3132
flowchart LR
3233
accTitle: In this example, the applications go directly to the Internet, skipping Cloudflare's security. filtering
33-
a(Magic WAN Connector) --{`>`} b(Cloudflare) --{`>`}|Filtered traffic|c(Internet)
34+
a(Magic WAN Connector) --> b(Cloudflare) -->|Filtered traffic|c(Internet)
3435
35-
a-- Breakout traffic ---d(Application1) & e(Application2) --{`>`} c
36+
a-- Breakout traffic ---d(Application1) & e(Application2) --> c
3637
3738
classDef orange fill:#f48120,color: black
3839
class a,b orange
40+
`}
3941
</pre>
4042
<p><em>In the graph above, Applications 1 and 2 are configured to bypass Cloudflare's security filtering, and go straight to the Internet</em></p>
4143
</>
@@ -75,7 +77,7 @@ The traffic for the application you chose {props.whatHappensApp}.
7577
method="POST"
7678
json={{
7779
"name": "<APP_NAME>",
78-
"type": "props.jsonType"
80+
"type": props.jsonType
7981
}}
8082
/>
8183

0 commit comments

Comments
 (0)