recently I turned my Router to a wireless access point for my home network. Unfortunately, I forgot to note down the AP's IP Address and Subnet.
How do I reliably get the IP of my AP?
Thank's in advance.
EDIT: OS is Vista XP, but I have xubuntu dual booted.
Ok so the configuration is as follow: PCs => (wireless) Belkin Router (AP) -> (wired, bridged) 2Wire Gateway Modem
I want to be able to get the IP Address of the AP, ie. the Belkin Router
414 Answers
Since it is simply functioning as a WAP device now, short of reseting the WAP and using the default, it might not be all that easy.
Try going through your ARP cache (arp -a in windows, might be similar in linux) and see if the WAP has an entry. Just try each address on your local subnet that's listed.
Other than that, the WAP should be completely transparent so unless you're already communicating with its IP, its IP probably won't show up in network traffic.
4Unless you get get in in from your arp cache (try doing ping 192.168.0.255 first), the only way I know to find it is port scanning. Using something like nmap to scan your network - a WAP should be listening on port 80, and possibly something like telnet as well. Try nmap 192.168.0.1/24
IPCONFIG /ALL (in a command line in Windows) will tell you under the heading Default Gateway. ifconfig under Linux will tell you, and also on Mac OS X (command line), and in the GUI: Network preferences, select wireless, advanced (right below) and TCP/IP tab, router entry.
17Default IP is 192.168.2.1 for a Belkin router, but can't you do a tracert to, say google.com and then find out which one is your router? (It should usually be the first hop.)
Or you could look in your browser's history...
8to accomplish this on a modern windows OS from the command line
netsh wlan show networks mode=bssidfind the network to which you are interested and connected, note the bssid and then run
arp -anow find the bssid you discovered above in the new list of physical addresses, your access points internet address is listed on the same line.
0I had the same problem. From my Windows 7 PC, i could do a ping on the local subnet by typing
ping 192.168.X.255 -- where X is your local subnet. This should send a broadcast to ALL ips in the subnet. Of course, the ping command will fail.
Next type arp -a This should now list ALL the ping responses received on the subnet. Note that if there are systems on the subnet which have ECHO RESPONSE turned OFF, they wont show up in the list.
One of the these IPs listed will be your AP's IP. If not sure, lookup on the MAC and find out who the vendor is... ()
HTH
-A's B
You do not need to reset the Belkin router, can you follow below steps:-
- Connect to the Belkin AP using LAN cable
- Change your machine IP address to 192.168.2.50, subnet 255.255.255.0, leave blank for gateway and dns
- From your browser, go to 192.168.2.254 then you will go to the Belkin setup page
Reset the router to defaults and reconfigure?
1you should be able to see this from the 2wire web interface. I'm assuming that it is a router which is the gateway address from ipconfig. Most likely would be in the logs. If the belkin was set to dhcp it should be in the dhcp log. the other option would be to use a ping utility to ping every address in the ip range and see which ones respond. if your ip address is 192.168.1.2 say you would ping every address from 192.168.1.1 to 192.168.1.254.
3In the command prompt you can do arp -a This will show you the MAC address and IP of everything connected to the same broadcast domain that you are. Given your setup, this should show you everything on your network. You can figure out the IP by finding out the MAC address of your AP. Usually this is printed right on the device itself somewhere.
Use this command ( This gives details about all active ips starting with 192.168.1. & their mac & brand ):
sudo arp-scan 192.168.1.0/24
Above command can be read as below
This will give the list of active ips. You can replace 192.168.1.0 with whatever ip u want but the "/24" is a must.
Sorry if there are some mistakes this is my first time writing solutions.
Souce:
The above website has a lot of solutions for opensource softwares and linux ubuntu
Hope this helps
1I had the same issue and didn't know the exact nmap syntax to search for, so I've downloaded for windows, typed my network 192.168.0.1/24 in the address field, hit scan, and then checked the results that show with Discovered open port 80/tcp on ... (webservers).
If you are using Linux, check the interface you are using with:
$ ifconfigThen (if connected by WLAN):
$ iwconfig wlp2s0 Extract the MAC address of the access point from the response, and use nmap to check the devices in your network:
$ sudo nmap -sn 192.168.0.1/24Find the MAC address in the list and its reference to the IP address.
1You can use nmap to scan IPs near you own IP.
or use ping:
there are lots of tools doing this in linux.
you can even use aircrack-ng(but this one needs some time to work).
EDIT:
I think transparent routers(I think your router is) don't have IPs.