Is there anyway to determine if a windows computer is running IPV6 using native utilities, python or php?
|
|
This is how I solved the issue, by trying to open up an IPV6 socket. If the system did not throw an error, then it is using IPV6.
|
|||
|
|
|
Every computer ships with IPv4 at standard. IPv6 is only enabled on specific machines. But if you parse ifconfig/ipconfig then you should find yourself a IPv4/6 address in the output |
|||
|
|
|
Sure. If |
|||
|
|
|
Enumerate the interfaces and check for an IPv6 address, like everyone else has stated. Alternatives include trying to open an IPv6 socket or get Python to call |
|||
|
|
Jakob's approach is the simplest; you could pipe the result and do a match to see whether a network adapter has a valid IPv6 address. Additionally, you could get this by fetching the Windows Management Instrumentation class Win32_NetworkAdapterConfiguration. The property |
|||
|
|