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
2
votes
1 answer

How to create an access point

I would like to create an application which could create an access point. Looking through Android documentation I see the WifiManager class [1]: /** * Start AccessPoint mode with the specified * configuration. If the radio is already…
ErSame
  • 21
  • 1
  • 1
  • 2
2
votes
0 answers

Android Access Point Default Network

I'm facing a problem when using a S31 Cat phone with Android 7.1.2. But i'm not sure this problem is related to this phone or simply Android 7 I've tried this on Sony Xperia and others Samsung phones. I'm currently developping an app that creates an…
Chimimoryo
  • 21
  • 3
2
votes
1 answer

Is it possible to draw charts on an ESP8266 web server that runs as an access point?

My ESP8266, configured as an access point, is currently programmed to read multiple DS18B20 sensors and store read values in a text file on an SD card. I can connect to the AP from my Android phone and navigate to 10.10.10.1 (the ESP's static IP…
Denis Črnič
  • 117
  • 2
  • 9
2
votes
1 answer

How to locate an access point using user coordinates and signal strength?

Hi everyone, I'm working on a school project for an android app where I need to locate all Access Points I can find and mark them on the map. The problem is: being x, y the coordinates of my phone being s the signal strength of a given AP how do I…
2
votes
1 answer

Domain name resolution for NodeMCU as an access point

I was reading through the NodeMCU documentation on enduser setup Module, and now I have a little confusion about the following statement: Connect to that SSID and then navigate to the root of any website (e.g., http://example.com/... A web page…
Vinit Shandilya
  • 1,643
  • 5
  • 24
  • 44
2
votes
1 answer

Connect to strongest access point (access point with the strongest signal) with the same SSID

I am writing a program to always connect to the strongest access point. I mean the access point with the strongest signal. First I scan all the available WiFi networks and then I restrict them to see just the ones with the same SSID. So I can see…
2
votes
1 answer

How to multicast from windows machine with the machine itself as an access point?

I have written a basic code to multicast UDP packets from a windows machine in java using this link. The receivers are several android phones, which run the receiver code given in the same link. Here is the sender code: int mcPort = 4446; String…
vishalaksh
  • 2,054
  • 5
  • 27
  • 45
2
votes
0 answers

Wifi Reconnect Duration in iOS - IoT Provisioning

I have an IoT device that broadcasts a Wifi network upon startup. The device then launches a UDP server so a client can connect to it to send over Wifi credentials. I need to be able to check if those Wifi credentials are correct by having the IoT…
Craigfoo
  • 313
  • 2
  • 12
2
votes
0 answers

Browser Popup not happening on iOS 8

I want to build a Captive portal and an access point on a Ubuntu machine and redirect every incoming traffic to localhost. I started by redirecting all my incoming tcp traffic on every port to a simple login page locally served via an Apache Web…
Sidhant101
  • 39
  • 1
  • 5
2
votes
2 answers

How do I communicate between devices connected to a WiFi Access Point?

I have got a couple of phones and another couple of PC's connected to a Wifi access point and need to send and receive messages between either of these, I mean anyone can send a message to anyone and receive a message from anyone. I am willing to…
Kevin Boyd
  • 12,121
  • 28
  • 86
  • 128
2
votes
1 answer

How can I read data from an RFID tag using SNMP/SNAP protocols?

I need to work on WIFI RFID using access points how can i do this using SNMP or SNAP protocol. Tutorial links will be very beneficial. Thank You!! can the same be done using Wifi Hotspot Technology present in mobiles and laptops??
2
votes
1 answer

connecting to wifi in Android

I am working on an android application which involves connecting to a specific wifi when in range. Once I am done doing some stuff, I am trying to connect back to my original wifi. For some strange reason, it connects to my original wifi as I want…
user_rz_jaz
  • 213
  • 1
  • 3
  • 13
2
votes
1 answer

wide area broadcast over wifi

I want to find a solution to broadcast voice over WiFi for the people in a march. Since Android and IPhone is the most popular devices among the people in the march, it would be great if i can find a solution for audio broadcast over wifi with…
Kevin Chan
  • 23
  • 1
  • 3
2
votes
1 answer

Identify the BSSID of the AP that user is currently connected to

Working on a project for class specific to the college network. The idea is that if we can fetch an identifying characteristic of the web session/connection on campus, we can map out and associate the AP with their location coordinates and plot them…
MZM
  • 21
  • 2
1
vote
1 answer

Remove access points from list of Wi-Fi hotspots on the Android

I can get the list of WiFi access points using WifiManager mWifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE); List results = mWifiManager.getScanResults(); I have found ways to select and add a network to this list,…
1 2
3
12 13