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
3 changes: 2 additions & 1 deletion public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -793,13 +793,14 @@
/magic-wan/get-started/configure-static-routes/ /magic-wan/configuration/manually/how-to/configure-static-routes/ 301
/magic-wan/configuration/connector/configure-connector/ /magic-wan/configuration/connector/configure-hardware-connector/ 301
/magic-wan/configuration/connector/device-information/ /magic-wan/configuration/connector/reference/ 301
/magic-wan/configuration/manually/how-to/check-tunnel-health-dashboard/ /magic-wan/configuration/common-settings/check-tunnel-health-dashboard/ 301
/magic-wan/configuration/manually/how-to/check-tunnel-health-dashboard/ /magic-wan/configuration/common-settings/tunnel-health-checks/ 301
/magic-wan/configuration/manually/how-to/configure-magic-tunnel-alerts/ /magic-wan/configuration/common-settings/configure-magic-tunnel-alerts/ 301
/magic-wan/configuration/manually/how-to/enable-magic-roles/ /magic-wan/configuration/common-settings/enable-magic-roles/ 301
/magic-wan/configuration/common-settings/tunnel-health-checks/ /magic-wan/configuration/manually/how-to/tunnel-health-checks/ 301
/magic-wan/configuration/manually/how-to/view-analytics/ /magic-wan/analytics/ 301
/magic-wan/configuration/common-settings/view-analytics/ /magic-wan/analytics/ 301
/magic-wan/prerequisites/ /magic-wan/get-started/ 301
/magic-wan/configuration/common-settings/check-tunnel-health-dashboard/ /magic-wan/configuration/common-settings/tunnel-health-checks/ 301

# notifications
/fundamentals/notifications/ /notifications/ 301
Expand Down
4 changes: 4 additions & 0 deletions src/content/changelogs/magic-wan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ productLink: "/magic-wan/"
productArea: Cloudflare One
productAreaLink: /cloudflare-one/changelog/
entries:
- publish_date: "2024-12-17"
title: Magic WAN Connector configurable health checks
description: |-
Health check rate on Magic WAN Connector IPsec tunnels are now configurable.
- publish_date: "2024-12-17"
title: BGP support for Cloudflare Network Interconnect (CNI)
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ import { Render } from "~/components";
<Render
file="tunnel-health/update-tunnel-health-checks-frequency"
params={{
productName: "Magic Transit.",
connectorExtraInfo: "",
healthChecksUrl: "/magic-transit/reference/tunnel-health-checks/",
addTunnelsPath: "/magic-transit/how-to/configure-tunnels/#add-tunnels",
connectorNote: "",
connectorTitle1: "",
connectorTitle2: "",
connectorSteps: "",
}}
/>
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
pcx_content_type: how-to
title: Check tunnel health in the dashboard
sidebar:
order: 2
---

import { Render } from "~/components";
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
pcx_content_type: how-to
title: Update tunnel health checks frequency
sidebar:
order: 3
---

import { Render } from "~/components";

<Render
file="tunnel-health/update-tunnel-health-checks-frequency"
product="magic-transit"
params={{
productName: "Magic WAN",
connectorExtraInfo: "For Magic WAN Connector, health checks are sent to IPsec tunnel endpoints.",
healthChecksUrl: "/magic-wan/reference/tunnel-health-checks/",
addTunnelsPath:
"/magic-wan/configuration/manually/how-to/configure-tunnels/#add-tunnels",
connectorNote: "<br /> <br /> To configure health checks frequency in Magic WAN Connector, refer to [Configure Connector](#configure-connector).",
connectorTitle1: "Manual configuration",
connectorTitle2: "Configure Connector",
connectorSteps: "<ol><li>Log in to the <a href='https://dash.cloudflare.com/'>Cloudflare dashboard</a> and select your account.</li><li>Go to **Magic WAN** > **Sites**.</li><li>Select your site > **Edit**.</li><li>In **Network** > **WAN configuration** > select your WAN > **Edit**.</li><li>Change the **Health check rate** to your desire rate.</li><li>Select **Save**.</li></ol>",
}}
/>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
---
params:
- productName
- healthChecksUrl
- addTunnelsPath
- connectorExtraInfo
- connectorNote
- connectorTitle1
- connectorTitle2
- connectorSteps
---

import { GlossaryTooltip, Markdown, TabItem, Tabs } from "~/components";
import {AnchorHeading, GlossaryTooltip, Markdown, TabItem, Tabs } from "~/components";

By default, Cloudflare servers send <GlossaryTooltip term="tunnel health-check" link={props.healthChecksUrl}>health checks</GlossaryTooltip> to each <GlossaryTooltip term="GRE tunnel">GRE</GlossaryTooltip>, CNI, or <GlossaryTooltip term="IPsec tunnel">IPsec</GlossaryTooltip> tunnel endpoint you configure to receive traffic from Magic Transit and Magic WAN. You can configure this frequency via the dashboard or [the API](/api/resources/magic_transit/subresources/gre_tunnels/methods/update/) to suit your use case. For example, if you are connecting a lower-traffic site for which you do not need immediate failover and would rather receive a lower volume of health check traffic, you should set the frequency to `low`. On the other hand, if you are connecting a site that is extremely sensitive to any issues, and you want a more proactive failover at the earliest sign of a potential problem, you should set this to `high`.
By default, Cloudflare servers send <GlossaryTooltip term="tunnel health-check" link={props.healthChecksUrl}>health checks</GlossaryTooltip> to each <GlossaryTooltip term="GRE tunnel">GRE</GlossaryTooltip>, CNI, or <GlossaryTooltip term="IPsec tunnel">IPsec</GlossaryTooltip> tunnel endpoint you configure to receive traffic from {props.productName}. {props.connectorExtraInfo}

Available options are `low`, `mid`, and `high`.
You can configure the health check frequency via the dashboard or [the API](/api/resources/magic_transit/subresources/gre_tunnels/methods/update/) to suit your use case. For example, if you are connecting a lower-traffic site for which you do not need immediate failover and would rather receive a lower volume of health check traffic, you should set the frequency to `low`. On the other hand, if you are connecting a site that is extremely sensitive to any issues, and you want a more proactive failover at the earliest sign of a potential problem, you should set this to `high`.

Available options are `low`, `mid`, and `high`. <Markdown text={props.connectorNote} />

{ props.connectorTitle1 && <AnchorHeading depth={2} title={props.connectorTitle1} /> }

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

Expand All @@ -34,3 +44,7 @@ https://api.cloudflare.com/client/v4/accounts/{account_id}/magic/gre_tunnels/{tu
```

</TabItem> </Tabs>

{ props.connectorTitle2 && <AnchorHeading depth={2} title={props.connectorTitle2} /> }

<Markdown text={props.connectorSteps} />
Loading