ABP Framework version: v8.3
UI Type: Angular
Database System:EF Core (PostgreSQL)
Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
Exception message and full stack trace:
The security log api provides the below 2 information "clientIpAddress": "::1", "browserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36", The clientIpAddress seems to be incorrect. Also could you let us know, which part of the browserInfo reflects the browser used for login.
Regards Sahana
1 Answer(s)
-
0
Hi, the value
::1
represents the IPv6 loopback address, which is equivalent to127.0.0.1
in IPv4. This typically occurs when you're accessing the application locally (e.g., via localhost) during development or testing. So, if you are seeing this in development mode, then it's the expected behavior.