I use Request.UserHostAddress, can only get IPv4 address, how to get IPv6 address of a visitor?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I assume you're talking about You should start by investigating why the request is being made over IPv4. And the folks at http://serverfault.com will probably be of more help on that. |
|||
|
|
|
An IPv4 address is translated to an IPv6 address by placing the 4 octets of the IPv4 address into the rightmost 4 octets of the IPv6 address. After inserting the 4 octets of the IPv4 address into the rightmost 4 octets of the IPv6 address, the remaining left-most octets would be 0 in value. |
|||
|
|