Skip to content

Commit 482d96b

Browse files
[Magic] Traceroute patch (#26086)
* added wan tunnels steps * added code * indentation * indentation * Update src/content/partials/networking-services/analytics/traceroutes.mdx Co-authored-by: Pedro Sousa <[email protected]> --------- Co-authored-by: Pedro Sousa <[email protected]>
1 parent 0bd43f8 commit 482d96b

File tree

4 files changed

+68
-7
lines changed

4 files changed

+68
-7
lines changed

src/content/docs/cloudflare-one/networks/connectors/wan-tunnels/analytics/traceroutes.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import { Render } from "~/components";
1111
file="analytics/traceroutes"
1212
product="networking-services"
1313
params={{
14-
productName: "WAN",
14+
productName: "WAN Tunnels",
1515
dashButtonPath: "/?to=/:account/magic-wan/tunnel-healthchecks",
16+
magicWord: "wan-tunnels",
1617
}}
1718
/>

src/content/docs/magic-transit/analytics/traceroutes.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import { Render } from "~/components";
1111
file="analytics/traceroutes"
1212
product="networking-services"
1313
params={{
14-
productName: "Transit",
14+
productName: "Magic Transit",
1515
dashButtonPath: "/?to=/:account/magic-transit/tunnel-healthchecks",
16+
magicWord: "magic-transit",
1617
}}
1718
/>

src/content/docs/magic-wan/analytics/traceroutes.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ import { Render } from "~/components";
1111
file="analytics/traceroutes"
1212
product="networking-services"
1313
params={{
14-
productName: "WAN",
14+
productName: "Magic WAN",
1515
dashButtonPath: "/?to=/:account/magic-wan/tunnel-healthchecks",
16+
magicWord: "magic-wan",
1617
}}
1718
/>

src/content/partials/networking-services/analytics/traceroutes.mdx

Lines changed: 62 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,78 @@
22
params:
33
- productName
44
- dashButtonPath
5+
- magicWord
56
---
67

7-
import { DashButton } from "~/components";
8+
import { Aside, DashButton, Markdown, Tabs, TabItem } from "~/components";
89

9-
Magic {props.productName} customers can run traceroutes to understand the hop by hop Internet path and latencies from Cloudflare's network to their own network.
10+
{props.productName} customers can run traceroutes to understand the hop by hop Internet path and latencies from Cloudflare's network to their own network.
1011

12+
{ props.magicWord === "wan-tunnels" && (
13+
<>
14+
<Markdown
15+
text={`
1116
To run a traceroute from a specific Cloudflare data center to your network:
1217
13-
1. In the Cloudflare dashboard, go to Magic {props.productName}'s **Network health** page.
18+
1. Log in to [Cloudflare One](https://one.dash.cloudflare.com/) > **Insights**.
19+
2. Go to **Network visibility** > **WAN connector health**.
20+
3. Select the tunnel you want to run the traceroute on.
21+
4. Select the three dots > **Traceroute details**.
22+
`}
23+
inline={false}
24+
/>
25+
</>
26+
)}
1427

15-
<DashButton url={props.dashButtonPath} />
28+
{ props.magicWord !== "wan-tunnels" && (
29+
<>
30+
<Aside type="note">
31+
To change between the new dashboard experience and the old one, find the banner at the top of the screen.
32+
</Aside>
1633

34+
To run a traceroute from a specific Cloudflare data center to your network:
35+
36+
<Tabs syncKey="dashNewNav">
37+
<TabItem label="Old dashboard">
38+
<Markdown
39+
text={`
40+
1. In the Cloudflare dashboard, go to ${props.productName}'s **Network health** page.
41+
`}
42+
inline={false}
43+
/>
44+
45+
<DashButton url={props.dashButtonPath} />
46+
47+
<Markdown
48+
text={`
1749
2. Expand a Magic Tunnel, and find the Cloudflare data center where the traceroute will be run from.
1850
3. Select **Traceroute for details**.
51+
`}
52+
inline={false}
53+
/>
54+
</TabItem>
55+
56+
<TabItem label="New dashboard" icon="rocket">
57+
<Markdown
58+
text={`
59+
1. In the Cloudflare dashboard, go to ${props.productName}'s **Network health** page.
60+
`}
61+
inline={false}
62+
/>
63+
64+
<DashButton url={props.dashButtonPath} />
65+
66+
<Markdown
67+
text={`
68+
2. Select the tunnel you want to run the traceroute on.
69+
3. Select the three dots > **Traceroute details**.
70+
`}
71+
inline={false}
72+
/>
73+
</TabItem>
74+
</Tabs>
75+
</>
76+
)}
1977

2078
You can access detailed data from the traceroute, including:
2179

0 commit comments

Comments
 (0)