Yemble Posted June 29, 2019 Posted June 29, 2019 I have VmWare Workstation installed on my PC, although I rarely use it. However, I have noticed that AIDA64 displays the Primary IP Address as one of the two VmWare virtual NIC addresses rather than the physical ethernet NIC address of the PC's wired connection. There does not appear to be any way in AIDA64 to select the correct NIC for the Primary IP Address. Quote
Fiery Posted June 30, 2019 Posted June 30, 2019 On 6/29/2019 at 7:11 PM, Yemble said: I have VmWare Workstation installed on my PC, although I rarely use it. However, I have noticed that AIDA64 displays the Primary IP Address as one of the two VmWare virtual NIC addresses rather than the physical ethernet NIC address of the PC's wired connection. There does not appear to be any way in AIDA64 to select the correct NIC for the Primary IP Address. The primary IP address is provided by Winsock, and may or may not be the primary network adapter. In rare cases Windows treats one of the least used network adapters as primary. We haven't found a way to fix it from our end. Quote
Yemble Posted July 1, 2019 Author Posted July 1, 2019 16 hours ago, Fiery said: The primary IP address is provided by Winsock, and may or may not be the primary network adapter. In rare cases Windows treats one of the least used network adapters as primary. We haven't found a way to fix it from our end. Yea, only when I disable both virtual NICs does AIDA64 show the correct Primary IP. Oh well, NP, as long as you are already aware of it... Quote
BenH Posted July 3, 2020 Posted July 3, 2020 It's funny how I posted how to fix this back in 2018. No response on my post and still has not been fixed... Quote
Midnight Posted February 15, 2021 Posted February 15, 2021 On 6/30/2019 at 2:06 PM, Fiery said: The primary IP address is provided by Winsock, and may or may not be the primary network adapter. In rare cases Windows treats one of the least used network adapters as primary. We haven't found a way to fix it from our end. FYI: Hope this helps... checking to see if the Address Family is InterNetwork will return you the correct IP address. See sample C# code below. public static string GetLocalIPAddress() { var host = Dns.GetHostEntry(Dns.GetHostName()); foreach (var ip in host.AddressList) { if (ip.AddressFamily == AddressFamily.InterNetwork) { return ip.ToString(); } } throw new Exception("No network adapters with an IPv4 address in the system!"); } Quote
Randson Posted February 10, 2023 Posted February 10, 2023 On 6/30/2019 at 3:06 PM, Fiery said: The primary IP address is provided by Winsock, and may or may not be the primary network adapter. In rare cases Windows treats one of the least used network adapters as primary. We haven't found a way to fix it from our end. Any news on the subject? Did @BenH post a solution that could be evaluated? Quote
Randson Posted February 10, 2023 Posted February 10, 2023 On 6/30/2019 at 3:06 PM, Fiery said: The primary IP address is provided by Winsock, and may or may not be the primary network adapter. In rare cases Windows treats one of the least used network adapters as primary. We haven't found a way to fix it from our end. Any news on the subject? Did @BenH post a solution that could be evaluated? Quote
Randson Posted March 17, 2023 Posted March 17, 2023 @Fiery some solution ? Considering that most PCs today have several NIC's control of this information for the sensor panel should be better structured. Quote
TooJam Posted May 18, 2023 Posted May 18, 2023 Why not provide an option to display the IP assigned to a NIC? Life can be so simple.... Quote
Randson Posted June 23, 2023 Posted June 23, 2023 It's a pretty plausible solution, but apparently here on the forum this kind of improvement is ignored. I point out that most have more than one NIC on their PC. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.