How do I get system network address using angular application?
C:\Users\asdasd>ipconfig
Windows IP Configuration
PPP adapter asdas:
Connection-specific DNS Suffix . :
**IPv4 Address. . . . . . . . . . . : 10.212.134.220**
Subnet Mask . . . . . . . . . . . : 255.255.255.255
Default Gateway . . . . . . . . . : 0.0.0.0
I have tried below urls but the results are not matching with IPv4 address shown in ipconfig.
this.http.get("http://api.ipify.org/?format=json").subscribe((res:any)=>{
this.ipAddress = res.ip;
});