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 @@ -12,7 +12,7 @@ import { Render } from "~/components";
product="networking-services"
params={{
magicWord: "breakout",
productName: "Appliances",
productName: "Appliance",
featureName: "Breakout traffic",
trafficSteeringURL: "/cloudflare-one/networks/connectors/wan-tunnels/reference/traffic-steering/",
whatHappensApp: "will now go directly to the Internet and bypass Cloudflare's filtering",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ You need to configure {props.featureName} applications for each of your existing
<Markdown
text={`
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login), and select your account.
2. Select **Magic WAN** > **Connector on-ramps (beta)**.
2. Select **Networking** > **Magic WAN** > **Connector on-ramps (beta)**.
`}
inline={false}
/>
Expand All @@ -119,17 +119,45 @@ You need to configure {props.featureName} applications for each of your existing
}
<Markdown
text={`
3. Select the Connector you want to configure > **Edit**.
3. Select the ${props.productName} you want to configure > **Edit**.
4. Select **Traffic Steering**.
5. In **${props.featureName}**, select **Add**.
5. In **${props.featureName}**, select **Assign application traffic**.
6. Select one or more applications that should bypass Cloudflare filtering from the list. You can also use the search box.
7. Select **Save**.

The traffic for the application you chose ${props.whatHappensApp}.
`}
inline={false}
/>

{ props.magicWord === "breakout" && (
<Markdown
text={`
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.
`}
inline={false}
/>
)
}

{ props.magicWord === "breakout" ? (
<Markdown
text={`
8. Select **Save**.

The traffic for the application you chose ${props.whatHappensApp}.
`}
inline={false}
/>
) : (
<Markdown
text={`
7. Select **Save**.

The traffic for the application you chose ${props.whatHappensApp}.
`}
inline={false}
/>
)
}

</TabItem> <TabItem label="API">

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

</TabItem> </Tabs>

{ props.magicWord === "breakout" && (
<>
<AnchorHeading title="Designate WAN ports for breakout apps" depth={2} />

<Markdown
text={`
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.

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.

To pin applications to a WAN port:
`}
inline={false}
/>

{ props.mwanName === "WAN Tunnels" ? (
<>
<Markdown
text={`
1. Log in to the <a href="https://one.dash.cloudflare.com/">Cloudflare One dashboard</a>, and go to **Networks**.
2. Go to **Connectors** > **Appliances** > **Profiles**.
3. Select the Appliance you want to configure> **Edit**.
`}
inline={false}
/>
</>
) : (
<>
<Markdown
text={`
1. Log in to the [Cloudflare dashboard](https://dash.cloudflare.com/login), and select your account.
2. Select **Networking** > **Magic WAN** > **Connector on-ramps (beta)**.
3. Select your Connector > **Edit**.
`}
inline={false}
/>
</>
)
}
<Markdown
text={`
4. In **Traffic steering** > **Breakout Traffic** find the application you want to pin to a WAN port.
5. Select the three dots next to it > **Edit application traffic**.
6. From the **Preferred breakout port** dropdown, select the WAN port you want to assign to the applications.
7. Select **Save**.
`}
inline={false}
/>
</>
)
}

{ props.magicWord === "breakout" && (
<>
<AnchorHeading title="WARP traffic" depth={2} />
Expand All @@ -286,5 +366,4 @@ You need to delete {props.featureName} applications for each of your existing si
/>
</>
)
}

}
Loading