Skip to content

Commit 26cbdb1

Browse files
added anchorheading h2
1 parent c07e757 commit 26cbdb1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import { Render } from "~/components";
1717
addTunnelsPath:
1818
"/magic-wan/configuration/manually/how-to/configure-tunnels/#add-tunnels",
1919
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>",
20+
connectorTitle1: "Manual configuration",
21+
connectorTitle2: "Configure Connector",
2222
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>",
2323
}}
2424
/>

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ params:
1010
- connectorSteps
1111
---
1212

13-
import { GlossaryTooltip, Markdown, TabItem, Tabs } from "~/components";
13+
import {AnchorHeading, GlossaryTooltip, Markdown, TabItem, Tabs } from "~/components";
1414

1515
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`.
1616

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

19-
<Markdown text={props.connectorTitle1} />
19+
{ props.connectorTitle1 && <AnchorHeading depth={2} title={props.connectorTitle1} /> }
2020

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

@@ -43,6 +43,6 @@ https://api.cloudflare.com/client/v4/accounts/{account_id}/magic/gre_tunnels/{tu
4343

4444
</TabItem> </Tabs>
4545

46-
<Markdown text={props.connectorTitle2} />
46+
{ props.connectorTitle2 && <AnchorHeading depth={2} title={props.connectorTitle2} /> }
4747

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

0 commit comments

Comments
 (0)