Get Ip From Wifi Hotspot In Android
Solution 1:
Not all WiFi access points even have IP addresses! It is not a requirement. It runs on a different layer.
That being said, you can use reverse-ARP on the wireless MAC of the AP to get its IP address, if it has one. Also note that this IP is sometimes different than the wired interface.
For home all-in-one wireless routers, you can also check whatever DHCP assigns as a gateway address, but again, this doesn't have a direct correlation to the access point.
Solution 2:
If you are using default subnets then a host Ip address of 192.168.2.101
directly implies an access point address of 192.168.2.1
. Your IP address is group C. So for Any address x.x.x.y
in this group, the subnet itself is x.x.x.0
and the first host address x.x.x.1
is assigned to the access point. All other addresses: x.x.x.2
to x.x.x.254
are assigned to connected hosts and x.x.x.255
is the local broadcast address.
Post a Comment for "Get Ip From Wifi Hotspot In Android"