Currently, I am in the process of creating an EventLog to track transaction logs on my website. This log will contain details such as the Public IP address where the transaction originated and also the local IP address associated with that public IP.
I have successfully figured out how to retrieve the Public IP Address, but I am struggling to find a way to obtain the local IP or machine IP from which the transaction was initiated.
A significant number of entries will be coming from multiple users connected through the same network. For example, 5 or 10 computers sharing one connection.
I am seeking a solution that will allow me to identify the specific machine IPs (e.g., 192.168.0.1 for one system, 192.168.0.2 for the next) involved in these transactions, as well as gather information about the Computer names...
Is there a feasible way to achieve this?