Command for wpa_cli to scan a particular network SSID
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
Is there a command supported by wpa_cli
to make wpa_supplicant
scan and yield the results of my desired network using the SSID instead of making supplicant scan all the nearby networks ?
linux wifi wpa-supplicant wpa-cli
add a comment |Â
up vote
0
down vote
favorite
Is there a command supported by wpa_cli
to make wpa_supplicant
scan and yield the results of my desired network using the SSID instead of making supplicant scan all the nearby networks ?
linux wifi wpa-supplicant wpa-cli
2
The driver+hardware will always scan for all networks when doing a scan, and that won't take more effort than scanning for a particular SSID (if this was possible). The most you can do is to filter the output in one way or other.
â dirkt
Feb 9 at 14:31
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
Is there a command supported by wpa_cli
to make wpa_supplicant
scan and yield the results of my desired network using the SSID instead of making supplicant scan all the nearby networks ?
linux wifi wpa-supplicant wpa-cli
Is there a command supported by wpa_cli
to make wpa_supplicant
scan and yield the results of my desired network using the SSID instead of making supplicant scan all the nearby networks ?
linux wifi wpa-supplicant wpa-cli
edited Feb 9 at 12:38
GAD3R
22.4k154894
22.4k154894
asked Feb 9 at 6:52
AKR
264
264
2
The driver+hardware will always scan for all networks when doing a scan, and that won't take more effort than scanning for a particular SSID (if this was possible). The most you can do is to filter the output in one way or other.
â dirkt
Feb 9 at 14:31
add a comment |Â
2
The driver+hardware will always scan for all networks when doing a scan, and that won't take more effort than scanning for a particular SSID (if this was possible). The most you can do is to filter the output in one way or other.
â dirkt
Feb 9 at 14:31
2
2
The driver+hardware will always scan for all networks when doing a scan, and that won't take more effort than scanning for a particular SSID (if this was possible). The most you can do is to filter the output in one way or other.
â dirkt
Feb 9 at 14:31
The driver+hardware will always scan for all networks when doing a scan, and that won't take more effort than scanning for a particular SSID (if this was possible). The most you can do is to filter the output in one way or other.
â dirkt
Feb 9 at 14:31
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
The command should be:
wpa_cli scan
wpa_cli scan_results | grep "fixed SSID"
It will display only the information about the fixed SSID
.
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
The command should be:
wpa_cli scan
wpa_cli scan_results | grep "fixed SSID"
It will display only the information about the fixed SSID
.
add a comment |Â
up vote
1
down vote
The command should be:
wpa_cli scan
wpa_cli scan_results | grep "fixed SSID"
It will display only the information about the fixed SSID
.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
The command should be:
wpa_cli scan
wpa_cli scan_results | grep "fixed SSID"
It will display only the information about the fixed SSID
.
The command should be:
wpa_cli scan
wpa_cli scan_results | grep "fixed SSID"
It will display only the information about the fixed SSID
.
edited Feb 17 at 11:04
answered Feb 9 at 12:37
GAD3R
22.4k154894
22.4k154894
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f422977%2fcommand-for-wpa-cli-to-scan-a-particular-network-ssid%23new-answer', 'question_page');
);
Post as a guest
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
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
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
2
The driver+hardware will always scan for all networks when doing a scan, and that won't take more effort than scanning for a particular SSID (if this was possible). The most you can do is to filter the output in one way or other.
â dirkt
Feb 9 at 14:31