The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
19 views

How do I get the Security Type of the currently connected WiFi network using either the BSSID or SSID?

While working on a iOS project in xcode, I use the 'CaptiveNetwork' class to retrieve the SSID, BSSID, and SSIDDATA of the currently connected WiFi network. My question is would it be possible to ...
0
votes
1answer
80 views

Setting up a local website on wifi router

We have a mobile website developed for a conference which should be accessible to users thru smartphone/tablet/laptop when they connect to a wifi router. Is it possible to setup a xampp server on a ...
0
votes
1answer
170 views

CNCopySupportedInterfaces() returning no value although wifi connected

I am using CNCopySupportedInterfaces() to get bssid and it is not returning any value. Not sure why. My code looks like this: #import <SystemConfiguration/CaptiveNetwork.h> CFArrayRef ...
0
votes
0answers
146 views

How to close the iOS Captive Network Assistant Popup with Javascript

Problem: Captive Network Assistant on Apple devices is bring up the CNA screen with only a cancel button. Is there a way to close this window and/or redirect to safari by clicking on a ...
0
votes
1answer
279 views

CNCopySupportedInterfaces gives list of all configured Wifi interfaces information or only one which is active currently?

Hi I want to use the CNCopySupportedInterfaces API to get the SSID of wifi interface. But I just have doubt about the API CNCopySupportedInterfaces. Will this API provides list of all configured Wifi ...
1
vote
1answer
185 views

Simple Code to get the SSID from Network

Hi I am Looking for a Simple Code to read the SSID, I found a lot of Information about "SystemConfiguration/CaptiveNetwork.h" but how can I use it, i don't understand it. Sorry I am a new Objective-C ...
0
votes
0answers
56 views

Get user agent from Coova Chilli

Is there a way to get the HTTP_USER_AGENT from the CoovaAP captive portal?
0
votes
1answer
138 views

Adding links to login page of Coova captive portal

I have set up a Coova hotspot with captive portal. Presently, it is configured to internal hotspot and the webpages for captive portal are self-contained in the router. I am able to successfully ...
5
votes
1answer
725 views

iPhone : how to auto connect to a known wifi SSID?

I know it is possible to list the available Wifi networks on iPhone using the CaptiveNetwork API from official Apple SDK. I was wondering if there is a way to auto connect to a specific SSID ...
0
votes
0answers
283 views

CNSetSupportedSSIDs and List of known wifi networks

I found this function CNSetSupportedSSIDs from the CaptiveNetwork library, but I cant figure out how it works. Has anyone used this? Will it open my application when the device connects to the SSID I ...
0
votes
0answers
76 views

Connect with credentials to a redirected webpage iOS

I am a newbie to iOS programming. I am trying to login to a captive portal webpage providing the credentials through an app. But before doing that I am requesting any random webpage (www.apple.com) ...
1
vote
0answers
211 views

Programmatically quit “Captive Network Assistant” without disconnecting from network

Is there a way to quit or kill Captive Network Assistant in (Mountain) Lion, without disconnecting from the network? I have tried to do a simple killall command and also a killall -9, but it still ...
1
vote
1answer
82 views

MonoTouch CopyCurrentNetworkInfo Incorrect

I am using the following code to get the current SSID: var dict = CaptiveNetwork.CopyCurrentNetworkInfo(curInterface); string localSsid = dict [CaptiveNetwork.NetworkInfoKeySSID].ToString(); ...
0
votes
0answers
60 views

How can I forward all incoming traffic to a specific ip (or localhost)

Wha I'm trying to do is conceptually pretty simple. I want to run my macbook as an wireless access point. When the connected clients' browser makes a request they get forwarded to the webserver ...
2
votes
0answers
283 views

Using CaptiveNetwork to authenticate wifi network

I am trying to use the CaptiveNetwork api to have my app authenticate with known wifi networks. I am able to register my app with CNSetSupportedSSIDs, which prevents the os from displaying a web ...
0
votes
1answer
392 views

iOS notification for connection state change disconnect to connect and back

Looking for a way to get my IOS app to receive a notification when the device looses connection to the internet. Any idea if there are notification classes for this?
0
votes
2answers
2k views

IOS notification of wifi connection including SSID

Newbie IOS programmer looking for a way to get notified when the IPhone connects to a WIFI network. i.e. Notification for the following transitions: 3G to WIFI WIFI to 3G WIFI to another WIFI It ...
3
votes
1answer
591 views

Notification of WiFi connection (CaptiveNetwork)

I'm trying to get notified when a user connects to a specific WiFi network, despite my app not being currently run. It's seeming to me that it's not possible, but there is one API that seemingly gets ...
0
votes
1answer
241 views

CNMarkPortalOnline return NG

I tried to use CaptiveNetwork in order to replace the web sheet that for user authentication with the network. And succussfully registered the common hotspot with CNSetSupportedSSIDs in AppDelegate ...
4
votes
1answer
835 views

MonoTouch WIFI SSID

is there a possibility to get on an IPhone the connected WIFI SSID with Monotouch? I have found a possibility to check the Wi-Fi States but there is no way to check the SSID. ...
5
votes
2answers
1k views

CaptiveNetwork : CNSetSupportedSSIDs usage

I tried to use CaptiveNetwork in order to replace the web sheet that for user authentication with the network. The method is CNSetSupportedSSIDs. I have tried to add this method in AppDelegate of my ...