0

On occasion, I'm using a Verizon Mifi adapter to share an internet connection over my office network (which doesn't have internet).

To do this, I have to share the internet connection on the adaptor, which changes my local ip address to a different subnet, along with anyone utilizing the shared resource, in essence disconnecting anyone using the internet from the office network.

So, the office network operates on subnet 192.168.2.0

After sharing, the client now has an ip on subnet 192.168.137.0

This obviously disables us from talking to the office network after joining the internet connection.

Or so I thought. One of my co-workers pointed out that he can still connect to our server using the UNC,

\\servername\sharename

He cannont ping the server with the server ip. However, when he pings the server with its friendly name, it is able to ping and replies with the MAC address (using ARP cache I'm assuming). So instead of resolving the name to the IP, it's resolving to the MAC address.

However, from what I've read here, he still shouldn't be able to connect to the server.

Any helpful explanation would be much appreciated.

2 Answers2

3

The most plausible explanation here is that communication is happening over IPv6. With most modern operating systems IPv6 is enabled by default.

Unlike IPv4 where each host typically had a single address, in IPv6 it is expected for hosts to have multiple addresses at the same time. When the interface first comes up it will only have a "link local" address. Later other types of addresses may be added but the link local address remains.

Peter Green
  • 4,464
-2

There are two possible explanations.

  1. He is using offline files.
  2. He is not disconnected from the local office Network. You can run ipconfig /all from his computer and verify that.
Abu Zaid
  • 519