Questions tagged [access-point]

Access Point is a configurable network identifier used by a mobile device when connecting to a GSM carrier.

Access Point identifies an IP Packet Data Network (PDN), that a mobile data user wants to communicate with. In addition to identifying a PDN, an access-point may also be used to define the type of service, (e.g. connection to wireless application protocol (WAP) server, multimedia messaging service (MMS)), that is provided by the PDN. APN is used in 3GPP data access networks, e.g. general packet radio service (GPRS), evolved packet core (EPC).

enter image description here

A structured Access-Point consists of two parts as shown in the accompanying figure.

  • Network Identifier : Defines the external network to which the Gateway GPRS Support Node (GGSN) is connected. Optionally, it may also include the service requested by the user. This part of the APN is mandatory
  • Operator Identifier : Defines the specific operator’s packet domain network in which the GGSN is located. This part of the APN is optional. The MCC is the Mobile Country Code and the MNC is the Mobile Network Code which together uniquely identify a mobile network operator.
193 questions
4
votes
2 answers

Android Wifi Roaming through AP with same SSID

I saw that Android system has a bad behavior with Wifi roaming. We have a Wifi centralized network with many AP with a signle SSID. The Adroid Phones wont roams seamlessly. An Android Phone tries to stay connected to an AP until the signal reaches…
Salvo Parisi
  • 119
  • 1
  • 10
3
votes
2 answers

Anyone have an idea about testing wireless connection on wireless access point

I have a wireless access point where they have 50+ wireless client and the connection just blow up in sometime. I think it related to overload on hardware. So is there anyway to simulate or something like that to test wireless access point in heavy…
zinuzoid
  • 337
  • 8
  • 14
3
votes
1 answer

Using Wifi Direct API in legacy mode disconnects every 2 minutes

I've got a problem with my soft ap solution. When i connect a client to the ap the connection gets established and everything works fine. But I've noticed that when i set a ping to the host, it looses connection every 2 minutes and then suddenly…
Ryan
  • 31
  • 1
3
votes
2 answers

How to switch to normal wifi mode to access-point mode ESP8266

I am using ESP8266-12 wifi module for accessing my home wifi network to control lights. For uploading new firmware(OTA: Over the Air) update, I want to use ESP8266's hotspot AccessPoint because after changing the password of my wifi network, I will…
Jai Prak
  • 2,855
  • 4
  • 29
  • 37
3
votes
0 answers

Meraki and custom splash page for authorization

I am trying to create custom authorization splash screen for Meraki Cloud Wi-Fi (https://meraki.cisco.com). I've created splash page successfully as described here:…
LONGMAN
  • 980
  • 1
  • 14
  • 24
3
votes
0 answers

How can i check my android device is in Access Point mode?

I know how to get Access Point configuration like this: public static WifiConfiguration getAccessPointWifiConfiguration() { WifiManager wifimanager = (WifiManager) App.get().getSystemService(Context.WIFI_SERVICE); Method[] methods =…
4ntoine
  • 19,816
  • 21
  • 96
  • 220
3
votes
3 answers

wpa_supplicant Association Failed

I would like to connect my linux board to an access point (i.e mobile phone) by using wpa_supplicant. My mobile phone ap is configured with WPA (AES) security. I modified the wpa_supplicant.conf as follow :…
ogs
  • 1,139
  • 8
  • 19
  • 42
3
votes
4 answers

how to get Distance between wifi access point and Mobile Device

i am developing an android application which have module to search all nearest / detected wifi hotspot. i can get all detail from searched wifi hotspot like, SSID, BSSID, capabilities, frequency, level and timestamp with these information, i also…
Ajay
  • 1,189
  • 1
  • 12
  • 28
3
votes
2 answers

Change the channel of a wireless windows 8 hosted network

I've created a hosted wlan network under windows 8 using netsh wlan set hostednetwork mode=allow ssid=”MySSID” key=”password” and netsh wlan show hostednetwork So far so good, but the channel number is set automatic by netsh. Is there a possibility…
tronc
  • 683
  • 4
  • 12
  • 23
3
votes
3 answers

Disconnect user on hostap

I'm creating an access point with no Internet access. Users can view content hosted locally on a Raspberry Pi I want a jump-off point where the user can share something on Facebook. At this point I would need them to be kicked from the WiFi network…
gvjonjones
  • 90
  • 2
  • 8
3
votes
1 answer

List connected devices to Android phone working as WiFi Access point

Is there a way in Android API to list connected devices, when Android phone is acting as WiFi router? And also is there a way to interefere with routed request to serve a welcome/login page?
Piotr Müller
  • 5,323
  • 5
  • 55
  • 82
3
votes
1 answer

How to get mac address of access point in ios?

I want to get some uniqe information about access points. Such as MAC address and intensity. I try to do triangle with most three intensity wireless access point in objective c. I have xcode 4.3.2 and ios 5.1. How can I do this in ios.
2
votes
1 answer

How to scan, find and connect to an open wifi AP programatically?

I am developing an application which should automarically and periodically enable wifi, scan for networks, filter out networks that are open (no pass needed), create a wifiConfiguration object and use it to connect to that network. I read the…
Miky
  • 942
  • 2
  • 14
  • 29
2
votes
3 answers

Is it possible for android devices to exchange messages over an access point and request a list of connected devices to this AP?

I am developing an application which should connect to an open WiFi access point and exchange messages with devices that are also connected to this access point. Lets assume the access point is open and has no restrictions. Would it be possible to…
Miky
  • 942
  • 2
  • 14
  • 29
2
votes
1 answer

How do you really use dbus to obtain the list of visible SSIDs from NetworkManager?

According to example 12 here I should be able to use dbus-send --system --print-reply --dest=org.freedesktop.NetworkManager /org/freedesktop/NetworkManager/Devices/4 org.freedesktop.NetworkManager.Device.Wireless.GetAllAccessPoints to discover all…
1
2
3
12 13