PDA

View Full Version : how to get my internal IP


Ragefreak16
10-06-02, 02:55 PM
do any of you know how i can find out my internal IP?
ive looked and cant really seem to find a way

Kaneda
10-06-02, 02:57 PM
what os? and im assuming you have a router, that is masking your i.p.?

Ragefreak16
10-06-02, 02:58 PM
yes, im using windows XP pro

Kaneda
10-06-02, 03:04 PM
sorry man, dont know anything about XP

try going to your command prompt by start --> run --> CMD hit enter then type ipconfig

Kaneda
10-06-02, 03:06 PM
wait no, that wont show it. but you can try.

Ragefreak16
10-06-02, 03:07 PM
lol i know..it shows the regular ip address:(

Kaneda
10-06-02, 03:13 PM
this is dumb, but when i connect to IRC it shows my True IP

Ragefreak16
10-06-02, 03:34 PM
when i connected to IRC..the IP looked the same as my regular IP.

maybe i should have said my cable modem's IP..i dont know if internal and cable modem IP are different

Kaneda
10-06-02, 03:37 PM
same i believe but i was thinking the cable modem anyways

rogerdugans
10-06-02, 04:20 PM
Internal ip is the ip address used by your computer on your network.

External ip is the one that is assigned to you by your ISP.

IF you have 1 computer connected directly to the cable modem the ip address will be the same, but if you have a router (gateway router or pc as router) between the cable modem and your computer they will be different.

In my situation, I do have a router and an internal network: my router gets the external ip from the cable modem and uses my internal ips to send packets to the requesting pc.

Hope that helps.

Ragefreak16
10-06-02, 04:24 PM
is there a way to find out what my internal IP is?like a program or some way?

turd
10-06-02, 10:53 PM
Here is something that you can do. Just take and copy and past into notepad and give each a name with a .bat extension and then click on it.
statr your copy with the @ECHO OFF and end at @exit



name this one: netstat.bat

@ECHO OFF
%systemroot%\system32\netstat -a -e -n -r -s >netstat.txt
netstat.txt
cls
@exit

name this one: ipconfig.bat

@ECHO OFF
%systemroot%\system32\ipconfig /all >ipconfig.txt
ipconfig.txt
cls
@exit


name this one: ports.bat

@ECHO OFF
%systemroot%\system32\netstat -a -n >netstat.txt
netstat.txt
cls
@exit

john240sx
10-06-02, 11:06 PM
that's pretty cool turd. these are going to save me alot of time :)
i need to learn about bat files :(

Ragefreak16
10-06-02, 11:28 PM
ummm :( which one do i use to find the internal IP

john240sx
10-06-02, 11:41 PM
this one

@ECHO OFF
%systemroot%\system32\ipconfig /all >ipconfig.txt
ipconfig.txt
cls
@exit

Daemonfly
10-07-02, 02:23 AM
I have it set so that I have the little network icon in my system tray when I'm connected. I double click on this, then hit the.. um.. well, the 2nd tab :p It shows me the IP that that connection is assigned (as in the network card).

You can take the long way & find the same connection, but I'm at work and can't remember :rolleyes:

turd
10-07-02, 08:42 AM
yea you can also just type those commands into your command prompt

just type: cmd
into your run box
then: ipconfig /all