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
5 changes: 2 additions & 3 deletions src/content/docs/magic-transit/reference/tunnels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ description: Magic Transit uses Generic Routing Encapsulation (GRE) and IPsec
import { Render } from "~/components";

<Render
file="tunnels-reference/tunnels-encapsulation-opening"
file="tunnels-reference/tunnels-encapsulation"
params={{
productName: "Magic Transit",
mssURL: "/magic-transit/get-started/#set-maximum-segment-size",
productURL: "/magic-transit/reference/anti-replay-protection/",
tunnelEndpoints: "/magic-transit/how-to/configure-tunnels/",
magicWord: "Magic Transit"
}}
/>

<Render file="tunnels-reference/tunnels-encapsulation-mt-network-analytics" />
5 changes: 2 additions & 3 deletions src/content/docs/magic-wan/reference/tunnels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ description: Magic WAN uses Generic Routing Encapsulation (GRE) and IPsec
import { Render } from "~/components";

<Render
file="tunnels-reference/tunnels-encapsulation-opening"
file="tunnels-reference/tunnels-encapsulation"
product="magic-transit"
params={{
productName: "Magic WAN",
mssURL: "/magic-wan/get-started/#set-maximum-segment-size",
productURL: "/magic-wan/reference/anti-replay-protection/",
tunnelEndpoints:
"/magic-wan/configuration/manually/how-to/configure-tunnels/",
tunnelEndpoints: "/magic-wan/configuration/manually/how-to/configure-tunnels/"
}}
/>

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
---
params:
- magicWord?
- productName
- mssURL
- productURL
- tunnelEndpoints
---

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

## Tunnels and encapsulation

Expand Down Expand Up @@ -215,3 +216,12 @@ Additionally, the IKE ID type of `ID_IPV4_ADDR` is supported if the following tw
:::caution
Make sure each IPsec tunnel has a unique combination of a <a href={props.tunnelEndpoints}>Cloudflare endpoint and customer endpoint</a>. If this combination is not unique among your IPsec tunnels, you should use one of the custom IKE formats (`ID_RFC822_ADDR`, `ID_FQDN`, or `ID_KEY_ID`) to specify the tunnel ID and account ID. This helps Cloudflare link the IKE packet to the right IPsec tunnel for tasks like authentication.
:::

{ props.magicWord === "Magic Transit" && (
<>
<AnchorHeading title="Network Analytics" depth={2} />
<p>Cloudflare's Network Analytics provides near real-time visibility into network and transport layer traffic patterns and DDoS attacks which can help troubleshoot IP traffic issues. You can also use Network Analytics to view information about the traffic that leaves Cloudflare's global network by reviewing ingress and egress tunnel traffic over a specific amount of time.</p>
<p>For more information, refer to <a href="/magic-transit/analytics/">Analytics</a>.</p>
</>
)
}