Skip to content

Commit b20d43d

Browse files
vars refine
1 parent 0dc92a9 commit b20d43d

File tree

6 files changed

+20
-17
lines changed

6 files changed

+20
-17
lines changed

src/content/docs/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/configure-hardware-connector/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { Render } from "~/components";
1414
magicWord: "hardware",
1515
productName: "Magic WAN Connector",
1616
maintenanceURL: "/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/maintenance/",
17-
productOriginalName: "WAN Tunnels",
17+
dashName: "WAN Tunnels",
1818
mwanName: "Magic WAN",
1919
sfpURL: "/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/configure-hardware-connector/sfp-port-information/",
2020
wan: "refers to the physical Connector Ethernet port that you are using for your WAN. The ports are labeled `GE1`, `GE2`, `GE3`, `GE4`, `GE5`, and `GE6`. Choose the number corresponding to the port that you are using in Connector. <br/> If you need a throughput higher than 1 Gbps, you can use one of the SFP+ ports. Refer to [SFP+ port information](/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/configure-hardware-connector/sfp-port-information/) for more information on the hardware supported.",

src/content/docs/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/configure-virtual-connector.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Render } from "~/components";
1515
productName: "Magic WAN Connector",
1616
productNameVirtual: "Virtual Connector",
1717
maintenanceURL: "/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/maintenance/",
18-
productOriginalName: "WAN Tunnels",
18+
dashName: "WAN Tunnels",
1919
mwanName: "Magic WAN",
2020
wan: "needs to correspond to the virtual network interface on the Virtual Connector instance you have set up in VMware. Following our example from the previous steps, you need to choose port `1` since that is what corresponds to the `eno1` port we set up in VMware.",
2121
lan: "needs to correspond to the virtual LAN interface on the Virtual Connector instance you have set up in VMware. Following our example from the previous steps, you need to choose port `2` since that is what corresponds to the `eno2` port we set up in VMware.",

src/content/docs/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/reference.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import { Render } from "~/components";
1212
product="networking-services"
1313
params={{
1414
productName: "Magic WAN Connector",
15-
productOriginalName: "WAN Tunnels",
15+
dashName: "WAN Tunnels",
16+
mwanName: "Magic WAN",
1617
virtualProductName: "Virtual Connector",
1718
gatewayURL: "/cloudflare-one/policies/gateway/",
1819
hardConnectorURL: "/cloudflare-one/networks/connectors/wan-tunnels/configuration/appliances/configure-hardware-connector/",

src/content/partials/networking-services/mconn/configure-connectors.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ params:
44
- productName
55
- productNameVirtual?
66
- maintenanceURL
7-
- productOriginalName
7+
- dashName
88
- mwanName
99
- sfpURL?
1010
- wan
@@ -330,15 +330,15 @@ You cannot enable high availability for an existing { props.magicWord === "virtu
330330
file="mconn/maintenance/register-hardware-appliance"
331331
product="networking-services"
332332
params={{
333-
magicWord: props.productOriginalName,
333+
magicWord: props.dashName,
334334
productName: props.productName
335335
}} />
336336
</>
337337
)
338338
}
339339

340340
{/* WAN Tunnels section */}
341-
{ props.productOriginalName === "WAN Tunnels" && (
341+
{ props.dashName === "WAN Tunnels" && (
342342
<>
343343
<AnchorHeading title="Create a new profile" depth={3} />
344344
<p>You need to create a profile for your appliance before connecting it to the Internet.</p>
@@ -353,7 +353,7 @@ You cannot enable high availability for an existing { props.magicWord === "virtu
353353
}
354354

355355
{/* Magic WAN section */}
356-
{ props.productOriginalName !== "WAN Tunnels" && (
356+
{ props.dashName !== "WAN Tunnels" && (
357357
<>
358358
<AnchorHeading title="Add a Connector on-ramp" depth={3} />
359359
<p>You need to add your { props.magicWord === "virtual" ? props.productNameVirtual : props.productName } to your Cloudflare dashboard and configure its settings before connecting it to the Internet.</p>
@@ -378,7 +378,7 @@ You cannot enable high availability for an existing { props.magicWord === "virtu
378378

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

381-
<Render file="mconn/wan-two-tunnels" product="networking-services" params={{ productName: props.magicWord === "virtual" ? props.productNameVirtual : props.productName, productOriginalName: props.productOriginalName }} />
381+
<Render file="mconn/wan-two-tunnels" product="networking-services" params={{ productName: props.magicWord === "virtual" ? props.productNameVirtual : props.productName, dashName: props.dashName, mwanName: props.mwanName }} />
382382

383383
1. In **WAN configuration**, select **Create**. You can create one or more [wide area networks (WANs)](https://www.cloudflare.com/learning/network-layer/what-is-a-wan/). Configuring multiple WANs will create multiple <GlossaryTooltip term="IPsec tunnel">IPsec</GlossaryTooltip> tunnels (one IPsec tunnel per WAN port). This allows { props.magicWord === "virtual" ? props.productNameVirtual : props.productName } to load balance traffic over WANs of equal priority. It also allows { props.magicWord === "virtual" ? props.productNameVirtual : props.productName } to failover between circuits according to their <GlossaryTooltip term="tunnel health-check" link={props.tunnelHealthChecksURL}>health</GlossaryTooltip>. Refer to <a href={props.wanSettingsURL}>WAN settings</a> for more details.
384384
:::note
@@ -570,7 +570,7 @@ After finishing your { props.magicWord === "virtual" ? props.productNameVirtual
570570
When you are ready to connect your { props.magicWord === "virtual" ? props.productNameVirtual : props.productName } to the Cloudflare network:
571571

572572
{/* Instructions for WAN Tunnels */}
573-
{ props.productOriginalName === "WAN Tunnels" ? (
573+
{ props.dashName === "WAN Tunnels" ? (
574574
<>
575575
<Markdown
576576
text={`
@@ -640,7 +640,7 @@ When you are ready to connect your { props.magicWord === "virtual" ? props.produ
640640
<Markdown
641641
text={`
642642
1. Connect ${props.productName} to a DHCP port with access to the Internet.
643-
2. ${props.productOriginalName === "WAN Tunnels" ? "[Create a new profile](#create-a-new-profile)" : "[Add a Connector on-ramp](#add-a-connector-on-ramp)"} in the Cloudflare dashboard.
643+
2. ${props.dashName === "WAN Tunnels" ? "[Create a new profile](#create-a-new-profile)" : "[Add a Connector on-ramp](#add-a-connector-on-ramp)"} in the Cloudflare dashboard.
644644
3. Create a [DHCP WAN](#create-a-wan).
645645
4. [Activate](#activate-appliance) and power on your ${props.productName}.
646646
5. Wait 60 seconds.
@@ -665,7 +665,7 @@ When you are ready to connect your { props.magicWord === "virtual" ? props.produ
665665
<Markdown
666666
text={`
667667
1. Connect the machine where you installed the VM with ${props.productNameVirtual} to a DHCP port with access to the Internet.
668-
2. ${props.productOriginalName === "WAN Tunnels" ? "[Create a new profile](#create-a-new-profile)" : "[Add a Connector on-ramp](#add-a-connector-on-ramp)"} in the Cloudflare dashboard.
668+
2. ${props.dashName === "WAN Tunnels" ? "[Create a new profile](#create-a-new-profile)" : "[Add a Connector on-ramp](#add-a-connector-on-ramp)"} in the Cloudflare dashboard.
669669
3. Create a [DHCP WAN](#create-a-wan).
670670
4. [Activate](#activate-appliance) and boot your ${props.productNameVirtual}.
671671
5. Wait 60 seconds.
@@ -825,7 +825,7 @@ To set up a high availability configuration:
825825

826826
<Markdown
827827
text={`
828-
1. Follow the steps in ${props.productOriginalName === "WAN Tunnels" ? "[Create a new profile](#create-a-new-profile)" : "[Add a Connector on-ramp](#add-a-connector-on-ramp)"} up until step 4.
828+
1. Follow the steps in ${props.dashName === "WAN Tunnels" ? "[Create a new profile](#create-a-new-profile)" : "[Add a Connector on-ramp](#add-a-connector-on-ramp)"} up until step 4.
829829
`}
830830
inline={false}
831831
/>
@@ -852,7 +852,7 @@ inline={false}
852852

853853
To check the IPsec tunnels and static routes created by your { props.magicWord === "virtual" ? props.productNameVirtual : props.productName }:
854854

855-
{ props.productOriginalName === "WAN Tunnels" ? (
855+
{ props.dashName === "WAN Tunnels" ? (
856856
<>
857857
<Markdown
858858
text={`

src/content/partials/networking-services/mconn/mconn-reference.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
params:
33
- productName
4-
- productOriginalName
4+
- dashName
5+
- mwanName
56
- virtualProductName
67
- gatewayURL
78
- hardConnectorURL
@@ -95,7 +96,7 @@ When a failover occurs, traffic is moved to the new active node. It could take u
9596

9697
This is where you add and configure your WAN connections. Each configured WAN will create one IPsec tunnel, unless you have more than one anycast IP configured in your account.
9798

98-
<Render file="mconn/wan-two-tunnels" product="networking-services" params={{ productName: props.productName, productOriginalName: props.productOriginalName }} />
99+
<Render file="mconn/wan-two-tunnels" product="networking-services" params={{ productName: props.productName, dashName: props.dashName, mwanName: props.mwanName }} />
99100

100101
When you have multiple WANs you can attribute different priorities to each one. Lower values mean a higher priority. This translates in {props.productName} routing traffic through the higher priority WANs or, more precisely, over the IPsec tunnels established over that interface. On the other hand, if you configure multiple WANs of equal priority, traffic will be distributed over those links through <a href={props.ecmpRoutingURL}>Equal-Cost Multi-Path (ECMP routing)</a>.
101102

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
---
22
params:
33
- productName
4-
- productOriginalName
4+
- dashName
5+
- mwanName
56
---
67

7-
When you have more than one anycast IP configured in your account (set up during your {props.productOriginalName} onboarding), {props.productName} will automatically create at most two tunnels per WAN port. This improves reliability and performance, and requires no additional configuration on your part.
8+
When you have more than one anycast IP configured in your account (set up during your {props.mwanName} onboarding), {props.productName} will automatically create at most two tunnels per WAN port. This improves reliability and performance, and requires no additional configuration on your part.

0 commit comments

Comments
 (0)