'Check IP's hitting Azure load balancer
Is there a way to see the incoming packets and their incoming IP address that are hitting the Azure standard load balancer?
I am trying to do some checks and collect the log records.
Regards, Marvin Lee
Solution 1:[1]
As such there is no tool available in Azure which can allow you to see the incoming IP address in Standard Load Balancer. You need to handle such request programmatically.
Alternatively, you can use SYN packets metric which describes the volume of TCP SYN packets, which have arrived or were sent for outbound flows that are associated with a specific front end. You can use this metric to understand TCP connection attempts to your service.
Refer: Standard load balancer diagnostics with metrics, alerts, and resource health
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | UtkarshPal-MT |
