24

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

quack quixote
  • 43,504

14 Answers14

25

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.

Darth Android
  • 38,658
3

Unless 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

Dentrasi
  • 11,325
2

to accomplish this on a modern windows OS from the command line

netsh wlan show networks mode=bssid

find the network to which you are interested and connected, note the bssid and then run

arp -a

now find the bssid you discovered above in the new list of physical addresses, your access points internet address is listed on the same line.

2

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.

Henno
  • 669
  • 4
  • 5
2

Default 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...

Hello71
  • 8,673
  • 5
  • 42
  • 45
1

You do not need to reset the Belkin router, can you follow below steps:-

  1. Connect to the Belkin AP using LAN cable
  2. Change your machine IP address to 192.168.2.50, subnet 255.255.255.0, leave blank for gateway and dns
  3. From your browser, go to 192.168.2.254 then you will go to the Belkin setup page
VL-80
  • 4,693
Ricky Kong
  • 11
  • 1
1

I 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... (http://www.macvendorlookup.com/)

HTH

-A's B

Bala
  • 11
0

If you are using Linux, check the interface you are using with:

$ ifconfig

Then (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/24

Find the MAC address in the list and its reference to the IP address.

MJH
  • 1,155
0

Reset the router to defaults and reconfigure?

Andy
  • 3,137
0

you 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.

user4892
  • 306
0

In 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.

MDMarra
  • 20,746
0

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: https://sites.google.com/site/unityindiversity99/

The above website has a lot of solutions for opensource softwares and linux ubuntu

Hope this helps

0

I had the same issue and didn't know the exact nmap syntax to search for, so I've downloaded https://nmap.org/dist/nmap-6.47-setup.exe 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).

Niloct
  • 121
-1

You can use nmap to scan IPs near you own IP.
or use ping:http://www.linuxscrew.com/2007/09/17/ping-range-of-ip-addresses-in-parallel-with-fping/
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.

behrooz
  • 735