Skip to content

Commit c07e757

Browse files
added extra vars info for mwan
1 parent 17f1ef4 commit c07e757

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

src/content/docs/magic-transit/how-to/tunnel-health-checks.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,9 @@ import { Render } from "~/components";
1212
connectorExtraInfo: "",
1313
healthChecksUrl: "/magic-transit/reference/tunnel-health-checks/",
1414
addTunnelsPath: "/magic-transit/how-to/configure-tunnels/#add-tunnels",
15+
connectorNote: "",
16+
connectorTitle1: "",
17+
connectorTitle2: "",
18+
connectorSteps: "",
1519
}}
1620
/>

src/content/docs/magic-wan/configuration/common-settings/tunnel-health-checks.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,9 @@ import { Render } from "~/components";
1616
healthChecksUrl: "/magic-wan/reference/tunnel-health-checks/",
1717
addTunnelsPath:
1818
"/magic-wan/configuration/manually/how-to/configure-tunnels/#add-tunnels",
19+
connectorNote: "Refer to [Configure Connector](#configure-connector) to set up health checks frequency",
20+
connectorTitle1: "<h2 id='Manual configuration'>Manual configuration</h2>",
21+
connectorTitle2: "<h2 id='Configure Connector'>Configure Connector</h2>",
22+
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>Select **Tunnels** > your tunnel > **Edit**.</li><li>Change **Health check rate** to your desire rate.</li><li>Select **Update**.</li></ol>",
1923
}}
2024
/>

src/content/partials/magic-transit/tunnel-health/update-tunnel-health-checks-frequency.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ params:
44
- healthChecksUrl
55
- addTunnelsPath
66
- connectorExtraInfo
7+
- connectorNote
8+
- connectorTitle1
9+
- connectorTitle2
10+
- connectorSteps
711
---
812

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

1115
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} You can configure this frequency via the dashboard or [the API](/api/operations/magic-gre-tunnels-update-gre-tunnel) 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`.
1216

13-
Available options are `low`, `mid`, and `high`.
17+
Available options are `low`, `mid`, and `high`. <Markdown text={props.connectorNote} />
18+
19+
<Markdown text={props.connectorTitle1} />
1420

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

@@ -36,3 +42,7 @@ https://api.cloudflare.com/client/v4/accounts/{account_id}/magic/gre_tunnels/{tu
3642
```
3743

3844
</TabItem> </Tabs>
45+
46+
<Markdown text={props.connectorTitle2} />
47+
48+
<Markdown text={props.connectorSteps} />

0 commit comments

Comments
 (0)