<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments for Uroš Vovk	</title>
	<atom:link href="https://www.urosvovk.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.urosvovk.com</link>
	<description>Uroš Vovk home page</description>
	<lastBuildDate>Tue, 03 Mar 2026 21:15:58 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by JimSprings		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7469</link>

		<dc:creator><![CDATA[JimSprings]]></dc:creator>
		<pubDate>Sat, 21 Dec 2024 18:52:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7469</guid>

					<description><![CDATA[Let me try again... comment board keeps removing the HTML tags even if you put spaces in them. For the script below to work, replace the uppercase letters LT with the less-than symbol and uppercase GT with the greater-than symbol typically used in HTML tags.

Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
o.open &quot;GET&quot;, &quot;https://www.whatismyisp.com&quot;, False
o.send
strid = o.responseText
Set myRegExp = New RegExp
With myRegExp
	.Pattern = &quot;LTspan class=&quot;&quot;block text-4xl&quot;&quot;GT(.*)LT/spanGT&quot;
	.IgnoreCase = False
	.Global = False
End With
Set myMatches = myRegExp.Execute(strid)
Echo myMatches.Item(0).SubMatches(0)]]></description>
			<content:encoded><![CDATA[<p>Let me try again&#8230; comment board keeps removing the HTML tags even if you put spaces in them. For the script below to work, replace the uppercase letters LT with the less-than symbol and uppercase GT with the greater-than symbol typically used in HTML tags.</p>
<p>Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
o.open &#8220;GET&#8221;, &#8220;https://www.whatismyisp.com&#8221;, False<br />
o.send<br />
strid = o.responseText<br />
Set myRegExp = New RegExp<br />
With myRegExp<br />
	.Pattern = &#8220;LTspan class=&#8221;&#8221;block text-4xl&#8221;&#8221;GT(.*)LT/spanGT&#8221;<br />
	.IgnoreCase = False<br />
	.Global = False<br />
End With<br />
Set myMatches = myRegExp.Execute(strid)<br />
Echo myMatches.Item(0).SubMatches(0)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by JimSprings		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7468</link>

		<dc:creator><![CDATA[JimSprings]]></dc:creator>
		<pubDate>Sat, 21 Dec 2024 18:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7468</guid>

					<description><![CDATA[Revised script for ISP name, this works as of December, 2024:

Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
o.open &quot;GET&quot;, &quot;https://www.whatismyisp.com&quot;, False
o.send
strid = o.responseText
Set myRegExp = New RegExp
With myRegExp
	.Pattern = &quot;(.*)&quot; ‘remove spaces before use :)
	.IgnoreCase = False
	.Global = False
End With
Set myMatches = myRegExp.Execute(strid)
 Echo myMatches.Item(0).SubMatches(0)]]></description>
			<content:encoded><![CDATA[<p>Revised script for ISP name, this works as of December, 2024:</p>
<p>Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
o.open &#8220;GET&#8221;, &#8220;https://www.whatismyisp.com&#8221;, False<br />
o.send<br />
strid = o.responseText<br />
Set myRegExp = New RegExp<br />
With myRegExp<br />
	.Pattern = &#8220;(.*)&#8221; ‘remove spaces before use :)<br />
	.IgnoreCase = False<br />
	.Global = False<br />
End With<br />
Set myMatches = myRegExp.Execute(strid)<br />
 Echo myMatches.Item(0).SubMatches(0)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by Castiel		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7432</link>

		<dc:creator><![CDATA[Castiel]]></dc:creator>
		<pubDate>Mon, 05 Aug 2024 06:11:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7432</guid>

					<description><![CDATA[Updated version for ISP Name:

Set o = CreateObject(&quot;WinHttp.WinHttpRequest.5.1&quot;)
o.Open &quot;GET&quot;, &quot;http://ip-api.com/json&quot;, False
o.Send
strid = o.ResponseText

Set myRegExp = New RegExp
With myRegExp
    .Pattern = &quot;&quot;&quot;isp&quot;&quot;:&quot;&quot;([^&quot;&quot;]*)&quot;&quot;&quot;
    .IgnoreCase = False
    .Global = False
End With

Set myMatches = myRegExp.Execute(strid)
If myMatches.Count &#062; 0 Then
    Echo myMatches.Item(0).SubMatches(0)
Else
    Echo &quot;ISP not found&quot;
End If]]></description>
			<content:encoded><![CDATA[<p>Updated version for ISP Name:</p>
<p>Set o = CreateObject(&#8220;WinHttp.WinHttpRequest.5.1&#8221;)<br />
o.Open &#8220;GET&#8221;, &#8220;http://ip-api.com/json&#8221;, False<br />
o.Send<br />
strid = o.ResponseText</p>
<p>Set myRegExp = New RegExp<br />
With myRegExp<br />
    .Pattern = &#8220;&#8221;&#8221;isp&#8221;&#8221;:&#8221;&#8221;([^&#8221;&#8221;]*)&#8221;&#8221;&#8221;<br />
    .IgnoreCase = False<br />
    .Global = False<br />
End With</p>
<p>Set myMatches = myRegExp.Execute(strid)<br />
If myMatches.Count &gt; 0 Then<br />
    Echo myMatches.Item(0).SubMatches(0)<br />
Else<br />
    Echo &#8220;ISP not found&#8221;<br />
End If</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by Dan		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-7226</link>

		<dc:creator><![CDATA[Dan]]></dc:creator>
		<pubDate>Sat, 04 Nov 2023 14:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-7226</guid>

					<description><![CDATA[The site changed.  This script works for me.:
&#039; bgISPName.vbs
Dim o
Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
&#039; o.open &quot;GET&quot;, &quot;https://api.ipify.org&quot;, False
&#039; o.send
&#039; Set o = CreateObject(&quot;MSXML2.XMLHTTP&quot;)
&#039; o.open &quot;GET&quot;, &quot;https://www.whoismyisp.org&quot;, False
o.open &quot;GET&quot;, &quot;https://www.whatismyisp.com&quot;, False
o.send
strid = o.responseText
Set myRegExp = New RegExp
With myRegExp
	.Pattern = &quot;(.*)&quot; &#039;remove spaces before use :)
	.IgnoreCase = False
	.Global = False
End With
Set myMatches = myRegExp.Execute(strid)

ispname=myMatches.Item(0).SubMatches(0)

wscript.echo myMatches.Item(0).SubMatches(0)
wscript.echo ispname]]></description>
			<content:encoded><![CDATA[<p>The site changed.  This script works for me.:<br />
&#8216; bgISPName.vbs<br />
Dim o<br />
Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
&#8216; o.open &#8220;GET&#8221;, &#8220;https://api.ipify.org&#8221;, False<br />
&#8216; o.send<br />
&#8216; Set o = CreateObject(&#8220;MSXML2.XMLHTTP&#8221;)<br />
&#8216; o.open &#8220;GET&#8221;, &#8220;https://www.whoismyisp.org&#8221;, False<br />
o.open &#8220;GET&#8221;, &#8220;https://www.whatismyisp.com&#8221;, False<br />
o.send<br />
strid = o.responseText<br />
Set myRegExp = New RegExp<br />
With myRegExp<br />
	.Pattern = &#8220;(.*)&#8221; &#8216;remove spaces before use :)<br />
	.IgnoreCase = False<br />
	.Global = False<br />
End With<br />
Set myMatches = myRegExp.Execute(strid)</p>
<p>ispname=myMatches.Item(0).SubMatches(0)</p>
<p>wscript.echo myMatches.Item(0).SubMatches(0)<br />
wscript.echo ispname</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Bandwidth usage report per IP address by Rudi		</title>
		<link>https://www.urosvovk.com/bandwidth-usage-report-per-ip-address/#comment-7184</link>

		<dc:creator><![CDATA[Rudi]]></dc:creator>
		<pubDate>Thu, 21 Sep 2023 20:11:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=858#comment-7184</guid>

					<description><![CDATA[Do you have an updated script for the new Traffic Flow option in ROS 7?]]></description>
			<content:encoded><![CDATA[<p>Do you have an updated script for the new Traffic Flow option in ROS 7?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Step by Step: How to configure a PPTP VPN Client on Mikrotik RouterOS by NWilliam ame		</title>
		<link>https://www.urosvovk.com/step-by-step-how-to-configure-a-pptp-vpn-client-on-mikrotik-routeros/#comment-6884</link>

		<dc:creator><![CDATA[NWilliam ame]]></dc:creator>
		<pubDate>Fri, 23 Sep 2022 21:44:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=698#comment-6884</guid>

					<description><![CDATA[CommentGood evening from Cameroon in Central Africa.
 I have a problem please.
 I opted for pptp VPN client accounts in an online server either
 Public IP=195.103.x.10
 Address Loc=10.0.0.2
 Remote address=10.0.0.1
 WAN Gateway=192.168.8.1
 LAN=192.168.1.0/24
 R1=192.168.1.1

 Public IP=195.103.x.10
 Address Loc=10.0.0.3
 Remote address=10.0.0.1
 WAN Gateway=192.168.8.1
 LAN=192.168.2.0/24
 R1=192.168.2.1

 I can&#039;t ping between LANs but against between 10.0.0.2 and 10.0.0.3 without forgetting that this pptp client by using it directly on Windows it works very well.]]></description>
			<content:encoded><![CDATA[<p>CommentGood evening from Cameroon in Central Africa.<br />
 I have a problem please.<br />
 I opted for pptp VPN client accounts in an online server either<br />
 Public IP=195.103.x.10<br />
 Address Loc=10.0.0.2<br />
 Remote address=10.0.0.1<br />
 WAN Gateway=192.168.8.1<br />
 LAN=192.168.1.0/24<br />
 R1=192.168.1.1</p>
<p> Public IP=195.103.x.10<br />
 Address Loc=10.0.0.3<br />
 Remote address=10.0.0.1<br />
 WAN Gateway=192.168.8.1<br />
 LAN=192.168.2.0/24<br />
 R1=192.168.2.1</p>
<p> I can&#8217;t ping between LANs but against between 10.0.0.2 and 10.0.0.3 without forgetting that this pptp client by using it directly on Windows it works very well.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by Christian		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6881</link>

		<dc:creator><![CDATA[Christian]]></dc:creator>
		<pubDate>Wed, 21 Sep 2022 15:38:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6881</guid>

					<description><![CDATA[Hi
Many thanks for the script &quot;ISP Name.vbs&quot;. I used them for several months.
It seems html page on target server changed, the script returns now empty name.]]></description>
			<content:encoded><![CDATA[<p>Hi<br />
Many thanks for the script &#8220;ISP Name.vbs&#8221;. I used them for several months.<br />
It seems html page on target server changed, the script returns now empty name.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by Jan		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6585</link>

		<dc:creator><![CDATA[Jan]]></dc:creator>
		<pubDate>Mon, 23 May 2022 15:28:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6585</guid>

					<description><![CDATA[Hi Uroš,

Your script ISP Name.vbs worked like a charm, but now it looks like the html on &quot;https://www.whoismyisp.org&quot; has changed again.

I get the same error as Giovanni.

Can you please look at it?

Kind regards,

Jan]]></description>
			<content:encoded><![CDATA[<p>Hi Uroš,</p>
<p>Your script ISP Name.vbs worked like a charm, but now it looks like the html on &#8220;https://www.whoismyisp.org&#8221; has changed again.</p>
<p>I get the same error as Giovanni.</p>
<p>Can you please look at it?</p>
<p>Kind regards,</p>
<p>Jan</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by noobmiysis		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6559</link>

		<dc:creator><![CDATA[noobmiysis]]></dc:creator>
		<pubDate>Sun, 15 May 2022 22:21:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6559</guid>

					<description><![CDATA[same here for ISP vbs : 

Error evaluating scripted field ‘ISP Name’
Microsoft VBScript run-time error
Line 13, position 0
Invalid procedure call or argument]]></description>
			<content:encoded><![CDATA[<p>same here for ISP vbs : </p>
<p>Error evaluating scripted field ‘ISP Name’<br />
Microsoft VBScript run-time error<br />
Line 13, position 0<br />
Invalid procedure call or argument</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on BGInfo &#8211; Script for Local IP, Public IP and ISP Name by Giovanni		</title>
		<link>https://www.urosvovk.com/bginfo-local-ip-public-ip-and-isp-name/#comment-6167</link>

		<dc:creator><![CDATA[Giovanni]]></dc:creator>
		<pubDate>Tue, 02 Nov 2021 10:57:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.urosvovk.com/?p=788#comment-6167</guid>

					<description><![CDATA[Hi, thank you for your work! Is it possible that ISP Name.vbs script doesn&#039;t work anymore? Now I get the error code:

BGInfo
---------------------------
Error evaluating scripted field &#039;ISP Name&#039;
Microsoft VBScript run-time error
Line 13, position 0
Invalid procedure call or argument
---------------------------
OK
---------------------------]]></description>
			<content:encoded><![CDATA[<p>Hi, thank you for your work! Is it possible that ISP Name.vbs script doesn&#8217;t work anymore? Now I get the error code:</p>
<p>BGInfo<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Error evaluating scripted field &#8216;ISP Name&#8217;<br />
Microsoft VBScript run-time error<br />
Line 13, position 0<br />
Invalid procedure call or argument<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
OK<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
