Skip to content

Commit 649b5fd

Browse files
authored
Merge pull request #275648 from robswain/vlan-trunking
Add VLAN trunking for HA
2 parents ea636aa + 2326675 commit 649b5fd

13 files changed

+110
-64
lines changed

articles/private-5g-core/collect-required-information-for-a-site.md

Lines changed: 32 additions & 2 deletions
Large diffs are not rendered by default.

articles/private-5g-core/commission-cluster.md

Lines changed: 45 additions & 28 deletions
Large diffs are not rendered by default.

articles/private-5g-core/create-a-site.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,7 @@ In this step, you'll create the mobile network site resource representing the ph
4040

4141
:::image type="content" source="media/create-a-site/create-site-basics-tab.png" alt-text="Screenshot of the Azure portal showing the Basics configuration tab for a site resource.":::
4242

43-
1. You'll now see the **Packet core** configuration tab.
44-
45-
:::image type="content" source="media/create-a-site/create-site-packet-core-tab.png" alt-text="Screenshot of the Azure portal showing the Packet core configuration tab for a site resource.":::
46-
47-
1. In the **Packet core** section, set the fields as follows:
43+
1. You'll now see the **Packet core** configuration tab. Set the fields as follows:
4844

4945
- Use the information you collected in [Collect packet core configuration values](collect-required-information-for-a-site.md#collect-packet-core-configuration-values) to fill out the **Technology type**, **Azure Stack Edge device**, and **Custom location** fields.
5046
- For a Highly Available (HA) deployment, specify the ASE two node cluster as the Azure Stack Edge device.
@@ -67,8 +63,6 @@ In this step, you'll create the mobile network site resource representing the ph
6763
- If you decided not to configure a DNS server, clear the **Specify DNS addresses for UEs?** checkbox.
6864
- If you decided to keep NAPT disabled, ensure you configure your data network router with static routes to the UE IP pools via the appropriate user plane data IP address for the corresponding attached data network.
6965

70-
:::image type="content" source="media/create-a-site/create-site-attach-data-network.png" alt-text="Screenshot of the Azure portal showing the Attach data network screen.":::
71-
7266
Once you've finished filling out the fields, select **Attach**.
7367
:::zone-end
7468
:::zone pivot="ase-pro-2"
@@ -84,8 +78,6 @@ In this step, you'll create the mobile network site resource representing the ph
8478
- If you decided not to configure a DNS server, clear the **Specify DNS addresses for UEs?** checkbox.
8579
- If you decided to keep NAPT disabled, ensure you configure your data network router with static routes to the UE IP pools via the appropriate user plane data IP address for the corresponding attached data network.
8680

87-
:::image type="content" source="media/create-a-site/create-site-attach-data-network.png" alt-text="Screenshot of the Azure portal showing the Attach data network screen.":::
88-
8981
Once you've finished filling out the fields, select **Attach**.
9082
:::zone-end
9183

articles/private-5g-core/data-plane-packet-capture.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To perform packet capture using the command line, you must:
6262

6363
1. Once the packet capture has completed, the AP5GC online service will save the output at the provided storage account URL.
6464

65-
In HA deployments, two packet capture files will be uploaded, one for each node. The files will be labelled with a `0` or a `1`, corresponding to the `core-mec-dp-0` or `core-mec-dp-1` pod. If one packet capture fails, the status page will show an error, but the successful capture results will upload as normal.
65+
In HA deployments, two packet capture files will be uploaded, one for each node. The files will be labeled with a `0` or a `1`, corresponding to the `core-mec-dp-0` or `core-mec-dp-1` pod. If one packet capture fails, the status page will show an error, but the successful capture results will upload as normal.
6666

6767
1. To download the packet capture output, you can use the **Copy to clipboard** button in the **Storage** or **File name** columns to copy those details and then paste them into the **Search** box in the portal. To download the output, right-click the file and select **Download**.
6868

@@ -83,19 +83,17 @@ To perform packet capture using the command line, you must:
8383
mect list
8484
```
8585
86-
This should report a single interface on the control plane network (N2), a single interface on the access network (N3) and an interface for each attached data network (N6). For example:
86+
This should report a single interface on the control plane network (N2), a single interface on the access network (N3) and a single interface for the core network (N6).
8787
8888
```azurecli
8989
n2trace
9090
n3trace
91-
n6trace0 (Data Network: internet)
92-
n6trace1 (Data Network: enterprise)
93-
n6trace2 (Data Network: test)
91+
n6trace
9492
```
95-
9693
1. Run `mectdump` with any parameters that you would usually pass to tcpdump. In particular, `-i` to specify the interface, and `-w` to specify where to write to. Close the tool when finished by pressing <kbd>Ctrl + C</kbd>. The following examples are common use cases:
97-
- To run capture packets on all interfaces, run `mectdump -i any -w any.pcap`
98-
- To run capture packets for the N3 interface and the N6 interface for a single data network, enter the MEC-DP troubleshooter pod in two separate windows. In one window run `mectdump -i n3trace -w n3.pcap` and in the other window run `mectdump -i <N6 interface> -w n6.pcap` (use the N6 interface for the data network as identified in step 2).
94+
- To capture packets on all interfaces, run `mectdump -i any -w any.pcap`
95+
- To capture packets for the N3 interface and the N6 interface for a single data network, enter the MEC-DP troubleshooter pod in two separate windows. In one window run `mectdump -i n3trace -w n3.pcap` and in the other window run `mectdump -i n6trace -w n6.pcap`. To select an individual data network, filter by VLAN ID.
96+
9997
10098
> [!IMPORTANT]
10199
> Packet capture files might be large, particularly when running packet capture on all interfaces. Specify filters when running packet capture to reduce the file size - see the tcpdump documentation for the available filters.
15.2 KB
Loading
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)