local info shows wrong ip address
#223524
27/07/10 10:30 AM
|
Joined: Jul 2006
Posts: 248
bwuser
OP
Fjord artisan
|
OP
Fjord artisan
Joined: Jul 2006
Posts: 248 |
Hi!
Under connect -> local info my IP Address is always showing my internal lan ip. No matter which options I choose, local host / ip adress / normal / server. It's always the same.
I am behind a normal nat adsl router and I need my external ip adress (whatismyipadress.com) in this field.
How can I accomplish that?
Thanks!
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#223525
27/07/10 10:45 AM
|
Joined: Dec 2002
Posts: 3,138
Collective
Hoopy frood
|
Hoopy frood
Joined: Dec 2002
Posts: 3,138 |
Did you reconnect to IRC after changing Lookup Method to Server? mIRC only updates its Local Info when it connects unless you trigger an update manually with /localinfo.
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#223526
27/07/10 10:46 AM
|
Joined: Jun 2007
Posts: 933
5618
Hoopy frood
|
Hoopy frood
Joined: Jun 2007
Posts: 933 |
If you need it for the DCC protocol: Options > Connect > Options > Advanced
|
|
|
Re: local info shows wrong ip address
[Re: Collective]
#223528
27/07/10 01:01 PM
|
Joined: Jul 2006
Posts: 248
bwuser
OP
Fjord artisan
|
OP
Fjord artisan
Joined: Jul 2006
Posts: 248 |
Did you reconnect to IRC after changing Lookup Method to Server? mIRC only updates its Local Info when it connects unless you trigger an update manually with /localinfo. I always used /localinfo. Worth to mention maybe additionally: I am connected through a bouncer. (But I am sure it shows internal lan ip's, not the bouncer's ip.)
Last edited by bwuser; 27/07/10 01:03 PM.
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#223530
27/07/10 01:49 PM
|
Joined: Nov 2006
Posts: 1,559
Horstl
Hoopy frood
|
Hoopy frood
Joined: Nov 2006
Posts: 1,559 |
I found this small script made for a friend of mine with similar BNC issues some time ago... might be of help although it does not solve the /localinfo issue, but merely works arround it. ; allows to set mIRC's 'local info' to your "true" external IP regardless of network setup
; by Horstl with help from deegee :)
on *:connect: { getip }
alias -l getip {
if ($sock(getip)) { sockclose getip }
sockopen getip www.whatismyip.com 80
sockmark getip $1
}
on *:sockopen:getip:{
if ($sockerr) { echo -s * Cannot resolve your ip: $sock(getip).wsmsg | return }
sockwrite getip GET $+(/automation/n09230945.asp HTTP/1.0,$lf,HOST: whatismyip.com,$str($lf,2))
}
on *:sockread:getip:{
sockread -f &a
set -e %external.ip $gettok($bvar(&a,1-).text,-1,10)
if (($group(#set.ip.auto) == on) || ($sock($sockname).mark)) {
echo -snc info * Resolved external IP: %external.ip (set at 'local info')
localinfo $host %external.ip
}
}
#set.ip.auto off
#set.ip.auto end
menu status {
Set 'local info' to external IP $+([,auto,$chr(58) $replace($group(#set.ip.auto).status,on,enabled,off,disabled),])
.$iif(($group(#set.ip.auto) == on),$style(1)) Auto on connect
..$iif(($group(#set.ip.auto) == on),disable,enable) automation : $iif(($group(#set.ip.auto) == on),.disable,.enable) #set.ip.auto
.&Set 'local info' to ext. IP now : { getip verbose }
.-
.&Reset 'local info'
..&normal (winsock) lookup : localinfo -h
..$iif(($status != connected),$style(2)) &userhost (server) lookup: localinfo -u
.-
.Current ext. IP $+ $chr(58) $iif((%external.ip),$v1,not resolved yet) : noop
}
Last edited by Horstl; 27/07/10 01:50 PM.
|
|
|
Re: local info shows wrong ip address
[Re: Horstl]
#226305
26/09/10 03:22 AM
|
Joined: Jul 2006
Posts: 248
bwuser
OP
Fjord artisan
|
OP
Fjord artisan
Joined: Jul 2006
Posts: 248 |
The script is great.
Unfortunately whatismyip.com changed something on their site, so it's no longer working. Can you update it please?
Or is there a more suitable service for this kind of information? A website which is made for automatic requests (the script)?
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#226313
26/09/10 10:41 AM
|
Joined: Nov 2006
Posts: 1,559
Horstl
Hoopy frood
|
Hoopy frood
Joined: Nov 2006
Posts: 1,559 |
on *:connect: { getip }
alias getip {
if ($sock(getip)) { sockclose getip }
sockopen getip www.whatismyip.com 80
sockmark getip $1
}
on *:sockopen:getip:{
if ($sockerr) { echo -snc info * [GetIP] Cannot resolve your ip: $sock($sockname).wsmsg | return }
sockwrite $sockname GET $+(/automation/n09230945.asp HTTP/1.0,$lf,HOST: $sock($sockname).addr,$str($lf,2))
}
on *:sockread:getip:{
sockread -f &a
var %s = $gettok($bvar(&a,1-).text,-1,10), %r = /^(?:\d{1,3}\.){3}\d{1,3}$/
if (!$regex(%s,%r)) { echo -snc info * [GetIP] Error parsing socket reply: $bvar(&a,1-).text }
else {
set -e %external.ip %s
if (($group(#set.ip.auto) == on) || ($sock($sockname).mark)) {
.localinfo $host %s
echo -snc info * [GetIP] Resolved external IP: %s (set at 'local info')
}
}
}
#set.ip.auto off
#set.ip.auto end
menu status {
Set 'local info' to external IP $+([,auto,$chr(58) $replace($group(#set.ip.auto).status,on,enabled,off,disabled),])
.$iif(($group(#set.ip.auto) == on),$style(1)) Auto on connect
..$iif(($group(#set.ip.auto) == on),disable,enable) automation : $iif(($group(#set.ip.auto) == on),.disable,.enable) #set.ip.auto
.&Set 'local info' to ext. IP now : { getip verbose }
.-
.External IP $+ $chr(58) $iif((%external.ip),$v1,not resolved yet) : clipboard %external.ip
.Local info IP $+ $chr(58) $ip : clipboard $ip
.-
.&Reset 'local info'
..&normal (winsock) lookup : localinfo -h
..$iif(($status != connected),$style(2)) &userhost (server) lookup: localinfo -u
} Does this work for you?
|
|
|
Re: local info shows wrong ip address
[Re: Horstl]
#226515
04/10/10 03:33 PM
|
Joined: Jul 2006
Posts: 248
bwuser
OP
Fjord artisan
|
OP
Fjord artisan
Joined: Jul 2006
Posts: 248 |
Thank you very much for your effort! I get the following. [17:30:22] * Error: adresses from #5on5.et not saved. (too many users) * [GetIP] Error parsing socket reply: Date: Mon, 04 Oct 2010 15:30:19 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Location: http://nnscript.comCache-Control: private Content-Length: 0 Seams to conflict with nnscript 3.81. Can it be fixed or no way?
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#226529
05/10/10 12:03 PM
|
Joined: Nov 2006
Posts: 1,559
Horstl
Hoopy frood
|
Hoopy frood
Joined: Nov 2006
Posts: 1,559 |
I'm not able to reproduce this. The socket reply you get is weird (i.e. the "location: nnscript" thing - yet I cannot think of how nnscript could interfere with the setting of &a in the sockread event). Does the error always contain "content-length: 0"? Does www.whatismyip.com/automation/n09230945.asp produce the correct IP in your browser? What mIRC version do you use?
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#226531
05/10/10 02:57 PM
|
Joined: Apr 2010
Posts: 959
FroggieDaFrog
Hoopy frood
|
Hoopy frood
Joined: Apr 2010
Posts: 959 |
alias -l getip {
if ($sock(getip)) { sockclose getip }
sockopen getip www.whatismyip.com 80
sockmark getip $1
echo $color(info).dd -s * [GetIP] Resolving your IP address...
}
on *:CONNECT:{ getip }
on *:sockopen:getip:{
if ($sockerr) {
echo color(info).dd -s * [GetIP] Cannot resolve your ip: $sock($sockname).wsmsg
}
else {
var %s = sockwrite -n $sockname
%s GET /automation/n09230945.asp HTTP/1.0
%s Host: $sock($sockname).addr
%s
}
}
on *:SOCKWRITE:GETIP:{
If ($sockerr) {
echo $color(info).dd -s * [GetIP] Cannot resolve your ip: $sock($sockname).wsmsg
}
}
on *:sockread:getip:{
if ($sockerr) {
echo $color(info).dd -s * [GetIP] Cannot resolve your ip: $sock($sockname).wsmsg
}
else {
sockread -f &a
var %s = $gettok($bvar(&a,1-).text,-1,10), %r = /^(?:\d{1,3}\.){3}\d{1,3}$/
if (!$regex(%s,%r)) {
echo $color(info).dd -s * [GetIP] Error parsing socket reply: $bvar(&a,1-).text
}
else {
set -e %external.ip %s
if (($group(#set.ip.auto) == on) || ($sock($sockname).mark)) {
.localinfo $host %s
echo $color(info).dd -s * [GetIP] Resolved external IP: %s (set at 'local info')
}
}
}
}
on *:SOCKCLOSE:GETIP:{
if ($sockerr) {
echo $color(info).dd -s * [GetIP] Cannot resolve your ip: $sock($sockname).wsmsg }
}
#set.ip.auto off
#set.ip.auto end
menu status {
Set 'local info' to external IP $+([,auto,$chr(58) $replace($group(#set.ip.auto).status,on,enabled,off,disabled),])
.$iif(($group(#set.ip.auto) == on),$style(1)) Auto on connect
..$iif(($group(#set.ip.auto) == on),disable,enable) automation : $iif(($group(#set.ip.auto) == on),.disable,.enable) #set.ip.auto
.&Set 'local info' to ext. IP now : { getip verbose }
.-
.External IP $+ $chr(58) $iif((%external.ip),$v1,not resolved yet) : clipboard %external.ip
.Local info IP $+ $chr(58) $ip : clipboard $ip
.-
.&Reset 'local info'
..&normal (winsock) lookup : localinfo -h
..$iif(($status != connected),$style(2)) &userhost (server) lookup: localinfo -u
}
|
|
|
Re: local info shows wrong ip address
[Re: Horstl]
#226555
06/10/10 02:46 PM
|
Joined: Jul 2006
Posts: 248
bwuser
OP
Fjord artisan
|
OP
Fjord artisan
Joined: Jul 2006
Posts: 248 |
I tried FroggieDaFrog's version, but same error. I'm not able to reproduce this. The socket reply you get is weird (i.e. the "location: nnscript" thing - yet I cannot think of how nnscript could interfere with the setting of &a in the sockread event). Does the error always contain "content-length: 0"? On connect it shows * [GetIP] Resolving your IP address... * [GetIP] Error parsing socket reply: Date: Wed, 06 Oct 2010 14:38:11 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 Location: http://nnscript.comCache-Control: private Content-Length: 0 And if I do /getip manually. I get http://www.whatismyip.com/automation/n09230945.asp shows my correct IP. It's same like on wieistmeineip.de. I am sure it's the right one, because if I set it manually everything (like dcc chat with eggdrop) works. What mIRC version do you use?
mirc 6.21 nnscript 3.81
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#226559
06/10/10 05:43 PM
|
Joined: Oct 2004
Posts: 8,330
Riamus2
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
You might try a newer version of mIRC just to see if that helps.
Beyond that, the fact that nnscript is messing this up seems strange. Somehow, it's trying to access nnscript for the site instead of whatismyip. Does nnscript have a GETIP socket name? Ignore any matches from the script that you're getting here, but just scan the entire nnscript.
Invision Support #Invision on irc.irchighway.net
|
|
|
Re: local info shows wrong ip address
[Re: FroggieDaFrog]
#226564
07/10/10 06:03 AM
|
Joined: Apr 2010
Posts: 959
FroggieDaFrog
Hoopy frood
|
Hoopy frood
Joined: Apr 2010
Posts: 959 |
I am thinking /GETIP might be an alias used with nnscript, or the script has rewrote one of the sock commands, so try this: alias SRGIP {
if ($sock(SRGIP)) { sockclose SRGIP }
!sockopen SRGIP www.whatismyip.com 80
!sockmark SRGIP $1
echo $color(info).dd -s * [SRGIP] Resolving your IP address...
}
on *:CONNECT:{ SRGIP }
on *:sockopen:SRGIP:{
if ($sockerr) { echo color(info).dd -s * [SRGIP] Cannot resolve your ip: $sock($sockname).wsmsg }
else {
var %s = sockwrite -n $sockname
%s GET /automation/n09230945.asp HTTP/1.0
%s Host: $sock($sockname).addr
%s
}
}
on *:SOCKWRITE:SRGIP:{ If ($sockerr) { echo $color(info).dd -s * [SRGIP] Cannot resolve your ip: $sock($sockname).wsmsg } }
on *:sockread:SRGIP:{
if ($sockerr) { echo $color(info).dd -s * [SRGIP] Cannot resolve your ip: $sock($sockname).wsmsg }
else {
!sockread -f &a
var %s = $gettok($bvar(&a,1-).text,-1,10), %r = /^(?:\d{1,3}\.){3}\d{1,3}$/
if (!$regex(%s,%r)) { echo $color(info).dd -s * [SRGIP] Error parsing socket reply: $bvar(&a,1-).text }
else {
set -e %external.ip %s
if (($group(#set.ip.auto) == on) || ($sock($sockname).mark)) { .localinfo $host %s | echo $color(info).dd -s * [SRGIP] Resolved external IP: %s (set at 'local info') }
}
}
}
on *:SOCKCLOSE:SRGIP:{ if ($sockerr) { echo $color(info).dd -s * [SRGIP] Cannot resolve your ip: $sock($sockname).wsmsg } }
#set.ip.auto off
#set.ip.auto end
menu status {
Set 'local info' to external IP $+([,auto,$chr(58) $replace($group(#set.ip.auto).status,on,enabled,off,disabled),])
.$iif(($group(#set.ip.auto) == on),$style(1)) Auto on connect
..$iif(($group(#set.ip.auto) == on),disable,enable) automation : $iif(($group(#set.ip.auto) == on),.disable,.enable) #set.ip.auto
.&Set 'local info' to ext. IP now : { SRGIP verbose }
.-
.External IP $+ $chr(58) $iif((%external.ip),$v1,not resolved yet) : clipboard %external.ip
.Local info IP $+ $chr(58) $ip : clipboard $ip
.-
.&Reset 'local info'
..&normal (winsock) lookup : localinfo -h
..$iif(($status != connected),$style(2)) &userhost (server) lookup: localinfo -u
}
|
|
|
Re: local info shows wrong ip address
[Re: FroggieDaFrog]
#226594
08/10/10 11:33 AM
|
Joined: Jul 2006
Posts: 248
bwuser
OP
Fjord artisan
|
OP
Fjord artisan
Joined: Jul 2006
Posts: 248 |
Also the menu with /status didn't work. Same also for the most recent mirc. Anyhow, I modified the script a little without knowing what I am doing.
on *:connect: { getip }
alias getip {
if ($sock(getip)) { sockclose getip }
sockopen getip www.whatismyip.com 80
sockmark getip $1
}
on *:sockopen:getip:{
if ($sockerr) { echo -snc info * [GetIP] Cannot resolve your ip: $sock($sockname).wsmsg | return }
sockwrite $sockname GET $+(/automation/n09230945.asp HTTP/1.0,$lf,HOST: $sock($sockname).addr,$str($lf,2))
}
on *:sockread:getip:{
sockread -f &a
var %s = $gettok($bvar(&a,1-).text,-1,10), %r = /^(?:\d{1,3}\.){3}\d{1,3}$/
echo aa
if (!$regex(%s,%r)) {
echo c
echo -snc info * [GetIP] Error parsing socket reply: $bvar(&a,1-).text
echo d
}
else {
set -e %external.ip %s
echo -snc info * [GetIP] Resolved external IP: %s (set at 'local info')
.localinfo $host %s
}
}
Now I get
aa
c
* [GetIP] Error parsing socket reply: Date: Fri, 08 Oct 2010 11:27:48 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Location: http://nnscript.com
Cache-Control: private
Content-Length: 0
d
aa
* [GetIP] Resolved external IP: .....(modified by me)....... (set at 'local info')
And it works. Correct IP is set every time. Also the eggdrop partyline (dcc chat) is works now. Thank you again for your effort!
|
|
|
Re: local info shows wrong ip address
[Re: bwuser]
#233800
13/09/11 11:26 AM
|
Joined: Sep 2011
Posts: 5
throndo
Nutrimatic drinks dispenser
|
Nutrimatic drinks dispenser
Joined: Sep 2011
Posts: 5 |
I updated the script because there were some changes on whatismyip.com. Also changed some names, in order not to conflict with nnscript. At the moment it works for me. on *:connect: { newgetip }
alias newgetip {
if ($sock(newgetip)) { sockclose newgetip }
sockopen newgetip automation.whatismyip.com 80
sockmark newgetip $1
}
on *:sockopen:newgetip:{
if ($sockerr) {
echo sockopen:newgetip sockerr
echo -snc info * [newgetip] Cannot resolve your ip: $sock($sockname).wsmsg
return
}
echo sockopen:newgetip ok
sockwrite $sockname GET $+(/n09230945.asp HTTP/1.0,$lf,HOST: $sock($sockname).addr,$str($lf,2))
}
on *:sockread:newgetip:{
sockread -f &a
var %s = $gettok($bvar(&a,1-).text,-1,10), %r = /^(?:\d{1,3}\.){3}\d{1,3}$/
echo sockread:newgetip
echo %s
if (!$regex(%s,%r)) {
echo sockread:newgetip error
echo -snc info * [newgetip] Error parsing socket reply: $bvar(&a,1-).text
}
else {
set -e %external.ip %s
echo -snc info * newgetip Resolved external IP: %s (set at 'local info')
.localinfo $host %s
}
}
|
|
|
|
|