Get IP from wifi hotspot in android

梦想与她 提交于 2019-12-03 08:37:12

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.

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!