It is currently March 28th, 2024, 5:43 pm

IP Address Check

Share and get help with Plugins and Addons
User avatar
XANCI
Posts: 104
Joined: September 18th, 2011, 6:37 am
Location: Nanjing, China

Re: IP Address Check

Post by XANCI »

why WebParser?

Code: Select all

[MeasureIP]
Measure=Plugin
Plugin=Plugins\SysInfo.dll
SysInfoType=IP_ADDRESS
SysInfoData=1
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: IP Address Check

Post by jsmorley »

XANCI wrote:why WebParser?

Code: Select all

[MeasureIP]
Measure=Plugin
Plugin=Plugins\SysInfo.dll
SysInfoType=IP_ADDRESS
SysInfoData=1
That returns your LAN (local, behind the router) address only. You need WebParser to get your WAN (external) IP address.
User avatar
XANCI
Posts: 104
Joined: September 18th, 2011, 6:37 am
Location: Nanjing, China

Re: IP Address Check

Post by XANCI »

jsmorley wrote: That returns your LAN (local, behind the router) address only. You need WebParser to get your WAN (external) IP address.
well, every IP site above display the same as my skin with this
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: IP Address Check

Post by jsmorley »

XANCI wrote: well, every IP site above display the same as my skin with this
Then you are not behind a router. Most folks these days are.
rethu
Posts: 4
Joined: March 1st, 2013, 7:25 am

Re: IP Address Check

Post by rethu »

Its good sharing about ip address check.Here i add another site Ip-details.com to check ip address.I found this site through google search.Here you can find ip address,domain name host's and ip details information like city,country, global latitude & longitude coordinates and also give internet speed accurately
lovendo
Posts: 1
Joined: August 18th, 2017, 6:22 pm

Re: IP Address Check

Post by lovendo »

[measureIP]
Measure=Plugin
Plugin=WebParser
URL=http://whatismyip.org/
UpdateRate=14400
RegExp=(?siU)<span style="color: blue; font-size: 36px; font-weight: 600;">(.*)</span>
StringIndex=1
User avatar
CyberTheWorm
Posts: 860
Joined: August 22nd, 2016, 11:32 pm
Location: Surrey, B.C., Canada

Re: IP Address Check

Post by CyberTheWorm »

Code: Select all

[MeasureWANIP]
Measure=Plugin
Plugin=WebParser
URL=https://icanhazip.com/
RegExp=(.*)
UpdateDivider=3600
This site just had the IP address, very simple
User avatar
balala
Rainmeter Sage
Posts: 16110
Joined: October 11th, 2010, 6:27 pm
Location: Gheorgheni, Romania

Re: IP Address Check

Post by balala »

There are a lot of this kind of sites, which can return the current IP address. Here is another one:

Code: Select all

[MeasureIP]
Measure=Plugin
Plugin=WebParser
Url=http://checkip.dyndns.org/
RegExp=(?siU)<html><head><title>Current IP Check</title></head><body>Current IP Address: (.*)</body></html>
StringIndex=1
Post Reply