Skip to content

Commit 6cc5476

Browse files
authored
Merge pull request #40526 from macartag/patch-1
Update load-balancer-multivip-overview.md
2 parents 7a7f2e1 + 1a9a5f9 commit 6cc5476

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

articles/load-balancer/load-balancer-multivip-overview.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,29 @@ For this scenario, every VM in the backend pool has three network interfaces:
9393
* Frontend 1: a loopback interface within guest OS that is configured with IP address of Frontend 1
9494
* Frontend 2: a loopback interface within guest OS that is configured with IP address of Frontend 2
9595

96+
For each VM in the backend pool, run the following commands at a Windows Command Prompt.
97+
98+
To get the list of interface names you have on your VM, type this command:
99+
100+
netsh interface show interface
101+
102+
For the VM NIC (Azure managed), type this command:
103+
104+
netsh interface ipv4 set interface “interfacename” weakhostreceive=enabled
105+
(replace interfacename with the name of this interface)
106+
107+
For each loopback interface you added, repeat these commands:
108+
109+
netsh interface ipv4 set interface “interfacename” weakhostreceive=enabled
110+
(replace interfacename with the name of this loopback interface)
111+
112+
netsh interface ipv4 set interface “interfacename” weakhostsend=enabled
113+
(replace interfacename with the name of this loopback interface)
114+
96115
> [!IMPORTANT]
97116
> The configuration of the loopback interfaces is performed within the guest OS. This configuration is not performed or managed by Azure. Without this configuration, the rules will not function. Health probe definitions use the DIP of the VM rather than the loopback interface representing the DSR Frontend. Therefore, your service must provide probe responses on a DIP port that reflect the status of the service offered on the loopback interface representing the DSR Frontend.
98117
118+
99119
Let's assume the same frontend configuration as in the previous scenario:
100120

101121
| Frontend | IP address | protocol | port |

0 commit comments

Comments
 (0)