Enable the weak host model to communicate with the client (bastion server) via NLB using VIP.
- Start PowerShell for administrators.
- Run the ipconfig command to check the network adapter names of the primary and secondary NICs from the configured IP addresses.
- For both the primary and secondary NICs identified in the previous section, run the following command using the network adapter name to check the Weak Host Sends and Weak Host Receives settings.
PS > netsh interface ipv4 show interface <network_adapter_name>
- Execute the following commands to change the settings for the primary network adapter and the secondary network adapter.
PS > netsh interface ipv4 set interface <primary_network_adapter_name> weakhostreceive=enabled PS > netsh interface ipv4 set interface <seconday_network_adapter_name> weakhostreceive=enabled PS > netsh interface ipv4 set interface <seconday_network_adapter_name> weakhostsend=enabled
Post your comment on this topic.