I'm trying to implement IP Address whitelisting using owin middleware. When I try to get client ip address from the request (context.Request.RemoteIpAddress) I'm sometimes getting a link-local IPv6 address(example IPv6 with %13 at the end) and I sometimes get the IPv4 address
I'm running the web application locally and the api is also hosted locally, which property in owin context request will give me the exact proper IpAddress (IPv4 or IPv6 but not link local ip address)?