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
1
vote
0 answers

RaspberryPi swapping between WLAN client and AccessPoint

I am currently trying to configure the Wifi of a RaspberryPI 3 A+. I followed this guide: here to make the Raspberry a WiFi Accesspoint. now i have a small Flask webserver running. With that i want to deactivate the AP and instead connect the…
Omega
  • 27
  • 2
1
vote
0 answers

How to make esp8266 receive commands from another esp8266 webserver?

Hello could someone show me what changes need to be made to the following github code so that I can connect another esp8266 to it so that it can receive commands from the webserver? Things that I know so far is that changing the [Server] esp8266 to…
Jordan H.
  • 59
  • 1
  • 7
1
vote
1 answer

ways for a client to identify the specific access point it is connected to within a single SSID?

The problem is as follows - there's a university campus wide wifi connection with a single SSID, say "campus-wifi". The user freely roams around campus, and the usual hand-off between access points occurs. My question is, is there any information…
Bryce Thomas
  • 10,479
  • 26
  • 77
  • 126
1
vote
1 answer

Unable to connect to socket over wifi connection

I am not able to connect to socket on Raspberry Pi 3 B+. This is what I did Installed dnsmasq and hostapd and configured created an access point and assigned static ip to wlano as 192.168.4.1 without bridging to lan started a python script to…
Sony
  • 7,136
  • 5
  • 45
  • 68
1
vote
1 answer

Redirect clients when they try to connect to access point and there's an available place in the main router

hope all of you are fine... My Question is: how to let the access point redirect the people to the main router when there's available place on the main router because I want to avoid the situation of not connecting to the main router while there's…
Volcano
  • 23
  • 7
1
vote
1 answer

Hostapd: Client re-authenticates regularly without appearing to have been deauthenticated

I run Hostapd v1.0 on a Rasbian Raspberry Pi with a AWUS036NH adapter as AP (chipset Ralink RT3070). It works fine and fast except one problem: My Android phone using VOIP (Media5-fone app, but not making any call) reconnects itself every Nx10…
FlorianB
  • 2,188
  • 18
  • 30
1
vote
0 answers

hostapd how to reduce memory usage

this is my hostapd.conf file: interface=wlan0 driver=nl80211 hw_mode=g ieee80211n=1 channel=6 country_code=US ieee80211d=1 ssid=MySuperWiFiNetwork Is there any way to configure this file for lower memory usage? It's running on small embedded…
Witczenko
  • 11
  • 2
1
vote
1 answer

Increasing WiFi RSSI Scan Rate for Indoor Positioning System

I've found a few similar questions to the one I'm about to pose, but I'm too much of a noob in this field to apply the answers to my particular question. I have an area of roughly 40,000 sq ft. that is covered by 22 AP's which host 6 WiFi channels a…
user2539859
  • 67
  • 1
  • 8
1
vote
2 answers

Python: run service after hostapd

I have been working on a project for a few weeks now and I encountered something (probably stupidly simple) I can't figure out! import os os.system("service hostapd start && hostapd /etc/hostapd/hostapd.conf") os.system("service someservicethatIuse…
1
vote
2 answers

Set ESP8266 Soft-AP signal strength

I am using ESP8266 SMING framework. I would like to adjust the signal strength of the soft-ap. Are there any APIs to do this?
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
1
vote
0 answers

Cannot enable AccessPoint with ESP8266

I am using ESP8266 with SMING ver2.1 To enable Access Point, I have the following code in init() WifiAccessPoint.enable(true); WifiAccessPoint.config("TestAP", "", AUTH_OPEN); The above code works fine. However, when I run the code outside of…
guagay_wk
  • 26,337
  • 54
  • 186
  • 295
1
vote
1 answer

Android lollipop hotspot programatically not working?

I am trying to create hotspot programatically, unfortunately its not working in android lollipop. For previous android version I was using "setWifiApEnabled" using reflection and it works fine. I am struggling on this for a while now, any help would…
1
vote
0 answers

Setting up domain name redirection on Mac OSX for all! domains

im trying to setup a redirection towards an app that im writing in Java. This app opens a port 8443 on my laptop (which is a MacOS 10.10 Yosemite) and offers a HTTPS service. The big plan is to have another device connecting to an access point that…
Fluffy
  • 11
  • 2
1
vote
1 answer

Received Signal Strength of associated devices on a Linux Access Point

i'm writing a C program to manage certain aspects of a wireless network (Access Point + Client Devices) One Part of the program runs on the Devices an another runs on the AP. The AP is a simple Linux-Station (a Cubietruck, later on exchanged with a…
Dionysos
  • 11
  • 2
1
vote
3 answers

WiFi Direct device connection with other Android devices

Can I connect a WiFi Direct enabled device to any other device which doesn't have WiFi Direct feature but supports WiFi hotspot connection? Does WiFi direct uses specialized hardware to be present on both devices? Will network discovery work in such…
Vinit Shandilya
  • 1,643
  • 5
  • 24
  • 44