8

I have been using my home ADSL and when I had problems with it, switched to my iPhone for network access. This mostly works as planned, but I have noticed that Windows 7 creates a new network name even though the hardware has not changed; I am now connected to Home Network 2 and just before I was connected to My iPhone 3.

The network SSIDs are "Home Network" and "My iPhone" and the suffix gets incremented every so often in my Internet and Sharing Center when I have been disconnected and reconnect. Note that it is not the SSID that changes, but the network name in the Internet and Sharing Center.

Also it asks me every time whether this is a home, office, or public network. What can I do to make it reconnect to an existing network rather than create a new duplicate with a number suffix?

tripleee
  • 3,308
  • 5
  • 36
  • 35

3 Answers3

1

actually I think "user 99572 is fine" is on to something. it could very well be that due to the ip address being different enough from the ip it had last time it connected that it is thinking it's connecting to a different network with a similar name. but as "tripleee" pointed out not just any different ip address will do this, I think the ip has to be on a different subnet from the one before to be considered a different network. One possibly for why this could be happening is some routers have some sort of Isolation feature and if that's enabled the router will purposely put everyone on different subnets on purpose to keep them isolated from each other. But it may not assign you the same subnet every time your computer connects as all it's trying to do is put you on one that isn't already in use. from a networking perspective it would work just fine as long as the modem has an ip on the same subnet your currently in the computer would be able to find a path out to the internet and everything will work fine. From Windows perspective I'd guess it's using what subnet it's on to determine the difference between two different networks of a similar name, as such would be needed in corporate networks where you may have multiple people using the same set of AP's but get assigned different IP's possibly statically or with some mac bind or special log in system as there are those out there that will give you a ip on their public subnet first then when you log in it'll invalidate your lease and send you a new ip in your proper subnet. and they would want windows to know when they are on the public or private parts so that the info doesn't accidentally leak from file shares.

Kit Ramos
  • 246
0

Although I have not found any evidence to support, I have the suspicion that the problem is linked to your Computer receiving a new IP address from your router once you reconnect. Here's why:

I remember having the same problem a while ago when using my mobile phone as an access point. Windows would always show me the old network name incremented by one. Eventually, this stopped once I changed my phone.

Every time you reconnect to either of your access points, you get a new IP address from the router. EDIT: Routers change IP addresses not only based on the last number, but on the whole IP address. Some Routers use 192.168.0.XXX (Cisco) - 192.168.10.XXX (Fonera) - 192.168.2.XXX (My HTC Android phone). So when you get a new IP address from a different router and the subnet changes, your Windows thinks there was a change in the network and asks you anew for permissions (public, private, work).

Note that some routers change your devices' local IP addresses (e.g. my former Zyxel 660HN modem), while some don't (my Fonera 2.0n). The only way to alter this behavior in the former category is to assign a static local IP address like 192.168.0.25 to the MAC address of your computer. You have to do this in your router interface.

As for the iPhone, I don't think it is possible to make these changes. You will just have to live with it or hope that Microsoft applies an update that fixes this behavior.

0

A network is recognised by network IP address, router IP address, router mac address.

I don't know about the iPhone, but I know that some Android phones are using a random mac address. If iPhones are doing the same it would be recognised as a new network every time.

You can check the mac address of the router with the arp command. I think it's arp -a to display all the mac addresses in the cache.

Sacha K
  • 985