|
2 | 2 | params: |
3 | 3 | - productName |
4 | 4 | - dashButtonPath |
| 5 | + - magicWord |
5 | 6 | --- |
6 | 7 |
|
7 | | -import { DashButton } from "~/components"; |
| 8 | +import { Aside, DashButton, Markdown, Tabs, TabItem } from "~/components"; |
8 | 9 |
|
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. |
10 | 11 |
|
| 12 | +{ props.magicWord === "wan-tunnels" && ( |
| 13 | + <> |
| 14 | + <Markdown |
| 15 | + text={` |
11 | 16 | To run a traceroute from a specific Cloudflare data center to your network: |
12 | 17 |
|
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 | +)} |
14 | 27 |
|
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> |
16 | 33 |
|
| 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={` |
17 | 49 | 2. Expand a Magic Tunnel, and find the Cloudflare data center where the traceroute will be run from. |
18 | 50 | 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 | +)} |
19 | 77 |
|
20 | 78 | You can access detailed data from the traceroute, including: |
21 | 79 |
|
|
0 commit comments