How can I check if I'm connected to my own wireless network on windows or linux?

mathmaniage

Recently I had to reset my router and was unable to log into my network.

There were some networks around me when I was out of my network and had to reset my router to defaults, even though it's highly impossible that I had connected to others' networks (with coincidentally the same password and the same SSID, and possibly changed the homepage's settings because they matched). How can I absolutely confirm that I'm connected to my own network?

I've tried the non-technical way with confirming by switching the router on/off, but, is there a more precise way of confirming that I am connected to my own network?

user1686

Check the BSSID, that is, the access point's MAC address.

At home you'll usually have only one access point that's built into your router, so compare the MAC with the one written on the sticker on its bottom. (It might differ by a single digit in some cases.)

You didn't mention the OS you use, so I'll assume Linux:

$ iw wlan0 link
Connected to 24:a4:3c:ce:d2:16 (on wlan0)
    SSID: eduroam
    freq: 2462
    ...

Or you could check whether a scan detects multiple APs with the same name:

$ sudo iw wlan0 scan | egrep "^BSS|SSID"

$ nmcli -f in-use,ssid,chan,bars,security,bssid dev wifi list

There are various "Wi-Fi scanner" apps for Windows and macOS as well – can't recommend any, but most of them are able to display a basic "network list" including channels, BSSIDs, and all that. There's one from Nirsoft, and probably heaps of other freeware.

If you're on Windows (7 or later), the same can be done via netsh:

C:\> netsh wlan show interface
There is 1 interface on the system:
    ...
    SSID                   : eduroam
    BSSID                  : 24:a4:3c:ce:d2:16
    Network type           : Infrastructure
    Radio type             : 802.11n
    ...

(I can't remember offhand what's the command to request a scan, but it's also under netsh wlan show <something>.)

On macOS, this post suggests:

/System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/airport -I en1
              ...
      link auth: wpa2-psk
          BSSID: 24:a4:3c:ce:d2:16
           SSID: eduroam
            MCS: -1        channel: 6

On FreeBSD, all that should be under ifconfig.

Android has quite a few "Wi-Fi analyzer" apps; at the time of posting, this one worked well.


The homepage, however, is not a network setting. Only your web browser cares about that.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I configure my wireless network for the strongest security?

From Dev

How can I access servers on my network when connected to a VPN?

From Dev

How to check in Linux/Windows if LAN & Wireless connected PCs are in the same subnet?

From Dev

How can I find the IP address of connected network in windows phone?

From Dev

How can I find out who is connected to my wireless router? (Linksys WRT54g)

From Dev

How do I get my computer connected to a wireless network using my Netgear WNDA3100v2?

From Dev

How can I use Windows Libraries icons for my own folders?

From Dev

How can I check my Android app's network consumption?

From Dev

How can i check if the user is connected to WiFi?

From Dev

How can I determine whether I am connected to WiFi or a mobile network in Windows Phone 8.1 (Universal app)?

From Dev

How can I configure my headless server to connect to a wireless network automatically?

From Dev

How can I share my wired/wireless network with other devices on Kubuntu 13.10?

From Dev

How can I tell if the wireless network card in my laptop supports 802.11n?

From Dev

How can I set correct bitrate for my Qualcomm Atheros AR93xx Wireless Network Adapter?

From Dev

How can I configure my headless server to connect to a wireless network automatically?

From Dev

How can I identify my network hardware bandwidth capacity in Linux

From Dev

How can I check if my laptop's wireless card supports 802.11AC wifi?

From Dev

How do I set my wireless network to be private instead of public?

From Dev

How should I increase the range of my wireless network?

From Dev

How do I bring up my wireless network at boot?

From Dev

Windows 7 shows red "X" on network icon, but I'm connected

From Dev

How do I set the preferred wireless network in Linux Mint 17?

From Dev

How can I list the devices connected to my WiFi network using VB6 or BAT/CMD?

From Dev

How can I detect that my network interface is connected to internet programmatically using C++?

From Dev

My MAC is connected to both Ethernet and Wifi at time,how can i detect from which network is getting acessed

From Dev

How can I check if cgroups are available on my Linux host?

From Dev

How can I host my own website

From Dev

How can I generate my own ScalaSig?

From Dev

How can I host my own website

Related Related

  1. 1

    How can I configure my wireless network for the strongest security?

  2. 2

    How can I access servers on my network when connected to a VPN?

  3. 3

    How to check in Linux/Windows if LAN & Wireless connected PCs are in the same subnet?

  4. 4

    How can I find the IP address of connected network in windows phone?

  5. 5

    How can I find out who is connected to my wireless router? (Linksys WRT54g)

  6. 6

    How do I get my computer connected to a wireless network using my Netgear WNDA3100v2?

  7. 7

    How can I use Windows Libraries icons for my own folders?

  8. 8

    How can I check my Android app's network consumption?

  9. 9

    How can i check if the user is connected to WiFi?

  10. 10

    How can I determine whether I am connected to WiFi or a mobile network in Windows Phone 8.1 (Universal app)?

  11. 11

    How can I configure my headless server to connect to a wireless network automatically?

  12. 12

    How can I share my wired/wireless network with other devices on Kubuntu 13.10?

  13. 13

    How can I tell if the wireless network card in my laptop supports 802.11n?

  14. 14

    How can I set correct bitrate for my Qualcomm Atheros AR93xx Wireless Network Adapter?

  15. 15

    How can I configure my headless server to connect to a wireless network automatically?

  16. 16

    How can I identify my network hardware bandwidth capacity in Linux

  17. 17

    How can I check if my laptop's wireless card supports 802.11AC wifi?

  18. 18

    How do I set my wireless network to be private instead of public?

  19. 19

    How should I increase the range of my wireless network?

  20. 20

    How do I bring up my wireless network at boot?

  21. 21

    Windows 7 shows red "X" on network icon, but I'm connected

  22. 22

    How do I set the preferred wireless network in Linux Mint 17?

  23. 23

    How can I list the devices connected to my WiFi network using VB6 or BAT/CMD?

  24. 24

    How can I detect that my network interface is connected to internet programmatically using C++?

  25. 25

    My MAC is connected to both Ethernet and Wifi at time,how can i detect from which network is getting acessed

  26. 26

    How can I check if cgroups are available on my Linux host?

  27. 27

    How can I host my own website

  28. 28

    How can I generate my own ScalaSig?

  29. 29

    How can I host my own website

HotTag

Archive