Home  >  Article  >  Web Front-end  >  Five ways to get IP, MAC and host name with JS_javascript skills

Five ways to get IP, MAC and host name with JS_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:15:082142browse

Today I am working on a JS (javascript) small program to obtain the client IP. I searched online and found that many of them are invalid in current systems and browsers. I am very helpless. In Chrome and FireFox, it is rare to directly use ActiveX to obtain the IP. JS scripts etc. The following code has been tested and passed by me on all Windows NT5.0 and above systems. The code is given:

Method 1 (only for IE and the client's IE allows ActiveX to run, through the platform: XP, SERVER03 , 2000):
Get the client IP.

Copy code The code is as follows:



GetLocalIP


Get IP:


< ;/HTML>

Method 2 (all platforms and browsers):
Get the IP of the client on the network, provided that the client is connected to the Internet.
Copy code The code is as follows:




JavaScript to obtain the client IP [using Sina interface]







Method three (only for IE and the client's IE allows ActiveX to run):
Call the VBS script to get the computer name (some people don't know what a computer name is, the simple explanation is that it is the physical name of this machine Instead of the username you are using) and the username you logged in with.
Copy code The code is as follows:



WMI Scripting HTML






Method 4 (only for IE and the client's IE allows ActiveX to run):
Get the computer name, logged-in user name and domain name (if you have joined a domain, show which domain your machine is in).
Copy code The code is as follows:



WMI Scripting HTML




< /HTML>

Method 5 (only for IE and the client's IE allows ActiveX to run):
Can obtain the LAN IP address, the MAC of the machine, and the machine name (code source network).
Copy code The code is as follows:










MAC address:

IP address:

Host name:







Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn