4

When I run command "ipconfig" in Windows command line, I am expecting to see my IP address that I have in the LAN I am connected to. But besides that I see many, many entries.

Can someone explain what all these are about:

enter image description here

What is 192.168.56.1 for example? Buy the way I have Filezilla server running on my computer and when I go to

ftp://192.168.56.1

in chrome I see the folders in my ftp server. But when I shutdown FTP server and run "ipconfig" in command line I still see this entry with

192.168.56.1 

so I am a bit confused. Thanks.

Kevin Panko
  • 7,466
Koray Tugay
  • 1,980

3 Answers3

3

Windows supports having many network interfaces, for example you could have both wireless and wired Ethernet on the same laptop. Each of those would be its own network adapter. It's also possible to have more than one of each type, say two Ethernet ports, which might be useful on a server.

Normally you would only connect one at a time. Say you are connected to wireless, you probably would not also connect your wired interface by plugging a cable in. In this case, you would see Media disconnected under the Ethernet adapter Local Area Network, as you do see in your screenshot.

In addition to these hardware interfaces, there are also software interfaces. One common use for these type is with VPN software. These interfaces do not exist in hardware, but you can send data to them just the same, and what happens is defined by the software. A VPN would take the data and encrypt it before sending it to another interface.

Your 192.168.56.1 interface is named VirtualBox which leads me to conclude it is a software interface set up by the VirtualBox software, for the purpose of creating a "fake" network between your "real" computer and the "virtual" computer. This means your "real" computer has a software interface with the address of 192.168.56.1 and the "virtual" computer has some other address on that "fake" network, probably 192.168.56.2 or something.

The FTP server ties into all this because it "listens" for connections on every interface you have at the same time. You have an IP address on a wireless network as 192.168.1.3 and you also have an IP address on a VirtualBox software network as 192.168.56.1. The FTP server does not know/care which one is best; it just listens on both of them.

Kevin Panko
  • 7,466
2

The headings above each section explain what they are (to certain extent).

Two wireless networks "Wireless LAN Adapter Wireless Network Connection" and "Wireless LAN Adapter Wireless Network Connection 2". Only one of which appears to actually be connected (the one marked "2" may be an artifact of a wireless card change or a Windows quirk or something of the sort).

Two wired networks "Ethernet adapter Local Area Connection" and "Ethernet adapter Local Area Connection 2". Neither of which is connected the second of which is possibly similar to the second wireless network or may in fact be a second device/connection.

One bluetooth network "Ethernet adapter Bluetooth Network Connection". Disconnected.

One virtual network device (created by VirtualBox) "Ethernet adapter VirtualBox Host-Only Network". Connected and likely available only on your current host (though possibly not).

Two networks related to IPv6 functionality "Tunner adapter 6TO4 Adapter" and "Tunnel adapter Teredo Tunneling Pseudo-Interface". Both disconnected.

And six networks I believe are also related to IPv6 functionality. The various isatap entries.

As Logman mentioned in his comment. Services use IP addresses they do not create them. Your FTP service was available on that 192.168.56.1 IP address for some reason (configuration or auto-detection or something else) but stopping the service will not release that device's IP address configuration.

Etan Reisner
  • 2,238
0

192.168.56.1 is the virtual server you are running. If you run netstat -n it will list all of your connections if you look for 192.168.56.1 you will see Time_Wait most likely. It is like that because it is waiting for someone to connect to it. it probably still shows the IP in ipconfig because it has reserved that address for itself so it doesn't get changed and you have to give out a new address every time you restart the server.

Your IP address is 192.68.1.3 as shown under "Wireless LAN Adapter Wireless Network Connection"

192.168.1.1 is the Gateway (your Router)

these IPs are only the Lan IPs not the external (World Wide Web) IPs

go to http://www.whatismyip.com/ to see your external IP

jmc302005
  • 729