Problem with Wifi Access Point ScanHow to check the speed/problems of network-manager?Network manager start access pointCan't connect to WIFI Access Point in 14.04List of all available WiFi APs and their signal strength
Did Joe Biden "stop a prosecution" into his son in Ukraine? And did he brag about stopping the prosecution?
Could Boris Johnson face criminal charges for illegally proroguing Parliament?
Why do personal finance apps focus on outgoings rather than income
Generating Roman numerals with dice
What is the difference between increasing volume and increasing gain?
Can I voluntarily exit from the US after a 20 year overstay, or could I be detained at the airport?
Is there a pattern for handling conflicting function parameters?
"cd" into /sys/kernel/debug/tracing causes permission change
Is it unethical to give a gift to my professor who might potentially write me a LOR?
Driving test in New Zealand?
C - Learning Linked Lists, Pointer Manipulation - Store some ints, print and free memory
Bothered by watching coworkers slacking off
Sum of series with addition
Redirect output on-the-fly - looks not possible in Linux, why?
"last" command not working properly
Airport Security - advanced check, 4th amendment breach
What benefits are there to blocking most search engines?
Lighthouse Alternatives
What's the difference between motherboard and chassis?
I've been fired, was allowed to announce it as if I quit and given extra notice, how to handle the questions?
How to "Start as close to the end as possible", and why to do so?
Why is there such a singular place for bird watching?
Is "Ram married his daughter" ambiguous?
Can 35 mm film which went through a washing machine still be developed?
Problem with Wifi Access Point Scan
How to check the speed/problems of network-manager?Network manager start access pointCan't connect to WIFI Access Point in 14.04List of all available WiFi APs and their signal strength
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I am using iw
command to scan available SSID and corresponding signal strength for the purpose of indoor localization. However, there are too many access points. I can try to trim down the list by filtering SSID. However, it is a post-processing, and it takes some time (1-2 seconds). Is there any way to utilize iw
with specific SSID such that acquiring signal strength will be much faster? Or is there any library that I can use to write a customized scanner for specific SSID?
Thank you very much!
networking network-manager scanner
add a comment
|
I am using iw
command to scan available SSID and corresponding signal strength for the purpose of indoor localization. However, there are too many access points. I can try to trim down the list by filtering SSID. However, it is a post-processing, and it takes some time (1-2 seconds). Is there any way to utilize iw
with specific SSID such that acquiring signal strength will be much faster? Or is there any library that I can use to write a customized scanner for specific SSID?
Thank you very much!
networking network-manager scanner
add a comment
|
I am using iw
command to scan available SSID and corresponding signal strength for the purpose of indoor localization. However, there are too many access points. I can try to trim down the list by filtering SSID. However, it is a post-processing, and it takes some time (1-2 seconds). Is there any way to utilize iw
with specific SSID such that acquiring signal strength will be much faster? Or is there any library that I can use to write a customized scanner for specific SSID?
Thank you very much!
networking network-manager scanner
I am using iw
command to scan available SSID and corresponding signal strength for the purpose of indoor localization. However, there are too many access points. I can try to trim down the list by filtering SSID. However, it is a post-processing, and it takes some time (1-2 seconds). Is there any way to utilize iw
with specific SSID such that acquiring signal strength will be much faster? Or is there any library that I can use to write a customized scanner for specific SSID?
Thank you very much!
networking network-manager scanner
networking network-manager scanner
asked Apr 16 at 14:43
Xihui WuXihui Wu
62 bronze badges
62 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
I would recommend to use the Aircrack suite. From that suite you can use airodump-ng. This is an example:
Let's filter by the SSID DummyWifi:
airodump-ng --essid DummyWifi wlan0
And wlan0 is the name of your wifi adapter.
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1134388%2fproblem-with-wifi-access-point-scan%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I would recommend to use the Aircrack suite. From that suite you can use airodump-ng. This is an example:
Let's filter by the SSID DummyWifi:
airodump-ng --essid DummyWifi wlan0
And wlan0 is the name of your wifi adapter.
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
add a comment
|
I would recommend to use the Aircrack suite. From that suite you can use airodump-ng. This is an example:
Let's filter by the SSID DummyWifi:
airodump-ng --essid DummyWifi wlan0
And wlan0 is the name of your wifi adapter.
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
add a comment
|
I would recommend to use the Aircrack suite. From that suite you can use airodump-ng. This is an example:
Let's filter by the SSID DummyWifi:
airodump-ng --essid DummyWifi wlan0
And wlan0 is the name of your wifi adapter.
I would recommend to use the Aircrack suite. From that suite you can use airodump-ng. This is an example:
Let's filter by the SSID DummyWifi:
airodump-ng --essid DummyWifi wlan0
And wlan0 is the name of your wifi adapter.
answered Apr 16 at 15:02
Philippe DelteilPhilippe Delteil
1,1141 gold badge11 silver badges23 bronze badges
1,1141 gold badge11 silver badges23 bronze badges
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
add a comment
|
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
Thank you for letting me know the suite. However, it seems that using the suite will disable connection with wifi. Is there any other way to monitor BSSID signal?
– Xihui Wu
Apr 16 at 20:44
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
You can user another adapter or use one that supports monitor mode.
– Philippe Delteil
Apr 16 at 20:51
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1134388%2fproblem-with-wifi-access-point-scan%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown