Skip to content

Commit 5a7a724

Browse files
authored
Merge pull request #17190 from MicrosoftDocs/main
2/25/2025 PM Publish
2 parents cdf3673 + fbff06b commit 5a7a724

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed

AKS-Arc/aks-edge-howto-multi-nic.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to attach multiple network interfaces to an AKS Edge Esse
44
author: sethmanheim
55
ms.author: sethm
66
ms.topic: how-to
7-
ms.date: 07/12/2024
7+
ms.date: 02/25/2025
88
ms.custom: template-how-to, linux-related-content
99
---
1010

@@ -61,19 +61,11 @@ To deploy a Linux node with multiple NICs, you must add your secondary interface
6161

6262
## Verify multiple NIC network configuration settings
6363

64-
After you successfully install and deploy the AKS Edge Essentials node, follow these steps to make sure both primary, and secondary interfaces were created and added to the Linux node:
64+
After you successfully install and deploy the AKS Edge Essentials node, follow these steps to make sure both the primary and secondary interfaces were created and added to the Linux node. To check the interfaces, run the following command:
6565

66-
1. Check the primary interface:
67-
68-
```powershell
69-
Invoke-AksEdgeNodeCommand -NodeType "Linux" -command "sudo ip addr eth0"
70-
```
71-
72-
1. Check the secondary network interface. If you added more than one extra interface, it appears as **ethX** with **X** being the number of extra network interfaces:
73-
74-
```powershell
75-
Invoke-AksEdgeNodeCommand -NodeType "Linux" -command "sudo ip addr eth1"
76-
```
66+
```powershell
67+
Invoke-AksEdgeNodeCommand -NodeType "Linux" -command "sudo ip addr"
68+
```
7769

7870
## Configure Multus CNI plugin
7971

azure-stack/operator/operator-access-workstation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ param(
6666
[string]
6767
$DownloadedOAWZipFilePath
6868
)
69-
$expectedHash = '4B5CE0EA6FA12C4A95EBDE4223BEED5B9D98D7D9FC7DA1D5C72D3620725E5119'
69+
$expectedHash = 'F5172B3A97248826C73A3D7ABC0440CFA1EC3B31CAC6A1BC1100B9E241099780'
7070
$actualHash = (Get-FileHash -Path $DownloadedOAWZipFilePath).Hash
7171
Write-Host "Expected hash: $expectedHash"
7272
if ($expectedHash -eq $actualHash)
@@ -90,7 +90,7 @@ Another way to copy this script to your environment is to use the Test-FileHash
9090
2. After you import the Test-FileHash module, verify the hash of the OAW.zip file:
9191

9292
```powershell
93-
Test-FileHash -ExpectedHash "4B5CE0EA6FA12C4A95EBDE4223BEED5B9D98D7D9FC7DA1D5C72D3620725E5119" -FilePath "<path to the OAW.zip file>"
93+
Test-FileHash -ExpectedHash "F5172B3A97248826C73A3D7ABC0440CFA1EC3B31CAC6A1BC1100B9E241099780" -FilePath "<path to the OAW.zip file>"
9494
```
9595

9696
## Check HLH version

0 commit comments

Comments
 (0)